Atlassian · Schema

ContentTemplateBodyCreate

The body of the new content. Does not apply to attachments. Only one body format should be specified as the property for this object, e.g. `storage`. Note, `editor2` format is used by Atlassian only. `anonymous_export_view` is the same as `export_view` format but only content viewable by an anonymous user is included.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
view object
export_view object
styled_view object
storage object
editor object
editor2 object
wiki object
atlas_doc_format object
anonymous_export_view object
View JSON Schema on GitHub

JSON Schema

atlassian-contenttemplatebodycreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContentTemplateBodyCreate",
  "title": "ContentTemplateBodyCreate",
  "type": "object",
  "properties": {
    "view": {
      "$ref": "#/components/schemas/ContentBodyCreate"
    },
    "export_view": {
      "$ref": "#/components/schemas/ContentBodyCreate"
    },
    "styled_view": {
      "$ref": "#/components/schemas/ContentBodyCreate"
    },
    "storage": {
      "$ref": "#/components/schemas/ContentBodyCreate"
    },
    "editor": {
      "$ref": "#/components/schemas/ContentBodyCreate"
    },
    "editor2": {
      "$ref": "#/components/schemas/ContentBodyCreate"
    },
    "wiki": {
      "$ref": "#/components/schemas/ContentBodyCreate"
    },
    "atlas_doc_format": {
      "$ref": "#/components/schemas/ContentBodyCreate"
    },
    "anonymous_export_view": {
      "$ref": "#/components/schemas/ContentBodyCreate"
    }
  },
  "description": "The body of the new content. Does not apply to attachments.\nOnly one body format should be specified as the property for\nthis object, e.g. `storage`.\n\nNote, `editor2` format is used by Atlassian only. `anonymous_export_view` is\nthe same as `export_view` format but only content viewable by an anonymous\nuser is included."
}