Auth0 · Schema

ConnectionResponseContentCustom

Response for connections with strategy=custom

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
View JSON Schema on GitHub

JSON Schema

auth0-connectionresponsecontentcustom-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConnectionResponseContentCustom",
  "title": "ConnectionResponseContentCustom",
  "description": "Response for connections with strategy=custom",
  "allOf": [
    {
      "type": "object",
      "properties": {
        "strategy": {
          "const": "custom"
        },
        "options": {
          "$ref": "#/components/schemas/ConnectionOptionsCustom"
        },
        "provisioning_ticket_url": {
          "$ref": "#/components/schemas/ConnectionProvisioningTicketUrl"
        }
      },
      "required": [
        "strategy"
      ]
    },
    {
      "$ref": "#/components/schemas/ConnectionPurposes"
    },
    {
      "$ref": "#/components/schemas/ConnectionResponseCommon"
    }
  ]
}