Background You may have a Django app with a model, in which, you are storing some extra/unstructured information in a JSONField. An illustration: from django.db import models # Create your models here. class Person(models.Model): first_name = mo...