Auth0 · Schema

ConnectionResponseContentBox

Response for connections with strategy=box

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
View JSON Schema on GitHub

JSON Schema

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