Auth0 · Schema

ConnectionResponseContentOIDC

Response for connections with strategy=oidc

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
View JSON Schema on GitHub

JSON Schema

auth0-connectionresponsecontentoidc-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConnectionResponseContentOIDC",
  "title": "ConnectionResponseContentOIDC",
  "description": "Response for connections with strategy=oidc",
  "allOf": [
    {
      "type": "object",
      "properties": {
        "strategy": {
          "const": "oidc"
        },
        "authentication": {
          "$ref": "#/components/schemas/ConnectionAuthenticationPurpose"
        },
        "connected_accounts": {
          "$ref": "#/components/schemas/ConnectionConnectedAccountsPurposeXAA"
        },
        "options": {
          "$ref": "#/components/schemas/ConnectionOptionsOIDC"
        },
        "show_as_button": {
          "$ref": "#/components/schemas/ConnectionShowAsButton"
        }
      },
      "required": [
        "strategy"
      ]
    },
    {
      "$ref": "#/components/schemas/ConnectionResponseCommon"
    }
  ]
}