Microsoft Graph · Schema

folderView

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
sortBy string The method by which the folder should be sorted.
sortOrder string If true, indicates that items should be sorted in descending order. Otherwise, items should be sorted ascending.
viewType string The type of view that should be used to represent the folder.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphfolderview-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.folderView",
  "title": "folderView",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "sortBy": {
      "type": "string",
      "description": "The method by which the folder should be sorted.",
      "nullable": true
    },
    "sortOrder": {
      "type": "string",
      "description": "If true, indicates that items should be sorted in descending order. Otherwise, items should be sorted ascending.",
      "nullable": true
    },
    "viewType": {
      "type": "string",
      "description": "The type of view that should be used to represent the folder.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}