Microsoft Graph · Schema

policyBinding

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
exclusions array Specifies the users or groups to be explicitly excluded from this policy scope. Can be null or empty.
inclusions array Specifies the users or groups to be included in this policy scope. Often set to tenantScope for 'All users'.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphpolicybinding-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.policyBinding",
  "title": "policyBinding",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "exclusions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.scopeBase"
      },
      "description": "Specifies the users or groups to be explicitly excluded from this policy scope. Can be null or empty."
    },
    "inclusions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.scopeBase"
      },
      "description": "Specifies the users or groups to be included in this policy scope. Often set to tenantScope for 'All users'."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}