Microsoft Graph · Schema

sortProperty

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
isDescending boolean True if the sort order is descending. Default is false, with the sort order as ascending. Optional.
name string The name of the property to sort on. Required.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphsortproperty-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.sortProperty",
  "title": "sortProperty",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "isDescending": {
      "type": "boolean",
      "description": "True if the sort order is descending. Default is false, with the sort order as ascending. Optional.",
      "nullable": true
    },
    "name": {
      "type": "string",
      "description": "The name of the property to sort on. Required."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}