TemplateInterface Data Type

Abstract Type
Subtypes
AbstractTemplate, Template, AssetTemplate
Properties
name data type constraints description
active boolean required
description string  
templateAttributeCollection array of TemplateAttributeInterface  

Example

This data type is abstract. The example below may be incomplete. More accurate examples can be found in subtypes pages.
{
  "active" : true,
  "description" : "...",
  "templateAttributeCollection" : [ {
    "templateAttributeDefinition" : {
      "type" : "URL",
      "description" : "...",
      "attributeName" : "..."
    },
    "template" : {
      "active" : true,
      "description" : "...",
      "templateAttributeCollection" : [ { }, { } ]
    },
    "attributeValue" : "..."
  }, {
    "templateAttributeDefinition" : {
      "type" : "FLOAT",
      "description" : "...",
      "attributeName" : "..."
    },
    "template" : {
      "active" : true,
      "description" : "...",
      "templateAttributeCollection" : [ { }, { } ]
    },
    "attributeValue" : "..."
  } ]
}