Atlassian · Schema
CopyPageHierarchyRequest
CodeCollaborationPlatformProductivitySoftware Development
Properties
| Name | Type | Description |
|---|---|---|
| copyAttachments | boolean | If set to `true`, attachments are copied to the destination page. |
| copyPermissions | boolean | If set to `true`, page permissions are copied to the destination page. |
| copyProperties | boolean | If set to `true`, content properties are copied to the destination page. |
| copyLabels | boolean | If set to `true`, labels are copied to the destination page. |
| copyCustomContents | boolean | If set to `true`, custom contents are copied to the destination page. |
| copyDescendants | boolean | If set to `true`, descendants are copied to the destination page. |
| destinationPageId | object | |
| titleOptions | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CopyPageHierarchyRequest",
"title": "CopyPageHierarchyRequest",
"required": [
"destinationPageId"
],
"type": "object",
"properties": {
"copyAttachments": {
"type": "boolean",
"description": "If set to `true`, attachments are copied to the destination page.",
"default": false,
"example": true
},
"copyPermissions": {
"type": "boolean",
"description": "If set to `true`, page permissions are copied to the destination page.",
"default": false,
"example": true
},
"copyProperties": {
"type": "boolean",
"description": "If set to `true`, content properties are copied to the destination page.",
"default": false,
"example": true
},
"copyLabels": {
"type": "boolean",
"description": "If set to `true`, labels are copied to the destination page.",
"default": false,
"example": true
},
"copyCustomContents": {
"type": "boolean",
"description": "If set to `true`, custom contents are copied to the destination page.",
"default": false,
"example": true
},
"copyDescendants": {
"type": "boolean",
"description": "If set to `true`, descendants are copied to the destination page.",
"default": true,
"example": true
},
"destinationPageId": {
"$ref": "#/components/schemas/ContentId"
},
"titleOptions": {
"$ref": "#/components/schemas/CopyPageHierarchyTitleOptions"
}
}
}