Auth0 · Schema

CreateScimTokenRequestContent

SCIM Token

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
scopes array The scopes of the scim token
token_lifetime integernull Lifetime of the token in seconds. Must be greater than 900
View JSON Schema on GitHub

JSON Schema

auth0-createscimtokenrequestcontent-schema.json Raw ↑
{
  "$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"
    }
  }
}