PostgreSQL: Documentation: 14: 8.14. JSON Types
https://www.postgresql.org/docs/current/datatype-json.html
Feb 10, 2022 · the json data type stores an exact copy of the input text, which processing functions must reparse on each execution; while jsonb data is stored in a decomposed binary format that makes it slightly slower to input due to added conversion overhead, but significantly faster to process, since no reparsing is needed. jsonb also supports indexing, …
DA: 17 PA: 78 MOZ Rank: 30