Auth0 · Schema

ListClientsPaginatedResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
next string Opaque identifier for use with the from query parameter for the next page of results.
This identifier is valid for 24 hours.
clients array
View JSON Schema on GitHub

JSON Schema

auth0-listclientspaginatedresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListClientsPaginatedResponseContent",
  "title": "ListClientsPaginatedResponseContent",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "next": {
      "type": "string",
      "description": "Opaque identifier for use with the <i>from</i> query parameter for the next page of results.<br/>This identifier is valid for 24 hours."
    },
    "clients": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Client"
      }
    }
  }
}