{ "$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 } }, "UpdateResult": { "type": "object", "properties": { "updated": { "type": "array", "items": { "type": "string", "pattern": "" } }, "unchanged": { "type": "array", "items": { "$ref": "#/definitions/UnchangedDetails" } } } } }, "allOf": [ { "$ref": "#/definitions/UpdateResult" } ] }