Auth0 · Schema

GetConnectionEnabledClientsResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
clients array Clients for which the connection is enabled
next string Encoded next token
View JSON Schema on GitHub

JSON Schema

auth0-getconnectionenabledclientsresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetConnectionEnabledClientsResponseContent",
  "title": "GetConnectionEnabledClientsResponseContent",
  "type": "object",
  "additionalProperties": true,
  "required": [
    "clients"
  ],
  "properties": {
    "clients": {
      "type": "array",
      "description": "Clients for which the connection is enabled",
      "items": {
        "$ref": "#/components/schemas/ConnectionEnabledClient"
      }
    },
    "next": {
      "type": "string",
      "description": "Encoded next token"
    }
  }
}