Last active
June 21, 2017 17:00
-
-
Save RDeluxe/2c7881141cfb53737d8e45321e7247b4 to your computer and use it in GitHub Desktop.
Data structure for GET /polls/:id
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
id: 1, | |
question: 'Do you like polls ?’, | |
answers: [ | |
{ | |
id: 124, | |
response: 'Oui’, | |
votes: 14 | |
}, | |
{ | |
id: 125, | |
response: 'Non’, | |
votes: 5 | |
}] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment