Microsoft Graph · Schema

simulationReport

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
overview object Overview of an attack simulation and training campaign.
simulationUsers array The tenant users and their online actions in an attack simulation and training campaign.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphsimulationreport-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.simulationReport",
  "title": "simulationReport",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "overview": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.simulationReportOverview"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Overview of an attack simulation and training campaign."
    },
    "simulationUsers": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.userSimulationDetails"
      },
      "description": "The tenant users and their online actions in an attack simulation and training campaign."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}