Auth0 · Schema

ScimTokenItem

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
token_id string The token's identifier
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 timestamp
last_used_at string The token's last used at timestamp
View JSON Schema on GitHub

JSON Schema

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