Microsoft Graph · Schema
documentSet
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
Properties
| Name | Type | Description |
|---|---|---|
| allowedContentTypes | array | Content types allowed in document set. |
| defaultContents | array | 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. |
| sharedColumns | array | |
| welcomePageColumns | array | |
| @odata.type | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.documentSet",
"title": "documentSet",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"allowedContentTypes": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.contentTypeInfo"
},
"description": "Content types allowed in document set."
},
"defaultContents": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.documentSetContent"
},
"description": "Default contents of document set."
},
"propagateWelcomePageChanges": {
"type": "boolean",
"description": "Specifies whether to push welcome page changes to inherited content types.",
"nullable": true
},
"shouldPrefixNameToFile": {
"type": "boolean",
"description": "Indicates whether to add the name of the document set to each file name.",
"nullable": true
},
"welcomePageUrl": {
"type": "string",
"description": "Welcome page absolute URL.",
"nullable": true
},
"sharedColumns": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.columnDefinition"
},
"x-ms-navigationProperty": true
},
"welcomePageColumns": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.columnDefinition"
},
"x-ms-navigationProperty": true
},
"@odata.type": {
"type": "string"
}
}
}