Skip to content

Instantly share code, notes, and snippets.

@stupoid
Created October 2, 2015 08:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stupoid/c7e1ba20a95d8f5315c8 to your computer and use it in GitHub Desktop.
Save stupoid/c7e1ba20a95d8f5315c8 to your computer and use it in GitHub Desktop.
Example profile questions
{
"title": "name",
"type": "text"
}
{
"title": "How do you feel about tbe current state of politics",
"type": "textarea"
}
{
"title": "gender",
"type": "radio",
"choices": [
"male",
"female"
]
}
{
"title": "date of birth",
"type": "date",
"min": "1915-01-01T00:00:00.000Z",
"max": "2013-01-01T00:00:00.000Z"
}
{
"title": "period of study",
"type": "date_range",
"min": "1915-01-01T00:00:00.000Z",
"max": "2015-10-02T00:00:00.000Z"
}
{
"title": "working hours",
"type": "time_range",
"min": "1970-01-01T00:05:00.000Z",
"max": "1970-01-01T00:23:00.000Z"
}
{
"title": "time you usually wake",
"type": "time",
"min": "1970-01-01T04:00:00.000Z"
}
{
"title": "what's your body shape",
"type": "checkbox_img",
"choices": [
"http://placehold.it/200x200",
"http://placehold.it/200x200",
"http://placehold.it/200x200",
"http://placehold.it/200x200"
]
}
{
"title": "what kind of food you enjoy",
"type": "checkbox_txt",
"choices": [
"chinese",
"malay",
"indian",
"western",
"japanese",
"korean"
],
"min": 1,
"max": 4
}
{
"title": "postal code",
"type": "number_pad",
"limit": 6,
"min": 10000,
"max": 809999
}
{
"title": "How much do you spend on your meals on average",
"type": "slider",
"min": 2.00,
"max": 25.00,
"step": 1.00
}
{
"title": "Roughly how much did you spend on your phone",
"type": "number_inc",
"min": 0,
"max": 1600,
"step": 100
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment