Webex · Schema

PatchDocument

A JSONPatch document as defined by RFC 6902

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
op string The operation to be performed
path string A JSON-Pointer
value string The value to be used within the operations.
View JSON Schema on GitHub

JSON Schema

webex-patchdocument-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PatchDocument",
  "title": "PatchDocument",
  "required": [
    "op",
    "path"
  ],
  "type": "object",
  "properties": {
    "op": {
      "type": "string",
      "description": "The operation to be performed ",
      "example": "update",
      "enum": [
        "add",
        "update",
        "remove"
      ]
    },
    "path": {
      "type": "string",
      "description": "A JSON-Pointer",
      "example": "/name"
    },
    "value": {
      "type": "string",
      "description": "The value to be used within the operations.",
      "example": "test"
    }
  },
  "description": "A JSONPatch document as defined by RFC 6902"
}