Microsoft Graph · Schema

folder

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
childCount number Number of children contained immediately within this container.
view object A collection of properties defining the recommended view for the folder.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphfolder-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.folder",
  "title": "folder",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "childCount": {
      "maximum": 2147483647,
      "minimum": -2147483648,
      "type": "number",
      "description": "Number of children contained immediately within this container.",
      "format": "int32",
      "nullable": true
    },
    "view": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.folderView"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "A collection of properties defining the recommended view for the folder."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}