JSONPath: Extract a Nested Object Field

To reach a field nested several levels deep, chain each key with a dot: $.user.address.city walks from the root into user, then address, then city. Each segment must match the exact key name — there's no wildcard to skip a level you don't know the name of.