Auth0 · Schema

ListClientConnectionsResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
connections array
next string Encoded next token
View JSON Schema on GitHub

JSON Schema

auth0-listclientconnectionsresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListClientConnectionsResponseContent",
  "title": "ListClientConnectionsResponseContent",
  "type": "object",
  "additionalProperties": true,
  "required": [
    "connections"
  ],
  "properties": {
    "connections": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ConnectionForList"
      }
    },
    "next": {
      "type": "string",
      "description": "Encoded next token"
    }
  }
}