{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ErrorResponse", "title": "ErrorResponse", "type": "object", "description": "Error response.", "properties": { "error": { "type": "object", "description": "The error object.", "properties": { "code": { "type": "string" }, "message": { "type": "string" }, "target": { "type": "string" }, "details": { "type": "array", "items": { "type": "object", "properties": { "code": { "type": "string" }, "message": { "type": "string" }, "target": { "type": "string" } } } }, "additionalInfo": { "type": "array", "items": { "type": "object", "properties": { "type": { "type": "string" }, "info": { "type": "object" } } } } }, "example": "example_value" } } }