Points to a field in a Bson document.
BsonPath["foo"] // $.fooBsonPath["foo"]["bar"] // $.foo.bar
Points to the element at index in a BsonArray.
BSON indices start at 0.
BsonPath[0] // $[0]BsonPath["foo"][1] // $.foo[1]