Path to an Object

There are two ways to specify an object in the template.

The first is to use the special field value "*":

"object": { "*":"@@$.address" }

The special field value causes the node to replace the entire object in the template with object specified by the JSON path.

Specifying the object as shown has the exact same result.

"object": "@@$.address"

The former may be preferable since it is clearer from looking at the template that the expected type that the JSON Path references is an object.