Auth0 · Schema

ListGroupsPaginatedResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
groups array
next string A cursor to be used as the "from" query parameter for the next page of results.
start number
limit number
total number
View JSON Schema on GitHub

JSON Schema

auth0-listgroupspaginatedresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListGroupsPaginatedResponseContent",
  "title": "ListGroupsPaginatedResponseContent",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "groups"
  ],
  "properties": {
    "groups": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Group"
      }
    },
    "next": {
      "type": "string",
      "description": "A cursor to be used as the \"from\" query parameter for the next page of results."
    },
    "start": {
      "type": "number"
    },
    "limit": {
      "type": "number"
    },
    "total": {
      "type": "number"
    }
  }
}