Microsoft Graph · Schema

filterGroup

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
clauses array 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.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphfiltergroup-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.filterGroup",
  "title": "filterGroup",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "clauses": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.filterClause"
      },
      "description": "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": {
      "type": "string",
      "description": "Human-readable name of the filter group.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}