Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 2.81 KB | None | 0 0
  1. {
  2.     "screens": [{
  3.         "uniqueId": "1",
  4.         "title": "Single Text Contextual Question Screen",
  5.         "questions": [{
  6.             "uniqueId": "11",
  7.             "text": "What is your first name?",
  8.             "type": "contextual",
  9.             "contextMessage": "Hello!"
  10.  
  11.         }]
  12.     }, {
  13.         "uniqueId": "2",
  14.         "title": "Multi Text Question Screen",
  15.         "questions": [{
  16.             "uniqueId": "21",
  17.             "text": "What is your first name?",
  18.             "type": "textual"
  19.         }, {
  20.             "uniqueId": "22",
  21.             "text": "What is your last name?",
  22.             "type": "textual"
  23.         }, {
  24.             "uniqueId": "23",
  25.             "text": "What is your pets name?",
  26.             "type": "textual"
  27.         }, {
  28.             "uniqueId": "23",
  29.             "text": "What is your house's nickname?",
  30.             "type": "textual"
  31.         }]
  32.     }, {
  33.         "uniqueId": "3",
  34.         "title": "Numerical Question Screen",
  35.         "questions": [{
  36.             "uniqueId": "31",
  37.             "text": "How many kids do you have?",
  38.             "type": "numerical"
  39.         }]
  40.     }, {
  41.         "uniqueId": "4",
  42.         "title": "Multi Select Screen",
  43.         "destinations": [{
  44.             "conditionQuestion": "41",
  45.             "exitFlowMinPosition": 0
  46.         }, {
  47.             "conditionQuestion": "42",
  48.             "exitFlowMinPosition": 0
  49.         }],
  50.         "questions": [{
  51.             "uniqueId": "41",
  52.             "text": "What's your annual income?",
  53.             "type": "multi",
  54.             "answers": [{
  55.                 "text": "< 15,000$",
  56.                 "uniqueId": "434"
  57.             }, {
  58.                 "text": "15,000$ - 50,000$",
  59.                 "uniqueId": "435"
  60.             }, {
  61.                 "text": "50,000$ - 100,000$",
  62.                 "uniqueId": "436"
  63.             }, {
  64.                 "text": "100,000$ - 250,000$",
  65.                 "uniqueId": "437"
  66.             }]
  67.         }, {
  68.             "uniqueId": "42",
  69.             "text": "How old are you?",
  70.             "type": "multi",
  71.             "answers": [{
  72.                 "text": "< 18",
  73.                 "uniqueId": "534"
  74.             }, {
  75.                 "text": "19-29",
  76.                 "uniqueId": "634"
  77.             }, {
  78.                 "text": "30-50",
  79.                 "uniqueId": "734"
  80.             }, {
  81.                 "text": "50+",
  82.                 "uniqueId": "834"
  83.             }]
  84.         }]
  85.     }, {
  86.         "uniqueId": "5",
  87.         "title": "Congratulations Screen",
  88.         "questions": [{
  89.             "uniqueId": "51",
  90.             "text": "Congratulations, you're off to a good start saving for your age!",
  91.             "type": "non_question_statement"
  92.         }]
  93.     }, {
  94.         "uniqueId": "6",
  95.         "title": "Multiple Multi Select Examples",
  96.         "questions": [{
  97.             "uniqueId": "61",
  98.             "text": "How many accounts do you have?",
  99.             "type": "multi",
  100.             "answers": [{
  101.                 "text": "< 2",
  102.                 "uniqueId": "223"
  103.             }, {
  104.                 "text": "3 - 5",
  105.                 "uniqueId": "224"
  106.             }, {
  107.                 "text": "6 - 10",
  108.                 "uniqueId": "225"
  109.             }, {
  110.                 "text": "10+",
  111.                 "uniqueId": "226"
  112.             }]
  113.         }, {
  114.             "uniqueId": "62",
  115.             "text": "Are you ready for retirement?",
  116.             "type": "multi",
  117.             "answers": [{
  118.                 "text": "Yes",
  119.                 "uniqueId": "2262"
  120.             }, {
  121.                 "text": "No",
  122.                 "uniqueId": "2263"
  123.             }]
  124.         }, {
  125.             "uniqueId": "63",
  126.             "text": "Do you invest in the market?",
  127.             "type": "multi",
  128.             "answers": [{
  129.                 "text": "Yes",
  130.                 "uniqueId": "22622"
  131.             }, {
  132.                 "text": "No",
  133.                 "uniqueId": "22623"
  134.             }]
  135.         }]
  136.     }]
  137. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement