{ "$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" } } }