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'
Source:stackexchange.com