How to Solve NameError: name 'JSONField' is not defined -- django

Solution: Import the 'JSONField' module

To Solve the error, add the following line to the top of your code.

from django.contrib.postgres.fields import JSONField

 

For more information:
Python django JSONField