Last active
May 24, 2017 12:09
-
-
Save srph/385b75d71756a6ccde1582851b319066 to your computer and use it in GitHub Desktop.
Survey Data Structure
This file contains hidden or 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
| { | |
| "data": [{ | |
| "type": "range", | |
| "question": "What can you rate X?" | |
| }, { | |
| "type": "multiple_answer", | |
| "question": "Which do you think is cool?", | |
| "choices": [{ | |
| "id": 1, | |
| "text": "Pogi" | |
| }] | |
| }, { | |
| "type": "multiple_choice", | |
| "question": "Pogi ako", | |
| "choices": [{ | |
| "id": 2, | |
| "text": "Pogi" | |
| }] | |
| }, { | |
| "type": "yes_no", | |
| "question": "You think it's cool?" | |
| }] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment