BatchOperationResult.json 877 Bytes
Newer Older
canterafonsj's avatar
canterafonsj committed
{
  "title": "NGSI-LD Batch Operation Result",
  "description": "NGSI-LD Batch Operation Result",
  "definitions": {
    "BatchEntityError": {
Stefan Wiedemann's avatar
Stefan Wiedemann committed
      "type": "object",
      "properties": {
        "entityId": {
          "type": "string",
          "format": "uri"
        },
        "error": {
Stefan Wiedemann's avatar
Stefan Wiedemann committed
          "$ref": "http://localhost:8090/schema/common.json#/definitions/ProblemDetails"
Stefan Wiedemann's avatar
Stefan Wiedemann committed
        }
canterafonsj's avatar
canterafonsj committed
      }
    },
canterafonsj's avatar
canterafonsj committed
    "BatchOperationResult": {
      "type": "object",
      "properties": {
        "success": {
          "type": "array",
          "items": {
            "type": "string",
            "format": "uri"
          }
        },
        "error": {
          "type": "array",
          "items": {
            "$ref": "#/definitions/BatchEntityError"
          }
        }
canterafonsj's avatar
canterafonsj committed
      }
    }
canterafonsj's avatar
canterafonsj committed
  },
  "allOf": [
    {
      "$ref": "#/definitions/BatchOperationResult"
    }
  ]
Stefan Wiedemann's avatar
Stefan Wiedemann committed
}