| name | data type | constraints | description |
|---|---|---|---|
| id | string | ||
| dateCreated | number | ||
| description | string | ||
| parentId | string | ||
| |
|
|
|
| dateModified | number | ||
| templateAttributeCollection | array of TemplateAttributeInterface | ||
| name | string | ||
| active | boolean | required |
Example
{
"id" : "...",
"dateCreated" : 12345,
"description" : "...",
"parentId" : "...",
"dateModified" : 12345,
"templateAttributeCollection" : [ {
"templateAttributeDefinition" : {
"type" : "BIG_DECIMAL",
"description" : "...",
"attributeName" : "..."
},
"template" : {
"active" : true,
"description" : "...",
"templateAttributeCollection" : [ { }, { } ]
},
"attributeValue" : "..."
}, {
"templateAttributeDefinition" : {
"type" : "UUID",
"description" : "...",
"attributeName" : "..."
},
"template" : {
"active" : true,
"description" : "...",
"templateAttributeCollection" : [ { }, { } ]
},
"attributeValue" : "..."
} ],
"name" : "...",
"active" : true
}