{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/api403ErrorLimitReached", "title": "API Limit Reached", "type": "object", "properties": { "type": { "type": "string", "description": "The type of error.", "example": "limitReachedError" }, "title": { "type": "string", "description": "A short summary of the problem.", "example": "You've reached the API limit" }, "message": { "type": "string", "description": "The error message.", "example": "You can create up to 3 APIs on your current plan." }, "details": { "type": "object", "description": "Information about the error.", "properties": { "model": { "type": "string", "description": "The `api` model.", "enum": [ "api" ], "example": "api" }, "action": { "type": "string", "description": "The `create` action.", "enum": [ "create" ], "example": "create" }, "message": { "type": "string", "description": "The error message.", "example": "You can create up to 3 APIs on your current plan." } } } } }