Qlik Sense · Schema

JsonPatch

A JSON Patch operation per RFC 6902.

AnalyticsBusiness IntelligenceCloudData IntegrationVisualization

Properties

Name Type Description
op string The patch operation.
path string The JSON pointer to the target field.
value object The value for the operation.
View JSON Schema on GitHub

JSON Schema

qlik-sense-jsonpatch-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/JsonPatch",
  "title": "JsonPatch",
  "type": "object",
  "description": "A JSON Patch operation per RFC 6902.",
  "required": [
    "op",
    "path"
  ],
  "properties": {
    "op": {
      "type": "string",
      "description": "The patch operation.",
      "enum": [
        "add",
        "remove",
        "replace"
      ]
    },
    "path": {
      "type": "string",
      "description": "The JSON pointer to the target field."
    },
    "value": {
      "description": "The value for the operation."
    }
  }
}