Microsoft Graph · Schema

crossTenantAccessPolicyTargetConfiguration

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
accessType object Defines whether access is allowed or blocked. The possible values are: allowed, blocked, unknownFutureValue.
targets array Specifies whether to target users, groups, or applications with this rule.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphcrosstenantaccesspolicytargetconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.crossTenantAccessPolicyTargetConfiguration",
  "title": "crossTenantAccessPolicyTargetConfiguration",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "accessType": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.crossTenantAccessPolicyTargetConfigurationAccessType"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Defines whether access is allowed or blocked. The possible values are: allowed, blocked, unknownFutureValue."
    },
    "targets": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.crossTenantAccessPolicyTarget"
      },
      "description": "Specifies whether to target users, groups, or applications with this rule."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}