Auth0 · Schema

ListOrganizationMembersPaginatedResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
next string
members array
View JSON Schema on GitHub

JSON Schema

auth0-listorganizationmemberspaginatedresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListOrganizationMembersPaginatedResponseContent",
  "title": "ListOrganizationMembersPaginatedResponseContent",
  "type": "object",
  "additionalProperties": true,
  "properties": {
    "next": {
      "type": "string"
    },
    "members": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/OrganizationMember"
      }
    }
  }
}