Auth0 · Schema

ListConnectionProfilesPaginatedResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

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

JSON Schema

auth0-listconnectionprofilespaginatedresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListConnectionProfilesPaginatedResponseContent",
  "title": "ListConnectionProfilesPaginatedResponseContent",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "next": {
      "type": "string",
      "description": "A cursor to be used as the \"from\" query parameter for the next page of results."
    },
    "connection_profiles": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ConnectionProfile"
      }
    }
  }
}