Microsoft Graph · Schema

eventQuery

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
query string Represents unique identification for the query. 'Asset ID' for SharePoint Online and OneDrive for Business, 'keywords' for Exchange Online.
queryType object Represents the type of query associated with an event. 'files' for SPO and ODB and 'messages' for EXO.The possible values are: files, messages, unknownFutureValue.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphsecurityeventquery-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.security.eventQuery",
  "title": "eventQuery",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "Represents unique identification for the  query. 'Asset ID' for SharePoint Online and OneDrive for Business, 'keywords' for Exchange Online."
    },
    "queryType": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.security.queryType"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Represents the type of query associated with an event. 'files' for SPO and ODB and 'messages' for EXO.The possible values are: files, messages, unknownFutureValue."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}