Skip to content

Latest commit

 

History

History
50 lines (39 loc) · 2.06 KB

File metadata and controls

50 lines (39 loc) · 2.06 KB
title documentSet resource type
description Contains the metadata about the document set settings.
author swapnil1993
ms.localizationpriority medium
ms.subservice sharepoint
doc_type resourcePageType
ms.date 03/12/2024

documentSet resource type

Namespace: microsoft.graph

Represents a document set in SharePoint. A document set is a group of related documents that you can manage as a single entity.

Properties

Property Type Description
allowedContentTypes Collection(microsoft.graph.contentTypeInfo) Content types allowed in document set.
defaultContents Collection(microsoft.graph.documentSetContent) Default contents of document set.
propagateWelcomePageChanges Boolean Specifies whether to push welcome page changes to inherited content types.
shouldPrefixNameToFile Boolean Indicates whether to add the name of the document set to each file name.
welcomePageUrl string Welcome page absolute URL.

Relationships

Relationship Type Description
sharedColumns Collection(microsoft.graph.columnDefinition) Columns edited on the document set that synchronize to all documents in the set. These are read-only on the documents themselves.
welcomePageColumns Collection(microsoft.graph.columnDefinition) Specifies columns to show on the welcome page for the document set.

JSON representation

The following is a JSON representation of a documentSet resource.

{
  "allowedContentTypes": [{ "@type": "microsoft.graph.contentTypeInfo" }],
  "defaultContents": [{ "@type": "microsoft.graph.documentSetContent" }],
  "propagateWelcomePageChanges": false,
  "shouldPrefixNameToFile": true,
  "welcomePageUrl": "string"
}