Auth0 · Schema

ListAculsOffsetPaginatedResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
configs array
start number the index of the first configuration in the response (before filtering)
limit number the maximum number of configurations shown per page (before filtering)
total number the total number of configurations on this tenant
View JSON Schema on GitHub

JSON Schema

auth0-listaculsoffsetpaginatedresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListAculsOffsetPaginatedResponseContent",
  "title": "ListAculsOffsetPaginatedResponseContent",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "configs": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ListAculsResponseContentItem"
      }
    },
    "start": {
      "type": "number",
      "description": "the index of the first configuration in the response (before filtering)"
    },
    "limit": {
      "type": "number",
      "description": "the maximum number of configurations shown per page (before filtering)"
    },
    "total": {
      "type": "number",
      "description": "the total number of configurations on this tenant"
    }
  }
}