I’m trying to figure out if the JSON looper in Pro is capable of taking JSON structure such as this:
[
{
"state": "North Carolina",
"bars": [
{
"name": "Aunt Betty's Gin and Absinthe Bar",
"city": "Raleigh",
"website": "https://auntybettysbar.com/"
},
{
"name": "The Blind Pelican",
"city": "Holly Springs",
"website": "https://www.blindpelicanseafood.com/"
}
],
"retail": [
{
"name": "Fuquay Spice & Tea",
"city": "Fuquay-Varina",
"website": "https://www.fvspice.com/"
}
]
}
]
and produce the following html:
- North Carolina
- Aunt Betty's Gin and Absinthe Bar
- The Blind Pelican
etc.