Properties
| Name | Type | Description |
|---|---|---|
| version | object | The version for the new content. |
| title | string | The title of the content. If you don't want to change the title, set this to the current title of the draft. |
| type | string | The type of content. Set this to `page`. |
| status | string | The status of the content. Set this to `current` or omit it altogether. |
| space | object | The space for the content. |
| ancestors | array | The new ancestor (i.e. parent page) for the content. If you have specified an ancestor, you must also specify a `space` property in the request body for the space that the ancestor is in. Note, if you |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ContentBlueprintDraft",
"type": "object",
"properties": {
"version": {
"type": "object",
"description": "The version for the new content."
},
"title": {
"type": "string",
"description": "The title of the content. If you don't want to change the title,\nset this to the current title of the draft."
},
"type": {
"type": "string",
"description": "The type of content. Set this to `page`."
},
"status": {
"type": "string",
"description": "The status of the content. Set this to `current` or omit it altogether."
},
"space": {
"type": "object",
"description": "The space for the content."
},
"ancestors": {
"type": "array",
"description": "The new ancestor (i.e. parent page) for the content. If you have\nspecified an ancestor, you must also specify a `space` property\nin the request body for the space that the ancestor is in.\n\nNote, if you specify more than one ancestor, the last ID in the array\nwill be selected as the parent page for the content."
}
}
}