Auth0 · Schema

ListUsersOffsetPaginatedResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
start number
limit number
length number
total number
users array
View JSON Schema on GitHub

JSON Schema

auth0-listusersoffsetpaginatedresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListUsersOffsetPaginatedResponseContent",
  "title": "ListUsersOffsetPaginatedResponseContent",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "start": {
      "type": "number"
    },
    "limit": {
      "type": "number"
    },
    "length": {
      "type": "number"
    },
    "total": {
      "type": "number"
    },
    "users": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/UserResponseSchema"
      }
    }
  }
}