Atlassian · Schema
Content
Base object for all content types.
CodeCollaborationPlatformProductivitySoftware Development
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| type | string | Can be "page", "blogpost", "attachment" or "content" |
| status | string | |
| title | string | |
| ancestors | array | |
| operations | array | |
| body | object | |
| restrictions | object | |
| macroRenderedOutput | object | |
| extensions | object | |
| _expandable | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Content",
"type": "object",
"description": "Base object for all content types.",
"properties": {
"id": {
"type": "string"
},
"type": {
"type": "string",
"description": "Can be \"page\", \"blogpost\", \"attachment\" or \"content\""
},
"status": {
"type": "string"
},
"title": {
"type": "string"
},
"ancestors": {
"type": "array"
},
"operations": {
"type": "array"
},
"body": {
"type": "object"
},
"restrictions": {
"type": "object"
},
"macroRenderedOutput": {
"type": "object"
},
"extensions": {
"type": "object"
},
"_expandable": {
"type": "object"
}
}
}