{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateScimTokenResponseContent", "title": "CreateScimTokenResponseContent", "type": "object", "additionalProperties": false, "properties": { "token_id": { "type": "string", "description": "The token's identifier" }, "token": { "type": "string", "description": "The scim client's token" }, "scopes": { "type": "array", "description": "The scopes of the scim token", "items": { "type": "string", "description": "The token's scope" } }, "created_at": { "type": "string", "description": "The token's created at timestamp" }, "valid_until": { "type": "string", "description": "The token's valid until at timestamp" } } }