[Fixed]-Creating/ guessing the underlying models from JSON response

1👍

✅

They could be either:

You could just keep them as json with a JSON field

or they could be a OneToOne relationship via a OneToOneField

class Idea():
    pd = OneToOneField(Question)
    toc = OneToOneField(Question)

class Question():
    question = 'foo'
    other_question = 'bar'

Leave a comment