Microsoft Graph · Schema

accountTargetContent

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
type object The type of account target content. The possible values are: unknown, includeAll, addressBook, unknownFutureValue.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphaccounttargetcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.accountTargetContent",
  "title": "accountTargetContent",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "type": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.accountTargetContentType"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "The type of account target content. The possible values are: unknown, includeAll, addressBook, unknownFutureValue."
    },
    "@odata.type": {
      "type": "string"
    }
  },
  "discriminator": {
    "propertyName": "@odata.type",
    "mapping": {
      "#microsoft.graph.addressBookAccountTargetContent": "#/components/schemas/microsoft.graph.addressBookAccountTargetContent",
      "#microsoft.graph.includeAllAccountTargetContent": "#/components/schemas/microsoft.graph.includeAllAccountTargetContent"
    }
  }
}