Microsoft Graph · Schema

modifiedProperty

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
displayName string Indicates the property name of the target attribute that was changed.
newValue string Indicates the updated value for the propery.
oldValue string Indicates the previous value (before the update) for the property.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphmodifiedproperty-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.modifiedProperty",
  "title": "modifiedProperty",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "displayName": {
      "type": "string",
      "description": "Indicates the property name of the target attribute that was changed.",
      "nullable": true
    },
    "newValue": {
      "type": "string",
      "description": "Indicates the updated value for the propery.",
      "nullable": true
    },
    "oldValue": {
      "type": "string",
      "description": "Indicates the previous value (before the update) for the property.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}