{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateScimTokenRequestContent", "title": "CreateScimTokenRequestContent", "type": "object", "description": "SCIM Token", "additionalProperties": false, "properties": { "scopes": { "type": "array", "description": "The scopes of the scim token", "minItems": 1, "items": { "type": "string", "description": "The token's scope" } }, "token_lifetime": { "type": [ "integer", "null" ], "description": "Lifetime of the token in seconds. Must be greater than 900" } } }