Auth0 · Schema

GetScimConfigurationResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
connection_id string The connection's identifier
connection_name string The connection's name
strategy string The connection's strategy
tenant_name string The tenant's name
user_id_attribute string User ID attribute for generating unique user ids
mapping array The mapping between auth0 and SCIM
created_at string The ISO 8601 date and time the SCIM configuration was created at
updated_on string The ISO 8601 date and time the SCIM configuration was last updated on
View JSON Schema on GitHub

JSON Schema

auth0-getscimconfigurationresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetScimConfigurationResponseContent",
  "title": "GetScimConfigurationResponseContent",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "tenant_name",
    "connection_id",
    "connection_name",
    "strategy",
    "created_at",
    "updated_on",
    "mapping",
    "user_id_attribute"
  ],
  "properties": {
    "connection_id": {
      "type": "string",
      "description": "The connection's identifier"
    },
    "connection_name": {
      "type": "string",
      "description": "The connection's name"
    },
    "strategy": {
      "type": "string",
      "description": "The connection's strategy"
    },
    "tenant_name": {
      "type": "string",
      "description": "The tenant's name"
    },
    "user_id_attribute": {
      "type": "string",
      "description": "User ID attribute for generating unique user ids"
    },
    "mapping": {
      "type": "array",
      "description": "The mapping between auth0 and SCIM",
      "items": {
        "$ref": "#/components/schemas/ScimMappingItem"
      }
    },
    "created_at": {
      "type": "string",
      "description": "The ISO 8601 date and time the SCIM configuration was created at",
      "format": "date-time"
    },
    "updated_on": {
      "type": "string",
      "description": "The ISO 8601 date and time the SCIM configuration was last updated on",
      "format": "date-time"
    }
  }
}