Microsoft Graph · Schema

driveItemSource

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
application object Enumeration value that indicates the source application where the file was created.
externalId string The external identifier for the drive item from the source.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphdriveitemsource-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.driveItemSource",
  "title": "driveItemSource",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "application": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.driveItemSourceApplication"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Enumeration value that indicates the source application where the file was created."
    },
    "externalId": {
      "type": "string",
      "description": "The external identifier for the drive item from the source.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}