Microsoft Graph · Schema

auditProperty

A class containing the properties for Audit Property.

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
displayName string Display name.
newValue string New value.
oldValue string Old value.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphauditproperty-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.auditProperty",
  "title": "auditProperty",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "displayName": {
      "type": "string",
      "description": "Display name.",
      "nullable": true
    },
    "newValue": {
      "type": "string",
      "description": "New value.",
      "nullable": true
    },
    "oldValue": {
      "type": "string",
      "description": "Old value.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  },
  "description": "A class containing the properties for Audit Property."
}