Auth0 · Schema

CreateConnectionRequestContentBitly

Create a connection with strategy=bitly

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
View JSON Schema on GitHub

JSON Schema

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