Azure DevOps · Schema

JsonPatchOperation

AzureCI/CDDevOpsPipelinesWork Items

Properties

Name Type Description
op string
path string JSON Pointer path to the field
value string New value for add/replace operations
from string Source path for copy/move operations
View JSON Schema on GitHub

JSON Schema

azure-devops-work-items-json-patch-operation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "JsonPatchOperation",
  "type": "object",
  "properties": {
    "op": {
      "type": "string"
    },
    "path": {
      "type": "string",
      "description": "JSON Pointer path to the field"
    },
    "value": {
      "type": "string",
      "description": "New value for add/replace operations"
    },
    "from": {
      "type": "string",
      "description": "Source path for copy/move operations"
    }
  }
}