Auth0 · Schema

CreateScimConfigurationRequestContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
user_id_attribute string User ID attribute for generating unique user ids
mapping array The mapping between auth0 and SCIM
View JSON Schema on GitHub

JSON Schema

auth0-createscimconfigurationrequestcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateScimConfigurationRequestContent",
  "title": "CreateScimConfigurationRequestContent",
  "type": [
    "object",
    "null"
  ],
  "additionalProperties": false,
  "properties": {
    "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"
      }
    }
  }
}