Answered
Using document generation API, do I have to flatten nested lists?
Trying to access variables 2-3 levels deep, to be able to access variables that deep, do I need to flatten first? Thanks in advance.
Trying to access variables 2-3 levels deep, to be able to access variables that deep, do I need to flatten first? Thanks in advance.
You shouldn't need to. Given JSON like so:
{
"person": {
"name":{
"first":"Ray"
}
}
}
(Pardon the lack of indentation.) I could then use {{ person.name.first }} in my document.
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.