Auth0 · Schema

CreateConnectionRequestContentEvernote

Create a connection with strategy=evernote

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
View JSON Schema on GitHub

JSON Schema

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