Copy link to clipboard
Copied
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.
Copy link to clipboard
Copied
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.