Have a JSONB column with data like this:
{"title": "Some book!", "uniqueId": "11264299-2543-566"}
When I try to select the values, they are returned with double quotes surrounding them...
SELECT 'Some book!', json_data->'title' FROM myJsonTable
Returns:
Some book! "Some book!"