s&box docs

public class Sandbox.Json.Patch

Represents a complete set of changes to be applied to a JSON structure.

Note

A patch contains all the operations needed to transform one JSON structure into another while preserving object identity and relationships.

Constructors

Showing 1 constructors

Properties

Showing 4 properties

public System.Collections.Generic.List`1<Sandbox.Json.AddedObject> Sandbox.Json.Patch.AddedObjects { get; set; }

Objects that need to be added to the target structure.

public System.Collections.Generic.List`1<Sandbox.Json.MovedObject> Sandbox.Json.Patch.MovedObjects { get; set; }

Objects that need to be moved to a different location in the structure.

public System.Collections.Generic.List`1<Sandbox.Json.PropertyOverride> Sandbox.Json.Patch.PropertyOverrides { get; set; }

Property values that need to be changed on existing objects.

public System.Collections.Generic.List`1<Sandbox.Json.RemovedObject> Sandbox.Json.Patch.RemovedObjects { get; set; }

Objects that need to be removed from the target structure.

Metadata

FieldValue
Namespaceglobal
Typeclass
AssemblySandbox.Engine
Doc IDT:Sandbox.Json.Patch

On this page