Microsoft Graph · Schema

documentSetContent

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
contentType object Content type information of the file.
fileName string Name of the file in resource folder that should be added as a default content or a template in the document set.
folderName string Folder name in which the file will be placed when a new document set is created in the library.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphdocumentsetcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.documentSetContent",
  "title": "documentSetContent",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "contentType": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.contentTypeInfo"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Content type information of the file."
    },
    "fileName": {
      "type": "string",
      "description": "Name of the file in resource folder that should be added as a default content or a template in the document set.",
      "nullable": true
    },
    "folderName": {
      "type": "string",
      "description": "Folder name in which the file will be placed when a new document set is created in the library.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}