{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SelfServiceProfileSsoTicketProvisioningConfig", "title": "SelfServiceProfileSsoTicketProvisioningConfig", "type": "object", "description": "Configuration for the setup of Provisioning in the self-service flow.", "additionalProperties": false, "x-release-lifecycle": "GA", "properties": { "scopes": { "type": "array", "description": "The scopes of the SCIM tokens generated during the self-service flow.", "minItems": 1, "items": { "$ref": "#/components/schemas/SelfServiceProfileSsoTicketProvisioningScopeEnum" } }, "google_workspace": { "$ref": "#/components/schemas/SelfServiceProfileSsoTicketGoogleWorkspaceConfig", "x-release-lifecycle": "GA" }, "token_lifetime": { "description": "Lifetime of the tokens in seconds. Must be greater than 900. If not provided, the tokens don't expire.", "type": [ "integer", "null" ], "minimum": 900 } } }