Microsoft Graph · Schema

securityResource

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
resource string Name of the resource that is related to current alert. Required.
resourceType object Represents type of security resources related to an alert. The possible values are: attacked, related.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphsecurityresource-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.securityResource",
  "title": "securityResource",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "resource": {
      "type": "string",
      "description": "Name of the resource that is related to current alert. Required.",
      "nullable": true
    },
    "resourceType": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.securityResourceType"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Represents type of security resources related to an alert. The possible values are: attacked, related."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}