{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ApiKeyCreateResponse", "title": "ApiKeyCreateResponse", "type": "object", "description": "Response after creating an API key", "properties": { "id": { "type": "string", "format": "uuid", "description": "API key UUID" }, "token": { "type": "string", "description": "The API key secret token (only returned once at creation time)" } } }