{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ApiToken", "title": "ApiToken", "type": "object", "properties": { "id": { "type": "string", "format": "uuid" }, "key": { "type": "string", "description": "The API token value (only returned on creation)" }, "name": { "type": "string" }, "privileges": { "type": "array", "items": { "$ref": "#/components/schemas/Privilege" } }, "created_time": { "type": "number" } } }