1#When updating a JSON(B) attribute I think you might need to flag it as modified
2from sqlalchemy.orm.attributes import flag_modified
3
4custObj.contextjason = { 'foo':'bar', 'so':'be it'}
5flag_modified(custObj, "contextjason")
6db.session.commit()
7