Skip to content

Instantly share code, notes, and snippets.

@oliverbenns
Created December 2, 2014 06:33
Show Gist options
  • Select an option

  • Save oliverbenns/f57eccc118ffc8a4e604 to your computer and use it in GitHub Desktop.

Select an option

Save oliverbenns/f57eccc118ffc8a4e604 to your computer and use it in GitHub Desktop.
{
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