Microsoft Graph · Schema

microsoft.graph.groupAssignmentTarget

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphgroupassignmenttarget-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.groupAssignmentTarget",
  "title": "microsoft.graph.groupAssignmentTarget",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.deviceAndAppManagementAssignmentTarget"
    },
    {
      "title": "groupAssignmentTarget",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "groupId": {
          "type": "string",
          "description": "The group Id that is the target of the assignment.",
          "nullable": true
        },
        "@odata.type": {
          "type": "string",
          "default": "#microsoft.graph.groupAssignmentTarget"
        }
      },
      "description": "Represents an assignment to a group.",
      "discriminator": {
        "propertyName": "@odata.type",
        "mapping": {
          "#microsoft.graph.exclusionGroupAssignmentTarget": "#/components/schemas/microsoft.graph.exclusionGroupAssignmentTarget"
        }
      }
    }
  ]
}