Auth0 · Schema

ConnectionResponseContentSharepoint

Response for connections with strategy=sharepoint

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
View JSON Schema on GitHub

JSON Schema

auth0-connectionresponsecontentsharepoint-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConnectionResponseContentSharepoint",
  "title": "ConnectionResponseContentSharepoint",
  "description": "Response for connections with strategy=sharepoint",
  "allOf": [
    {
      "type": "object",
      "properties": {
        "strategy": {
          "const": "sharepoint"
        },
        "options": {
          "$ref": "#/components/schemas/ConnectionOptionsSharepoint"
        },
        "show_as_button": {
          "$ref": "#/components/schemas/ConnectionShowAsButton"
        }
      },
      "required": [
        "strategy"
      ]
    },
    {
      "$ref": "#/components/schemas/ConnectionPurposes"
    },
    {
      "$ref": "#/components/schemas/ConnectionResponseCommon"
    }
  ],
  "x-release-lifecycle": "deprecated"
}