An AIMLAPI API key for authentication
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/aimlapi/refs/heads/main/json-schema/aimlapi-api-key-schema.json", "title": "ApiKey", "description": "An AIMLAPI API key for authentication", "type": "object", "properties": { "id": { "type": "string", "description": "API key identifier", "example": "key-abc123" }, "name": { "type": "string", "description": "Human-readable key name", "example": "Production Key" }, "key": { "type": "string", "description": "The API key value (only shown on creation)", "example": "aiml-sk-examplekey123" }, "created_at": { "type": "string", "format": "date-time", "description": "Creation timestamp", "example": "2025-03-15T14:30:00Z" }, "status": { "type": "string", "description": "Key status: active, disabled", "example": "active" } } }