6. Relational vs. JSON Storage: What are the trade-offs of storing data as a JSON blob versus normalized relational tables? (Looking for: with JSON you store column names and all the syntactic structure inside the data itself, whereas Postgres stores that schema metadata outside the row; and JSON encourages data duplication because you embed relational data directly instead of referencing it via foreign keys.)