Assume a Postgresql table which contains a JSON column. Now how do I get only those table rows which match a certain 'JSON-Schema'?
I was hoping that
select category#>'{Kategorie}' from dataset where category#>'{Kategorie}' is not null
would only get me those rows which match the {Kategorie} Schema.