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