Atlassian · Schema
ContentChildType
Shows whether a piece of content has attachments, comments, or child pages/whiteboards. Note, this doesn't actually contain the child objects.
CodeCollaborationPlatformProductivitySoftware Development
Properties
| Name | Type | Description |
|---|---|---|
| attachment | object | |
| comment | object | |
| page | object | |
| _expandable | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ContentChildType",
"title": "ContentChildType",
"type": "object",
"properties": {
"attachment": {
"required": [
"_links",
"value"
],
"type": "object",
"properties": {
"value": {
"type": "boolean"
},
"_links": {
"$ref": "#/components/schemas/GenericLinks"
}
},
"example": "example_value"
},
"comment": {
"required": [
"_links",
"value"
],
"type": "object",
"properties": {
"value": {
"type": "boolean"
},
"_links": {
"$ref": "#/components/schemas/GenericLinks"
}
},
"example": "example_value"
},
"page": {
"required": [
"_links",
"value"
],
"type": "object",
"properties": {
"value": {
"type": "boolean"
},
"_links": {
"$ref": "#/components/schemas/GenericLinks"
}
},
"example": "example_value"
},
"_expandable": {
"type": "object",
"properties": {
"all": {
"type": "string"
},
"attachment": {
"type": "string"
},
"comment": {
"type": "string"
},
"page": {
"type": "string"
},
"whiteboard": {
"type": "string"
}
},
"example": "example_value"
}
},
"additionalProperties": true,
"description": "Shows whether a piece of content has attachments, comments, or child pages/whiteboards.\nNote, this doesn't actually contain the child objects."
}