Microsoft Graph · Schema

featureTarget

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
id string The ID of the entity that's targeted in the include or exclude rule, or all_users to target all users.
targetType object The kind of entity that's targeted. The possible values are: group, administrativeUnit, role, unknownFutureValue.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphfeaturetarget-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.featureTarget",
  "title": "featureTarget",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The ID of the entity that's targeted in the include or exclude rule, or all_users to target all users.",
      "nullable": true
    },
    "targetType": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.featureTargetType"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "The kind of entity that's targeted. The possible values are: group, administrativeUnit, role, unknownFutureValue."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}