Atlassian · Schema

ContentTemplate

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
templateId string
originalTemplate object
referencingBlueprint string
name string
description string
space object
labels array
templateType string
editorVersion string
body object
_expandable object
_links object
View JSON Schema on GitHub

JSON Schema

atlassian-contenttemplate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContentTemplate",
  "title": "ContentTemplate",
  "required": [
    "_links",
    "description",
    "labels",
    "name",
    "templateId",
    "templateType"
  ],
  "type": "object",
  "properties": {
    "templateId": {
      "type": "string",
      "example": "500123"
    },
    "originalTemplate": {
      "type": "object",
      "properties": {
        "pluginKey": {
          "type": "string"
        },
        "moduleKey": {
          "type": "string"
        }
      },
      "example": "example_value"
    },
    "referencingBlueprint": {
      "type": "string",
      "example": "example_value"
    },
    "name": {
      "type": "string",
      "example": "Example Title"
    },
    "description": {
      "type": "string",
      "example": "A sample description."
    },
    "space": {
      "type": "object",
      "additionalProperties": true,
      "example": "example_value"
    },
    "labels": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Label"
      },
      "example": []
    },
    "templateType": {
      "type": "string",
      "example": "example_value"
    },
    "editorVersion": {
      "type": "string",
      "example": "example_value"
    },
    "body": {
      "$ref": "#/components/schemas/ContentTemplateBody"
    },
    "_expandable": {
      "type": "object",
      "properties": {
        "body": {
          "type": "string"
        }
      },
      "example": "example_value"
    },
    "_links": {
      "$ref": "#/components/schemas/GenericLinks"
    }
  }
}