{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ErrorResponse", "title": "ErrorResponse", "type": "object", "properties": { "status": { "type": "integer", "description": "HTTP status code", "example": 400 }, "message": { "type": "string", "description": "Error message", "example": "Invalid request parameters" }, "code": { "type": "string", "description": "Error code", "example": "INVALID_PARAMS" } } }