Standard error response object.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/albertsons/refs/heads/main/json-schema/retail-media-api-error-response-schema.json", "title": "Error Response", "description": "Standard error response object.", "type": "object", "properties": { "error": { "type": "string", "description": "Error code identifier.", "example": "UNAUTHORIZED" }, "message": { "type": "string", "description": "Human-readable error message.", "example": "Invalid or missing bearer token." }, "statusCode": { "type": "integer", "description": "HTTP status code.", "example": 401 } } }