Auth0 · Schema

ConnectionResponseCommon

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
View JSON Schema on GitHub

JSON Schema

auth0-connectionresponsecommon-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConnectionResponseCommon",
  "title": "ConnectionResponseCommon",
  "allOf": [
    {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "id": {
          "$ref": "#/components/schemas/ConnectionId"
        },
        "realms": {
          "$ref": "#/components/schemas/ConnectionRealms"
        }
      }
    },
    {
      "$ref": "#/components/schemas/CreateConnectionCommon"
    }
  ],
  "required": [
    "display_name",
    "id",
    "name",
    "strategy"
  ]
}