{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "ErrorResponsePayload", "type": "object", "description": "A response indicating an error occurred.", "properties": { "error": { "type": "boolean", "description": "For erroneous requests, this value is always `true`." }, "status": { "type": "number", "description": "Status code" }, "message": { "type": "string", "description": "A string describing the error" } } }