Microsoft Graph · Schema

microsoft.graph.security.securityGroupEvidence

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphsecuritysecuritygroupevidence-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.security.securityGroupEvidence",
  "title": "microsoft.graph.security.securityGroupEvidence",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.security.alertEvidence"
    },
    {
      "title": "securityGroupEvidence",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "activeDirectoryObjectGuid": {
          "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$",
          "type": "string",
          "description": "The unique group identifier assigned by the on-premises Active Directory.",
          "format": "uuid",
          "nullable": true
        },
        "displayName": {
          "type": "string",
          "description": "The name of the security group.",
          "nullable": true
        },
        "distinguishedName": {
          "type": "string",
          "description": "The distinguished name of the security group.",
          "nullable": true
        },
        "friendlyName": {
          "type": "string",
          "description": "The friendly name of the security group.",
          "nullable": true
        },
        "securityGroupId": {
          "type": "string",
          "description": "Unique identifier of the security group.",
          "nullable": true
        },
        "sid": {
          "type": "string",
          "description": "The security identifier of the group.",
          "nullable": true
        },
        "@odata.type": {
          "type": "string",
          "default": "#microsoft.graph.security.securityGroupEvidence"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.security.securityGroupEvidence"
}