Microsoft Graph · Schema

resourceReference

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
id string The item's unique identifier.
type string A string value that can be used to classify the item, such as 'microsoft.graph.driveItem'
webUrl string A URL leading to the referenced item.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphresourcereference-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.resourceReference",
  "title": "resourceReference",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The item's unique identifier.",
      "nullable": true
    },
    "type": {
      "type": "string",
      "description": "A string value that can be used to classify the item, such as 'microsoft.graph.driveItem'",
      "nullable": true
    },
    "webUrl": {
      "type": "string",
      "description": "A URL leading to the referenced item.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}