Microsoft Graph · Schema

eventPropagationResult

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
location string The name of the specific location in the workload associated with the event.
serviceName string The name of the workload associated with the event.
status object Indicates the status of the event creation request. The possible values are: none, inProcessing, failed, success, unknownFutureValue.
statusInformation string Additional information about the status of the event creation request.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphsecurityeventpropagationresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.security.eventPropagationResult",
  "title": "eventPropagationResult",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "location": {
      "type": "string",
      "description": "The name of the specific location in the workload associated with the event.",
      "nullable": true
    },
    "serviceName": {
      "type": "string",
      "description": "The name of the workload associated with the event.",
      "nullable": true
    },
    "status": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.security.eventPropagationStatus"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Indicates the status of the event creation request. The possible values are: none, inProcessing, failed, success, unknownFutureValue."
    },
    "statusInformation": {
      "type": "string",
      "description": "Additional information about the status of the event creation request.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}