{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/avalanche/main/json-schema/TooManyRequests.json", "title": "TooManyRequests", "type": "object", "properties": { "message": { "description": "The error message describing the reason for the exception", "oneOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ] }, "statusCode": { "type": "number", "description": "The HTTP status code of the response", "examples": [ 429 ] }, "error": { "type": "string", "description": "The type of error", "examples": [ "Too Many Requests" ] } }, "required": [ "message", "statusCode", "error" ] }