UpdateResult.json 885 Bytes
Newer Older
canterafonsj's avatar
canterafonsj committed
{
  "$schema": "http://json-schema.org/schema#",
  "$id": "https://forge.etsi.org/rep/NGSI-LD/NGSI-LD/raw/master/schema/UpdateResult.json",
canterafonsj's avatar
canterafonsj committed
  "title": "NGSI-LD Update Result",
  "description": "NGSI-LD Update Result",
  "definitions": {
canterafonsj's avatar
canterafonsj committed
    "NotUpdatedDetails": {
canterafonsj's avatar
canterafonsj committed
      "attributeName": {
        "type": "string",
        "pattern": ""
      },
      "reason": {
        "type": "string",
canterafonsj's avatar
canterafonsj committed
        "minLenght": 1
canterafonsj's avatar
canterafonsj committed
      }
    },
canterafonsj's avatar
canterafonsj committed
    "UpdateResult": {
      "type": "object",
      "properties": {
        "updated": {
          "type": "array",
          "items": {
            "type": "string",
            "pattern": ""
          }
        },
canterafonsj's avatar
canterafonsj committed
        "notUpdated": {
canterafonsj's avatar
canterafonsj committed
          "type": "array",
          "items": {
canterafonsj's avatar
canterafonsj committed
            "$ref": "#/definitions/NotUpdatedDetails"
canterafonsj's avatar
canterafonsj committed
          }
        }
canterafonsj's avatar
canterafonsj committed
      }
    }
canterafonsj's avatar
canterafonsj committed
  },
  "allOf": [
    {
      "$ref": "#/definitions/UpdateResult"
    }
  ]
canterafonsj's avatar
canterafonsj committed
}