Json array field loop only once

Product:pdftron

Product Version:9.3.0

Please give a brief summary of your issue:
I am providing json string like below,
{
“address”: [
{
“name”: “Florida”,
“code”: “FL”
},{
“name”: “Illinois”,
“code”: “IL”
}
]
}
where address field is having multiple objects, while converting from word to pdf document. I want to print only first object in table. Samples providing below,
Input file,

Expected Output,

Many thanks.

Hello, I’m Ron, an automated tech support bot :robot:

While you wait for one of our customer support representatives to get back to you, please check out some of these documentation pages:

Guides:APIs:Forums:

Not getting my expected output.

Team any update on the above requirement

Hi,

The issue appears to be the Typographic quotation marks you are using, i.e. “name”. JSON does not accept these and will be unable to parse your string. You need to use ASCII quotes, i.e. "name".

Please let me know how this works for you, and if you have any further questions.