An error response from the API.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ErrorResponse", "title": "Error Response", "type": "object", "description": "An error response from the API.", "properties": { "code": { "type": "integer", "description": "HTTP error code.", "example": 404 }, "type": { "type": "string", "description": "Error type.", "example": "BLZWEBAPI00000404" }, "detail": { "type": "string", "description": "A description of the error.", "example": "Not Found" } } }