Auth0 · Schema

ListSelfServiceProfilesPaginatedResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

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

JSON Schema

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