Microsoft Graph · Schema

collapseProperty

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
fields array Defines the collapse group to trim results. The properties in this collection must be sortable/refinable properties. Required.
limit number Defines a maximum limit count for this field. This numeric value must be a positive integer. Required.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphcollapseproperty-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.collapseProperty",
  "title": "collapseProperty",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "fields": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Defines the collapse group to trim results. The properties in this collection must be sortable/refinable properties. Required."
    },
    "limit": {
      "maximum": 32767,
      "minimum": -32768,
      "type": "number",
      "description": "Defines a maximum limit count for this field. This numeric value must be a positive integer. Required.",
      "format": "int16"
    },
    "@odata.type": {
      "type": "string"
    }
  }
}