Auth0 · Schema

CreateDirectoryProvisioningRequestContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
mapping array The mapping between Auth0 and IDP user attributes
synchronize_automatically boolean Whether periodic automatic synchronization is enabled
synchronize_groups object
View JSON Schema on GitHub

JSON Schema

auth0-createdirectoryprovisioningrequestcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateDirectoryProvisioningRequestContent",
  "title": "CreateDirectoryProvisioningRequestContent",
  "type": [
    "object",
    "null"
  ],
  "additionalProperties": false,
  "properties": {
    "mapping": {
      "type": "array",
      "description": "The mapping between Auth0 and IDP user attributes",
      "minItems": 1,
      "items": {
        "$ref": "#/components/schemas/DirectoryProvisioningMappingItem"
      }
    },
    "synchronize_automatically": {
      "type": "boolean",
      "description": "Whether periodic automatic synchronization is enabled"
    },
    "synchronize_groups": {
      "$ref": "#/components/schemas/SynchronizeGroupsEnum",
      "x-release-lifecycle": "EA"
    }
  }
}