Created
December 2, 2014 06:33
-
-
Save oliverbenns/f57eccc118ffc8a4e604 to your computer and use it in GitHub Desktop.
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
| { | |
| questionnaireId: '1', | |
| q1_age: { | |
| question: 'What is your age?', | |
| type: 'open-text-numeric', | |
| meta: { | |
| min: 5, | |
| max: 15 | |
| } | |
| }, | |
| q12_employ: { | |
| question: 'How many meals do you eat a day?’, | |
| type: 'multiple-select', | |
| meta: { | |
| options: [ | |
| { label: 1, score: 0 }, | |
| { label: 2, score: 1 }, | |
| { label: 3, score: 2 }, | |
| { label: 4, score: 3 }, | |
| { label: 5, score: 4 } | |
| ] | |
| } | |
| }, | |
| q2: { | |
| question: 'How many meals do you eat a day?’, | |
| type: 'single-select', | |
| options: [ | |
| { label: 1 }, | |
| { label: 2 }, | |
| { label: 3 }, | |
| { label: 4 }, | |
| { label: 5 } | |
| ] | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment