TM Forum · Schema

JsonPatch

A JSONPatch document as defined by RFC 6902

TelcoTelecommunicationsBSSOSSOpen APIsStandards

Properties

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

JSON Schema

tmf621-trouble-ticket-json-patch-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/tm-forum/refs/heads/main/json-schema/tmf621-trouble-ticket-json-patch-schema.json",
  "title": "JsonPatch",
  "description": "A JSONPatch document as defined by RFC 6902",
  "type": "object",
  "required": [
    "op",
    "path"
  ],
  "properties": {
    "op": {
      "type": "string",
      "description": "The operation to be performed",
      "enum": [
        "add",
        "remove",
        "replace",
        "move",
        "copy",
        "test"
      ]
    },
    "path": {
      "type": "string",
      "description": "A JSON-Pointer"
    },
    "value": {
      "description": "The value to be used within the operations."
    },
    "from": {
      "type": "string",
      "description": "A string containing a JSON Pointer value."
    }
  }
}