{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "ErrorResponse", "type": "object", "description": "Error response returned when a request fails.", "properties": { "@type": { "type": "string", "description": "The error type identifier." }, "statusCode": { "type": "integer", "description": "The HTTP status code." }, "message": { "type": "string", "description": "A human-readable error message." }, "description": { "type": "string", "description": "A detailed description of the error." }, "requestId": { "type": "string", "description": "The unique request ID for troubleshooting." } } }