class Employee(models.Model): bio_short = models.CharField(max_length=256) bio_long = models.TextField() work_experience = JSONSchemaField( schema='schemas/jsonschema.example.json', default=dict, blank=True)