{ "$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": { "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" } ] }