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"
  }
}

{d.firstname} is a {d.type.name}

Last updated