{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TooManyRequestsErrorResponse", "title": "TooManyRequestsErrorResponse", "type": "object", "required": [ "meta", "error" ], "properties": { "meta": { "$ref": "#/components/schemas/Meta" }, "error": { "$ref": "#/components/schemas/BaseError" } }, "description": "Error response when the client has sent too many requests in a given time period. This occurs when you've exceeded a rate limit or quota for the resource you're accessing.\n\nThe rate limit resets automatically after the time window expires. To avoid this error:\n- Implement exponential backoff when retrying requests\n- Cache results where appropriate to reduce request frequency\n- Check the error detail message for specific quota information\n- Contact support if you need a higher quota for your use case" }