Native Engine - Json Template
Table of Contents
Template
A Json template is a native template:
- that is a valid Json text document
- that may contains variables in the form ${name} in its properties key and/or value.
- that will respect the tree structure (There is no need to add extra processing logic such as loop)
- that produces a json data resource.
Howto
Example: catalog of item
The variable name should match the name of a column of the source.
{
"${group}": {
"${item_code}": {
"price": "${price}",
"description": "${description}"
}
}
}
where:
- group, item_code, price and description (from ${group}}, ${item_code}, ${price} and ${description}) are the column names of the source.