Microsoft Graph · Schema

aggregationOption

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
bucketDefinition object
field string Computes aggregation on the field while the field exists in the current entity type. Required.
size number The number of searchBucket resources to be returned. This isn't required when the range is provided manually in the search request. The minimum accepted size is 1, and the maximum is 65535. Optional.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphaggregationoption-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.aggregationOption",
  "title": "aggregationOption",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "bucketDefinition": {
      "$ref": "#/components/schemas/microsoft.graph.bucketAggregationDefinition"
    },
    "field": {
      "type": "string",
      "description": "Computes aggregation on the field while the field exists in the current entity type. Required."
    },
    "size": {
      "maximum": 2147483647,
      "minimum": -2147483648,
      "type": "number",
      "description": "The number of searchBucket resources to be returned. This isn't required when the range is provided manually in the search request. The minimum accepted size is 1, and the maximum is 65535. Optional.",
      "format": "int32",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}