Skip to content

Latest commit

 

History

History
59 lines (47 loc) · 1.46 KB

File metadata and controls

59 lines (47 loc) · 1.46 KB
title filterGroup resource type
description Defines a set of clauses that an object must satisfy to be considered in scope.
ms.localizationpriority medium
doc_type resourcePageType
author ArvindHarinder1
ms.subservice entra-applications
ms.date 07/22/2024

filterGroup resource type

Namespace: microsoft.graph

Defines a set of clauses that an object must satisfy to be considered in scope. An object is considered in scope for the group (the group is evaluated to true) only if all the clauses of the group are evaluated to true.

Properties

Property Type Description
clauses filterClause collection Filter clauses (conditions) of this group. All clauses in a group must be satisfied in order for the filter group to evaluate to true.
name String Human-readable name of the filter group.

JSON representation

The following JSON representation shows the resource type.

{
  "clauses": [
    {
      "@odata.type": "microsoft.graph.filterClause"
    }
  ],
  "name": "String"
}