> > CONTROLLER FUNCTION: (the myobj value is copied from my cell's edit page > after being inserted into my Oracle DB. >
The json field type does not validate insert/update for values stored
programatically, validation is performed when you send values with the json
widget. However, you could validate your input this way:
>>> print IS_JSON()("No JSON")[1] is None
False
>>> print IS_JSON()('{"a": 1, "b": 2}')[1] is None
True
--

