ku-polls/data/polls-v1.json

55 lines
842 B
JSON

[
{
"model": "polls.question",
"pk": 1,
"fields": {
"question_text": "Python vs C++, which one is better in your opinion?",
"pub_date": "2023-08-28T13:38:42Z"
}
},
{
"model": "polls.question",
"pk": 2,
"fields": {
"question_text": "The chicken and the egg, which came first?",
"pub_date": "2023-08-28T13:39:16Z"
}
},
{
"model": "polls.choice",
"pk": 4,
"fields": {
"question": 2,
"choice_text": "Chicken",
"votes": 5
}
},
{
"model": "polls.choice",
"pk": 5,
"fields": {
"question": 2,
"choice_text": "Egg",
"votes": 2
}
},
{
"model": "polls.choice",
"pk": 6,
"fields": {
"question": 1,
"choice_text": "Python!",
"votes": 2
}
},
{
"model": "polls.choice",
"pk": 7,
"fields": {
"question": 1,
"choice_text": "C++",
"votes": 2
}
}
]