Auth0 · Schema

ListOrganizationMemberRolesOffsetPaginatedResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

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

JSON Schema

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