JsonType
JsonType defines the index type for a JSON field in a search index.
Data structures
OBJECT_JSON: the JSON OBJECT type. Data is flattened and nested objects are decomposed into key-value pairs, which provides higher query performance.
NESTED_JSON: the JSON NESTED type. Each nested object is indexed as a separate document, similar to the Nested type.
enum JsonType {
OBJECT_JSON = 1;
NESTED_JSON = 2;
}