In the jq filtering language the .
filter expression simply returns the input JSON unaltered (except for pretty printing). E.g.
$ echo '{"foo": true, "bar": 42}' | jq '.'
{
"foo": true,
"bar": 42
}
Does JMESPath have a similar expression (aka identity function)?