Microsoft Graph · Schema

microsoft.graph.driveItemVersion

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphdriveitemversion-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.driveItemVersion",
  "title": "microsoft.graph.driveItemVersion",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.baseItemVersion"
    },
    {
      "title": "driveItemVersion",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "content": {
          "type": "string",
          "description": "The content stream for this version of the item.",
          "format": "base64url",
          "nullable": true
        },
        "size": {
          "type": "number",
          "description": "Indicates the size of the content stream for this version of the item.",
          "format": "int64",
          "nullable": true
        },
        "@odata.type": {
          "type": "string",
          "default": "#microsoft.graph.driveItemVersion"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.driveItemVersion"
}