Microsoft Graph · Schema

bundle

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
album object If the bundle is an album, then the album property is included
childCount number Number of children contained immediately within this container.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphbundle-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.bundle",
  "title": "bundle",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "album": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.album"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "If the bundle is an album, then the album property is included"
    },
    "childCount": {
      "maximum": 2147483647,
      "minimum": -2147483648,
      "type": "number",
      "description": "Number of children contained immediately within this container.",
      "format": "int32",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}