{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ApiKeyCreateResponse",
"title": "ApiKeyCreateResponse",
"type": "object",
"description": "Response containing the newly created API key",
"properties": {
"id": {
"type": "integer",
"format": "int64",
"description": "The API key ID"
},
"key": {
"type": "string",
"description": "The full API key value. This is only returned once at creation and cannot be retrieved again."
}
}
}