Definition Patch
definitions_Patch.html#/definitions/Patch/items
Diagram
Type array
Constraints
Unique Items : false

Array Items
Additional Items true
Used by
Source

 "Patch": {
  "type": "array",
  "items": {
    "type": "object",
    "required": [
      "op",
      "path"
    ],
    "properties": {
      "op": {
        "type": "string",
        "enum": [
          "add",
          "replace",
          "remove"
        ]
      },
      "path": {
        "type": "string",
        "description": "An RFC6901 JSON Pointer pointing to the Item document, an Item Attribute, and Item Field by Field ID, or an Item Field Attribute",
        "example": "/fields/06gnn2b95example10q91512p5/label"
      },
      "value": {"type": "object"}
    }
  }
}


Definition Patch/items
definitions_Patch.html#/definitions/Patch/items/properties/op definitions_Patch.html#/definitions/Patch/items/properties/path definitions_Patch.html#/definitions/Patch/items/properties/value
Diagram
Type object
Properties
Name Occurrence
op
path
value
required
required
optional
Additional Properties true
Used by
Schema
Patch
Source

 "items": {
  "type": "object",
  "required": [
    "op",
    "path"
  ],
  "properties": {
    "op": {
      "type": "string",
      "enum": [
        "add",
        "replace",
        "remove"
      ]
    },
    "path": {
      "type": "string",
      "description": "An RFC6901 JSON Pointer pointing to the Item document, an Item Attribute, and Item Field by Field ID, or an Item Field Attribute",
      "example": "/fields/06gnn2b95example10q91512p5/label"
    },
    "value": {"type": "object"}
  }
}


Definition op
Diagram
Type string
Enumeration
Values
add
replace
remove
Used by
Schema
Patch/items
Source

 "op": {
  "type": "string",
  "enum": [
    "add",
    "replace",
    "remove"
  ]
}


Definition path
Annotations
Description  An RFC6901 JSON Pointer pointing to the Item document, an Item Attribute, and Item Field by Field ID, or an Item Field Attribute
Diagram
Type string
Used by
Schema
Patch/items
Source

 "path": {
  "type": "string",
  "description": "An RFC6901 JSON Pointer pointing to the Item document, an Item Attribute, and Item Field by Field ID, or an Item Field Attribute",
  "example": "/fields/06gnn2b95example10q91512p5/label"
}


Definition value
Diagram
Type object
Additional Properties true
Used by
Schema
Patch/items
Source

 "value": {"type": "object"}