The standard error response object.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ErrorResponse", "title": "ErrorResponse", "type": "object", "description": "The standard error response object.", "properties": { "error": { "type": "object", "properties": { "code": { "type": "string", "description": "Error code for the failure type (e.g., BadRequest, NotFound)." }, "message": { "type": "string", "description": "A human-readable description of the error." } }, "example": "example_value" } } }