Microsoft Graph · Schema

customExtensionOverwriteConfiguration

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
behaviorOnError object
clientConfiguration object Configuration regarding properties of the custom extension which can be overwritten per event listener. If no values are provided, the properties on the custom extension are used.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphcustomextensionoverwriteconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.customExtensionOverwriteConfiguration",
  "title": "customExtensionOverwriteConfiguration",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "behaviorOnError": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.customExtensionBehaviorOnError"
        },
        {
          "type": "object",
          "nullable": true
        }
      ]
    },
    "clientConfiguration": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.customExtensionClientConfiguration"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Configuration regarding properties of the custom extension which can be overwritten per event listener. If no values are provided, the properties on the custom extension are used."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}