Learn how to query JSON data.
payload
structured like this:
taco_count
value inside the payload via the following syntax:
payload
as a dimension to filter on any of its fields.payload.order_details.taco_count
to refer to the taco count key within payload.order_details
.
foo.bar
, since this will be interpreted as JavaScript dot notation. Instead, you can use square brackets to escape the period, like this: ["foo.bar"]
.