I'm running PostgreSQL 9.3. I have a column named "model" of type "json" (not jsonb). The content of the "model" column resembles the following:
{
"section": {
"colors": ["red", "blue", "green"]
}
}
Is it possible to query for rows where model -> section -> colors
contains "blue"?