MMridulainmridula.dev·Apr 4, 2022 · 2 min readDjango/Postgres - Extracting from dates stored in JSONFiedBackground 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...01A