Microsoft Graph · Schema

synchronizationLinkedObjects

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
manager object
members array All group members that you would like to provision.
owners array
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphsynchronizationlinkedobjects-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.synchronizationLinkedObjects",
  "title": "synchronizationLinkedObjects",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "manager": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.synchronizationJobSubject"
        },
        {
          "type": "object",
          "nullable": true
        }
      ]
    },
    "members": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.synchronizationJobSubject"
      },
      "description": "All group members that you would like to provision."
    },
    "owners": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.synchronizationJobSubject"
      }
    },
    "@odata.type": {
      "type": "string"
    }
  }
}