Auth0 · Schema

CreateConnectionRequestContentYandex

Create a connection with strategy=yandex

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
View JSON Schema on GitHub

JSON Schema

auth0-createconnectionrequestcontentyandex-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateConnectionRequestContentYandex",
  "title": "CreateConnectionRequestContentYandex",
  "description": "Create a connection with strategy=yandex",
  "allOf": [
    {
      "type": "object",
      "properties": {
        "strategy": {
          "const": "yandex"
        },
        "options": {
          "$ref": "#/components/schemas/ConnectionOptionsYandex"
        }
      },
      "required": [
        "strategy"
      ]
    },
    {
      "$ref": "#/components/schemas/CreateConnectionCommon"
    }
  ]
}