{
"$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"
}
}
}