Auth0 · Schema

LinkedClientConfiguration

Configuration for linked clients in the OIN Express Configuration feature.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
client_id string The ID of the linked client.
View JSON Schema on GitHub

JSON Schema

auth0-linkedclientconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LinkedClientConfiguration",
  "title": "LinkedClientConfiguration",
  "type": "object",
  "description": "Configuration for linked clients in the OIN Express Configuration feature.",
  "additionalProperties": false,
  "required": [
    "client_id"
  ],
  "properties": {
    "client_id": {
      "type": "string",
      "description": "The ID of the linked client.",
      "format": "client-id"
    }
  }
}