Auth0 · Schema

ListSCIMConfigurationsResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
scim_configurations array List of SCIM 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-listscimconfigurationsresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListSCIMConfigurationsResponseContent",
  "title": "ListSCIMConfigurationsResponseContent",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "scim_configurations"
  ],
  "properties": {
    "scim_configurations": {
      "type": "array",
      "description": "List of SCIM configurations",
      "items": {
        "$ref": "#/components/schemas/ScimConfiguration"
      }
    },
    "next": {
      "type": "string",
      "description": "The cursor to be used as the \"from\" query parameter for the next page of results."
    }
  }
}