{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ScimTokenItem", "title": "ScimTokenItem", "type": "object", "additionalProperties": true, "properties": { "token_id": { "type": "string", "description": "The token's identifier" }, "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 timestamp" }, "last_used_at": { "type": "string", "description": "The token's last used at timestamp" } } }