UpdateResult.json 690 Bytes
Newer Older
canterafonsj's avatar
canterafonsj committed
{
  "$schema": "http://json-schema.org/schema#",
  "id": "https://uri.etsi.org/ngsi-ld/schema/UpdateResult.json",
  "title": "NGSI-LD Update Result",
  "description": "NGSI-LD Update Result",
  "definitions": {
    "UnchangedDetails": {
      "attributeName": {
        "type": "string",
        "pattern": ""
      },
      "reason": {
        "type":"string",
        "minLenght": 1
      }
    }
  },
  "type": "object",
  "properties": {
    "updated": {
      "type": "array",
      "items": {
        "type": "string",
        "pattern": ""
      }
    },
    "unchanged": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/UnchangedDetails"
      }
    }
  }
}