How perform patch operation on nested serializer with dictionary field
问题 I have Model with dictionary object, in below example want to set and get daily availability example Currently I am able to read, want to make this to read and write, what should I do for this "teacher_date": [ { "day_available": "MON", "time_available": "Morning" }, { "day_available": "SAT", "time_available": "Afternoon" }, { "day_available": "SUN", "time_available": "Evening" } Here is my model.py class Availability(models.Model): uid = models.AutoField(verbose_name='ID', serialize=False,