{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateApiKeyRequest", "title": "CreateApiKeyRequest", "type": "object", "required": [ "name" ], "properties": { "name": { "type": "string", "description": "Descriptive name for the API key set" }, "scopes": { "type": "array", "items": { "type": "string" }, "description": "API scopes to authorize" } } }