{ "$schema": "http://json-schema.org/schema#", "id": "https://forge.etsi.org/gitlab/NGSI-LD/NGSI-LD/raw/master/schema/BatchOperationResult.json", "title": "NGSI-LD Batch Operation Result", "description": "NGSI-LD Batch Operation Result", "definitions": { "BatchEntityError": { "entityId": { "type": "string", "format": "uri" }, "error": { "$ref": "https://forge.etsi.org/gitlab/NGSI-LD/NGSI-LD/raw/master/schema/common.json#/definitions/ProblemDetails" } }, "BatchOperationResult": { "type": "object", "properties": { "success": { "type": "array", "items": { "type": "string", "format": "uri" } }, "error": { "type": "array", "items": { "$ref": "#/definitions/BatchEntityError" } } } } }, "allOf": [ { "$ref": "#/definitions/BatchOperationResult" } ] }