The JSON index flattens and indexes JSON structures to allow fast, path-based filtering without the need for full document parsing.
name
: “adam”age
: 30addresses[0].number
: 112addresses[0].street
: “main st”addresses[0].country
: “us”addresses[1].number
: 2addresses[1].street
: “second st”addresses[1].country
: “ca”addresses[*].country
= “ca” without parsing the entire JSON structure.