When looking at the docs for Lists (https://opensource.adobe.com/pdftools-sdk-docs/docgen/latest/templatetags.html#lists), it demonstrates an array of objects:
{
"products": [
{
"productName": "Adobe Photoshop"
},
{
"productName": "Adobe Premiere Pro"
},
{
"productName": "Adobe InDesign"
}
}
And in the Word doc, it uses:
{% repeating-section products %}
{{ productName }}
{% end-section %}
While this works, typically an array of names would not be objects, but just names:
{
"products": [ "foo", "moo", "goo"]
}
How would I iterate over this in my Word document?