Newer
Older
{
"title": "NGSI-LD Batch Operation Result",
"description": "NGSI-LD Batch Operation Result",
"definitions": {
"BatchEntityError": {
"type": "object",
"properties": {
"entityId": {
"type": "string",
"format": "uri"
},
"error": {
"$ref": "https://forge.etsi.org/rep/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"
}
]