Microsoft Graph · Schema

devicesFilter

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
mode object Determines whether devices that satisfy the rule should be allowed or blocked. The possible values are: allowed, blocked, unknownFutureValue.
rule string Defines the rule to filter the devices. For example, device.deviceAttribute2 -eq 'PrivilegedAccessWorkstation'.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphdevicesfilter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.devicesFilter",
  "title": "devicesFilter",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "mode": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.crossTenantAccessPolicyTargetConfigurationAccessType"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Determines whether devices that satisfy the rule should be allowed or blocked. The possible values are: allowed, blocked, unknownFutureValue."
    },
    "rule": {
      "type": "string",
      "description": "Defines the rule to filter the devices. For example, device.deviceAttribute2 -eq 'PrivilegedAccessWorkstation'.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}