Microsoft Graph · Schema

simulationEventsContent

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
compromisedRate object Actual percentage of users who fell for the simulated attack in an attack simulation and training campaign.
events array List of simulation events in an attack simulation and training campaign.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphsimulationeventscontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.simulationEventsContent",
  "title": "simulationEventsContent",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "compromisedRate": {
      "oneOf": [
        {
          "type": "number",
          "format": "double",
          "nullable": true
        },
        {
          "type": "string",
          "nullable": true
        },
        {
          "$ref": "#/components/schemas/ReferenceNumeric"
        }
      ],
      "description": "Actual percentage of users who fell for the simulated attack in an attack simulation and training campaign."
    },
    "events": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.simulationEvent"
      },
      "description": "List of simulation events in an attack simulation and training campaign."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}