Auth0 · Schema

ListDirectoryProvisioningsResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
directory_provisionings array List of directory provisioning configurations
next string The cursor to be used as the "from" query parameter for the next page of results.
View JSON Schema on GitHub

JSON Schema

auth0-listdirectoryprovisioningsresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListDirectoryProvisioningsResponseContent",
  "title": "ListDirectoryProvisioningsResponseContent",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "directory_provisionings"
  ],
  "properties": {
    "directory_provisionings": {
      "type": "array",
      "description": "List of directory provisioning configurations",
      "items": {
        "$ref": "#/components/schemas/DirectoryProvisioning"
      }
    },
    "next": {
      "type": "string",
      "description": "The cursor to be used as the \"from\" query parameter for the next page of results."
    }
  }
}