Microsoft Graph · Schema

synchronizationError

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
code string The error code. For example, AzureDirectoryB2BManagementPolicyCheckFailure.
message string The error message. For example, Policy permitting auto-redemption of invitations not configured.
tenantActionable boolean The action to take to resolve the error. For example, false.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphsynchronizationerror-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.synchronizationError",
  "title": "synchronizationError",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "description": "The error code. For example, AzureDirectoryB2BManagementPolicyCheckFailure.",
      "nullable": true
    },
    "message": {
      "type": "string",
      "description": "The error message. For example, Policy permitting auto-redemption of invitations not configured.",
      "nullable": true
    },
    "tenantActionable": {
      "type": "boolean",
      "description": "The action to take to resolve the error. For example, false."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}