Skip to content

Instantly share code, notes, and snippets.

@misingnoglic
Created February 6, 2019 06:35
Show Gist options
  • Save misingnoglic/1656c5a4bf9884912491635aeb82eab1 to your computer and use it in GitHub Desktop.
Save misingnoglic/1656c5a4bf9884912491635aeb82eab1 to your computer and use it in GitHub Desktop.
{
"pk": 1,
"title": "My Pizza Poll",
"owner": 1,
"published": false,
"questions": [
{
"pk": 1,
"question_number": 1,
"question_text": "Favorite Topping?",
"type": "textchoicesquestion",
"can_choose_multiple": false,
"others_can_add": false,
"choices": [
{
"pk": 1,
"text": "Pepperoni",
"choice_number": 1,
"added_by": 1,
"votes": 0,
"nuances": []
},
{
"pk": 2,
"text": "Pineapple",
"choice_number": 2,
"added_by": 1,
"votes": 1,
"nuances": [
{
"pk": 1,
"text": "Only Hawaiian",
"added_by": 1,
"votes": 1
}
]
}
]
},
{
"pk": 2,
"question_number": 2,
"question_text": "How much do you like that topping (1-5)?",
"type": "rankingquestion",
"low_end": 1,
"high_end": 5
},
{
"pk": 3,
"question_number": 3,
"question_text": "Where in the US do you live?",
"type": "textchoicesquestion",
"can_choose_multiple": false,
"others_can_add": false,
"choices": [
{
"pk": 3,
"text": "West Coast",
"choice_number": 1,
"added_by": 1,
"votes": 1,
"nuances": []
},
{
"pk": 4,
"text": "East Coast",
"choice_number": 2,
"added_by": 1,
"votes": 0,
"nuances": []
},
{
"pk": 5,
"text": "Midwest",
"choice_number": 3,
"added_by": 1,
"votes": 0,
"nuances": []
},
{
"pk": 6,
"text": "Not in US",
"choice_number": 4,
"added_by": 1,
"votes": 0,
"nuances": []
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment