Auth0 · Schema

CreateScimTokenResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
token_id string The token's identifier
token string The scim client's token
scopes array The scopes of the scim token
created_at string The token's created at timestamp
valid_until string The token's valid until at timestamp
View JSON Schema on GitHub

JSON Schema

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