{ "type": "object", "description": "Standard error in batch operations", "name": "StandardError", "properties": { "status": { "type": "string" }, "id": { "type": "string" }, "category": { "type": "string" }, "message": { "type": "string" }, "errors": { "type": "array", "items": { "type": "object", "description": "Details about a specific error", "properties": { "message": { "type": "string" }, "code": { "type": "string" }, "subCategory": { "type": "string" }, "in": { "type": "string" }, "context": { "type": "object" } }, "required": [ "message" ] } }, "context": { "type": "object" }, "links": { "type": "object" } }, "required": [ "status", "category", "message" ], "$schema": "https://json-structure.org/draft/2020-12/schema" }