Microsoft Graph · Schema

attributeMapping

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
defaultValue string Default value to be used in case the source property was evaluated to null. Optional.
exportMissingReferences boolean For internal use only.
flowBehavior object
flowType object
matchingPriority number If higher than 0, this attribute will be used to perform an initial match of the objects between source and target directories. The synchronization engine will try to find the matching object using at
source object Defines how a value should be extracted (or transformed) from the source object.
targetAttributeName string Name of the attribute on the target object.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphattributemapping-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.attributeMapping",
  "title": "attributeMapping",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "defaultValue": {
      "type": "string",
      "description": "Default value to be used in case the source property was evaluated to null. Optional.",
      "nullable": true
    },
    "exportMissingReferences": {
      "type": "boolean",
      "description": "For internal use only."
    },
    "flowBehavior": {
      "$ref": "#/components/schemas/microsoft.graph.attributeFlowBehavior"
    },
    "flowType": {
      "$ref": "#/components/schemas/microsoft.graph.attributeFlowType"
    },
    "matchingPriority": {
      "maximum": 2147483647,
      "minimum": -2147483648,
      "type": "number",
      "description": "If higher than 0, this attribute will be used to perform an initial match of the objects between source and target directories. The synchronization engine will try to find the matching object using attribute with lowest value of matching priority first. If not found, the attribute with the next matching priority will be used, and so on a until match is found or no more matching attributes are left. Only attributes that are expected to have unique values, such as email, should be used as matching attributes.",
      "format": "int32"
    },
    "source": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.attributeMappingSource"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Defines how a value should be extracted (or transformed) from the source object."
    },
    "targetAttributeName": {
      "type": "string",
      "description": "Name of the attribute on the target object.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}