BatchOperationResult.json 784 Bytes
Newer Older
canterafonsj's avatar
canterafonsj committed
{
  "$schema": "http://json-schema.org/schema#",
  "id": "https://uri.etsi.org/ngsi-ld/schema/BatchOperationResult.json",
  "title": "NGSI-LD Batch Operation Result",
  "description": "NGSI-LD Batch Operation Result",
  "definitions": {
    "BatchEntityError": {
      "entityId": {
        "type": "string",
        "format": "uri"
      },
      "error": {
        "$ref": "https://forge.etsi.org/gitlab/NGSI-LD/NGSI-LD/raw/master/schema/common.json#/definitions/ProblemDetails"
      }
    }
  },
  "type": "object",
  "properties": {
    "success": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "uri"
      }
    },
    "error": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/BatchEntityError"
      }
    }
  }
}