Microsoft Graph · Schema

itemActionStat

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
actionCount number The number of times the action took place. Read-only.
actorCount number The number of distinct actors that performed the action. Read-only.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphitemactionstat-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.itemActionStat",
  "title": "itemActionStat",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "actionCount": {
      "maximum": 2147483647,
      "minimum": -2147483648,
      "type": "number",
      "description": "The number of times the action took place. Read-only.",
      "format": "int32",
      "nullable": true
    },
    "actorCount": {
      "maximum": 2147483647,
      "minimum": -2147483648,
      "type": "number",
      "description": "The number of distinct actors that performed the action. Read-only.",
      "format": "int32",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}