Auth0 · Schema

CreateConnectionRequestContentGoogleOAuth2

Create a connection with strategy=google-oauth2

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
View JSON Schema on GitHub

JSON Schema

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