Auth0 · Schema

CreateConnectionRequestContentSAML

Create a connection with strategy=samlp

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
View JSON Schema on GitHub

JSON Schema

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