{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/ahasend/refs/heads/main/json-schema/api-access-denied-response-schema.json", "title": "AccessDeniedResponse", "description": "AccessDeniedResponse schema from AhaSend API", "type": "object", "properties": { "status": { "type": "string", "description": "The reason your request failed.", "examples": [ "invalid credentials", "domain DNS config is not valid" ], "example": "example_value" } }, "example": { "status": "invalid credentials" } }