JSONJSONB
JSONJSONB is a hypothetical data type proposed to unify the advantages of textual JSON with the performance characteristics of binary JSON. In a system that supports JSONJSONB, a value is stored in two representations: a human-readable JSON text and a compact binary form. The binary representation enables fast parsing, efficient indexing, and compact storage, while the text form remains suitable for debugging, logs, and exchange with external systems that prefer readable JSON.
Queries and manipulations are designed to operate on the binary form, using the same JSON operators and
Storage and update semantics are a key design consideration: every write must update both representations, raising
JSONJSONB is not an established standard, but it is discussed as a conceptual bridge between JSON-like text