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
View JSON Schema on GitHub

JSON Schema

atlassian-confluence-content-content-child-type-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ContentChildType",
  "type": "object",
  "description": "Shows whether a piece of content has attachments, comments, or child pages/whiteboards.\nNote, this doesn't actually contain the child objects.",
  "properties": {
    "attachment": {
      "type": "object"
    },
    "comment": {
      "type": "object"
    },
    "page": {
      "type": "object"
    },
    "_expandable": {
      "type": "object"
    }
  }
}