Microsoft Graph · Schema

crossTenantAccessPolicyB2BSetting

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
applications object The list of applications targeted with your cross-tenant access policy.
usersAndGroups object The list of users and groups targeted with your cross-tenant access policy.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphcrosstenantaccesspolicyb2bsetting-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.crossTenantAccessPolicyB2BSetting",
  "title": "crossTenantAccessPolicyB2BSetting",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "applications": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.crossTenantAccessPolicyTargetConfiguration"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "The list of applications targeted with your cross-tenant access policy."
    },
    "usersAndGroups": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.crossTenantAccessPolicyTargetConfiguration"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "The list of users and groups targeted with your cross-tenant access policy."
    },
    "@odata.type": {
      "type": "string"
    }
  },
  "discriminator": {
    "propertyName": "@odata.type",
    "mapping": {
      "#microsoft.graph.crossTenantAccessPolicyTenantRestrictions": "#/components/schemas/microsoft.graph.crossTenantAccessPolicyTenantRestrictions"
    }
  }
}