While Postgres does allow creating an index on this JSONB column, I am wondering if MongoDB would be better suited for this instead of Postgres?
Have you switched any project from postgres or relational data to mongoDB or similar nosql db?
When dealing with JSON data, is Postgres better or MongoDB?
Will note that json/text columns are better than jsonb. Lower serialization overheads and surprisingly smaller binary size. Or better yet, just normalize to a columnar format.