Hover over document template to see "create document" button. Clicking on it generates JSON format. Please use that format to create data file for template. JSON  sequentially populates dynamic fields in document template.Take the example of below Personal Information document that has both text and table.


Enter Name :   {Enter_Name}

Enter SSN :     {Enter_SSN}

Enter Telephone: {Enter_Telephone}

Role

Company

Address

{#Job} {Role}

{Company}

{Address} {/Job}


The JSON format should be


[
    {
        "Enter_Name": true,
        "Enter_SSN": true,
        "Enter_Telephone": true,        
        "Job": [{
            "Role": true,
            "Company": true,
            "Address": true
        }]
    }
]