Links

Access sub-objects

To access sub-objects contained within a dataset (i.e., go deeper in the object tree), use the dot . notation.

Data

{
"firstname": "John",
"type": {
"id": 1,
"name": "human"
}
}
Template
Result
{d.firstname} is a {d.type.name}
John is a human
Last modified 1yr ago