{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ErrorResponse", "title": "ErrorResponse", "type": "object", "properties": { "description": { "type": "string", "description": "Human-readable error message.", "example": "A sample description." }, "error_code": { "type": "string", "description": "Machine-readable error code.", "example": "example_value" }, "service_name": { "type": "string", "description": "The API service that generated the error.", "example": "example_value" } } }