@inseefr/lunatic 0.2.63 → 0.3.0-prisme

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (539) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +25 -17
  3. package/lib/index.esm.js +3539 -0
  4. package/lib/index.esm.js.map +1 -0
  5. package/lib/index.js +3535 -3148
  6. package/lib/index.js.map +1 -1
  7. package/package.json +179 -122
  8. package/src/components/breadcrumb/breadcrumb.scss +22 -22
  9. package/src/components/breadcrumb/component.js +29 -29
  10. package/src/components/breadcrumb/index.js +1 -1
  11. package/src/components/button/button.scss +24 -26
  12. package/src/components/button/component.js +53 -25
  13. package/src/components/button/index.js +1 -1
  14. package/src/components/checkbox/boolean.js +172 -100
  15. package/src/components/checkbox/checkbox.scss +73 -39
  16. package/src/components/checkbox/group.js +231 -128
  17. package/src/components/checkbox/index.js +3 -3
  18. package/src/components/checkbox/one.js +11 -132
  19. package/src/components/component-wrapper/controls/component.js +70 -0
  20. package/src/components/component-wrapper/controls/controls.scss +6 -0
  21. package/src/components/component-wrapper/controls/index.js +1 -0
  22. package/src/components/component-wrapper/controls/validators/datepicker.js +44 -0
  23. package/src/components/component-wrapper/controls/validators/index.js +16 -0
  24. package/src/components/component-wrapper/controls/validators/input-number.js +23 -0
  25. package/src/components/component-wrapper/index.js +1 -0
  26. package/src/components/component-wrapper/missing/component.js +200 -0
  27. package/src/components/component-wrapper/missing/index.js +1 -0
  28. package/src/components/component-wrapper/missing/missing.scss +32 -0
  29. package/src/components/component-wrapper/wrapper.js +23 -0
  30. package/src/components/components.js +19 -13
  31. package/src/components/datepicker/component.js +26 -113
  32. package/src/components/datepicker/datepicker.scss +1 -16
  33. package/src/components/datepicker/index.js +1 -1
  34. package/src/components/declarations/component.js +46 -33
  35. package/src/components/declarations/declarations.scss +40 -34
  36. package/src/components/declarations/index.js +1 -1
  37. package/src/components/declarations/wrappers/index.js +3 -0
  38. package/src/components/declarations/wrappers/input-declarations-wrapper.js +328 -0
  39. package/src/components/declarations/wrappers/list-declarations-wrapper.js +232 -0
  40. package/src/components/declarations/wrappers/simple-declarations-wrapper.js +54 -0
  41. package/src/components/dropdown/commons/actions.js +65 -0
  42. package/src/components/dropdown/commons/children-to-option.js +9 -0
  43. package/src/components/dropdown/commons/cleaner-callbacks.js +58 -0
  44. package/src/components/dropdown/commons/components/dropdown-container.js +29 -0
  45. package/src/components/dropdown/commons/components/dropdown-field.js +46 -0
  46. package/src/components/dropdown/commons/components/dropdown.js +204 -0
  47. package/src/components/dropdown/commons/components/label.js +28 -0
  48. package/src/components/dropdown/commons/components/panel.js +78 -0
  49. package/src/components/dropdown/commons/event-callbacks/index.js +5 -0
  50. package/src/components/dropdown/commons/event-callbacks/on-keydown-callback.js +29 -0
  51. package/src/components/dropdown/commons/event-callbacks/on-mousedown-callback.js +15 -0
  52. package/src/components/dropdown/commons/reducer.js +152 -0
  53. package/src/components/dropdown/commons/tools/index.js +17 -0
  54. package/src/components/dropdown/component.js +135 -100
  55. package/src/components/dropdown/dropdown-edit/dropdown-edit.js +194 -0
  56. package/src/components/dropdown/dropdown-edit/icone.js +33 -0
  57. package/src/components/dropdown/dropdown-edit/index.js +11 -0
  58. package/src/components/dropdown/dropdown-edit/option.js +62 -0
  59. package/src/components/dropdown/dropdown-edit/prefix-tools.js +51 -0
  60. package/src/components/dropdown/dropdown-simple/dropdown.js +173 -0
  61. package/src/components/dropdown/dropdown-simple/index.js +20 -0
  62. package/src/components/dropdown/dropdown-simple/option.js +15 -0
  63. package/src/components/dropdown/dropdown.scss +178 -16
  64. package/src/components/dropdown/index.js +1 -1
  65. package/src/components/filter-description/component.js +42 -0
  66. package/src/components/filter-description/index.js +1 -0
  67. package/src/components/icon/assets/checkbox-checked.js +16 -0
  68. package/src/components/icon/assets/checkbox-unchecked.js +16 -0
  69. package/src/components/icon/assets/index.js +4 -0
  70. package/src/components/icon/assets/radio-checked.js +16 -0
  71. package/src/components/icon/assets/radio-unchecked.js +16 -0
  72. package/src/components/icon/component.js +33 -0
  73. package/src/components/icon/icon.scss +15 -0
  74. package/src/components/icon/index.js +1 -0
  75. package/src/components/index.js +5 -4
  76. package/src/components/index.scss +177 -75
  77. package/src/components/input/index.js +2 -2
  78. package/src/components/input/input-number.js +30 -170
  79. package/src/components/input/input.js +11 -118
  80. package/src/components/input/input.scss +31 -27
  81. package/src/components/loop/component.js +170 -0
  82. package/src/components/loop/index.js +1 -0
  83. package/src/components/loop/loop.scss +13 -0
  84. package/src/components/loop/wrapper.js +15 -0
  85. package/src/components/loop-constructor/block/block.scss +10 -0
  86. package/src/components/loop-constructor/block/component.js +9 -0
  87. package/src/components/loop-constructor/block/index.js +1 -0
  88. package/src/components/loop-constructor/index.js +1 -0
  89. package/src/components/loop-constructor/roster/component.js +8 -0
  90. package/src/components/loop-constructor/roster/index.js +1 -0
  91. package/src/components/loop-constructor/wrapper/body-component.js +146 -0
  92. package/src/components/loop-constructor/wrapper/build-components.js +33 -0
  93. package/src/components/loop-constructor/wrapper/component.js +190 -0
  94. package/src/components/loop-constructor/wrapper/index.js +1 -0
  95. package/src/components/modal/component.js +36 -0
  96. package/src/components/modal/index.js +1 -0
  97. package/src/components/modal/modal.scss +33 -0
  98. package/src/components/progress-bar/component.js +28 -28
  99. package/src/components/progress-bar/index.js +1 -1
  100. package/src/components/progress-bar/progress-bar.scss +54 -54
  101. package/src/components/radio/component.js +9 -136
  102. package/src/components/radio/index.js +1 -1
  103. package/src/components/radio/radio.scss +59 -24
  104. package/src/components/sequence/component.js +50 -43
  105. package/src/components/sequence/index.js +1 -1
  106. package/src/components/sequence/sequence.scss +10 -15
  107. package/src/components/subsequence/component.js +49 -43
  108. package/src/components/subsequence/index.js +1 -1
  109. package/src/components/suggester/check-store.js +68 -0
  110. package/src/components/suggester/commons-tools/binded-keys.js +11 -0
  111. package/src/components/suggester/commons-tools/index.js +1 -0
  112. package/src/components/suggester/components/create-on-keydown-callback.js +28 -0
  113. package/src/components/suggester/components/index.js +2 -0
  114. package/src/components/suggester/components/panel/default-option-renderer.js +27 -0
  115. package/src/components/suggester/components/panel/index.js +2 -0
  116. package/src/components/suggester/components/panel/option-container.js +61 -0
  117. package/src/components/suggester/components/panel/panel-container.js +21 -0
  118. package/src/components/suggester/components/panel/panel.js +47 -0
  119. package/src/components/suggester/components/selection/default-label-renderer.js +31 -0
  120. package/src/components/suggester/components/selection/delete.js +38 -0
  121. package/src/components/suggester/components/selection/index.js +1 -0
  122. package/src/components/suggester/components/selection/label.js +35 -0
  123. package/src/components/suggester/components/selection/selection.js +50 -0
  124. package/src/components/suggester/components/suggester-content.js +42 -0
  125. package/src/components/suggester/components/suggester.js +128 -0
  126. package/src/components/suggester/components/suggester.scss +101 -0
  127. package/src/components/suggester/default-style.scss +125 -0
  128. package/src/components/suggester/find-best-label/find-best-label.js +51 -0
  129. package/src/components/suggester/find-best-label/index.js +1 -0
  130. package/src/components/suggester/idb-suggester.js +73 -0
  131. package/src/components/suggester/index.js +1 -0
  132. package/src/components/suggester/lunatic-suggester.js +140 -0
  133. package/src/components/suggester/searching/create-searching.js +49 -0
  134. package/src/components/suggester/searching/index.js +1 -0
  135. package/src/components/suggester/state-management/actions.js +38 -0
  136. package/src/components/suggester/state-management/index.js +6 -0
  137. package/src/components/suggester/state-management/intial-state.js +13 -0
  138. package/src/components/suggester/state-management/reducer/index.js +1 -0
  139. package/src/components/suggester/state-management/reducer/reduce-on-blur.js +5 -0
  140. package/src/components/suggester/state-management/reducer/reduce-on-change-search.js +8 -0
  141. package/src/components/suggester/state-management/reducer/reduce-on-click-option.js +8 -0
  142. package/src/components/suggester/state-management/reducer/reduce-on-delete-search.js +11 -0
  143. package/src/components/suggester/state-management/reducer/reduce-on-error.js +8 -0
  144. package/src/components/suggester/state-management/reducer/reduce-on-focus.js +5 -0
  145. package/src/components/suggester/state-management/reducer/reduce-on-init.js +29 -0
  146. package/src/components/suggester/state-management/reducer/reduce-on-key-down.js +73 -0
  147. package/src/components/suggester/state-management/reducer/reduce-on-unexpected-error.js +7 -0
  148. package/src/components/suggester/state-management/reducer/reduce-on-update-options.js +11 -0
  149. package/src/components/suggester/state-management/reducer/reducer.js +38 -0
  150. package/src/components/suggester/state-management/suggester-context.js +4 -0
  151. package/src/components/suggester/state-management/use-dispatch.js +11 -0
  152. package/src/components/suggester/suggester-wrapper.js +127 -0
  153. package/src/components/suggester-loader-widget/index.js +1 -0
  154. package/src/components/suggester-loader-widget/loader-row.js +102 -0
  155. package/src/components/suggester-loader-widget/loader.js +67 -0
  156. package/src/components/suggester-loader-widget/progress.js +25 -0
  157. package/src/components/suggester-loader-widget/tools/action-tool.js +20 -0
  158. package/src/components/suggester-loader-widget/tools/index.js +2 -0
  159. package/src/components/suggester-loader-widget/tools/tools.js +7 -0
  160. package/src/components/suggester-loader-widget/widget-container.js +35 -0
  161. package/src/components/suggester-loader-widget/widget.js +123 -0
  162. package/src/components/suggester-loader-widget/widget.scss +176 -0
  163. package/src/components/table/index.js +1 -1
  164. package/src/components/table/table.js +173 -133
  165. package/src/components/table/table.scss +26 -23
  166. package/src/components/textarea/component.js +11 -117
  167. package/src/components/textarea/index.js +1 -1
  168. package/src/components/textarea/textarea.scss +8 -16
  169. package/src/components/tooltip/img/index.js +4 -4
  170. package/src/components/tooltip/index.js +1 -1
  171. package/src/components/tooltip/response.js +52 -42
  172. package/src/components/tooltip/tooltip.scss +30 -35
  173. package/src/constants/component-types.js +1 -0
  174. package/src/{utils/constants.js → constants/declarations.js} +14 -14
  175. package/src/constants/event-types.js +13 -0
  176. package/src/constants/index.js +5 -0
  177. package/src/constants/supported-preferences.js +10 -0
  178. package/src/constants/value-types.js +5 -0
  179. package/src/constants/variable-types.js +4 -0
  180. package/src/stories/breadcrumb/README.md +14 -14
  181. package/src/stories/breadcrumb/breadcrumb.stories.js +21 -35
  182. package/src/stories/button/README.md +14 -14
  183. package/src/stories/button/button.stories.js +27 -63
  184. package/src/stories/checkbox-boolean/README.md +27 -25
  185. package/src/stories/checkbox-boolean/checkbox-boolean.stories.js +54 -49
  186. package/src/stories/checkbox-boolean/data-forced.json +48 -0
  187. package/src/stories/checkbox-boolean/data.json +78 -0
  188. package/src/stories/checkbox-group/README.md +29 -28
  189. package/src/stories/checkbox-group/checkbox-group.stories.js +60 -122
  190. package/src/stories/checkbox-group/data-forced.json +89 -0
  191. package/src/stories/checkbox-group/data-vtl.json +102 -0
  192. package/src/stories/checkbox-group/data.json +89 -0
  193. package/src/stories/checkbox-one/README.md +31 -30
  194. package/src/stories/checkbox-one/checkbox-one.stories.js +57 -112
  195. package/src/stories/checkbox-one/data-forced.json +33 -0
  196. package/src/stories/checkbox-one/data-vtl.json +48 -0
  197. package/src/stories/checkbox-one/data.json +33 -0
  198. package/src/stories/datepicker/README.md +31 -27
  199. package/src/stories/datepicker/data-forced.json +28 -0
  200. package/src/stories/datepicker/data.json +45 -0
  201. package/src/stories/datepicker/datepicker.stories.js +60 -82
  202. package/src/stories/declarations/README.md +19 -17
  203. package/src/stories/declarations/declarations.stories.js +116 -61
  204. package/src/stories/dropdown/README.md +44 -29
  205. package/src/stories/dropdown/data-forced.json +81 -0
  206. package/src/stories/dropdown/data-naf.json +6963 -0
  207. package/src/stories/dropdown/data-props.json +111 -0
  208. package/src/stories/dropdown/data.json +98 -0
  209. package/src/stories/dropdown/dropdown.stories.js +89 -70
  210. package/src/stories/filter-description/README.md +15 -0
  211. package/src/stories/filter-description/filter-description.stories.js +53 -0
  212. package/src/stories/icons/icons.stories.js +16 -0
  213. package/src/stories/icons/lunatic-icon.scss +10 -0
  214. package/src/stories/input/README.md +33 -28
  215. package/src/stories/input/data-forced.json +41 -0
  216. package/src/stories/input/data.json +41 -0
  217. package/src/stories/input/input.stories.js +72 -88
  218. package/src/stories/input-number/README.md +37 -31
  219. package/src/stories/input-number/data-forced.json +27 -0
  220. package/src/stories/input-number/data.json +42 -0
  221. package/src/stories/input-number/input-number.stories.js +81 -95
  222. package/src/stories/loop/README.md +25 -0
  223. package/src/stories/loop/loop.stories.js +88 -0
  224. package/src/stories/loop/with-loop/data-loop-deeper.json +298 -0
  225. package/src/stories/loop/with-loop/data-loop.json +336 -0
  226. package/src/stories/loop/with-loop/index.js +2 -0
  227. package/src/stories/loop/with-roster/data-forced.json +213 -0
  228. package/src/stories/loop/with-roster/data-loop-deeper.json +298 -0
  229. package/src/stories/loop/with-roster/data-loop.json +288 -0
  230. package/src/stories/loop/with-roster/index.js +3 -0
  231. package/src/stories/loop-constructor/README.md +27 -0
  232. package/src/stories/loop-constructor/data-input-forced.json +64 -0
  233. package/src/stories/loop-constructor/data-input.json +100 -0
  234. package/src/stories/loop-constructor/data-loop-forced.json +66 -0
  235. package/src/stories/loop-constructor/data-loop-static-forced.json +66 -0
  236. package/src/stories/loop-constructor/data-loop-static.json +81 -0
  237. package/src/stories/loop-constructor/data-loop.json +81 -0
  238. package/src/stories/loop-constructor/data-roster-forced.json +68 -0
  239. package/src/stories/loop-constructor/data-roster.json +83 -0
  240. package/src/stories/loop-constructor/loop-constructor.stories.js +180 -0
  241. package/src/stories/pagination/deeper-loop.json +327 -0
  242. package/src/stories/pagination/pagination.stories.js +60 -0
  243. package/src/stories/pagination/simple-loop.json +277 -0
  244. package/src/stories/pagination/simpsons-question.json +4952 -0
  245. package/src/stories/pagination/simpsons-sequence.json +4362 -0
  246. package/src/stories/progress-bar/README.md +13 -13
  247. package/src/stories/progress-bar/progress-bar.stories.js +24 -24
  248. package/src/stories/questionnaire/arithmetic-management.json +47 -0
  249. package/src/stories/questionnaire/arithmetic.json +247 -0
  250. package/src/stories/questionnaire/calc-var.json +187 -0
  251. package/src/stories/questionnaire/data-logement.json +2691 -0
  252. package/src/stories/questionnaire/kish.json +275 -0
  253. package/src/stories/questionnaire/logement-queen.json +23390 -0
  254. package/src/stories/questionnaire/logement-s2.json +46028 -0
  255. package/src/stories/questionnaire/logement-sequence.json +26742 -0
  256. package/src/stories/questionnaire/logement.json +21073 -0
  257. package/src/stories/questionnaire/loop-and-controls.json +481 -0
  258. package/src/stories/questionnaire/questionnaire.stories.js +236 -0
  259. package/src/stories/questionnaire/simpsons.json +4816 -0
  260. package/src/stories/questionnaire/update-external/data.json +1 -0
  261. package/src/stories/questionnaire/update-external/questionnaire.json +75 -0
  262. package/src/stories/radio/README.md +31 -30
  263. package/src/stories/radio/data-forced.json +32 -0
  264. package/src/stories/radio/data-vtl.json +47 -0
  265. package/src/stories/radio/data.json +32 -0
  266. package/src/stories/radio/radio.stories.js +64 -110
  267. package/src/stories/sequence/README.md +18 -16
  268. package/src/stories/sequence/sequence.stories.js +32 -46
  269. package/src/stories/subsequence/README.md +18 -16
  270. package/src/stories/subsequence/subsequence.stories.js +32 -46
  271. package/src/stories/suggester/README.md +46 -0
  272. package/src/stories/suggester/bailleurs-sociaux/fetch-bailleurs.js +15 -0
  273. package/src/stories/suggester/bailleurs-sociaux/index.js +2 -0
  274. package/src/stories/suggester/bailleurs-sociaux/option-bailleur-renderer.js +58 -0
  275. package/src/stories/suggester/bailleurs-sociaux/preloader.svg +52 -0
  276. package/src/stories/suggester/bailleurs-sociaux/theme.scss +22 -0
  277. package/src/stories/suggester/bailleurs-sociaux-2021/fetch-bailleurs.js +12 -0
  278. package/src/stories/suggester/bailleurs-sociaux-2021/index.js +1 -0
  279. package/src/stories/suggester/cog-communes/fetch-cog.js +15 -0
  280. package/src/stories/suggester/cog-communes/index.js +2 -0
  281. package/src/stories/suggester/cog-communes/option-cog-renderer.js +15 -0
  282. package/src/stories/suggester/cog-communes/theme.scss +12 -0
  283. package/src/stories/suggester/data-auto.json +232 -0
  284. package/src/stories/suggester/data-vtl.json +82 -0
  285. package/src/stories/suggester/data.json +169 -0
  286. package/src/stories/suggester/naf-rev2/fetch-naf.js +57 -0
  287. package/src/stories/suggester/naf-rev2/index.js +2 -0
  288. package/src/stories/suggester/naf-rev2/option-naf-renderer.js +17 -0
  289. package/src/stories/suggester/naf-rev2/theme.scss +36 -0
  290. package/src/stories/suggester/suggester-workers.stories.js +226 -0
  291. package/src/stories/suggester/suggester.stories.js +138 -0
  292. package/src/stories/table/README.md +29 -23
  293. package/src/stories/table/data-default.json +19 -0
  294. package/src/stories/table/data-one-axis-one-measure.json +139 -0
  295. package/src/stories/table/data-one-axis-two-measures.json +208 -0
  296. package/src/stories/table/data-one-hierarchical-axis.json +219 -0
  297. package/src/stories/table/data-roster.json +486 -0
  298. package/src/stories/table/data-two-axis-one-measure.json +507 -0
  299. package/src/stories/table/table.stories.js +82 -1021
  300. package/src/stories/textarea/README.md +33 -29
  301. package/src/stories/textarea/data-forced.json +28 -0
  302. package/src/stories/textarea/data.json +43 -0
  303. package/src/stories/textarea/textarea.stories.js +68 -85
  304. package/src/stories/tooltip-response/README.md +14 -14
  305. package/src/stories/tooltip-response/md-link.json +31 -0
  306. package/src/stories/tooltip-response/md-tooltip.json +31 -0
  307. package/src/stories/tooltip-response/tooltip.stories.js +83 -43
  308. package/src/stories/utils/custom-lunatic.scss +23 -0
  309. package/src/stories/utils/img/arrow.png +0 -0
  310. package/src/stories/utils/img/check_box.svg +1 -0
  311. package/src/stories/utils/img/check_box_outline.svg +1 -0
  312. package/src/stories/utils/img/lunatic-logo.png +0 -0
  313. package/src/stories/utils/img/menu-down.svg +1 -0
  314. package/src/stories/utils/img/menu-up.svg +1 -0
  315. package/src/stories/utils/img/radio_button_checked.svg +1 -0
  316. package/src/stories/utils/img/radio_button_unchecked.svg +1 -0
  317. package/src/stories/utils/options.js +25 -0
  318. package/src/stories/utils/orchestrator-split.js +119 -0
  319. package/src/stories/utils/orchestrator.js +119 -0
  320. package/src/tests/components/breadcrumb.spec.js +13 -13
  321. package/src/tests/components/button.spec.js +11 -11
  322. package/src/tests/components/checkbox-boolean.spec.js +45 -22
  323. package/src/tests/components/checkbox-group.spec.js +53 -17
  324. package/src/tests/components/checkbox-one.spec.js +32 -17
  325. package/src/tests/components/datepicker.spec.js +22 -42
  326. package/src/tests/components/declarations-wrappers/input-declarations-wrapper.spec.js +67 -0
  327. package/src/tests/components/declarations-wrappers/list-declarations-wrapper.spec.js +52 -0
  328. package/src/tests/components/declarations-wrappers/simple-declarations-wrapper.spec.js +21 -0
  329. package/src/tests/components/declarations.spec.js +46 -46
  330. package/src/tests/components/input-number.spec.js +188 -85
  331. package/src/tests/components/input.spec.js +18 -38
  332. package/src/tests/components/loops/loop-static.json +66 -0
  333. package/src/tests/components/loops/loop.json +258 -0
  334. package/src/tests/components/loops/loop.spec.js +30 -0
  335. package/src/tests/components/loops/roster-for-loop.spec.js +18 -0
  336. package/src/tests/components/loops/roster-loop.json +71 -0
  337. package/src/tests/components/missing-wrapper.spec.js +32 -0
  338. package/src/tests/components/progress-bar.spec.js +15 -15
  339. package/src/tests/components/radio.spec.js +27 -21
  340. package/src/tests/components/sequence.spec.js +9 -9
  341. package/src/tests/components/subsequence.spec.js +9 -9
  342. package/src/tests/components/table.spec.js +11 -11
  343. package/src/tests/components/textarea.spec.js +18 -38
  344. package/src/tests/components/tooltip.spec.js +25 -0
  345. package/src/tests/setup/setupTests.js +4 -4
  346. package/src/tests/utils/lib/alphabet.spec.js +36 -0
  347. package/src/tests/utils/lib/array.spec.js +22 -0
  348. package/src/tests/utils/lib/checkbox/group.spec.js +72 -0
  349. package/src/tests/utils/lib/decorator/title-decorator.spec.js +12 -12
  350. package/src/tests/utils/lib/input-number.spec.js +18 -0
  351. package/src/tests/utils/lib/items-positioning.spec.js +17 -17
  352. package/src/tests/utils/lib/label-position.spec.js +22 -19
  353. package/src/tests/utils/lib/loops/bindings.spec.js +75 -0
  354. package/src/tests/utils/lib/loops/shared.spec.js +82 -0
  355. package/src/tests/utils/lib/missing/missing.spec.js +74 -0
  356. package/src/tests/utils/lib/missing/mock.js +137 -0
  357. package/src/tests/utils/lib/pagination/shared.spec.js +42 -0
  358. package/src/tests/utils/lib/responses.spec.js +64 -68
  359. package/src/tests/utils/lib/style.spec.js +26 -26
  360. package/src/tests/utils/lib/table/roster.spec.js +25 -25
  361. package/src/tests/utils/lib/tooltip/build-response.spec.js +95 -50
  362. package/src/tests/utils/lib/tooltip/content.spec.js +109 -0
  363. package/src/tests/utils/to-expose/handler/handler.spec.js +94 -0
  364. package/src/tests/utils/to-expose/handler/questionnaire.json +158 -0
  365. package/src/tests/utils/to-expose/handler/results/index.js +6 -0
  366. package/src/tests/utils/to-expose/handler/results/res-double.json +158 -0
  367. package/src/tests/utils/to-expose/handler/results/res-input-collected.json +158 -0
  368. package/src/tests/utils/to-expose/handler/results/res-input-edited.json +158 -0
  369. package/src/tests/utils/to-expose/handler/results/res-loop.json +158 -0
  370. package/src/tests/utils/to-expose/handler/results/res-matrix.json +158 -0
  371. package/src/tests/utils/to-expose/handler/results/res-responses.json +158 -0
  372. package/src/tests/utils/to-expose/init-questionnaire/data.json +12 -0
  373. package/src/tests/utils/to-expose/init-questionnaire/init-questionnaire.spec.js +19 -0
  374. package/src/tests/utils/to-expose/init-questionnaire/questionnaire.json +148 -0
  375. package/src/tests/utils/to-expose/init-questionnaire/result.json +181 -0
  376. package/src/tests/utils/to-expose/interpret/interpret.spec.js +48 -0
  377. package/src/tests/utils/to-expose/state/questionnaire.json +61 -0
  378. package/src/tests/utils/to-expose/state/results.js +78 -0
  379. package/src/tests/utils/to-expose/state/state.spec.js +59 -0
  380. package/src/utils/components/dragger/dragger.js +64 -0
  381. package/src/utils/components/dragger/dragger.scss +8 -0
  382. package/src/utils/components/dragger/index.js +1 -0
  383. package/src/utils/components/fab/fab.js +50 -0
  384. package/src/utils/components/fab/fab.scss +32 -0
  385. package/src/utils/components/fab/index.js +1 -0
  386. package/src/utils/components/field-wrapper.js +23 -0
  387. package/src/utils/components/is-network/index.js +1 -0
  388. package/src/utils/components/is-network/is-network.js +39 -0
  389. package/src/utils/components/is-network/use-online-status.js +51 -0
  390. package/src/utils/components/label-wrapper.js +45 -0
  391. package/src/utils/icons/closed.icon.js +24 -0
  392. package/src/utils/icons/cross.icon.js +24 -0
  393. package/src/utils/icons/load.icon.js +24 -0
  394. package/src/utils/icons/lunatic-icon.js +9 -0
  395. package/src/utils/icons/lunatic-icon.scss +4 -0
  396. package/src/utils/icons/network.icon.js +24 -0
  397. package/src/utils/icons/on-drag.icon.js +24 -0
  398. package/src/utils/icons/opened.icon.js +24 -0
  399. package/src/utils/idb-tools/clear-store.js +16 -0
  400. package/src/utils/idb-tools/create-db-opener.js +43 -0
  401. package/src/utils/idb-tools/create-open-db.js +25 -0
  402. package/src/utils/idb-tools/get-entity.js +15 -0
  403. package/src/utils/idb-tools/get-idb.js +12 -0
  404. package/src/utils/idb-tools/idb-bulk-insert.js +96 -0
  405. package/src/utils/idb-tools/index.js +10 -0
  406. package/src/utils/idb-tools/insert-entity.js +15 -0
  407. package/src/utils/idb-tools/open-db.js +13 -0
  408. package/src/utils/idb-tools/open-or-create-db.js +34 -0
  409. package/src/utils/lib/alphabet.js +1 -1
  410. package/src/utils/lib/array.js +7 -0
  411. package/src/utils/lib/checkbox/group.js +21 -0
  412. package/src/utils/lib/checkbox/index.js +1 -0
  413. package/src/utils/lib/controls/index.js +1 -0
  414. package/src/utils/lib/controls/utils.js +152 -0
  415. package/src/utils/lib/decorator/index.js +1 -1
  416. package/src/utils/lib/decorator/title-decorator.js +16 -18
  417. package/src/utils/lib/env.js +2 -0
  418. package/src/utils/lib/event.js +15 -0
  419. package/src/utils/lib/function.js +1 -0
  420. package/src/utils/lib/index.js +21 -9
  421. package/src/utils/lib/input-number.js +6 -0
  422. package/src/utils/lib/label-position.js +12 -12
  423. package/src/utils/lib/loops/bindings.js +66 -0
  424. package/src/utils/lib/loops/build-components.js +33 -0
  425. package/src/utils/lib/loops/index.js +3 -0
  426. package/src/utils/lib/loops/shared.js +55 -0
  427. package/src/utils/lib/memo-check.js +24 -0
  428. package/src/utils/lib/missing.js +52 -0
  429. package/src/utils/lib/options-positioning.js +9 -9
  430. package/src/utils/lib/pagination/flow.js +2 -0
  431. package/src/utils/lib/pagination/index.js +2 -0
  432. package/src/utils/lib/pagination/navigation/index.js +1 -0
  433. package/src/utils/lib/pagination/navigation/shared.js +256 -0
  434. package/src/utils/lib/prop-types/declarations.js +22 -22
  435. package/src/utils/lib/prop-types/index.js +5 -5
  436. package/src/utils/lib/prop-types/lines.js +6 -6
  437. package/src/utils/lib/prop-types/options.js +8 -8
  438. package/src/utils/lib/prop-types/response.js +6 -15
  439. package/src/utils/lib/prop-types/value-type.js +9 -9
  440. package/src/utils/lib/responses.js +11 -9
  441. package/src/utils/lib/splitting.js +142 -0
  442. package/src/utils/lib/style.js +10 -10
  443. package/src/utils/lib/table/index.js +1 -1
  444. package/src/utils/lib/table/roster.js +23 -21
  445. package/src/utils/lib/tooltip/build-response.js +41 -11
  446. package/src/utils/lib/tooltip/content.js +55 -46
  447. package/src/utils/lib/tooltip/index.js +6 -2
  448. package/src/utils/store-tools/auto-load.js +74 -0
  449. package/src/utils/store-tools/clear-store-data.js +8 -0
  450. package/src/utils/store-tools/clear-store-info.js +8 -0
  451. package/src/utils/store-tools/constantes.js +20 -0
  452. package/src/utils/store-tools/create/create.js +19 -0
  453. package/src/utils/store-tools/create/index.js +1 -0
  454. package/src/utils/store-tools/create/update-store-info.js +26 -0
  455. package/src/utils/store-tools/get-store-count.js +22 -0
  456. package/src/utils/store-tools/index.js +5 -0
  457. package/src/utils/store-tools/open-or-create-store.js +47 -0
  458. package/src/utils/store-tools/use-store-index.js +24 -0
  459. package/src/utils/suggester-workers/append-to-index/append.js +25 -0
  460. package/src/utils/suggester-workers/append-to-index/append.worker.js +16 -0
  461. package/src/utils/suggester-workers/append-to-index/create-append-task.js +45 -0
  462. package/src/utils/suggester-workers/append-to-index/index.js +2 -0
  463. package/src/utils/suggester-workers/append-to-index/prepare-entities.js +61 -0
  464. package/src/utils/suggester-workers/append-to-index/store-messages.js +21 -0
  465. package/src/utils/suggester-workers/commons-tokenizer/create-entity-tokenizer.js +56 -0
  466. package/src/utils/suggester-workers/commons-tokenizer/create-fields-tokenizer.js +56 -0
  467. package/src/utils/suggester-workers/commons-tokenizer/create-filter-stop-words.js +17 -0
  468. package/src/utils/suggester-workers/commons-tokenizer/filters/compose-filters.js +10 -0
  469. package/src/utils/suggester-workers/commons-tokenizer/filters/create-filter-stop-words.js +17 -0
  470. package/src/utils/suggester-workers/commons-tokenizer/filters/create-filter-stop-words.spec.js +14 -0
  471. package/src/utils/suggester-workers/commons-tokenizer/filters/filter-accents.js +12 -0
  472. package/src/utils/suggester-workers/commons-tokenizer/filters/filter-accents.spec.js +12 -0
  473. package/src/utils/suggester-workers/commons-tokenizer/filters/filter-double.js +12 -0
  474. package/src/utils/suggester-workers/commons-tokenizer/filters/filter-double.spec.js +20 -0
  475. package/src/utils/suggester-workers/commons-tokenizer/filters/filter-length.js +7 -0
  476. package/src/utils/suggester-workers/commons-tokenizer/filters/filter-length.spec.js +18 -0
  477. package/src/utils/suggester-workers/commons-tokenizer/filters/filter-stemmer.js +13 -0
  478. package/src/utils/suggester-workers/commons-tokenizer/filters/filter-stemmer.spec.js +12 -0
  479. package/src/utils/suggester-workers/commons-tokenizer/filters/filter-synonyms.js +36 -0
  480. package/src/utils/suggester-workers/commons-tokenizer/filters/filter-synonyms.spec.js +12 -0
  481. package/src/utils/suggester-workers/commons-tokenizer/filters/filter-to-lower.js +10 -0
  482. package/src/utils/suggester-workers/commons-tokenizer/filters/filter-to-lower.spec.js +12 -0
  483. package/src/utils/suggester-workers/commons-tokenizer/filters/index.js +2 -0
  484. package/src/utils/suggester-workers/commons-tokenizer/filters/stop-words.js +118 -0
  485. package/src/utils/suggester-workers/commons-tokenizer/get-regexp-from-pattern.js +8 -0
  486. package/src/utils/suggester-workers/commons-tokenizer/get-stemmer.js +18 -0
  487. package/src/utils/suggester-workers/commons-tokenizer/index.js +9 -0
  488. package/src/utils/suggester-workers/commons-tokenizer/prepare-string-indexation.js +13 -0
  489. package/src/utils/suggester-workers/commons-tokenizer/soft-tokenizer.js +7 -0
  490. package/src/utils/suggester-workers/create-worker.js +56 -0
  491. package/src/utils/suggester-workers/find-best-label/find-best-label.js +39 -0
  492. package/src/utils/suggester-workers/find-best-label/find-best-label.worker.js +40 -0
  493. package/src/utils/suggester-workers/find-best-label/index.js +0 -0
  494. package/src/utils/suggester-workers/find-best-label/tokenize.js +30 -0
  495. package/src/utils/suggester-workers/find-best-label/tokenize.spec.js +19 -0
  496. package/src/utils/suggester-workers/searching/compute-score.js +33 -0
  497. package/src/utils/suggester-workers/searching/get-db.js +18 -0
  498. package/src/utils/suggester-workers/searching/index.js +1 -0
  499. package/src/utils/suggester-workers/searching/order/create-alphanumeric-orderer.js +20 -0
  500. package/src/utils/suggester-workers/searching/order/index.js +19 -0
  501. package/src/utils/suggester-workers/searching/query-parser/index.js +2 -0
  502. package/src/utils/suggester-workers/searching/query-parser/query-parser-soft.js +7 -0
  503. package/src/utils/suggester-workers/searching/query-parser/query-parser-soft.spec.js +24 -0
  504. package/src/utils/suggester-workers/searching/query-parser/query-parser-tokenized.js +34 -0
  505. package/src/utils/suggester-workers/searching/resolve-query-parser.js +27 -0
  506. package/src/utils/suggester-workers/searching/search-in-index.js +17 -0
  507. package/src/utils/suggester-workers/searching/searching.js +70 -0
  508. package/src/utils/suggester-workers/searching/searching.worker.js +11 -0
  509. package/src/utils/to-expose/calculated-variables.js +113 -0
  510. package/src/utils/to-expose/handler.js +149 -104
  511. package/src/utils/to-expose/hooks/filter-components.js +121 -0
  512. package/src/utils/to-expose/hooks/index.js +2 -0
  513. package/src/utils/to-expose/hooks/lunatic-split.js +428 -0
  514. package/src/utils/to-expose/hooks/lunatic.js +284 -0
  515. package/src/utils/to-expose/hooks/use-document-add-event-listener.js +63 -0
  516. package/src/utils/to-expose/index.js +11 -3
  517. package/src/utils/to-expose/init-questionnaire.js +164 -47
  518. package/src/utils/to-expose/interpret/index.js +1 -0
  519. package/src/utils/to-expose/interpret/main.js +16 -0
  520. package/src/utils/to-expose/interpret/md.js +65 -0
  521. package/src/utils/to-expose/interpret/vtl.js +18 -0
  522. package/src/utils/to-expose/state.js +66 -75
  523. package/src/components/dropdown/shared/option.component.js +0 -77
  524. package/src/components/dropdown/shared/select-base.component.js +0 -148
  525. package/src/components/dropdown/shared/select-container.component.js +0 -59
  526. package/src/components/dropdown/shared/select-panel.component.js +0 -202
  527. package/src/components/dropdown/simple/index.js +0 -10
  528. package/src/components/dropdown/simple/prop-types.js +0 -14
  529. package/src/components/dropdown/simple/simple-select-list.component.js +0 -31
  530. package/src/components/dropdown/simple/simple-select-nested.component.js +0 -70
  531. package/src/components/dropdown/simple/simple-select.scss +0 -84
  532. package/src/components/dropdown/writable/index.js +0 -1
  533. package/src/components/dropdown/writable/writable-select.component.js +0 -98
  534. package/src/components/dropdown/writable/writable-select.scss +0 -113
  535. package/src/components/subsequence/subsequence.scss +0 -15
  536. package/src/tests/components/dropdown.spec.js +0 -20
  537. package/src/tests/utils/to-expose/handler.spec.js +0 -184
  538. package/src/tests/utils/to-expose/init-questionnaire.spec.js +0 -10
  539. package/src/tests/utils/to-expose/state.spec.js +0 -251
@@ -0,0 +1,4362 @@
1
+ {
2
+ "id": "i6vwi2506qf2mms",
3
+ "modele": "SIMPSONS",
4
+ "enoCoreVersion": "2.2.3",
5
+ "lunaticModelVersion": "2.1.0",
6
+ "pagination": "sequence",
7
+ "maxPage": "8",
8
+ "label": "Questionnaire SIMPSONS 20201215",
9
+ "components": [
10
+ {
11
+ "id": "j6p0ti5h",
12
+ "componentType": "Sequence",
13
+ "page": "1",
14
+ "label": "\"I - Introduction\"",
15
+ "declarations": [
16
+ {
17
+ "id": "j6p0ti5h-d1",
18
+ "declarationType": "COMMENT",
19
+ "position": "AFTER_QUESTION_TEXT",
20
+ "label": "\"We’re going to test your knowledge about the simpsons series.Welcome in the simpsons world!\""
21
+ }
22
+ ],
23
+ "conditionFilter": { "value": "true" },
24
+ "hierarchy": {
25
+ "sequence": {
26
+ "id": "j6p0ti5h",
27
+ "page": "1",
28
+ "label": "\"I - Introduction\""
29
+ }
30
+ }
31
+ },
32
+
33
+ {
34
+ "id": "j6p3dkx6",
35
+ "componentType": "Textarea",
36
+ "mandatory": true,
37
+ "page": "1",
38
+ "maxLength": 500,
39
+ "label": "\"➡ 1. Before starting, do you have any comments about the Simpsons family?\"",
40
+ "conditionFilter": { "value": "true" },
41
+ "hierarchy": {
42
+ "sequence": {
43
+ "id": "j6p0ti5h",
44
+ "page": "1",
45
+ "label": "\"I - Introduction\""
46
+ }
47
+ },
48
+ "bindingDependencies": ["COMMENT"],
49
+ "response": { "name": "COMMENT" }
50
+ },
51
+
52
+ {
53
+ "id": "j6p0np9q",
54
+ "componentType": "CheckboxBoolean",
55
+ "mandatory": false,
56
+ "page": "1",
57
+ "label": "\"➡ 2. If you agree to answer this questionnaire, please check the box\"",
58
+ "declarations": [
59
+ {
60
+ "id": "j6p0np9q-kir6xl1e",
61
+ "declarationType": "COMMENT",
62
+ "position": "AFTER_QUESTION_TEXT",
63
+ "label": "\"If not, this is unfortunately the end of this questionnaire.\""
64
+ }
65
+ ],
66
+ "conditionFilter": { "value": "true" },
67
+ "hierarchy": {
68
+ "sequence": {
69
+ "id": "j6p0ti5h",
70
+ "page": "1",
71
+ "label": "\"I - Introduction\""
72
+ }
73
+ },
74
+ "bindingDependencies": ["READY"],
75
+ "response": { "name": "READY" }
76
+ },
77
+
78
+ {
79
+ "id": "j6p6my1d",
80
+ "componentType": "FilterDescription",
81
+ "page": "1",
82
+ "filterDescription": false,
83
+ "label": "\"If you are not ready, please go to the end of the questionnaire\"",
84
+ "conditionFilter": { "value": "true" },
85
+ "hierarchy": {
86
+ "sequence": {
87
+ "id": "j6p0ti5h",
88
+ "page": "1",
89
+ "label": "\"I - Introduction\""
90
+ }
91
+ }
92
+ },
93
+
94
+ {
95
+ "id": "j6p0s7o5",
96
+ "componentType": "Subsequence",
97
+ "page": "1",
98
+ "label": "\"General knowledge of the series\"",
99
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
100
+ "hierarchy": {
101
+ "sequence": {
102
+ "id": "j6p0ti5h",
103
+ "page": "1",
104
+ "label": "\"I - Introduction\""
105
+ },
106
+ "subSequence": {
107
+ "id": "j6p0s7o5",
108
+ "page": "1",
109
+ "label": "\"General knowledge of the series\""
110
+ }
111
+ }
112
+ },
113
+
114
+ {
115
+ "id": "j3343qhx",
116
+ "componentType": "Input",
117
+ "mandatory": false,
118
+ "page": "1",
119
+ "maxLength": 30,
120
+ "label": "\"➡ 3. Who is the producer?\"",
121
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
122
+ "hierarchy": {
123
+ "sequence": {
124
+ "id": "j6p0ti5h",
125
+ "page": "1",
126
+ "label": "\"I - Introduction\""
127
+ },
128
+ "subSequence": {
129
+ "id": "j6p0s7o5",
130
+ "page": "1",
131
+ "label": "\"General knowledge of the series\""
132
+ }
133
+ },
134
+ "bindingDependencies": ["PRODUCER"],
135
+ "response": { "name": "PRODUCER" }
136
+ },
137
+
138
+ {
139
+ "id": "j6q9h8tj",
140
+ "componentType": "InputNumber",
141
+ "mandatory": true,
142
+ "page": "1",
143
+ "min": 0,
144
+ "max": 99,
145
+ "decimals": 0,
146
+ "label": "\"➡ 4. What is the current season number?\"",
147
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
148
+ "hierarchy": {
149
+ "sequence": {
150
+ "id": "j6p0ti5h",
151
+ "page": "1",
152
+ "label": "\"I - Introduction\""
153
+ },
154
+ "subSequence": {
155
+ "id": "j6p0s7o5",
156
+ "page": "1",
157
+ "label": "\"General knowledge of the series\""
158
+ }
159
+ },
160
+ "bindingDependencies": ["SEASON_NUMBER"],
161
+ "response": { "name": "SEASON_NUMBER" }
162
+ },
163
+
164
+ {
165
+ "id": "kiq71eoi",
166
+ "componentType": "Datepicker",
167
+ "mandatory": false,
168
+ "page": "1",
169
+ "min": "1900-01-01",
170
+ "max": "format-date(current-date(),'[Y0001]-[M01]-[D01]')",
171
+ "label": "\"➡ 5. When was the first episode of Simpsons? (format YYYY-MM-DD)\"",
172
+ "declarations": [
173
+ {
174
+ "id": "kiq71eoi-kiq7dsy2",
175
+ "declarationType": "INSTRUCTION",
176
+ "position": "AFTER_QUESTION_TEXT",
177
+ "label": "\"Please answer with YYYY-MM-DD format\""
178
+ }
179
+ ],
180
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
181
+ "hierarchy": {
182
+ "sequence": {
183
+ "id": "j6p0ti5h",
184
+ "page": "1",
185
+ "label": "\"I - Introduction\""
186
+ },
187
+ "subSequence": {
188
+ "id": "j6p0s7o5",
189
+ "page": "1",
190
+ "label": "\"General knowledge of the series\""
191
+ }
192
+ },
193
+ "bindingDependencies": ["DATEFIRST"],
194
+ "dateFormat": "YYYY-MM-DD",
195
+ "response": { "name": "DATEFIRST" }
196
+ },
197
+
198
+ {
199
+ "id": "k5nvty2o",
200
+ "componentType": "Datepicker",
201
+ "mandatory": false,
202
+ "page": "1",
203
+ "min": "1980-05",
204
+ "label": "\"➡ 6. When was the first episode of the Simpsons? (format YYYY-MM)\"",
205
+ "declarations": [
206
+ {
207
+ "id": "k5nvty2o-k5nvxld8",
208
+ "declarationType": "COMMENT",
209
+ "position": "AFTER_QUESTION_TEXT",
210
+ "label": "\"Please answer with YYYY-MM format\""
211
+ }
212
+ ],
213
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
214
+ "hierarchy": {
215
+ "sequence": {
216
+ "id": "j6p0ti5h",
217
+ "page": "1",
218
+ "label": "\"I - Introduction\""
219
+ },
220
+ "subSequence": {
221
+ "id": "j6p0s7o5",
222
+ "page": "1",
223
+ "label": "\"General knowledge of the series\""
224
+ }
225
+ },
226
+ "bindingDependencies": ["DATEYYYYMM"],
227
+ "dateFormat": "YYYY-MM",
228
+ "response": { "name": "DATEYYYYMM" }
229
+ },
230
+
231
+ {
232
+ "id": "k5nw1fir",
233
+ "componentType": "Datepicker",
234
+ "mandatory": false,
235
+ "page": "1",
236
+ "min": "1900",
237
+ "max": "year-from-date(current-date())",
238
+ "label": "\"➡ 7. When was the first episode of the Simpsons? (format YYYY)\"",
239
+ "declarations": [
240
+ {
241
+ "id": "k5nw1fir-k5nvmx3n",
242
+ "declarationType": "COMMENT",
243
+ "position": "AFTER_QUESTION_TEXT",
244
+ "label": "\"Please answer with YYYY format\""
245
+ }
246
+ ],
247
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
248
+ "hierarchy": {
249
+ "sequence": {
250
+ "id": "j6p0ti5h",
251
+ "page": "1",
252
+ "label": "\"I - Introduction\""
253
+ },
254
+ "subSequence": {
255
+ "id": "j6p0s7o5",
256
+ "page": "1",
257
+ "label": "\"General knowledge of the series\""
258
+ }
259
+ },
260
+ "bindingDependencies": ["DATEYYYY"],
261
+ "dateFormat": "YYYY",
262
+ "response": { "name": "DATEYYYY" }
263
+ },
264
+
265
+ {
266
+ "id": "k5nw0w05",
267
+ "componentType": "InputNumber",
268
+ "mandatory": false,
269
+ "page": "1",
270
+ "min": 0,
271
+ "max": 70,
272
+ "decimals": 2,
273
+ "label": "\"➡ 8. How long does an episode last?\"",
274
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
275
+ "hierarchy": {
276
+ "sequence": {
277
+ "id": "j6p0ti5h",
278
+ "page": "1",
279
+ "label": "\"I - Introduction\""
280
+ },
281
+ "subSequence": {
282
+ "id": "j6p0s7o5",
283
+ "page": "1",
284
+ "label": "\"General knowledge of the series\""
285
+ }
286
+ },
287
+ "bindingDependencies": ["DURATIONH"],
288
+ "unit": "heures",
289
+ "response": { "name": "DURATIONH" }
290
+ },
291
+
292
+ {
293
+ "id": "k5nvu98z",
294
+ "componentType": "InputNumber",
295
+ "mandatory": false,
296
+ "page": "1",
297
+ "min": 0,
298
+ "max": 366,
299
+ "decimals": 1,
300
+ "label": "\"➡ 9. How long does it take to write a new episode?\"",
301
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
302
+ "hierarchy": {
303
+ "sequence": {
304
+ "id": "j6p0ti5h",
305
+ "page": "1",
306
+ "label": "\"I - Introduction\""
307
+ },
308
+ "subSequence": {
309
+ "id": "j6p0s7o5",
310
+ "page": "1",
311
+ "label": "\"General knowledge of the series\""
312
+ }
313
+ },
314
+ "bindingDependencies": ["DURATIOND"],
315
+ "unit": "jours",
316
+ "response": { "name": "DURATIOND" }
317
+ },
318
+
319
+ {
320
+ "id": "k5nw8ei1",
321
+ "componentType": "InputNumber",
322
+ "mandatory": false,
323
+ "page": "1",
324
+ "min": 0,
325
+ "max": 12,
326
+ "decimals": 0,
327
+ "label": "\"➡ 10. How long will it take you to watch all the existing episodes?\"",
328
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
329
+ "hierarchy": {
330
+ "sequence": {
331
+ "id": "j6p0ti5h",
332
+ "page": "1",
333
+ "label": "\"I - Introduction\""
334
+ },
335
+ "subSequence": {
336
+ "id": "j6p0s7o5",
337
+ "page": "1",
338
+ "label": "\"General knowledge of the series\""
339
+ }
340
+ },
341
+ "bindingDependencies": ["DURATIONM"],
342
+ "unit": "mois",
343
+ "response": { "name": "DURATIONM" }
344
+ },
345
+
346
+ {
347
+ "id": "k5nw9dk4",
348
+ "componentType": "InputNumber",
349
+ "mandatory": false,
350
+ "page": "1",
351
+ "min": 0,
352
+ "max": 100,
353
+ "decimals": 0,
354
+ "label": "\"➡ 11. For how long have you known the Simpsons family?\"",
355
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
356
+ "hierarchy": {
357
+ "sequence": {
358
+ "id": "j6p0ti5h",
359
+ "page": "1",
360
+ "label": "\"I - Introduction\""
361
+ },
362
+ "subSequence": {
363
+ "id": "j6p0s7o5",
364
+ "page": "1",
365
+ "label": "\"General knowledge of the series\""
366
+ }
367
+ },
368
+ "bindingDependencies": ["DURATIONY"],
369
+ "unit": "années",
370
+ "response": { "name": "DURATIONY" }
371
+ },
372
+
373
+ {
374
+ "id": "j6z06z1e",
375
+ "componentType": "InputNumber",
376
+ "mandatory": false,
377
+ "page": "1",
378
+ "min": 0,
379
+ "max": 99,
380
+ "decimals": 1,
381
+ "label": "\"➡ 15. In your opinion, how much is the part of audience share in US for the 2016 season?\"",
382
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
383
+ "hierarchy": {
384
+ "sequence": {
385
+ "id": "j6p0ti5h",
386
+ "page": "1",
387
+ "label": "\"I - Introduction\""
388
+ },
389
+ "subSequence": {
390
+ "id": "j6p0s7o5",
391
+ "page": "1",
392
+ "label": "\"General knowledge of the series\""
393
+ }
394
+ },
395
+ "bindingDependencies": ["AUDIENCE_SHARE"],
396
+ "unit": "%",
397
+ "response": { "name": "AUDIENCE_SHARE" }
398
+ },
399
+
400
+ {
401
+ "id": "j3341528",
402
+ "componentType": "Sequence",
403
+ "page": "2",
404
+ "label": "\"II - Simpsons’ city\"",
405
+ "declarations": [
406
+ {
407
+ "id": "j3341528-d2",
408
+ "declarationType": "COMMENT",
409
+ "position": "AFTER_QUESTION_TEXT",
410
+ "label": "\"This module asks about your general knowledge of the Simpsons city\""
411
+ }
412
+ ],
413
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
414
+ "hierarchy": {
415
+ "sequence": {
416
+ "id": "j3341528",
417
+ "page": "2",
418
+ "label": "\"II - Simpsons’ city\""
419
+ }
420
+ }
421
+ },
422
+
423
+ {
424
+ "id": "j3343clt",
425
+ "componentType": "Radio",
426
+ "mandatory": true,
427
+ "page": "2",
428
+ "label": "\"➡ 1. In which city do the Simpsons reside?\"",
429
+ "declarations": [
430
+ {
431
+ "id": "j3343clt-d3",
432
+ "declarationType": "INSTRUCTION",
433
+ "position": "AFTER_QUESTION_TEXT",
434
+ "label": "\"One possible answer\""
435
+ }
436
+ ],
437
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
438
+ "hierarchy": {
439
+ "sequence": {
440
+ "id": "j3341528",
441
+ "page": "2",
442
+ "label": "\"II - Simpsons’ city\""
443
+ }
444
+ },
445
+ "bindingDependencies": ["CITY"],
446
+ "options": [
447
+ { "value": "00001", "label": "\"Springfield\"" },
448
+
449
+ { "value": "00002", "label": "\"Shelbyville\"" },
450
+
451
+ { "value": "03", "label": "\"Seinfeld\"" }
452
+ ],
453
+ "response": { "name": "CITY" }
454
+ },
455
+
456
+ {
457
+ "id": "j6qdfhvw",
458
+ "componentType": "CheckboxOne",
459
+ "mandatory": false,
460
+ "page": "2",
461
+ "label": "\"➡ 2. Who is the Simpsons city mayor?\"",
462
+ "declarations": [
463
+ {
464
+ "id": "j6qdfhvw-d4",
465
+ "declarationType": "INSTRUCTION",
466
+ "position": "AFTER_QUESTION_TEXT",
467
+ "label": "\"Only one possible answer\""
468
+ }
469
+ ],
470
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
471
+ "hierarchy": {
472
+ "sequence": {
473
+ "id": "j3341528",
474
+ "page": "2",
475
+ "label": "\"II - Simpsons’ city\""
476
+ }
477
+ },
478
+ "bindingDependencies": ["MAYOR"],
479
+ "options": [
480
+ { "value": "1", "label": "\"Constance Harm\"" },
481
+
482
+ { "value": "2", "label": "\"Timothy Lovejoy\"" },
483
+
484
+ { "value": "3", "label": "\"Joe Quimby\"" },
485
+
486
+ { "value": "OT", "label": "\"Other name\"" }
487
+ ],
488
+ "response": { "name": "MAYOR" }
489
+ },
490
+
491
+ {
492
+ "id": "j4nw5cqz",
493
+ "componentType": "Dropdown",
494
+ "mandatory": false,
495
+ "page": "2",
496
+ "label": "\"➡ 3. In which state do The Simpsons reside?\"",
497
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
498
+ "hierarchy": {
499
+ "sequence": {
500
+ "id": "j3341528",
501
+ "page": "2",
502
+ "label": "\"II - Simpsons’ city\""
503
+ }
504
+ },
505
+ "bindingDependencies": ["STATE"],
506
+ "options": [
507
+ { "value": "1", "label": "\"Washington\"" },
508
+
509
+ { "value": "2", "label": "\"Kentucky\"" },
510
+
511
+ { "value": "3", "label": "\"Ohio\"" },
512
+
513
+ { "value": "4", "label": "\"Maine\"" },
514
+
515
+ { "value": "5", "label": "\"North Dakota\"" },
516
+
517
+ { "value": "6", "label": "\"Florida\"" },
518
+
519
+ { "value": "7", "label": "\"North Takoma\"" },
520
+
521
+ { "value": "8", "label": "\"California\"" },
522
+
523
+ { "value": "9", "label": "\"Texas\"" },
524
+
525
+ { "value": "10", "label": "\"Massachusetts\"" },
526
+
527
+ { "value": "11", "label": "\"Nevada\"" },
528
+
529
+ { "value": "12", "label": "\"Illinois\"" },
530
+
531
+ { "value": "13", "label": "\"Not in any state, you fool!\"" }
532
+ ],
533
+ "response": { "name": "STATE" }
534
+ },
535
+
536
+ {
537
+ "id": "j6qe0h9q",
538
+ "componentType": "Sequence",
539
+ "page": "3",
540
+ "label": "\"III - Characters\"",
541
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
542
+ "hierarchy": {
543
+ "sequence": {
544
+ "id": "j6qe0h9q",
545
+ "page": "3",
546
+ "label": "\"III - Characters\""
547
+ }
548
+ }
549
+ },
550
+
551
+ {
552
+ "id": "j334akov",
553
+ "componentType": "CheckboxGroup",
554
+ "page": "3",
555
+ "label": "\"➡ 1. What are the pet names that the Simpsons family had?\"",
556
+ "declarations": [
557
+ {
558
+ "id": "j334akov-d5",
559
+ "declarationType": "INSTRUCTION",
560
+ "position": "AFTER_QUESTION_TEXT",
561
+ "label": "\"Several possible answers\""
562
+ }
563
+ ],
564
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
565
+ "hierarchy": {
566
+ "sequence": {
567
+ "id": "j6qe0h9q",
568
+ "page": "3",
569
+ "label": "\"III - Characters\""
570
+ }
571
+ },
572
+ "bindingDependencies": ["PET1", "PET2", "PET3", "PET4"],
573
+ "responses": [
574
+ {
575
+ "id": "j334akov-QOP-khokqjtw",
576
+ "label": "\"Santa’s Little Helper\"",
577
+ "response": { "name": "PET1" }
578
+ },
579
+
580
+ {
581
+ "id": "j334akov-QOP-khokur7a",
582
+ "label": "\"Snowball I\"",
583
+ "response": { "name": "PET2" }
584
+ },
585
+
586
+ {
587
+ "id": "j334akov-QOP-khol82ux",
588
+ "label": "\"Coltrane\"",
589
+ "response": { "name": "PET3" }
590
+ },
591
+
592
+ {
593
+ "id": "j334akov-QOP-khokqee5",
594
+ "label": "\"Other name\"",
595
+ "response": { "name": "PET4" }
596
+ }
597
+ ]
598
+ },
599
+
600
+ {
601
+ "id": "j6p29i81",
602
+ "componentType": "Table",
603
+ "mandatory": false,
604
+ "page": "3",
605
+ "positioning": "HORIZONTAL",
606
+ "label": "\"➡ 2. Does Jay like the following ice cream flavours?\"",
607
+ "declarations": [
608
+ {
609
+ "id": "d12-SI",
610
+ "declarationType": "STATEMENT",
611
+ "position": "BEFORE_QUESTION_TEXT",
612
+ "label": "\"Now we are going to know if you think that Jay is a gluton.\""
613
+ }
614
+ ],
615
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
616
+ "hierarchy": {
617
+ "sequence": {
618
+ "id": "j6qe0h9q",
619
+ "page": "3",
620
+ "label": "\"III - Characters\""
621
+ }
622
+ },
623
+ "bindingDependencies": [
624
+ "ICE_FLAVOUR1",
625
+ "ICE_FLAVOUR2",
626
+ "ICE_FLAVOUR3",
627
+ "ICE_FLAVOUR4"
628
+ ],
629
+ "cells": [
630
+ [
631
+ { "value": "1", "label": "\"Vanilla\"" },
632
+
633
+ {
634
+ "componentType": "Radio",
635
+ "id": "j6p29i81-QOP-kiq5w99y",
636
+ "options": [
637
+ { "value": "1", "label": "\"Yes\"" },
638
+
639
+ { "value": "0", "label": "\"No\"" }
640
+ ],
641
+ "response": { "name": "ICE_FLAVOUR1" },
642
+ "bindingDependencies": ["ICE_FLAVOUR1"]
643
+ }
644
+ ],
645
+
646
+ [
647
+ { "value": "2", "label": "\"Strawberry\"" },
648
+
649
+ {
650
+ "componentType": "Radio",
651
+ "id": "j6p29i81-QOP-kiq5ummf",
652
+ "options": [
653
+ { "value": "1", "label": "\"Yes\"" },
654
+
655
+ { "value": "0", "label": "\"No\"" }
656
+ ],
657
+ "response": { "name": "ICE_FLAVOUR2" },
658
+ "bindingDependencies": ["ICE_FLAVOUR2"]
659
+ }
660
+ ],
661
+
662
+ [
663
+ { "value": "3", "label": "\"Apple\"" },
664
+
665
+ {
666
+ "componentType": "Radio",
667
+ "id": "j6p29i81-QOP-kiq5mry5",
668
+ "options": [
669
+ { "value": "1", "label": "\"Yes\"" },
670
+
671
+ { "value": "0", "label": "\"No\"" }
672
+ ],
673
+ "response": { "name": "ICE_FLAVOUR3" },
674
+ "bindingDependencies": ["ICE_FLAVOUR3"]
675
+ }
676
+ ],
677
+
678
+ [
679
+ { "value": "OT", "label": "\"Other flavour\"" },
680
+
681
+ {
682
+ "componentType": "Radio",
683
+ "id": "j6p29i81-QOP-kiq5lkr8",
684
+ "options": [
685
+ { "value": "1", "label": "\"Yes\"" },
686
+
687
+ { "value": "0", "label": "\"No\"" }
688
+ ],
689
+ "response": { "name": "ICE_FLAVOUR4" },
690
+ "bindingDependencies": ["ICE_FLAVOUR4"]
691
+ }
692
+ ]
693
+ ]
694
+ },
695
+
696
+ {
697
+ "id": "j6qefnga",
698
+ "componentType": "Table",
699
+ "mandatory": false,
700
+ "page": "3",
701
+ "positioning": "HORIZONTAL",
702
+ "label": "\"➡ 3. Which character works in the nuclear power plant?\"",
703
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
704
+ "hierarchy": {
705
+ "sequence": {
706
+ "id": "j6qe0h9q",
707
+ "page": "3",
708
+ "label": "\"III - Characters\""
709
+ }
710
+ },
711
+ "bindingDependencies": [
712
+ "NUCLEAR_CHARACTER1",
713
+ "NUCLEAR_CHARACTER2",
714
+ "NUCLEAR_CHARACTER3",
715
+ "NUCLEAR_CHARACTER4"
716
+ ],
717
+ "cells": [
718
+ [
719
+ { "value": "1", "label": "\"Charles Montgomery Burns\"" },
720
+
721
+ {
722
+ "componentType": "Dropdown",
723
+ "id": "j6qefnga-QOP-kewva8xg",
724
+ "options": [
725
+ { "value": "1", "label": "\"Yes\"" },
726
+
727
+ { "value": "0", "label": "\"No\"" }
728
+ ],
729
+ "response": { "name": "NUCLEAR_CHARACTER1" },
730
+ "bindingDependencies": ["NUCLEAR_CHARACTER1"]
731
+ }
732
+ ],
733
+
734
+ [
735
+ { "value": "2", "label": "\"Carl Carlson\"" },
736
+
737
+ {
738
+ "componentType": "Dropdown",
739
+ "id": "j6qefnga-QOP-kewvj0ad",
740
+ "options": [
741
+ { "value": "1", "label": "\"Yes\"" },
742
+
743
+ { "value": "0", "label": "\"No\"" }
744
+ ],
745
+ "response": { "name": "NUCLEAR_CHARACTER2" },
746
+ "bindingDependencies": ["NUCLEAR_CHARACTER2"]
747
+ }
748
+ ],
749
+
750
+ [
751
+ { "value": "3", "label": "\"Otto Mann\"" },
752
+
753
+ {
754
+ "componentType": "Dropdown",
755
+ "id": "j6qefnga-QOP-kewveltm",
756
+ "options": [
757
+ { "value": "1", "label": "\"Yes\"" },
758
+
759
+ { "value": "0", "label": "\"No\"" }
760
+ ],
761
+ "response": { "name": "NUCLEAR_CHARACTER3" },
762
+ "bindingDependencies": ["NUCLEAR_CHARACTER3"]
763
+ }
764
+ ],
765
+
766
+ [
767
+ { "value": "4", "label": "\"Lenny Leonard\"" },
768
+
769
+ {
770
+ "componentType": "Dropdown",
771
+ "id": "j6qefnga-QOP-kewvgax4",
772
+ "options": [
773
+ { "value": "1", "label": "\"Yes\"" },
774
+
775
+ { "value": "0", "label": "\"No\"" }
776
+ ],
777
+ "response": { "name": "NUCLEAR_CHARACTER4" },
778
+ "bindingDependencies": ["NUCLEAR_CHARACTER4"]
779
+ }
780
+ ]
781
+ ]
782
+ },
783
+
784
+ {
785
+ "id": "j6yzoc6g",
786
+ "componentType": "Table",
787
+ "mandatory": false,
788
+ "page": "3",
789
+ "positioning": "HORIZONTAL",
790
+ "label": "\"➡ 4. In which city each character was born?\"",
791
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
792
+ "hierarchy": {
793
+ "sequence": {
794
+ "id": "j6qe0h9q",
795
+ "page": "3",
796
+ "label": "\"III - Characters\""
797
+ }
798
+ },
799
+ "bindingDependencies": [
800
+ "BIRTH_CHARACTER1",
801
+ "BIRTH_CHARACTER2",
802
+ "BIRTH_CHARACTER3",
803
+ "BIRTH_CHARACTER4",
804
+ "BIRTH_CHARACTER5"
805
+ ],
806
+ "cells": [
807
+ [
808
+ { "value": "1", "label": "\"Selma Bouvier\"" },
809
+
810
+ {
811
+ "componentType": "CheckboxOne",
812
+ "id": "j6yzoc6g-QOP-kewvjvcs",
813
+ "options": [
814
+ { "value": "1", "label": "\"Albuquerque\"" },
815
+
816
+ { "value": "2", "label": "\"Springfield\"" },
817
+
818
+ { "value": "3", "label": "\"Portland\"" },
819
+
820
+ { "value": "4", "label": "\"Shelbyville\"" },
821
+
822
+ { "value": "5", "label": "\"Dagstuhl\"" }
823
+ ],
824
+ "response": { "name": "BIRTH_CHARACTER1" },
825
+ "bindingDependencies": ["BIRTH_CHARACTER1"]
826
+ }
827
+ ],
828
+
829
+ [
830
+ { "value": "2", "label": "\"Kent Brockman\"" },
831
+
832
+ {
833
+ "componentType": "CheckboxOne",
834
+ "id": "j6yzoc6g-QOP-kewvhoda",
835
+ "options": [
836
+ { "value": "1", "label": "\"Albuquerque\"" },
837
+
838
+ { "value": "2", "label": "\"Springfield\"" },
839
+
840
+ { "value": "3", "label": "\"Portland\"" },
841
+
842
+ { "value": "4", "label": "\"Shelbyville\"" },
843
+
844
+ { "value": "5", "label": "\"Dagstuhl\"" }
845
+ ],
846
+ "response": { "name": "BIRTH_CHARACTER2" },
847
+ "bindingDependencies": ["BIRTH_CHARACTER2"]
848
+ }
849
+ ],
850
+
851
+ [
852
+ { "value": "3", "label": "\"Milhouse Van Houten\"" },
853
+
854
+ {
855
+ "componentType": "CheckboxOne",
856
+ "id": "j6yzoc6g-QOP-kewv64s5",
857
+ "options": [
858
+ { "value": "1", "label": "\"Albuquerque\"" },
859
+
860
+ { "value": "2", "label": "\"Springfield\"" },
861
+
862
+ { "value": "3", "label": "\"Portland\"" },
863
+
864
+ { "value": "4", "label": "\"Shelbyville\"" },
865
+
866
+ { "value": "5", "label": "\"Dagstuhl\"" }
867
+ ],
868
+ "response": { "name": "BIRTH_CHARACTER3" },
869
+ "bindingDependencies": ["BIRTH_CHARACTER3"]
870
+ }
871
+ ],
872
+
873
+ [
874
+ { "value": "4", "label": "\"Nelson Muntz\"" },
875
+
876
+ {
877
+ "componentType": "CheckboxOne",
878
+ "id": "j6yzoc6g-QOP-kewvj21j",
879
+ "options": [
880
+ { "value": "1", "label": "\"Albuquerque\"" },
881
+
882
+ { "value": "2", "label": "\"Springfield\"" },
883
+
884
+ { "value": "3", "label": "\"Portland\"" },
885
+
886
+ { "value": "4", "label": "\"Shelbyville\"" },
887
+
888
+ { "value": "5", "label": "\"Dagstuhl\"" }
889
+ ],
890
+ "response": { "name": "BIRTH_CHARACTER4" },
891
+ "bindingDependencies": ["BIRTH_CHARACTER4"]
892
+ }
893
+ ],
894
+
895
+ [
896
+ { "value": "5", "label": "\"Crazy Cat Lady\"" },
897
+
898
+ {
899
+ "componentType": "CheckboxOne",
900
+ "id": "j6yzoc6g-QOP-kewva5uf",
901
+ "options": [
902
+ { "value": "1", "label": "\"Albuquerque\"" },
903
+
904
+ { "value": "2", "label": "\"Springfield\"" },
905
+
906
+ { "value": "3", "label": "\"Portland\"" },
907
+
908
+ { "value": "4", "label": "\"Shelbyville\"" },
909
+
910
+ { "value": "5", "label": "\"Dagstuhl\"" }
911
+ ],
912
+ "response": { "name": "BIRTH_CHARACTER5" },
913
+ "bindingDependencies": ["BIRTH_CHARACTER5"]
914
+ }
915
+ ]
916
+ ]
917
+ },
918
+
919
+ {
920
+ "id": "j4nw88h2",
921
+ "componentType": "Sequence",
922
+ "page": "4",
923
+ "label": "\"IV - General questions\"",
924
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
925
+ "hierarchy": {
926
+ "sequence": {
927
+ "id": "j4nw88h2",
928
+ "page": "4",
929
+ "label": "\"IV - General questions\""
930
+ }
931
+ }
932
+ },
933
+
934
+ {
935
+ "id": "j6qe237q",
936
+ "componentType": "Subsequence",
937
+ "page": "4",
938
+ "label": "\"Kwik-E-Mart\"",
939
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
940
+ "hierarchy": {
941
+ "sequence": {
942
+ "id": "j4nw88h2",
943
+ "page": "4",
944
+ "label": "\"IV - General questions\""
945
+ },
946
+ "subSequence": {
947
+ "id": "j6qe237q",
948
+ "page": "4",
949
+ "label": "\"Kwik-E-Mart\""
950
+ }
951
+ }
952
+ },
953
+
954
+ {
955
+ "id": "j4nwc63q",
956
+ "componentType": "Table",
957
+ "mandatory": false,
958
+ "page": "4",
959
+ "positioning": "HORIZONTAL",
960
+ "label": "\"➡ 1. Please, specify the percentage of Jay’s expenses in the Kwik-E-Mart for each product?\"",
961
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
962
+ "hierarchy": {
963
+ "sequence": {
964
+ "id": "j4nw88h2",
965
+ "page": "4",
966
+ "label": "\"IV - General questions\""
967
+ },
968
+ "subSequence": {
969
+ "id": "j6qe237q",
970
+ "page": "4",
971
+ "label": "\"Kwik-E-Mart\""
972
+ }
973
+ },
974
+ "bindingDependencies": [
975
+ "PERCENTAGE_EXPENSES11",
976
+ "PERCENTAGE_EXPENSES21",
977
+ "PERCENTAGE_EXPENSES31",
978
+ "PERCENTAGE_EXPENSES41",
979
+ "PERCENTAGE_EXPENSES51",
980
+ "PERCENTAGE_EXPENSES61",
981
+ "PERCENTAGE_EXPENSES71"
982
+ ],
983
+ "cells": [
984
+ [
985
+ { "headerCell": true, "colspan": 2, "label": "" },
986
+
987
+ { "headerCell": true, "label": "\"Percentage\"" }
988
+ ],
989
+
990
+ [
991
+ { "rowspan": 2, "value": "A", "label": "\"Frozen products\"" },
992
+
993
+ { "value": "A1", "label": "\"Ice creams\"" },
994
+
995
+ {
996
+ "componentType": "InputNumber",
997
+ "min": 0,
998
+ "max": 100,
999
+ "decimals": 1,
1000
+ "id": "j4nwc63q-QOP-kewv2h3o",
1001
+ "unit": "%",
1002
+ "response": { "name": "PERCENTAGE_EXPENSES11" },
1003
+ "bindingDependencies": ["PERCENTAGE_EXPENSES11"]
1004
+ }
1005
+ ],
1006
+
1007
+ [
1008
+ { "value": "A2", "label": "\"Jasper Beardly\"" },
1009
+
1010
+ {
1011
+ "componentType": "InputNumber",
1012
+ "min": 0,
1013
+ "max": 100,
1014
+ "decimals": 1,
1015
+ "id": "j4nwc63q-QOP-kewvka2j",
1016
+ "unit": "%",
1017
+ "response": { "name": "PERCENTAGE_EXPENSES21" },
1018
+ "bindingDependencies": ["PERCENTAGE_EXPENSES21"]
1019
+ }
1020
+ ],
1021
+
1022
+ [
1023
+ { "rowspan": 3, "value": "B", "label": "\"Meat\"" },
1024
+
1025
+ { "value": "B1", "label": "\"Bacon\"" },
1026
+
1027
+ {
1028
+ "componentType": "InputNumber",
1029
+ "min": 0,
1030
+ "max": 100,
1031
+ "decimals": 1,
1032
+ "id": "j4nwc63q-QOP-kewv1f2a",
1033
+ "unit": "%",
1034
+ "response": { "name": "PERCENTAGE_EXPENSES31" },
1035
+ "bindingDependencies": ["PERCENTAGE_EXPENSES31"]
1036
+ }
1037
+ ],
1038
+
1039
+ [
1040
+ { "value": "B2", "label": "\"Pork chop\"" },
1041
+
1042
+ {
1043
+ "componentType": "InputNumber",
1044
+ "min": 0,
1045
+ "max": 100,
1046
+ "decimals": 1,
1047
+ "id": "j4nwc63q-QOP-kewvb2ql",
1048
+ "unit": "%",
1049
+ "response": { "name": "PERCENTAGE_EXPENSES41" },
1050
+ "bindingDependencies": ["PERCENTAGE_EXPENSES41"]
1051
+ }
1052
+ ],
1053
+
1054
+ [
1055
+ { "value": "B3", "label": "\"Chicken\"" },
1056
+
1057
+ {
1058
+ "componentType": "InputNumber",
1059
+ "min": 0,
1060
+ "max": 100,
1061
+ "decimals": 1,
1062
+ "id": "j4nwc63q-QOP-kewvbxla",
1063
+ "unit": "%",
1064
+ "response": { "name": "PERCENTAGE_EXPENSES51" },
1065
+ "bindingDependencies": ["PERCENTAGE_EXPENSES51"]
1066
+ }
1067
+ ],
1068
+
1069
+ [
1070
+ { "value": "C", "label": "\"Compote\"" },
1071
+
1072
+ { "value": "C1", "label": "\"Powersauce\"" },
1073
+
1074
+ {
1075
+ "componentType": "InputNumber",
1076
+ "min": 0,
1077
+ "max": 100,
1078
+ "decimals": 1,
1079
+ "id": "j4nwc63q-QOP-kewvkjp0",
1080
+ "unit": "%",
1081
+ "response": { "name": "PERCENTAGE_EXPENSES61" },
1082
+ "bindingDependencies": ["PERCENTAGE_EXPENSES61"]
1083
+ }
1084
+ ],
1085
+
1086
+ [
1087
+ { "colspan": 2, "value": "D", "label": "\"Other\"" },
1088
+
1089
+ {
1090
+ "componentType": "InputNumber",
1091
+ "min": 0,
1092
+ "max": 100,
1093
+ "decimals": 1,
1094
+ "id": "j4nwc63q-QOP-kewv2cyx",
1095
+ "unit": "%",
1096
+ "response": { "name": "PERCENTAGE_EXPENSES71" },
1097
+ "bindingDependencies": ["PERCENTAGE_EXPENSES71"]
1098
+ }
1099
+ ],
1100
+
1101
+ [
1102
+ { "colspan": 2, "value": "E", "label": "\"Total\"" },
1103
+
1104
+ { "headerCell": false }
1105
+ ]
1106
+ ]
1107
+ },
1108
+
1109
+ {
1110
+ "id": "k9cg2q5t",
1111
+ "componentType": "Table",
1112
+ "mandatory": false,
1113
+ "page": "4",
1114
+ "positioning": "HORIZONTAL",
1115
+ "label": "\"➡ 2. Please specify if Jay has bought each product in his last food shopping\"",
1116
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
1117
+ "hierarchy": {
1118
+ "sequence": {
1119
+ "id": "j4nw88h2",
1120
+ "page": "4",
1121
+ "label": "\"IV - General questions\""
1122
+ },
1123
+ "subSequence": {
1124
+ "id": "j6qe237q",
1125
+ "page": "4",
1126
+ "label": "\"Kwik-E-Mart\""
1127
+ }
1128
+ },
1129
+ "bindingDependencies": [
1130
+ "LAST_FOOD_SHOPPING11",
1131
+ "LAST_FOOD_SHOPPING21",
1132
+ "LAST_FOOD_SHOPPING31",
1133
+ "LAST_FOOD_SHOPPING41",
1134
+ "LAST_FOOD_SHOPPING51",
1135
+ "LAST_FOOD_SHOPPING61",
1136
+ "LAST_FOOD_SHOPPING71",
1137
+ "LAST_FOOD_SHOPPING81"
1138
+ ],
1139
+ "cells": [
1140
+ [
1141
+ { "headerCell": true, "colspan": 2, "label": "" },
1142
+
1143
+ { "headerCell": true, "label": "\"In his last food shopping\"" }
1144
+ ],
1145
+
1146
+ [
1147
+ { "rowspan": 2, "value": "A", "label": "\"Frozen products\"" },
1148
+
1149
+ { "value": "A1", "label": "\"Ice creams\"" },
1150
+
1151
+ {
1152
+ "componentType": "CheckboxOne",
1153
+ "id": "k9cg2q5t-QOP-kiq6pljq",
1154
+ "options": [
1155
+ { "value": "1", "label": "\"Yes\"" },
1156
+
1157
+ { "value": "2", "label": "\"No\"" },
1158
+
1159
+ { "value": "3", "label": "\"Other\"" }
1160
+ ],
1161
+ "response": { "name": "LAST_FOOD_SHOPPING11" },
1162
+ "bindingDependencies": ["LAST_FOOD_SHOPPING11"]
1163
+ }
1164
+ ],
1165
+
1166
+ [
1167
+ { "value": "A2", "label": "\"Jasper Beardly\"" },
1168
+
1169
+ {
1170
+ "componentType": "CheckboxOne",
1171
+ "id": "k9cg2q5t-QOP-kiq6mgpv",
1172
+ "options": [
1173
+ { "value": "1", "label": "\"Yes\"" },
1174
+
1175
+ { "value": "2", "label": "\"No\"" },
1176
+
1177
+ { "value": "3", "label": "\"Other\"" }
1178
+ ],
1179
+ "response": { "name": "LAST_FOOD_SHOPPING21" },
1180
+ "bindingDependencies": ["LAST_FOOD_SHOPPING21"]
1181
+ }
1182
+ ],
1183
+
1184
+ [
1185
+ { "rowspan": 3, "value": "B", "label": "\"Meat\"" },
1186
+
1187
+ { "value": "B1", "label": "\"Bacon\"" },
1188
+
1189
+ {
1190
+ "componentType": "CheckboxOne",
1191
+ "id": "k9cg2q5t-QOP-kiq6pmtz",
1192
+ "options": [
1193
+ { "value": "1", "label": "\"Yes\"" },
1194
+
1195
+ { "value": "2", "label": "\"No\"" },
1196
+
1197
+ { "value": "3", "label": "\"Other\"" }
1198
+ ],
1199
+ "response": { "name": "LAST_FOOD_SHOPPING31" },
1200
+ "bindingDependencies": ["LAST_FOOD_SHOPPING31"]
1201
+ }
1202
+ ],
1203
+
1204
+ [
1205
+ { "value": "B2", "label": "\"Pork chop\"" },
1206
+
1207
+ {
1208
+ "componentType": "CheckboxOne",
1209
+ "id": "k9cg2q5t-QOP-kiq6k4lf",
1210
+ "options": [
1211
+ { "value": "1", "label": "\"Yes\"" },
1212
+
1213
+ { "value": "2", "label": "\"No\"" },
1214
+
1215
+ { "value": "3", "label": "\"Other\"" }
1216
+ ],
1217
+ "response": { "name": "LAST_FOOD_SHOPPING41" },
1218
+ "bindingDependencies": ["LAST_FOOD_SHOPPING41"]
1219
+ }
1220
+ ],
1221
+
1222
+ [
1223
+ { "value": "B3", "label": "\"Chicken\"" },
1224
+
1225
+ {
1226
+ "componentType": "CheckboxOne",
1227
+ "id": "k9cg2q5t-QOP-kiq6p70n",
1228
+ "options": [
1229
+ { "value": "1", "label": "\"Yes\"" },
1230
+
1231
+ { "value": "2", "label": "\"No\"" },
1232
+
1233
+ { "value": "3", "label": "\"Other\"" }
1234
+ ],
1235
+ "response": { "name": "LAST_FOOD_SHOPPING51" },
1236
+ "bindingDependencies": ["LAST_FOOD_SHOPPING51"]
1237
+ }
1238
+ ],
1239
+
1240
+ [
1241
+ { "value": "C", "label": "\"Compote\"" },
1242
+
1243
+ { "value": "C1", "label": "\"Powersauce\"" },
1244
+
1245
+ {
1246
+ "componentType": "CheckboxOne",
1247
+ "id": "k9cg2q5t-QOP-kiq6lh5v",
1248
+ "options": [
1249
+ { "value": "1", "label": "\"Yes\"" },
1250
+
1251
+ { "value": "2", "label": "\"No\"" },
1252
+
1253
+ { "value": "3", "label": "\"Other\"" }
1254
+ ],
1255
+ "response": { "name": "LAST_FOOD_SHOPPING61" },
1256
+ "bindingDependencies": ["LAST_FOOD_SHOPPING61"]
1257
+ }
1258
+ ],
1259
+
1260
+ [
1261
+ { "colspan": 2, "value": "D", "label": "\"Other\"" },
1262
+
1263
+ {
1264
+ "componentType": "CheckboxOne",
1265
+ "id": "k9cg2q5t-QOP-kiq703te",
1266
+ "options": [
1267
+ { "value": "1", "label": "\"Yes\"" },
1268
+
1269
+ { "value": "2", "label": "\"No\"" },
1270
+
1271
+ { "value": "3", "label": "\"Other\"" }
1272
+ ],
1273
+ "response": { "name": "LAST_FOOD_SHOPPING71" },
1274
+ "bindingDependencies": ["LAST_FOOD_SHOPPING71"]
1275
+ }
1276
+ ],
1277
+
1278
+ [
1279
+ { "colspan": 2, "value": "E", "label": "\"Total\"" },
1280
+
1281
+ {
1282
+ "componentType": "CheckboxOne",
1283
+ "id": "k9cg2q5t-QOP-kiq6zpd3",
1284
+ "options": [
1285
+ { "value": "1", "label": "\"Yes\"" },
1286
+
1287
+ { "value": "2", "label": "\"No\"" },
1288
+
1289
+ { "value": "3", "label": "\"Other\"" }
1290
+ ],
1291
+ "response": { "name": "LAST_FOOD_SHOPPING81" },
1292
+ "bindingDependencies": ["LAST_FOOD_SHOPPING81"]
1293
+ }
1294
+ ]
1295
+ ]
1296
+ },
1297
+
1298
+ {
1299
+ "id": "j6qejudb",
1300
+ "componentType": "Subsequence",
1301
+ "page": "4",
1302
+ "label": "\"Clowning\"",
1303
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
1304
+ "hierarchy": {
1305
+ "sequence": {
1306
+ "id": "j4nw88h2",
1307
+ "page": "4",
1308
+ "label": "\"IV - General questions\""
1309
+ },
1310
+ "subSequence": {
1311
+ "id": "j6qejudb",
1312
+ "page": "4",
1313
+ "label": "\"Clowning\""
1314
+ }
1315
+ }
1316
+ },
1317
+
1318
+ {
1319
+ "id": "kbkjvgel",
1320
+ "componentType": "Table",
1321
+ "mandatory": false,
1322
+ "page": "4",
1323
+ "positioning": "HORIZONTAL",
1324
+ "label": "\"➡ 3. Who did these clownings and tell us what you remember?\"",
1325
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
1326
+ "hierarchy": {
1327
+ "sequence": {
1328
+ "id": "j4nw88h2",
1329
+ "page": "4",
1330
+ "label": "\"IV - General questions\""
1331
+ },
1332
+ "subSequence": {
1333
+ "id": "j6qejudb",
1334
+ "page": "4",
1335
+ "label": "\"Clowning\""
1336
+ }
1337
+ },
1338
+ "bindingDependencies": [
1339
+ "CLOWNING11",
1340
+ "CLOWNING12",
1341
+ "CLOWNING21",
1342
+ "CLOWNING22",
1343
+ "CLOWNING31",
1344
+ "CLOWNING32",
1345
+ "CLOWNING41",
1346
+ "CLOWNING42"
1347
+ ],
1348
+ "cells": [
1349
+ [
1350
+ { "headerCell": true, "label": "" },
1351
+
1352
+ { "headerCell": true, "label": "\"Clowning\"" },
1353
+
1354
+ { "headerCell": true, "label": "\"Remember?\"" }
1355
+ ],
1356
+
1357
+ [
1358
+ { "value": "1", "label": "\"Break the windows of the whole city\"" },
1359
+
1360
+ {
1361
+ "componentType": "Dropdown",
1362
+ "id": "kbkjvgel-QOP-kiq6m5n0",
1363
+ "options": [
1364
+ { "value": "1", "label": "\"Jay\"" },
1365
+
1366
+ { "value": "2", "label": "\"Bart\"" },
1367
+
1368
+ { "value": "3", "label": "\"Krusty the clown\"" },
1369
+
1370
+ { "value": "O", "label": "\"Other\"" }
1371
+ ],
1372
+ "response": { "name": "CLOWNING11" },
1373
+ "bindingDependencies": ["CLOWNING11"]
1374
+ },
1375
+
1376
+ {
1377
+ "componentType": "Textarea",
1378
+ "maxLength": 255,
1379
+ "id": "kbkjvgel-QOP-kiq6qatu",
1380
+ "response": { "name": "CLOWNING12" },
1381
+ "bindingDependencies": ["CLOWNING12"]
1382
+ }
1383
+ ],
1384
+
1385
+ [
1386
+ {
1387
+ "value": "2",
1388
+ "label": "\"Loose the violin of his daughter playing poker\""
1389
+ },
1390
+
1391
+ {
1392
+ "componentType": "Dropdown",
1393
+ "id": "kbkjvgel-QOP-kiq6l29o",
1394
+ "options": [
1395
+ { "value": "1", "label": "\"Jay\"" },
1396
+
1397
+ { "value": "2", "label": "\"Bart\"" },
1398
+
1399
+ { "value": "3", "label": "\"Krusty the clown\"" },
1400
+
1401
+ { "value": "O", "label": "\"Other\"" }
1402
+ ],
1403
+ "response": { "name": "CLOWNING21" },
1404
+ "bindingDependencies": ["CLOWNING21"]
1405
+ },
1406
+
1407
+ {
1408
+ "componentType": "Textarea",
1409
+ "maxLength": 255,
1410
+ "id": "kbkjvgel-QOP-kiq6v4oe",
1411
+ "response": { "name": "CLOWNING22" },
1412
+ "bindingDependencies": ["CLOWNING22"]
1413
+ }
1414
+ ],
1415
+
1416
+ [
1417
+ { "value": "3", "label": "\"Kill Mr Burns\"" },
1418
+
1419
+ {
1420
+ "componentType": "Dropdown",
1421
+ "id": "kbkjvgel-QOP-kiq72biw",
1422
+ "options": [
1423
+ { "value": "1", "label": "\"Jay\"" },
1424
+
1425
+ { "value": "2", "label": "\"Bart\"" },
1426
+
1427
+ { "value": "3", "label": "\"Krusty the clown\"" },
1428
+
1429
+ { "value": "O", "label": "\"Other\"" }
1430
+ ],
1431
+ "response": { "name": "CLOWNING31" },
1432
+ "bindingDependencies": ["CLOWNING31"]
1433
+ },
1434
+
1435
+ {
1436
+ "componentType": "Textarea",
1437
+ "maxLength": 255,
1438
+ "id": "kbkjvgel-QOP-kiq6q4zm",
1439
+ "response": { "name": "CLOWNING32" },
1440
+ "bindingDependencies": ["CLOWNING32"]
1441
+ }
1442
+ ],
1443
+
1444
+ [
1445
+ {
1446
+ "value": "4",
1447
+ "label": "\"Leaving a mechanical object to control the nuclear power plant\""
1448
+ },
1449
+
1450
+ {
1451
+ "componentType": "Dropdown",
1452
+ "id": "kbkjvgel-QOP-kiq6mlan",
1453
+ "options": [
1454
+ { "value": "1", "label": "\"Jay\"" },
1455
+
1456
+ { "value": "2", "label": "\"Bart\"" },
1457
+
1458
+ { "value": "3", "label": "\"Krusty the clown\"" },
1459
+
1460
+ { "value": "O", "label": "\"Other\"" }
1461
+ ],
1462
+ "response": { "name": "CLOWNING41" },
1463
+ "bindingDependencies": ["CLOWNING41"]
1464
+ },
1465
+
1466
+ {
1467
+ "componentType": "Textarea",
1468
+ "maxLength": 255,
1469
+ "id": "kbkjvgel-QOP-kiq6vtud",
1470
+ "response": { "name": "CLOWNING42" },
1471
+ "bindingDependencies": ["CLOWNING42"]
1472
+ }
1473
+ ]
1474
+ ]
1475
+ },
1476
+
1477
+ {
1478
+ "id": "j6qeh91y",
1479
+ "componentType": "Subsequence",
1480
+ "page": "4",
1481
+ "label": "\"Transport\"",
1482
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
1483
+ "hierarchy": {
1484
+ "sequence": {
1485
+ "id": "j4nw88h2",
1486
+ "page": "4",
1487
+ "label": "\"IV - General questions\""
1488
+ },
1489
+ "subSequence": {
1490
+ "id": "j6qeh91y",
1491
+ "page": "4",
1492
+ "label": "\"Transport\""
1493
+ }
1494
+ }
1495
+ },
1496
+
1497
+ {
1498
+ "id": "j6p2lwuj",
1499
+ "componentType": "Table",
1500
+ "mandatory": false,
1501
+ "page": "4",
1502
+ "positioning": "HORIZONTAL",
1503
+ "label": "\"➡ 4. Which of the following means of transport were used by the hero and in which country?\"",
1504
+ "declarations": [
1505
+ {
1506
+ "id": "j6p2lwuj-d10",
1507
+ "declarationType": "INSTRUCTION",
1508
+ "position": "AFTER_QUESTION_TEXT",
1509
+ "label": "\"Several answers possible: check off all the relevant boxes\""
1510
+ }
1511
+ ],
1512
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
1513
+ "hierarchy": {
1514
+ "sequence": {
1515
+ "id": "j4nw88h2",
1516
+ "page": "4",
1517
+ "label": "\"IV - General questions\""
1518
+ },
1519
+ "subSequence": {
1520
+ "id": "j6qeh91y",
1521
+ "page": "4",
1522
+ "label": "\"Transport\""
1523
+ }
1524
+ },
1525
+ "bindingDependencies": [
1526
+ "TRAVEL11",
1527
+ "TRAVEL12",
1528
+ "TRAVEL13",
1529
+ "TRAVEL14",
1530
+ "TRAVEL15",
1531
+ "TRAVEL16",
1532
+ "TRAVEL21",
1533
+ "TRAVEL22",
1534
+ "TRAVEL23",
1535
+ "TRAVEL24",
1536
+ "TRAVEL25",
1537
+ "TRAVEL26",
1538
+ "TRAVEL31",
1539
+ "TRAVEL32",
1540
+ "TRAVEL33",
1541
+ "TRAVEL34",
1542
+ "TRAVEL35",
1543
+ "TRAVEL36",
1544
+ "TRAVEL41",
1545
+ "TRAVEL42",
1546
+ "TRAVEL43",
1547
+ "TRAVEL44",
1548
+ "TRAVEL45",
1549
+ "TRAVEL46"
1550
+ ],
1551
+ "cells": [
1552
+ [
1553
+ { "headerCell": true, "label": "" },
1554
+
1555
+ { "headerCell": true, "label": "\"Brazil\"" },
1556
+
1557
+ { "headerCell": true, "label": "\"Canada\"" },
1558
+
1559
+ { "headerCell": true, "label": "\"Japan\"" },
1560
+
1561
+ { "headerCell": true, "label": "\"France\"" },
1562
+
1563
+ { "headerCell": true, "label": "\"Other country\"" },
1564
+
1565
+ { "headerCell": true, "label": "\"Other planet\"" }
1566
+ ],
1567
+
1568
+ [
1569
+ { "value": "1", "label": "\"Car\"" },
1570
+
1571
+ {
1572
+ "componentType": "CheckboxBoolean",
1573
+ "id": "j6p2lwuj-QOP-kewvm4qg",
1574
+ "response": { "name": "TRAVEL11" },
1575
+ "bindingDependencies": ["TRAVEL11"]
1576
+ },
1577
+
1578
+ {
1579
+ "componentType": "CheckboxBoolean",
1580
+ "id": "j6p2lwuj-QOP-kewv8wxl",
1581
+ "response": { "name": "TRAVEL12" },
1582
+ "bindingDependencies": ["TRAVEL12"]
1583
+ },
1584
+
1585
+ {
1586
+ "componentType": "CheckboxBoolean",
1587
+ "id": "j6p2lwuj-QOP-kewvcjrn",
1588
+ "response": { "name": "TRAVEL13" },
1589
+ "bindingDependencies": ["TRAVEL13"]
1590
+ },
1591
+
1592
+ {
1593
+ "componentType": "CheckboxBoolean",
1594
+ "id": "j6p2lwuj-QOP-kewvdrv7",
1595
+ "response": { "name": "TRAVEL14" },
1596
+ "bindingDependencies": ["TRAVEL14"]
1597
+ },
1598
+
1599
+ {
1600
+ "componentType": "CheckboxBoolean",
1601
+ "id": "j6p2lwuj-QOP-kewv226h",
1602
+ "response": { "name": "TRAVEL15" },
1603
+ "bindingDependencies": ["TRAVEL15"]
1604
+ },
1605
+
1606
+ {
1607
+ "componentType": "CheckboxBoolean",
1608
+ "id": "j6p2lwuj-QOP-kewvlchm",
1609
+ "response": { "name": "TRAVEL16" },
1610
+ "bindingDependencies": ["TRAVEL16"]
1611
+ }
1612
+ ],
1613
+
1614
+ [
1615
+ { "value": "2", "label": "\"Bike\"" },
1616
+
1617
+ {
1618
+ "componentType": "CheckboxBoolean",
1619
+ "id": "j6p2lwuj-QOP-kewvebem",
1620
+ "response": { "name": "TRAVEL21" },
1621
+ "bindingDependencies": ["TRAVEL21"]
1622
+ },
1623
+
1624
+ {
1625
+ "componentType": "CheckboxBoolean",
1626
+ "id": "j6p2lwuj-QOP-kewv5u0v",
1627
+ "response": { "name": "TRAVEL22" },
1628
+ "bindingDependencies": ["TRAVEL22"]
1629
+ },
1630
+
1631
+ {
1632
+ "componentType": "CheckboxBoolean",
1633
+ "id": "j6p2lwuj-QOP-kewvdarq",
1634
+ "response": { "name": "TRAVEL23" },
1635
+ "bindingDependencies": ["TRAVEL23"]
1636
+ },
1637
+
1638
+ {
1639
+ "componentType": "CheckboxBoolean",
1640
+ "id": "j6p2lwuj-QOP-kewvc8ft",
1641
+ "response": { "name": "TRAVEL24" },
1642
+ "bindingDependencies": ["TRAVEL24"]
1643
+ },
1644
+
1645
+ {
1646
+ "componentType": "CheckboxBoolean",
1647
+ "id": "j6p2lwuj-QOP-kewvc2li",
1648
+ "response": { "name": "TRAVEL25" },
1649
+ "bindingDependencies": ["TRAVEL25"]
1650
+ },
1651
+
1652
+ {
1653
+ "componentType": "CheckboxBoolean",
1654
+ "id": "j6p2lwuj-QOP-kewvh5fm",
1655
+ "response": { "name": "TRAVEL26" },
1656
+ "bindingDependencies": ["TRAVEL26"]
1657
+ }
1658
+ ],
1659
+
1660
+ [
1661
+ { "value": "3", "label": "\"Skateboard\"" },
1662
+
1663
+ {
1664
+ "componentType": "CheckboxBoolean",
1665
+ "id": "j6p2lwuj-QOP-kewv62xx",
1666
+ "response": { "name": "TRAVEL31" },
1667
+ "bindingDependencies": ["TRAVEL31"]
1668
+ },
1669
+
1670
+ {
1671
+ "componentType": "CheckboxBoolean",
1672
+ "id": "j6p2lwuj-QOP-kewvbiyv",
1673
+ "response": { "name": "TRAVEL32" },
1674
+ "bindingDependencies": ["TRAVEL32"]
1675
+ },
1676
+
1677
+ {
1678
+ "componentType": "CheckboxBoolean",
1679
+ "id": "j6p2lwuj-QOP-kewvcmjn",
1680
+ "response": { "name": "TRAVEL33" },
1681
+ "bindingDependencies": ["TRAVEL33"]
1682
+ },
1683
+
1684
+ {
1685
+ "componentType": "CheckboxBoolean",
1686
+ "id": "j6p2lwuj-QOP-kewvkci5",
1687
+ "response": { "name": "TRAVEL34" },
1688
+ "bindingDependencies": ["TRAVEL34"]
1689
+ },
1690
+
1691
+ {
1692
+ "componentType": "CheckboxBoolean",
1693
+ "id": "j6p2lwuj-QOP-kewveam7",
1694
+ "response": { "name": "TRAVEL35" },
1695
+ "bindingDependencies": ["TRAVEL35"]
1696
+ },
1697
+
1698
+ {
1699
+ "componentType": "CheckboxBoolean",
1700
+ "id": "j6p2lwuj-QOP-kewva2r8",
1701
+ "response": { "name": "TRAVEL36" },
1702
+ "bindingDependencies": ["TRAVEL36"]
1703
+ }
1704
+ ],
1705
+
1706
+ [
1707
+ { "value": "4", "label": "\"Plane\"" },
1708
+
1709
+ {
1710
+ "componentType": "CheckboxBoolean",
1711
+ "id": "j6p2lwuj-QOP-kewvjcck",
1712
+ "response": { "name": "TRAVEL41" },
1713
+ "bindingDependencies": ["TRAVEL41"]
1714
+ },
1715
+
1716
+ {
1717
+ "componentType": "CheckboxBoolean",
1718
+ "id": "j6p2lwuj-QOP-kewv91bq",
1719
+ "response": { "name": "TRAVEL42" },
1720
+ "bindingDependencies": ["TRAVEL42"]
1721
+ },
1722
+
1723
+ {
1724
+ "componentType": "CheckboxBoolean",
1725
+ "id": "j6p2lwuj-QOP-kewvf47u",
1726
+ "response": { "name": "TRAVEL43" },
1727
+ "bindingDependencies": ["TRAVEL43"]
1728
+ },
1729
+
1730
+ {
1731
+ "componentType": "CheckboxBoolean",
1732
+ "id": "j6p2lwuj-QOP-kewv5hsr",
1733
+ "response": { "name": "TRAVEL44" },
1734
+ "bindingDependencies": ["TRAVEL44"]
1735
+ },
1736
+
1737
+ {
1738
+ "componentType": "CheckboxBoolean",
1739
+ "id": "j6p2lwuj-QOP-kewva3p8",
1740
+ "response": { "name": "TRAVEL45" },
1741
+ "bindingDependencies": ["TRAVEL45"]
1742
+ },
1743
+
1744
+ {
1745
+ "componentType": "CheckboxBoolean",
1746
+ "id": "j6p2lwuj-QOP-kewve0rb",
1747
+ "response": { "name": "TRAVEL46" },
1748
+ "bindingDependencies": ["TRAVEL46"]
1749
+ }
1750
+ ]
1751
+ ]
1752
+ },
1753
+
1754
+ {
1755
+ "id": "j6qfx9qe",
1756
+ "componentType": "Sequence",
1757
+ "page": "5",
1758
+ "label": "\"V - Favourite characters (dynamic table)\"",
1759
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
1760
+ "hierarchy": {
1761
+ "sequence": {
1762
+ "id": "j6qfx9qe",
1763
+ "page": "5",
1764
+ "label": "\"V - Favourite characters (dynamic table)\""
1765
+ }
1766
+ }
1767
+ },
1768
+
1769
+ {
1770
+ "id": "j6qg8rc6",
1771
+ "componentType": "Table",
1772
+ "mandatory": false,
1773
+ "page": "5",
1774
+ "positioning": "HORIZONTAL",
1775
+ "label": "\"➡ 1. Please, complete the following grid with your favourite characters\"",
1776
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
1777
+ "hierarchy": {
1778
+ "sequence": {
1779
+ "id": "j6qfx9qe",
1780
+ "page": "5",
1781
+ "label": "\"V - Favourite characters (dynamic table)\""
1782
+ }
1783
+ },
1784
+ "bindingDependencies": [
1785
+ "FAVOURITE_CHAR1",
1786
+ "FAVOURITE_CHAR2",
1787
+ "FAVOURITE_CHAR3",
1788
+ "FAVOURITE_CHAR1_1_1",
1789
+ "FAVOURITE_CHAR2_1_2",
1790
+ "FAVOURITE_CHAR3_1_3",
1791
+ "FAVOURITE_CHAR1_2_1",
1792
+ "FAVOURITE_CHAR2_2_2",
1793
+ "FAVOURITE_CHAR3_2_3",
1794
+ "FAVOURITE_CHAR1_3_1",
1795
+ "FAVOURITE_CHAR2_3_2",
1796
+ "FAVOURITE_CHAR3_3_3",
1797
+ "FAVOURITE_CHAR1_4_1",
1798
+ "FAVOURITE_CHAR2_4_2",
1799
+ "FAVOURITE_CHAR3_4_3",
1800
+ "FAVOURITE_CHAR1_5_1",
1801
+ "FAVOURITE_CHAR2_5_2",
1802
+ "FAVOURITE_CHAR3_5_3",
1803
+ "FAVOURITE_CHAR1_6_1",
1804
+ "FAVOURITE_CHAR2_6_2",
1805
+ "FAVOURITE_CHAR3_6_3",
1806
+ "FAVOURITE_CHAR1_7_1",
1807
+ "FAVOURITE_CHAR2_7_2",
1808
+ "FAVOURITE_CHAR3_7_3",
1809
+ "FAVOURITE_CHAR1_8_1",
1810
+ "FAVOURITE_CHAR2_8_2",
1811
+ "FAVOURITE_CHAR3_8_3",
1812
+ "FAVOURITE_CHAR1_9_1",
1813
+ "FAVOURITE_CHAR2_9_2",
1814
+ "FAVOURITE_CHAR3_9_3",
1815
+ "FAVOURITE_CHAR1_10_1",
1816
+ "FAVOURITE_CHAR2_10_2",
1817
+ "FAVOURITE_CHAR3_10_3"
1818
+ ],
1819
+ "lines": { "min": 1, "max": 10 },
1820
+ "cells": [
1821
+ [
1822
+ { "headerCell": true, "label": "\"Name\"" },
1823
+
1824
+ { "headerCell": true, "label": "\"Age\"" },
1825
+
1826
+ { "headerCell": true, "label": "\"Member of the Simpsons family\"" }
1827
+ ],
1828
+
1829
+ [
1830
+ {
1831
+ "componentType": "Textarea",
1832
+ "maxLength": 255,
1833
+ "id": "j6qg8rc6-QOP-kiq7p16z_1_1",
1834
+ "response": { "name": "FAVOURITE_CHAR1_1_1" },
1835
+ "bindingDependencies": ["FAVOURITE_CHAR1_1_1"]
1836
+ },
1837
+
1838
+ {
1839
+ "componentType": "Textarea",
1840
+ "maxLength": 255,
1841
+ "id": "j6qg8rc6-QOP-kiq7kny3_1_2",
1842
+ "response": { "name": "FAVOURITE_CHAR2_1_2" },
1843
+ "bindingDependencies": ["FAVOURITE_CHAR2_1_2"]
1844
+ },
1845
+
1846
+ {
1847
+ "componentType": "CheckboxOne",
1848
+ "id": "j6qg8rc6-QOP-kiq7lffy_1_3",
1849
+ "options": [
1850
+ { "value": "1", "label": "\"Yes\"" },
1851
+
1852
+ { "value": "2", "label": "\"No\"" },
1853
+
1854
+ { "value": "3", "label": "\"Other\"" }
1855
+ ],
1856
+ "response": { "name": "FAVOURITE_CHAR3_1_3" },
1857
+ "bindingDependencies": ["FAVOURITE_CHAR3_1_3"]
1858
+ }
1859
+ ],
1860
+
1861
+ [
1862
+ {
1863
+ "componentType": "Textarea",
1864
+ "maxLength": 255,
1865
+ "id": "j6qg8rc6-QOP-kiq7p16z_2_1",
1866
+ "response": { "name": "FAVOURITE_CHAR1_2_1" },
1867
+ "bindingDependencies": ["FAVOURITE_CHAR1_2_1"]
1868
+ },
1869
+
1870
+ {
1871
+ "componentType": "Textarea",
1872
+ "maxLength": 255,
1873
+ "id": "j6qg8rc6-QOP-kiq7kny3_2_2",
1874
+ "response": { "name": "FAVOURITE_CHAR2_2_2" },
1875
+ "bindingDependencies": ["FAVOURITE_CHAR2_2_2"]
1876
+ },
1877
+
1878
+ {
1879
+ "componentType": "CheckboxOne",
1880
+ "id": "j6qg8rc6-QOP-kiq7lffy_2_3",
1881
+ "options": [
1882
+ { "value": "1", "label": "\"Yes\"" },
1883
+
1884
+ { "value": "2", "label": "\"No\"" },
1885
+
1886
+ { "value": "3", "label": "\"Other\"" }
1887
+ ],
1888
+ "response": { "name": "FAVOURITE_CHAR3_2_3" },
1889
+ "bindingDependencies": ["FAVOURITE_CHAR3_2_3"]
1890
+ }
1891
+ ],
1892
+
1893
+ [
1894
+ {
1895
+ "componentType": "Textarea",
1896
+ "maxLength": 255,
1897
+ "id": "j6qg8rc6-QOP-kiq7p16z_3_1",
1898
+ "response": { "name": "FAVOURITE_CHAR1_3_1" },
1899
+ "bindingDependencies": ["FAVOURITE_CHAR1_3_1"]
1900
+ },
1901
+
1902
+ {
1903
+ "componentType": "Textarea",
1904
+ "maxLength": 255,
1905
+ "id": "j6qg8rc6-QOP-kiq7kny3_3_2",
1906
+ "response": { "name": "FAVOURITE_CHAR2_3_2" },
1907
+ "bindingDependencies": ["FAVOURITE_CHAR2_3_2"]
1908
+ },
1909
+
1910
+ {
1911
+ "componentType": "CheckboxOne",
1912
+ "id": "j6qg8rc6-QOP-kiq7lffy_3_3",
1913
+ "options": [
1914
+ { "value": "1", "label": "\"Yes\"" },
1915
+
1916
+ { "value": "2", "label": "\"No\"" },
1917
+
1918
+ { "value": "3", "label": "\"Other\"" }
1919
+ ],
1920
+ "response": { "name": "FAVOURITE_CHAR3_3_3" },
1921
+ "bindingDependencies": ["FAVOURITE_CHAR3_3_3"]
1922
+ }
1923
+ ],
1924
+
1925
+ [
1926
+ {
1927
+ "componentType": "Textarea",
1928
+ "maxLength": 255,
1929
+ "id": "j6qg8rc6-QOP-kiq7p16z_4_1",
1930
+ "response": { "name": "FAVOURITE_CHAR1_4_1" },
1931
+ "bindingDependencies": ["FAVOURITE_CHAR1_4_1"]
1932
+ },
1933
+
1934
+ {
1935
+ "componentType": "Textarea",
1936
+ "maxLength": 255,
1937
+ "id": "j6qg8rc6-QOP-kiq7kny3_4_2",
1938
+ "response": { "name": "FAVOURITE_CHAR2_4_2" },
1939
+ "bindingDependencies": ["FAVOURITE_CHAR2_4_2"]
1940
+ },
1941
+
1942
+ {
1943
+ "componentType": "CheckboxOne",
1944
+ "id": "j6qg8rc6-QOP-kiq7lffy_4_3",
1945
+ "options": [
1946
+ { "value": "1", "label": "\"Yes\"" },
1947
+
1948
+ { "value": "2", "label": "\"No\"" },
1949
+
1950
+ { "value": "3", "label": "\"Other\"" }
1951
+ ],
1952
+ "response": { "name": "FAVOURITE_CHAR3_4_3" },
1953
+ "bindingDependencies": ["FAVOURITE_CHAR3_4_3"]
1954
+ }
1955
+ ],
1956
+
1957
+ [
1958
+ {
1959
+ "componentType": "Textarea",
1960
+ "maxLength": 255,
1961
+ "id": "j6qg8rc6-QOP-kiq7p16z_5_1",
1962
+ "response": { "name": "FAVOURITE_CHAR1_5_1" },
1963
+ "bindingDependencies": ["FAVOURITE_CHAR1_5_1"]
1964
+ },
1965
+
1966
+ {
1967
+ "componentType": "Textarea",
1968
+ "maxLength": 255,
1969
+ "id": "j6qg8rc6-QOP-kiq7kny3_5_2",
1970
+ "response": { "name": "FAVOURITE_CHAR2_5_2" },
1971
+ "bindingDependencies": ["FAVOURITE_CHAR2_5_2"]
1972
+ },
1973
+
1974
+ {
1975
+ "componentType": "CheckboxOne",
1976
+ "id": "j6qg8rc6-QOP-kiq7lffy_5_3",
1977
+ "options": [
1978
+ { "value": "1", "label": "\"Yes\"" },
1979
+
1980
+ { "value": "2", "label": "\"No\"" },
1981
+
1982
+ { "value": "3", "label": "\"Other\"" }
1983
+ ],
1984
+ "response": { "name": "FAVOURITE_CHAR3_5_3" },
1985
+ "bindingDependencies": ["FAVOURITE_CHAR3_5_3"]
1986
+ }
1987
+ ],
1988
+
1989
+ [
1990
+ {
1991
+ "componentType": "Textarea",
1992
+ "maxLength": 255,
1993
+ "id": "j6qg8rc6-QOP-kiq7p16z_6_1",
1994
+ "response": { "name": "FAVOURITE_CHAR1_6_1" },
1995
+ "bindingDependencies": ["FAVOURITE_CHAR1_6_1"]
1996
+ },
1997
+
1998
+ {
1999
+ "componentType": "Textarea",
2000
+ "maxLength": 255,
2001
+ "id": "j6qg8rc6-QOP-kiq7kny3_6_2",
2002
+ "response": { "name": "FAVOURITE_CHAR2_6_2" },
2003
+ "bindingDependencies": ["FAVOURITE_CHAR2_6_2"]
2004
+ },
2005
+
2006
+ {
2007
+ "componentType": "CheckboxOne",
2008
+ "id": "j6qg8rc6-QOP-kiq7lffy_6_3",
2009
+ "options": [
2010
+ { "value": "1", "label": "\"Yes\"" },
2011
+
2012
+ { "value": "2", "label": "\"No\"" },
2013
+
2014
+ { "value": "3", "label": "\"Other\"" }
2015
+ ],
2016
+ "response": { "name": "FAVOURITE_CHAR3_6_3" },
2017
+ "bindingDependencies": ["FAVOURITE_CHAR3_6_3"]
2018
+ }
2019
+ ],
2020
+
2021
+ [
2022
+ {
2023
+ "componentType": "Textarea",
2024
+ "maxLength": 255,
2025
+ "id": "j6qg8rc6-QOP-kiq7p16z_7_1",
2026
+ "response": { "name": "FAVOURITE_CHAR1_7_1" },
2027
+ "bindingDependencies": ["FAVOURITE_CHAR1_7_1"]
2028
+ },
2029
+
2030
+ {
2031
+ "componentType": "Textarea",
2032
+ "maxLength": 255,
2033
+ "id": "j6qg8rc6-QOP-kiq7kny3_7_2",
2034
+ "response": { "name": "FAVOURITE_CHAR2_7_2" },
2035
+ "bindingDependencies": ["FAVOURITE_CHAR2_7_2"]
2036
+ },
2037
+
2038
+ {
2039
+ "componentType": "CheckboxOne",
2040
+ "id": "j6qg8rc6-QOP-kiq7lffy_7_3",
2041
+ "options": [
2042
+ { "value": "1", "label": "\"Yes\"" },
2043
+
2044
+ { "value": "2", "label": "\"No\"" },
2045
+
2046
+ { "value": "3", "label": "\"Other\"" }
2047
+ ],
2048
+ "response": { "name": "FAVOURITE_CHAR3_7_3" },
2049
+ "bindingDependencies": ["FAVOURITE_CHAR3_7_3"]
2050
+ }
2051
+ ],
2052
+
2053
+ [
2054
+ {
2055
+ "componentType": "Textarea",
2056
+ "maxLength": 255,
2057
+ "id": "j6qg8rc6-QOP-kiq7p16z_8_1",
2058
+ "response": { "name": "FAVOURITE_CHAR1_8_1" },
2059
+ "bindingDependencies": ["FAVOURITE_CHAR1_8_1"]
2060
+ },
2061
+
2062
+ {
2063
+ "componentType": "Textarea",
2064
+ "maxLength": 255,
2065
+ "id": "j6qg8rc6-QOP-kiq7kny3_8_2",
2066
+ "response": { "name": "FAVOURITE_CHAR2_8_2" },
2067
+ "bindingDependencies": ["FAVOURITE_CHAR2_8_2"]
2068
+ },
2069
+
2070
+ {
2071
+ "componentType": "CheckboxOne",
2072
+ "id": "j6qg8rc6-QOP-kiq7lffy_8_3",
2073
+ "options": [
2074
+ { "value": "1", "label": "\"Yes\"" },
2075
+
2076
+ { "value": "2", "label": "\"No\"" },
2077
+
2078
+ { "value": "3", "label": "\"Other\"" }
2079
+ ],
2080
+ "response": { "name": "FAVOURITE_CHAR3_8_3" },
2081
+ "bindingDependencies": ["FAVOURITE_CHAR3_8_3"]
2082
+ }
2083
+ ],
2084
+
2085
+ [
2086
+ {
2087
+ "componentType": "Textarea",
2088
+ "maxLength": 255,
2089
+ "id": "j6qg8rc6-QOP-kiq7p16z_9_1",
2090
+ "response": { "name": "FAVOURITE_CHAR1_9_1" },
2091
+ "bindingDependencies": ["FAVOURITE_CHAR1_9_1"]
2092
+ },
2093
+
2094
+ {
2095
+ "componentType": "Textarea",
2096
+ "maxLength": 255,
2097
+ "id": "j6qg8rc6-QOP-kiq7kny3_9_2",
2098
+ "response": { "name": "FAVOURITE_CHAR2_9_2" },
2099
+ "bindingDependencies": ["FAVOURITE_CHAR2_9_2"]
2100
+ },
2101
+
2102
+ {
2103
+ "componentType": "CheckboxOne",
2104
+ "id": "j6qg8rc6-QOP-kiq7lffy_9_3",
2105
+ "options": [
2106
+ { "value": "1", "label": "\"Yes\"" },
2107
+
2108
+ { "value": "2", "label": "\"No\"" },
2109
+
2110
+ { "value": "3", "label": "\"Other\"" }
2111
+ ],
2112
+ "response": { "name": "FAVOURITE_CHAR3_9_3" },
2113
+ "bindingDependencies": ["FAVOURITE_CHAR3_9_3"]
2114
+ }
2115
+ ],
2116
+
2117
+ [
2118
+ {
2119
+ "componentType": "Textarea",
2120
+ "maxLength": 255,
2121
+ "id": "j6qg8rc6-QOP-kiq7p16z_10_1",
2122
+ "response": { "name": "FAVOURITE_CHAR1_10_1" },
2123
+ "bindingDependencies": ["FAVOURITE_CHAR1_10_1"]
2124
+ },
2125
+
2126
+ {
2127
+ "componentType": "Textarea",
2128
+ "maxLength": 255,
2129
+ "id": "j6qg8rc6-QOP-kiq7kny3_10_2",
2130
+ "response": { "name": "FAVOURITE_CHAR2_10_2" },
2131
+ "bindingDependencies": ["FAVOURITE_CHAR2_10_2"]
2132
+ },
2133
+
2134
+ {
2135
+ "componentType": "CheckboxOne",
2136
+ "id": "j6qg8rc6-QOP-kiq7lffy_10_3",
2137
+ "options": [
2138
+ { "value": "1", "label": "\"Yes\"" },
2139
+
2140
+ { "value": "2", "label": "\"No\"" },
2141
+
2142
+ { "value": "3", "label": "\"Other\"" }
2143
+ ],
2144
+ "response": { "name": "FAVOURITE_CHAR3_10_3" },
2145
+ "bindingDependencies": ["FAVOURITE_CHAR3_10_3"]
2146
+ }
2147
+ ]
2148
+ ]
2149
+ },
2150
+
2151
+ {
2152
+ "id": "jvxux0mi",
2153
+ "componentType": "Table",
2154
+ "mandatory": false,
2155
+ "page": "5",
2156
+ "positioning": "HORIZONTAL",
2157
+ "label": "\"➡ 2. How has your feeling about the following characters evolved over time?\"",
2158
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
2159
+ "hierarchy": {
2160
+ "sequence": {
2161
+ "id": "j6qfx9qe",
2162
+ "page": "5",
2163
+ "label": "\"V - Favourite characters (dynamic table)\""
2164
+ }
2165
+ },
2166
+ "bindingDependencies": [
2167
+ "FEELCHAREV1",
2168
+ "FEELCHAREV2",
2169
+ "FEELCHAREV3",
2170
+ "FEELCHAREV4"
2171
+ ],
2172
+ "cells": [
2173
+ [
2174
+ { "value": "1", "label": "\"Jay\"" },
2175
+
2176
+ {
2177
+ "componentType": "CheckboxOne",
2178
+ "id": "jvxux0mi-QOP-kiq76emy",
2179
+ "options": [
2180
+ { "value": "1", "label": "\"Up\"" },
2181
+
2182
+ { "value": "2", "label": "\"Down\"" },
2183
+
2184
+ { "value": "3", "label": "\"Steady\"" }
2185
+ ],
2186
+ "response": { "name": "FEELCHAREV1" },
2187
+ "bindingDependencies": ["FEELCHAREV1"]
2188
+ }
2189
+ ],
2190
+
2191
+ [
2192
+ { "value": "2", "label": "\"Bart\"" },
2193
+
2194
+ {
2195
+ "componentType": "CheckboxOne",
2196
+ "id": "jvxux0mi-QOP-kiq6zv60",
2197
+ "options": [
2198
+ { "value": "1", "label": "\"Up\"" },
2199
+
2200
+ { "value": "2", "label": "\"Down\"" },
2201
+
2202
+ { "value": "3", "label": "\"Steady\"" }
2203
+ ],
2204
+ "response": { "name": "FEELCHAREV2" },
2205
+ "bindingDependencies": ["FEELCHAREV2"]
2206
+ }
2207
+ ],
2208
+
2209
+ [
2210
+ { "value": "3", "label": "\"Krusty the clown\"" },
2211
+
2212
+ {
2213
+ "componentType": "CheckboxOne",
2214
+ "id": "jvxux0mi-QOP-kiq7bgk3",
2215
+ "options": [
2216
+ { "value": "1", "label": "\"Up\"" },
2217
+
2218
+ { "value": "2", "label": "\"Down\"" },
2219
+
2220
+ { "value": "3", "label": "\"Steady\"" }
2221
+ ],
2222
+ "response": { "name": "FEELCHAREV3" },
2223
+ "bindingDependencies": ["FEELCHAREV3"]
2224
+ }
2225
+ ],
2226
+
2227
+ [
2228
+ { "value": "O", "label": "\"Other\"" },
2229
+
2230
+ {
2231
+ "componentType": "CheckboxOne",
2232
+ "id": "jvxux0mi-QOP-kiq6ync3",
2233
+ "options": [
2234
+ { "value": "1", "label": "\"Up\"" },
2235
+
2236
+ { "value": "2", "label": "\"Down\"" },
2237
+
2238
+ { "value": "3", "label": "\"Steady\"" }
2239
+ ],
2240
+ "response": { "name": "FEELCHAREV4" },
2241
+ "bindingDependencies": ["FEELCHAREV4"]
2242
+ }
2243
+ ]
2244
+ ]
2245
+ },
2246
+
2247
+ {
2248
+ "id": "jvxwy68n",
2249
+ "componentType": "Table",
2250
+ "mandatory": false,
2251
+ "page": "5",
2252
+ "positioning": "HORIZONTAL",
2253
+ "label": "\"➡ 3. Can you tell how long Bart Simpson has been on leave for each type and whether there has been another type?\"",
2254
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
2255
+ "hierarchy": {
2256
+ "sequence": {
2257
+ "id": "j6qfx9qe",
2258
+ "page": "5",
2259
+ "label": "\"V - Favourite characters (dynamic table)\""
2260
+ }
2261
+ },
2262
+ "bindingDependencies": [
2263
+ "LEAVDURATION11",
2264
+ "LEAVDURATION12",
2265
+ "LEAVDURATION21",
2266
+ "LEAVDURATION22",
2267
+ "LEAVDURATION31",
2268
+ "LEAVDURATION32",
2269
+ "LEAVDURATION41",
2270
+ "LEAVDURATION42",
2271
+ "LEAVDURATION51",
2272
+ "LEAVDURATION52"
2273
+ ],
2274
+ "cells": [
2275
+ [
2276
+ { "headerCell": true, "label": "" },
2277
+
2278
+ { "headerCell": true, "label": "\"Days\"" },
2279
+
2280
+ { "headerCell": true, "label": "\"Unit\"" }
2281
+ ],
2282
+
2283
+ [
2284
+ { "value": "1", "label": "\"Leave with pay\"" },
2285
+
2286
+ {
2287
+ "componentType": "InputNumber",
2288
+ "min": 0,
2289
+ "max": 365,
2290
+ "decimals": 0,
2291
+ "id": "jvxwy68n-QOP-kewv511d",
2292
+ "response": { "name": "LEAVDURATION11" },
2293
+ "bindingDependencies": ["LEAVDURATION11"]
2294
+ },
2295
+
2296
+ {
2297
+ "componentType": "Dropdown",
2298
+ "id": "jvxwy68n-QOP-kewv20qg",
2299
+ "options": [
2300
+ { "value": "1", "label": "\"Working Days\"" },
2301
+
2302
+ { "value": "2", "label": "\"Calendar days\"" }
2303
+ ],
2304
+ "response": { "name": "LEAVDURATION12" },
2305
+ "bindingDependencies": ["LEAVDURATION12"]
2306
+ }
2307
+ ],
2308
+
2309
+ [
2310
+ { "value": "2", "label": "\"Public holiday\"" },
2311
+
2312
+ {
2313
+ "componentType": "InputNumber",
2314
+ "min": 0,
2315
+ "max": 365,
2316
+ "decimals": 0,
2317
+ "id": "jvxwy68n-QOP-kewv67nj",
2318
+ "response": { "name": "LEAVDURATION21" },
2319
+ "bindingDependencies": ["LEAVDURATION21"]
2320
+ },
2321
+
2322
+ {
2323
+ "componentType": "Dropdown",
2324
+ "id": "jvxwy68n-QOP-kewvizdm",
2325
+ "options": [
2326
+ { "value": "1", "label": "\"Working Days\"" },
2327
+
2328
+ { "value": "2", "label": "\"Calendar days\"" }
2329
+ ],
2330
+ "response": { "name": "LEAVDURATION22" },
2331
+ "bindingDependencies": ["LEAVDURATION22"]
2332
+ }
2333
+ ],
2334
+
2335
+ [
2336
+ { "value": "3", "label": "\"Sick leave\"" },
2337
+
2338
+ {
2339
+ "componentType": "InputNumber",
2340
+ "min": 0,
2341
+ "max": 365,
2342
+ "decimals": 0,
2343
+ "id": "jvxwy68n-QOP-kewv23wm",
2344
+ "response": { "name": "LEAVDURATION31" },
2345
+ "bindingDependencies": ["LEAVDURATION31"]
2346
+ },
2347
+
2348
+ {
2349
+ "componentType": "Dropdown",
2350
+ "id": "jvxwy68n-QOP-kewv9jcl",
2351
+ "options": [
2352
+ { "value": "1", "label": "\"Working Days\"" },
2353
+
2354
+ { "value": "2", "label": "\"Calendar days\"" }
2355
+ ],
2356
+ "response": { "name": "LEAVDURATION32" },
2357
+ "bindingDependencies": ["LEAVDURATION32"]
2358
+ }
2359
+ ],
2360
+
2361
+ [
2362
+ { "value": "4", "label": "\"Maternity/paternity leave\"" },
2363
+
2364
+ {
2365
+ "componentType": "InputNumber",
2366
+ "min": 0,
2367
+ "max": 365,
2368
+ "decimals": 0,
2369
+ "id": "jvxwy68n-QOP-kewv2jks",
2370
+ "response": { "name": "LEAVDURATION41" },
2371
+ "bindingDependencies": ["LEAVDURATION41"]
2372
+ },
2373
+
2374
+ {
2375
+ "componentType": "Dropdown",
2376
+ "id": "jvxwy68n-QOP-kewvf0gf",
2377
+ "options": [
2378
+ { "value": "1", "label": "\"Working Days\"" },
2379
+
2380
+ { "value": "2", "label": "\"Calendar days\"" }
2381
+ ],
2382
+ "response": { "name": "LEAVDURATION42" },
2383
+ "bindingDependencies": ["LEAVDURATION42"]
2384
+ }
2385
+ ],
2386
+
2387
+ [
2388
+ { "value": "5", "label": "\"Other type\"" },
2389
+
2390
+ {
2391
+ "componentType": "InputNumber",
2392
+ "min": 0,
2393
+ "max": 365,
2394
+ "decimals": 0,
2395
+ "id": "jvxwy68n-QOP-kewvl896",
2396
+ "response": { "name": "LEAVDURATION51" },
2397
+ "bindingDependencies": ["LEAVDURATION51"]
2398
+ },
2399
+
2400
+ {
2401
+ "componentType": "Dropdown",
2402
+ "id": "jvxwy68n-QOP-kewvalmd",
2403
+ "options": [
2404
+ { "value": "1", "label": "\"Working Days\"" },
2405
+
2406
+ { "value": "2", "label": "\"Calendar days\"" }
2407
+ ],
2408
+ "response": { "name": "LEAVDURATION52" },
2409
+ "bindingDependencies": ["LEAVDURATION52"]
2410
+ }
2411
+ ]
2412
+ ]
2413
+ },
2414
+
2415
+ {
2416
+ "id": "kiq5mr0b",
2417
+ "componentType": "Sequence",
2418
+ "page": "6",
2419
+ "label": "\"VI - Favourite characters (Loop)\"",
2420
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
2421
+ "hierarchy": {
2422
+ "sequence": {
2423
+ "id": "kiq5mr0b",
2424
+ "page": "6",
2425
+ "label": "\"VI - Favourite characters (Loop)\""
2426
+ }
2427
+ }
2428
+ },
2429
+
2430
+ {
2431
+ "id": "kiq612ky",
2432
+ "componentType": "InputNumber",
2433
+ "mandatory": false,
2434
+ "page": "6",
2435
+ "min": 0,
2436
+ "max": 20,
2437
+ "decimals": 0,
2438
+ "label": "\"➡ 1. How many characters from the Simpsons family could you precisely describe?\"",
2439
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
2440
+ "hierarchy": {
2441
+ "sequence": {
2442
+ "id": "kiq5mr0b",
2443
+ "page": "6",
2444
+ "label": "\"VI - Favourite characters (Loop)\""
2445
+ }
2446
+ },
2447
+ "bindingDependencies": ["NB_CHAR"],
2448
+ "response": { "name": "NB_CHAR" }
2449
+ },
2450
+
2451
+ {
2452
+ "id": "kiq7bjam",
2453
+ "componentType": "Loop",
2454
+ "page": "6",
2455
+ "label": "\"Add a character\"",
2456
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
2457
+ "hierarchy": {
2458
+ "sequence": {
2459
+ "id": "kiq5mr0b",
2460
+ "page": "6",
2461
+ "label": "\"VI - Favourite characters (Loop)\""
2462
+ }
2463
+ },
2464
+ "bindingDependencies": ["NAME_CHAR", "AGE_CHAR"],
2465
+ "components": [
2466
+ {
2467
+ "id": "kiq5u8d5",
2468
+ "componentType": "Subsequence",
2469
+ "page": "6",
2470
+ "label": "\"Description of each character\"",
2471
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
2472
+ "hierarchy": {
2473
+ "sequence": {
2474
+ "id": "kiq5mr0b",
2475
+ "page": "6",
2476
+ "label": "\"VI - Favourite characters (Loop)\""
2477
+ },
2478
+ "subSequence": {
2479
+ "id": "kiq5u8d5",
2480
+ "page": "6",
2481
+ "label": "\"Description of each character\""
2482
+ }
2483
+ }
2484
+ },
2485
+
2486
+ {
2487
+ "id": "kiq66gtw",
2488
+ "componentType": "Input",
2489
+ "mandatory": false,
2490
+ "page": "6",
2491
+ "maxLength": 30,
2492
+ "label": "\"➡ 2. What is the first name of this character?\"",
2493
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
2494
+ "hierarchy": {
2495
+ "sequence": {
2496
+ "id": "kiq5mr0b",
2497
+ "page": "6",
2498
+ "label": "\"VI - Favourite characters (Loop)\""
2499
+ },
2500
+ "subSequence": {
2501
+ "id": "kiq5u8d5",
2502
+ "page": "6",
2503
+ "label": "\"Description of each character\""
2504
+ }
2505
+ },
2506
+ "bindingDependencies": ["NAME_CHAR"],
2507
+ "response": { "name": "NAME_CHAR" }
2508
+ },
2509
+
2510
+ {
2511
+ "id": "kiq5r8wu",
2512
+ "componentType": "InputNumber",
2513
+ "mandatory": false,
2514
+ "page": "6",
2515
+ "min": 0,
2516
+ "max": 120,
2517
+ "decimals": 0,
2518
+ "label": "\"➡ 3. How old is this character in the first episode of the Simpsons family?\"",
2519
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
2520
+ "hierarchy": {
2521
+ "sequence": {
2522
+ "id": "kiq5mr0b",
2523
+ "page": "6",
2524
+ "label": "\"VI - Favourite characters (Loop)\""
2525
+ },
2526
+ "subSequence": {
2527
+ "id": "kiq5u8d5",
2528
+ "page": "6",
2529
+ "label": "\"Description of each character\""
2530
+ }
2531
+ },
2532
+ "bindingDependencies": ["AGE_CHAR"],
2533
+ "response": { "name": "AGE_CHAR" }
2534
+ }
2535
+ ]
2536
+ },
2537
+
2538
+ {
2539
+ "id": "kiq7cbgo",
2540
+ "componentType": "Loop",
2541
+ "page": "7",
2542
+ "maxPage": "1",
2543
+ "min": 0,
2544
+ "iterations": "count(NAME_CHAR)",
2545
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
2546
+ "bindingDependencies": ["NAME_CHAR", "FAVCHAR", "MEMORY_CHAR"],
2547
+ "loopDependencies": ["NAME_CHAR", "AGE_CHAR"],
2548
+ "paginatedLoop": true,
2549
+ "components": [
2550
+ {
2551
+ "id": "kiq5xw5p",
2552
+ "componentType": "Sequence",
2553
+ "page": "7.1",
2554
+ "label": "\"VII - Other details about character named \" || cast(cast(NAME_CHAR,string),string) || \" \"",
2555
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
2556
+ "hierarchy": {
2557
+ "sequence": {
2558
+ "id": "kiq5xw5p",
2559
+ "page": "7.1",
2560
+ "label": "\"VII - Other details about character named \" || cast(cast(NAME_CHAR,string),string) || \" \""
2561
+ }
2562
+ }
2563
+ },
2564
+
2565
+ {
2566
+ "id": "kiq65x3c",
2567
+ "componentType": "CheckboxOne",
2568
+ "mandatory": false,
2569
+ "page": "7.1",
2570
+ "label": "\"➡ 1. Is character named \" || cast(cast(NAME_CHAR,string),string) || \" your favourite one ? \"",
2571
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
2572
+ "hierarchy": {
2573
+ "sequence": {
2574
+ "id": "kiq5xw5p",
2575
+ "page": "7.1",
2576
+ "label": "\"VII - Other details about character named \" || cast(cast(NAME_CHAR,string),string) || \" \""
2577
+ }
2578
+ },
2579
+ "bindingDependencies": ["NAME_CHAR", "FAVCHAR"],
2580
+ "options": [
2581
+ { "value": "1", "label": "\"Yes\"" },
2582
+
2583
+ { "value": "0", "label": "\"No\"" }
2584
+ ],
2585
+ "response": { "name": "FAVCHAR" }
2586
+ },
2587
+
2588
+ {
2589
+ "id": "kiq651zv",
2590
+ "componentType": "Textarea",
2591
+ "mandatory": false,
2592
+ "page": "7.1",
2593
+ "maxLength": 255,
2594
+ "label": "\"➡ 2. What is your best memory about character named \" || cast(cast(NAME_CHAR,string),string) || \" ? \"",
2595
+ "conditionFilter": "not(cast(READY,integer) <> 1)",
2596
+ "hierarchy": {
2597
+ "sequence": {
2598
+ "id": "kiq5xw5p",
2599
+ "page": "7.1",
2600
+ "label": "\"VII - Other details about character named \" || cast(cast(NAME_CHAR,string),string) || \" \""
2601
+ }
2602
+ },
2603
+ "bindingDependencies": ["NAME_CHAR", "MEMORY_CHAR"],
2604
+ "response": { "name": "MEMORY_CHAR" }
2605
+ }
2606
+ ]
2607
+ },
2608
+
2609
+ {
2610
+ "id": "j6z12s2d",
2611
+ "componentType": "Sequence",
2612
+ "page": "8",
2613
+ "label": "\"VIII - Comment\"",
2614
+ "conditionFilter": { "value": "true" },
2615
+ "hierarchy": {
2616
+ "sequence": {
2617
+ "id": "j6z12s2d",
2618
+ "page": "8",
2619
+ "label": "\"VIII - Comment\""
2620
+ }
2621
+ }
2622
+ },
2623
+
2624
+ {
2625
+ "id": "j6z0z3us",
2626
+ "componentType": "Textarea",
2627
+ "mandatory": false,
2628
+ "page": "8",
2629
+ "maxLength": 255,
2630
+ "label": "\"➡ 1. Do you have any comment about the survey?\"",
2631
+ "conditionFilter": { "value": "true" },
2632
+ "hierarchy": {
2633
+ "sequence": {
2634
+ "id": "j6z12s2d",
2635
+ "page": "8",
2636
+ "label": "\"VIII - Comment\""
2637
+ }
2638
+ },
2639
+ "bindingDependencies": ["SURVEY_COMMENT"],
2640
+ "response": { "name": "SURVEY_COMMENT" }
2641
+ }
2642
+ ],
2643
+ "variables": [
2644
+ {
2645
+ "variableType": "COLLECTED",
2646
+ "name": "FAVOURITE_CHAR1_1_1",
2647
+ "componentRef": "j6qg8rc6",
2648
+ "values": {
2649
+ "PREVIOUS": null,
2650
+ "COLLECTED": null,
2651
+ "FORCED": null,
2652
+ "EDITED": null,
2653
+ "INPUTED": null
2654
+ }
2655
+ },
2656
+
2657
+ {
2658
+ "variableType": "COLLECTED",
2659
+ "name": "FAVOURITE_CHAR2_1_2",
2660
+ "componentRef": "j6qg8rc6",
2661
+ "values": {
2662
+ "PREVIOUS": null,
2663
+ "COLLECTED": null,
2664
+ "FORCED": null,
2665
+ "EDITED": null,
2666
+ "INPUTED": null
2667
+ }
2668
+ },
2669
+
2670
+ {
2671
+ "variableType": "COLLECTED",
2672
+ "name": "FAVOURITE_CHAR3_1_3",
2673
+ "componentRef": "j6qg8rc6",
2674
+ "values": {
2675
+ "PREVIOUS": null,
2676
+ "COLLECTED": null,
2677
+ "FORCED": null,
2678
+ "EDITED": null,
2679
+ "INPUTED": null
2680
+ }
2681
+ },
2682
+
2683
+ {
2684
+ "variableType": "COLLECTED",
2685
+ "name": "FAVOURITE_CHAR1_2_1",
2686
+ "componentRef": "j6qg8rc6",
2687
+ "values": {
2688
+ "PREVIOUS": null,
2689
+ "COLLECTED": null,
2690
+ "FORCED": null,
2691
+ "EDITED": null,
2692
+ "INPUTED": null
2693
+ }
2694
+ },
2695
+
2696
+ {
2697
+ "variableType": "COLLECTED",
2698
+ "name": "FAVOURITE_CHAR2_2_2",
2699
+ "componentRef": "j6qg8rc6",
2700
+ "values": {
2701
+ "PREVIOUS": null,
2702
+ "COLLECTED": null,
2703
+ "FORCED": null,
2704
+ "EDITED": null,
2705
+ "INPUTED": null
2706
+ }
2707
+ },
2708
+
2709
+ {
2710
+ "variableType": "COLLECTED",
2711
+ "name": "FAVOURITE_CHAR3_2_3",
2712
+ "componentRef": "j6qg8rc6",
2713
+ "values": {
2714
+ "PREVIOUS": null,
2715
+ "COLLECTED": null,
2716
+ "FORCED": null,
2717
+ "EDITED": null,
2718
+ "INPUTED": null
2719
+ }
2720
+ },
2721
+
2722
+ {
2723
+ "variableType": "COLLECTED",
2724
+ "name": "FAVOURITE_CHAR1_3_1",
2725
+ "componentRef": "j6qg8rc6",
2726
+ "values": {
2727
+ "PREVIOUS": null,
2728
+ "COLLECTED": null,
2729
+ "FORCED": null,
2730
+ "EDITED": null,
2731
+ "INPUTED": null
2732
+ }
2733
+ },
2734
+
2735
+ {
2736
+ "variableType": "COLLECTED",
2737
+ "name": "FAVOURITE_CHAR2_3_2",
2738
+ "componentRef": "j6qg8rc6",
2739
+ "values": {
2740
+ "PREVIOUS": null,
2741
+ "COLLECTED": null,
2742
+ "FORCED": null,
2743
+ "EDITED": null,
2744
+ "INPUTED": null
2745
+ }
2746
+ },
2747
+
2748
+ {
2749
+ "variableType": "COLLECTED",
2750
+ "name": "FAVOURITE_CHAR3_3_3",
2751
+ "componentRef": "j6qg8rc6",
2752
+ "values": {
2753
+ "PREVIOUS": null,
2754
+ "COLLECTED": null,
2755
+ "FORCED": null,
2756
+ "EDITED": null,
2757
+ "INPUTED": null
2758
+ }
2759
+ },
2760
+
2761
+ {
2762
+ "variableType": "COLLECTED",
2763
+ "name": "FAVOURITE_CHAR1_4_1",
2764
+ "componentRef": "j6qg8rc6",
2765
+ "values": {
2766
+ "PREVIOUS": null,
2767
+ "COLLECTED": null,
2768
+ "FORCED": null,
2769
+ "EDITED": null,
2770
+ "INPUTED": null
2771
+ }
2772
+ },
2773
+
2774
+ {
2775
+ "variableType": "COLLECTED",
2776
+ "name": "FAVOURITE_CHAR2_4_2",
2777
+ "componentRef": "j6qg8rc6",
2778
+ "values": {
2779
+ "PREVIOUS": null,
2780
+ "COLLECTED": null,
2781
+ "FORCED": null,
2782
+ "EDITED": null,
2783
+ "INPUTED": null
2784
+ }
2785
+ },
2786
+
2787
+ {
2788
+ "variableType": "COLLECTED",
2789
+ "name": "FAVOURITE_CHAR3_4_3",
2790
+ "componentRef": "j6qg8rc6",
2791
+ "values": {
2792
+ "PREVIOUS": null,
2793
+ "COLLECTED": null,
2794
+ "FORCED": null,
2795
+ "EDITED": null,
2796
+ "INPUTED": null
2797
+ }
2798
+ },
2799
+
2800
+ {
2801
+ "variableType": "COLLECTED",
2802
+ "name": "FAVOURITE_CHAR1_5_1",
2803
+ "componentRef": "j6qg8rc6",
2804
+ "values": {
2805
+ "PREVIOUS": null,
2806
+ "COLLECTED": null,
2807
+ "FORCED": null,
2808
+ "EDITED": null,
2809
+ "INPUTED": null
2810
+ }
2811
+ },
2812
+
2813
+ {
2814
+ "variableType": "COLLECTED",
2815
+ "name": "FAVOURITE_CHAR2_5_2",
2816
+ "componentRef": "j6qg8rc6",
2817
+ "values": {
2818
+ "PREVIOUS": null,
2819
+ "COLLECTED": null,
2820
+ "FORCED": null,
2821
+ "EDITED": null,
2822
+ "INPUTED": null
2823
+ }
2824
+ },
2825
+
2826
+ {
2827
+ "variableType": "COLLECTED",
2828
+ "name": "FAVOURITE_CHAR3_5_3",
2829
+ "componentRef": "j6qg8rc6",
2830
+ "values": {
2831
+ "PREVIOUS": null,
2832
+ "COLLECTED": null,
2833
+ "FORCED": null,
2834
+ "EDITED": null,
2835
+ "INPUTED": null
2836
+ }
2837
+ },
2838
+
2839
+ {
2840
+ "variableType": "COLLECTED",
2841
+ "name": "FAVOURITE_CHAR1_6_1",
2842
+ "componentRef": "j6qg8rc6",
2843
+ "values": {
2844
+ "PREVIOUS": null,
2845
+ "COLLECTED": null,
2846
+ "FORCED": null,
2847
+ "EDITED": null,
2848
+ "INPUTED": null
2849
+ }
2850
+ },
2851
+
2852
+ {
2853
+ "variableType": "COLLECTED",
2854
+ "name": "FAVOURITE_CHAR2_6_2",
2855
+ "componentRef": "j6qg8rc6",
2856
+ "values": {
2857
+ "PREVIOUS": null,
2858
+ "COLLECTED": null,
2859
+ "FORCED": null,
2860
+ "EDITED": null,
2861
+ "INPUTED": null
2862
+ }
2863
+ },
2864
+
2865
+ {
2866
+ "variableType": "COLLECTED",
2867
+ "name": "FAVOURITE_CHAR3_6_3",
2868
+ "componentRef": "j6qg8rc6",
2869
+ "values": {
2870
+ "PREVIOUS": null,
2871
+ "COLLECTED": null,
2872
+ "FORCED": null,
2873
+ "EDITED": null,
2874
+ "INPUTED": null
2875
+ }
2876
+ },
2877
+
2878
+ {
2879
+ "variableType": "COLLECTED",
2880
+ "name": "FAVOURITE_CHAR1_7_1",
2881
+ "componentRef": "j6qg8rc6",
2882
+ "values": {
2883
+ "PREVIOUS": null,
2884
+ "COLLECTED": null,
2885
+ "FORCED": null,
2886
+ "EDITED": null,
2887
+ "INPUTED": null
2888
+ }
2889
+ },
2890
+
2891
+ {
2892
+ "variableType": "COLLECTED",
2893
+ "name": "FAVOURITE_CHAR2_7_2",
2894
+ "componentRef": "j6qg8rc6",
2895
+ "values": {
2896
+ "PREVIOUS": null,
2897
+ "COLLECTED": null,
2898
+ "FORCED": null,
2899
+ "EDITED": null,
2900
+ "INPUTED": null
2901
+ }
2902
+ },
2903
+
2904
+ {
2905
+ "variableType": "COLLECTED",
2906
+ "name": "FAVOURITE_CHAR3_7_3",
2907
+ "componentRef": "j6qg8rc6",
2908
+ "values": {
2909
+ "PREVIOUS": null,
2910
+ "COLLECTED": null,
2911
+ "FORCED": null,
2912
+ "EDITED": null,
2913
+ "INPUTED": null
2914
+ }
2915
+ },
2916
+
2917
+ {
2918
+ "variableType": "COLLECTED",
2919
+ "name": "FAVOURITE_CHAR1_8_1",
2920
+ "componentRef": "j6qg8rc6",
2921
+ "values": {
2922
+ "PREVIOUS": null,
2923
+ "COLLECTED": null,
2924
+ "FORCED": null,
2925
+ "EDITED": null,
2926
+ "INPUTED": null
2927
+ }
2928
+ },
2929
+
2930
+ {
2931
+ "variableType": "COLLECTED",
2932
+ "name": "FAVOURITE_CHAR2_8_2",
2933
+ "componentRef": "j6qg8rc6",
2934
+ "values": {
2935
+ "PREVIOUS": null,
2936
+ "COLLECTED": null,
2937
+ "FORCED": null,
2938
+ "EDITED": null,
2939
+ "INPUTED": null
2940
+ }
2941
+ },
2942
+
2943
+ {
2944
+ "variableType": "COLLECTED",
2945
+ "name": "FAVOURITE_CHAR3_8_3",
2946
+ "componentRef": "j6qg8rc6",
2947
+ "values": {
2948
+ "PREVIOUS": null,
2949
+ "COLLECTED": null,
2950
+ "FORCED": null,
2951
+ "EDITED": null,
2952
+ "INPUTED": null
2953
+ }
2954
+ },
2955
+
2956
+ {
2957
+ "variableType": "COLLECTED",
2958
+ "name": "FAVOURITE_CHAR1_9_1",
2959
+ "componentRef": "j6qg8rc6",
2960
+ "values": {
2961
+ "PREVIOUS": null,
2962
+ "COLLECTED": null,
2963
+ "FORCED": null,
2964
+ "EDITED": null,
2965
+ "INPUTED": null
2966
+ }
2967
+ },
2968
+
2969
+ {
2970
+ "variableType": "COLLECTED",
2971
+ "name": "FAVOURITE_CHAR2_9_2",
2972
+ "componentRef": "j6qg8rc6",
2973
+ "values": {
2974
+ "PREVIOUS": null,
2975
+ "COLLECTED": null,
2976
+ "FORCED": null,
2977
+ "EDITED": null,
2978
+ "INPUTED": null
2979
+ }
2980
+ },
2981
+
2982
+ {
2983
+ "variableType": "COLLECTED",
2984
+ "name": "FAVOURITE_CHAR3_9_3",
2985
+ "componentRef": "j6qg8rc6",
2986
+ "values": {
2987
+ "PREVIOUS": null,
2988
+ "COLLECTED": null,
2989
+ "FORCED": null,
2990
+ "EDITED": null,
2991
+ "INPUTED": null
2992
+ }
2993
+ },
2994
+
2995
+ {
2996
+ "variableType": "COLLECTED",
2997
+ "name": "FAVOURITE_CHAR1_10_1",
2998
+ "componentRef": "j6qg8rc6",
2999
+ "values": {
3000
+ "PREVIOUS": null,
3001
+ "COLLECTED": null,
3002
+ "FORCED": null,
3003
+ "EDITED": null,
3004
+ "INPUTED": null
3005
+ }
3006
+ },
3007
+
3008
+ {
3009
+ "variableType": "COLLECTED",
3010
+ "name": "FAVOURITE_CHAR2_10_2",
3011
+ "componentRef": "j6qg8rc6",
3012
+ "values": {
3013
+ "PREVIOUS": null,
3014
+ "COLLECTED": null,
3015
+ "FORCED": null,
3016
+ "EDITED": null,
3017
+ "INPUTED": null
3018
+ }
3019
+ },
3020
+
3021
+ {
3022
+ "variableType": "COLLECTED",
3023
+ "name": "FAVOURITE_CHAR3_10_3",
3024
+ "componentRef": "j6qg8rc6",
3025
+ "values": {
3026
+ "PREVIOUS": null,
3027
+ "COLLECTED": null,
3028
+ "FORCED": null,
3029
+ "EDITED": null,
3030
+ "INPUTED": null
3031
+ }
3032
+ },
3033
+
3034
+ { "variableType": "EXTERNAL", "name": "LAST_BROADCAST", "value": null },
3035
+
3036
+ {
3037
+ "variableType": "COLLECTED",
3038
+ "name": "COMMENT",
3039
+ "componentRef": "j6p3dkx6",
3040
+ "values": {
3041
+ "PREVIOUS": null,
3042
+ "COLLECTED": null,
3043
+ "FORCED": null,
3044
+ "EDITED": null,
3045
+ "INPUTED": null
3046
+ }
3047
+ },
3048
+
3049
+ {
3050
+ "variableType": "COLLECTED",
3051
+ "name": "READY",
3052
+ "componentRef": "j6p0np9q",
3053
+ "values": {
3054
+ "PREVIOUS": null,
3055
+ "COLLECTED": null,
3056
+ "FORCED": null,
3057
+ "EDITED": null,
3058
+ "INPUTED": null
3059
+ }
3060
+ },
3061
+
3062
+ {
3063
+ "variableType": "COLLECTED",
3064
+ "name": "PRODUCER",
3065
+ "componentRef": "j3343qhx",
3066
+ "values": {
3067
+ "PREVIOUS": null,
3068
+ "COLLECTED": null,
3069
+ "FORCED": null,
3070
+ "EDITED": null,
3071
+ "INPUTED": null
3072
+ }
3073
+ },
3074
+
3075
+ {
3076
+ "variableType": "COLLECTED",
3077
+ "name": "SEASON_NUMBER",
3078
+ "componentRef": "j6q9h8tj",
3079
+ "values": {
3080
+ "PREVIOUS": null,
3081
+ "COLLECTED": null,
3082
+ "FORCED": null,
3083
+ "EDITED": null,
3084
+ "INPUTED": null
3085
+ }
3086
+ },
3087
+
3088
+ {
3089
+ "variableType": "COLLECTED",
3090
+ "name": "DATEFIRST",
3091
+ "componentRef": "kiq71eoi",
3092
+ "values": {
3093
+ "PREVIOUS": null,
3094
+ "COLLECTED": null,
3095
+ "FORCED": null,
3096
+ "EDITED": null,
3097
+ "INPUTED": null
3098
+ }
3099
+ },
3100
+
3101
+ {
3102
+ "variableType": "COLLECTED",
3103
+ "name": "DATEYYYYMM",
3104
+ "componentRef": "k5nvty2o",
3105
+ "values": {
3106
+ "PREVIOUS": null,
3107
+ "COLLECTED": null,
3108
+ "FORCED": null,
3109
+ "EDITED": null,
3110
+ "INPUTED": null
3111
+ }
3112
+ },
3113
+
3114
+ {
3115
+ "variableType": "COLLECTED",
3116
+ "name": "DATEYYYY",
3117
+ "componentRef": "k5nw1fir",
3118
+ "values": {
3119
+ "PREVIOUS": null,
3120
+ "COLLECTED": null,
3121
+ "FORCED": null,
3122
+ "EDITED": null,
3123
+ "INPUTED": null
3124
+ }
3125
+ },
3126
+
3127
+ {
3128
+ "variableType": "COLLECTED",
3129
+ "name": "DURATIONH",
3130
+ "componentRef": "k5nw0w05",
3131
+ "values": {
3132
+ "PREVIOUS": null,
3133
+ "COLLECTED": null,
3134
+ "FORCED": null,
3135
+ "EDITED": null,
3136
+ "INPUTED": null
3137
+ }
3138
+ },
3139
+
3140
+ {
3141
+ "variableType": "COLLECTED",
3142
+ "name": "DURATIOND",
3143
+ "componentRef": "k5nvu98z",
3144
+ "values": {
3145
+ "PREVIOUS": null,
3146
+ "COLLECTED": null,
3147
+ "FORCED": null,
3148
+ "EDITED": null,
3149
+ "INPUTED": null
3150
+ }
3151
+ },
3152
+
3153
+ {
3154
+ "variableType": "COLLECTED",
3155
+ "name": "DURATIONM",
3156
+ "componentRef": "k5nw8ei1",
3157
+ "values": {
3158
+ "PREVIOUS": null,
3159
+ "COLLECTED": null,
3160
+ "FORCED": null,
3161
+ "EDITED": null,
3162
+ "INPUTED": null
3163
+ }
3164
+ },
3165
+
3166
+ {
3167
+ "variableType": "COLLECTED",
3168
+ "name": "DURATIONY",
3169
+ "componentRef": "k5nw9dk4",
3170
+ "values": {
3171
+ "PREVIOUS": null,
3172
+ "COLLECTED": null,
3173
+ "FORCED": null,
3174
+ "EDITED": null,
3175
+ "INPUTED": null
3176
+ }
3177
+ },
3178
+
3179
+ {
3180
+ "variableType": "COLLECTED",
3181
+ "name": "AUDIENCE_SHARE",
3182
+ "componentRef": "j6z06z1e",
3183
+ "values": {
3184
+ "PREVIOUS": null,
3185
+ "COLLECTED": null,
3186
+ "FORCED": null,
3187
+ "EDITED": null,
3188
+ "INPUTED": null
3189
+ }
3190
+ },
3191
+
3192
+ {
3193
+ "variableType": "COLLECTED",
3194
+ "name": "CITY",
3195
+ "componentRef": "j3343clt",
3196
+ "values": {
3197
+ "PREVIOUS": null,
3198
+ "COLLECTED": null,
3199
+ "FORCED": null,
3200
+ "EDITED": null,
3201
+ "INPUTED": null
3202
+ }
3203
+ },
3204
+
3205
+ {
3206
+ "variableType": "COLLECTED",
3207
+ "name": "MAYOR",
3208
+ "componentRef": "j6qdfhvw",
3209
+ "values": {
3210
+ "PREVIOUS": null,
3211
+ "COLLECTED": null,
3212
+ "FORCED": null,
3213
+ "EDITED": null,
3214
+ "INPUTED": null
3215
+ }
3216
+ },
3217
+
3218
+ {
3219
+ "variableType": "COLLECTED",
3220
+ "name": "STATE",
3221
+ "componentRef": "j4nw5cqz",
3222
+ "values": {
3223
+ "PREVIOUS": null,
3224
+ "COLLECTED": null,
3225
+ "FORCED": null,
3226
+ "EDITED": null,
3227
+ "INPUTED": null
3228
+ }
3229
+ },
3230
+
3231
+ {
3232
+ "variableType": "COLLECTED",
3233
+ "name": "PET1",
3234
+ "componentRef": "j334akov",
3235
+ "values": {
3236
+ "PREVIOUS": null,
3237
+ "COLLECTED": null,
3238
+ "FORCED": null,
3239
+ "EDITED": null,
3240
+ "INPUTED": null
3241
+ }
3242
+ },
3243
+
3244
+ {
3245
+ "variableType": "COLLECTED",
3246
+ "name": "PET2",
3247
+ "componentRef": "j334akov",
3248
+ "values": {
3249
+ "PREVIOUS": null,
3250
+ "COLLECTED": null,
3251
+ "FORCED": null,
3252
+ "EDITED": null,
3253
+ "INPUTED": null
3254
+ }
3255
+ },
3256
+
3257
+ {
3258
+ "variableType": "COLLECTED",
3259
+ "name": "PET3",
3260
+ "componentRef": "j334akov",
3261
+ "values": {
3262
+ "PREVIOUS": null,
3263
+ "COLLECTED": null,
3264
+ "FORCED": null,
3265
+ "EDITED": null,
3266
+ "INPUTED": null
3267
+ }
3268
+ },
3269
+
3270
+ {
3271
+ "variableType": "COLLECTED",
3272
+ "name": "PET4",
3273
+ "componentRef": "j334akov",
3274
+ "values": {
3275
+ "PREVIOUS": null,
3276
+ "COLLECTED": null,
3277
+ "FORCED": null,
3278
+ "EDITED": null,
3279
+ "INPUTED": null
3280
+ }
3281
+ },
3282
+
3283
+ {
3284
+ "variableType": "COLLECTED",
3285
+ "name": "ICE_FLAVOUR1",
3286
+ "componentRef": "j6p29i81",
3287
+ "values": {
3288
+ "PREVIOUS": null,
3289
+ "COLLECTED": null,
3290
+ "FORCED": null,
3291
+ "EDITED": null,
3292
+ "INPUTED": null
3293
+ }
3294
+ },
3295
+
3296
+ {
3297
+ "variableType": "COLLECTED",
3298
+ "name": "ICE_FLAVOUR2",
3299
+ "componentRef": "j6p29i81",
3300
+ "values": {
3301
+ "PREVIOUS": null,
3302
+ "COLLECTED": null,
3303
+ "FORCED": null,
3304
+ "EDITED": null,
3305
+ "INPUTED": null
3306
+ }
3307
+ },
3308
+
3309
+ {
3310
+ "variableType": "COLLECTED",
3311
+ "name": "ICE_FLAVOUR3",
3312
+ "componentRef": "j6p29i81",
3313
+ "values": {
3314
+ "PREVIOUS": null,
3315
+ "COLLECTED": null,
3316
+ "FORCED": null,
3317
+ "EDITED": null,
3318
+ "INPUTED": null
3319
+ }
3320
+ },
3321
+
3322
+ {
3323
+ "variableType": "COLLECTED",
3324
+ "name": "ICE_FLAVOUR4",
3325
+ "componentRef": "j6p29i81",
3326
+ "values": {
3327
+ "PREVIOUS": null,
3328
+ "COLLECTED": null,
3329
+ "FORCED": null,
3330
+ "EDITED": null,
3331
+ "INPUTED": null
3332
+ }
3333
+ },
3334
+
3335
+ {
3336
+ "variableType": "COLLECTED",
3337
+ "name": "NUCLEAR_CHARACTER1",
3338
+ "componentRef": "j6qefnga",
3339
+ "values": {
3340
+ "PREVIOUS": null,
3341
+ "COLLECTED": null,
3342
+ "FORCED": null,
3343
+ "EDITED": null,
3344
+ "INPUTED": null
3345
+ }
3346
+ },
3347
+
3348
+ {
3349
+ "variableType": "COLLECTED",
3350
+ "name": "NUCLEAR_CHARACTER2",
3351
+ "componentRef": "j6qefnga",
3352
+ "values": {
3353
+ "PREVIOUS": null,
3354
+ "COLLECTED": null,
3355
+ "FORCED": null,
3356
+ "EDITED": null,
3357
+ "INPUTED": null
3358
+ }
3359
+ },
3360
+
3361
+ {
3362
+ "variableType": "COLLECTED",
3363
+ "name": "NUCLEAR_CHARACTER3",
3364
+ "componentRef": "j6qefnga",
3365
+ "values": {
3366
+ "PREVIOUS": null,
3367
+ "COLLECTED": null,
3368
+ "FORCED": null,
3369
+ "EDITED": null,
3370
+ "INPUTED": null
3371
+ }
3372
+ },
3373
+
3374
+ {
3375
+ "variableType": "COLLECTED",
3376
+ "name": "NUCLEAR_CHARACTER4",
3377
+ "componentRef": "j6qefnga",
3378
+ "values": {
3379
+ "PREVIOUS": null,
3380
+ "COLLECTED": null,
3381
+ "FORCED": null,
3382
+ "EDITED": null,
3383
+ "INPUTED": null
3384
+ }
3385
+ },
3386
+
3387
+ {
3388
+ "variableType": "COLLECTED",
3389
+ "name": "BIRTH_CHARACTER1",
3390
+ "componentRef": "j6yzoc6g",
3391
+ "values": {
3392
+ "PREVIOUS": null,
3393
+ "COLLECTED": null,
3394
+ "FORCED": null,
3395
+ "EDITED": null,
3396
+ "INPUTED": null
3397
+ }
3398
+ },
3399
+
3400
+ {
3401
+ "variableType": "COLLECTED",
3402
+ "name": "BIRTH_CHARACTER2",
3403
+ "componentRef": "j6yzoc6g",
3404
+ "values": {
3405
+ "PREVIOUS": null,
3406
+ "COLLECTED": null,
3407
+ "FORCED": null,
3408
+ "EDITED": null,
3409
+ "INPUTED": null
3410
+ }
3411
+ },
3412
+
3413
+ {
3414
+ "variableType": "COLLECTED",
3415
+ "name": "BIRTH_CHARACTER3",
3416
+ "componentRef": "j6yzoc6g",
3417
+ "values": {
3418
+ "PREVIOUS": null,
3419
+ "COLLECTED": null,
3420
+ "FORCED": null,
3421
+ "EDITED": null,
3422
+ "INPUTED": null
3423
+ }
3424
+ },
3425
+
3426
+ {
3427
+ "variableType": "COLLECTED",
3428
+ "name": "BIRTH_CHARACTER4",
3429
+ "componentRef": "j6yzoc6g",
3430
+ "values": {
3431
+ "PREVIOUS": null,
3432
+ "COLLECTED": null,
3433
+ "FORCED": null,
3434
+ "EDITED": null,
3435
+ "INPUTED": null
3436
+ }
3437
+ },
3438
+
3439
+ {
3440
+ "variableType": "COLLECTED",
3441
+ "name": "BIRTH_CHARACTER5",
3442
+ "componentRef": "j6yzoc6g",
3443
+ "values": {
3444
+ "PREVIOUS": null,
3445
+ "COLLECTED": null,
3446
+ "FORCED": null,
3447
+ "EDITED": null,
3448
+ "INPUTED": null
3449
+ }
3450
+ },
3451
+
3452
+ {
3453
+ "variableType": "COLLECTED",
3454
+ "name": "PERCENTAGE_EXPENSES11",
3455
+ "componentRef": "j4nwc63q",
3456
+ "values": {
3457
+ "PREVIOUS": null,
3458
+ "COLLECTED": null,
3459
+ "FORCED": null,
3460
+ "EDITED": null,
3461
+ "INPUTED": null
3462
+ }
3463
+ },
3464
+
3465
+ {
3466
+ "variableType": "COLLECTED",
3467
+ "name": "PERCENTAGE_EXPENSES21",
3468
+ "componentRef": "j4nwc63q",
3469
+ "values": {
3470
+ "PREVIOUS": null,
3471
+ "COLLECTED": null,
3472
+ "FORCED": null,
3473
+ "EDITED": null,
3474
+ "INPUTED": null
3475
+ }
3476
+ },
3477
+
3478
+ {
3479
+ "variableType": "COLLECTED",
3480
+ "name": "PERCENTAGE_EXPENSES31",
3481
+ "componentRef": "j4nwc63q",
3482
+ "values": {
3483
+ "PREVIOUS": null,
3484
+ "COLLECTED": null,
3485
+ "FORCED": null,
3486
+ "EDITED": null,
3487
+ "INPUTED": null
3488
+ }
3489
+ },
3490
+
3491
+ {
3492
+ "variableType": "COLLECTED",
3493
+ "name": "PERCENTAGE_EXPENSES41",
3494
+ "componentRef": "j4nwc63q",
3495
+ "values": {
3496
+ "PREVIOUS": null,
3497
+ "COLLECTED": null,
3498
+ "FORCED": null,
3499
+ "EDITED": null,
3500
+ "INPUTED": null
3501
+ }
3502
+ },
3503
+
3504
+ {
3505
+ "variableType": "COLLECTED",
3506
+ "name": "PERCENTAGE_EXPENSES51",
3507
+ "componentRef": "j4nwc63q",
3508
+ "values": {
3509
+ "PREVIOUS": null,
3510
+ "COLLECTED": null,
3511
+ "FORCED": null,
3512
+ "EDITED": null,
3513
+ "INPUTED": null
3514
+ }
3515
+ },
3516
+
3517
+ {
3518
+ "variableType": "COLLECTED",
3519
+ "name": "PERCENTAGE_EXPENSES61",
3520
+ "componentRef": "j4nwc63q",
3521
+ "values": {
3522
+ "PREVIOUS": null,
3523
+ "COLLECTED": null,
3524
+ "FORCED": null,
3525
+ "EDITED": null,
3526
+ "INPUTED": null
3527
+ }
3528
+ },
3529
+
3530
+ {
3531
+ "variableType": "COLLECTED",
3532
+ "name": "PERCENTAGE_EXPENSES71",
3533
+ "componentRef": "j4nwc63q",
3534
+ "values": {
3535
+ "PREVIOUS": null,
3536
+ "COLLECTED": null,
3537
+ "FORCED": null,
3538
+ "EDITED": null,
3539
+ "INPUTED": null
3540
+ }
3541
+ },
3542
+
3543
+ {
3544
+ "variableType": "COLLECTED",
3545
+ "name": "LAST_FOOD_SHOPPING11",
3546
+ "componentRef": "k9cg2q5t",
3547
+ "values": {
3548
+ "PREVIOUS": null,
3549
+ "COLLECTED": null,
3550
+ "FORCED": null,
3551
+ "EDITED": null,
3552
+ "INPUTED": null
3553
+ }
3554
+ },
3555
+
3556
+ {
3557
+ "variableType": "COLLECTED",
3558
+ "name": "LAST_FOOD_SHOPPING21",
3559
+ "componentRef": "k9cg2q5t",
3560
+ "values": {
3561
+ "PREVIOUS": null,
3562
+ "COLLECTED": null,
3563
+ "FORCED": null,
3564
+ "EDITED": null,
3565
+ "INPUTED": null
3566
+ }
3567
+ },
3568
+
3569
+ {
3570
+ "variableType": "COLLECTED",
3571
+ "name": "LAST_FOOD_SHOPPING31",
3572
+ "componentRef": "k9cg2q5t",
3573
+ "values": {
3574
+ "PREVIOUS": null,
3575
+ "COLLECTED": null,
3576
+ "FORCED": null,
3577
+ "EDITED": null,
3578
+ "INPUTED": null
3579
+ }
3580
+ },
3581
+
3582
+ {
3583
+ "variableType": "COLLECTED",
3584
+ "name": "LAST_FOOD_SHOPPING41",
3585
+ "componentRef": "k9cg2q5t",
3586
+ "values": {
3587
+ "PREVIOUS": null,
3588
+ "COLLECTED": null,
3589
+ "FORCED": null,
3590
+ "EDITED": null,
3591
+ "INPUTED": null
3592
+ }
3593
+ },
3594
+
3595
+ {
3596
+ "variableType": "COLLECTED",
3597
+ "name": "LAST_FOOD_SHOPPING51",
3598
+ "componentRef": "k9cg2q5t",
3599
+ "values": {
3600
+ "PREVIOUS": null,
3601
+ "COLLECTED": null,
3602
+ "FORCED": null,
3603
+ "EDITED": null,
3604
+ "INPUTED": null
3605
+ }
3606
+ },
3607
+
3608
+ {
3609
+ "variableType": "COLLECTED",
3610
+ "name": "LAST_FOOD_SHOPPING61",
3611
+ "componentRef": "k9cg2q5t",
3612
+ "values": {
3613
+ "PREVIOUS": null,
3614
+ "COLLECTED": null,
3615
+ "FORCED": null,
3616
+ "EDITED": null,
3617
+ "INPUTED": null
3618
+ }
3619
+ },
3620
+
3621
+ {
3622
+ "variableType": "COLLECTED",
3623
+ "name": "LAST_FOOD_SHOPPING71",
3624
+ "componentRef": "k9cg2q5t",
3625
+ "values": {
3626
+ "PREVIOUS": null,
3627
+ "COLLECTED": null,
3628
+ "FORCED": null,
3629
+ "EDITED": null,
3630
+ "INPUTED": null
3631
+ }
3632
+ },
3633
+
3634
+ {
3635
+ "variableType": "COLLECTED",
3636
+ "name": "LAST_FOOD_SHOPPING81",
3637
+ "componentRef": "k9cg2q5t",
3638
+ "values": {
3639
+ "PREVIOUS": null,
3640
+ "COLLECTED": null,
3641
+ "FORCED": null,
3642
+ "EDITED": null,
3643
+ "INPUTED": null
3644
+ }
3645
+ },
3646
+
3647
+ {
3648
+ "variableType": "COLLECTED",
3649
+ "name": "CLOWNING11",
3650
+ "componentRef": "kbkjvgel",
3651
+ "values": {
3652
+ "PREVIOUS": null,
3653
+ "COLLECTED": null,
3654
+ "FORCED": null,
3655
+ "EDITED": null,
3656
+ "INPUTED": null
3657
+ }
3658
+ },
3659
+
3660
+ {
3661
+ "variableType": "COLLECTED",
3662
+ "name": "CLOWNING12",
3663
+ "componentRef": "kbkjvgel",
3664
+ "values": {
3665
+ "PREVIOUS": null,
3666
+ "COLLECTED": null,
3667
+ "FORCED": null,
3668
+ "EDITED": null,
3669
+ "INPUTED": null
3670
+ }
3671
+ },
3672
+
3673
+ {
3674
+ "variableType": "COLLECTED",
3675
+ "name": "CLOWNING21",
3676
+ "componentRef": "kbkjvgel",
3677
+ "values": {
3678
+ "PREVIOUS": null,
3679
+ "COLLECTED": null,
3680
+ "FORCED": null,
3681
+ "EDITED": null,
3682
+ "INPUTED": null
3683
+ }
3684
+ },
3685
+
3686
+ {
3687
+ "variableType": "COLLECTED",
3688
+ "name": "CLOWNING22",
3689
+ "componentRef": "kbkjvgel",
3690
+ "values": {
3691
+ "PREVIOUS": null,
3692
+ "COLLECTED": null,
3693
+ "FORCED": null,
3694
+ "EDITED": null,
3695
+ "INPUTED": null
3696
+ }
3697
+ },
3698
+
3699
+ {
3700
+ "variableType": "COLLECTED",
3701
+ "name": "CLOWNING31",
3702
+ "componentRef": "kbkjvgel",
3703
+ "values": {
3704
+ "PREVIOUS": null,
3705
+ "COLLECTED": null,
3706
+ "FORCED": null,
3707
+ "EDITED": null,
3708
+ "INPUTED": null
3709
+ }
3710
+ },
3711
+
3712
+ {
3713
+ "variableType": "COLLECTED",
3714
+ "name": "CLOWNING32",
3715
+ "componentRef": "kbkjvgel",
3716
+ "values": {
3717
+ "PREVIOUS": null,
3718
+ "COLLECTED": null,
3719
+ "FORCED": null,
3720
+ "EDITED": null,
3721
+ "INPUTED": null
3722
+ }
3723
+ },
3724
+
3725
+ {
3726
+ "variableType": "COLLECTED",
3727
+ "name": "CLOWNING41",
3728
+ "componentRef": "kbkjvgel",
3729
+ "values": {
3730
+ "PREVIOUS": null,
3731
+ "COLLECTED": null,
3732
+ "FORCED": null,
3733
+ "EDITED": null,
3734
+ "INPUTED": null
3735
+ }
3736
+ },
3737
+
3738
+ {
3739
+ "variableType": "COLLECTED",
3740
+ "name": "CLOWNING42",
3741
+ "componentRef": "kbkjvgel",
3742
+ "values": {
3743
+ "PREVIOUS": null,
3744
+ "COLLECTED": null,
3745
+ "FORCED": null,
3746
+ "EDITED": null,
3747
+ "INPUTED": null
3748
+ }
3749
+ },
3750
+
3751
+ {
3752
+ "variableType": "COLLECTED",
3753
+ "name": "TRAVEL11",
3754
+ "componentRef": "j6p2lwuj",
3755
+ "values": {
3756
+ "PREVIOUS": null,
3757
+ "COLLECTED": null,
3758
+ "FORCED": null,
3759
+ "EDITED": null,
3760
+ "INPUTED": null
3761
+ }
3762
+ },
3763
+
3764
+ {
3765
+ "variableType": "COLLECTED",
3766
+ "name": "TRAVEL12",
3767
+ "componentRef": "j6p2lwuj",
3768
+ "values": {
3769
+ "PREVIOUS": null,
3770
+ "COLLECTED": null,
3771
+ "FORCED": null,
3772
+ "EDITED": null,
3773
+ "INPUTED": null
3774
+ }
3775
+ },
3776
+
3777
+ {
3778
+ "variableType": "COLLECTED",
3779
+ "name": "TRAVEL13",
3780
+ "componentRef": "j6p2lwuj",
3781
+ "values": {
3782
+ "PREVIOUS": null,
3783
+ "COLLECTED": null,
3784
+ "FORCED": null,
3785
+ "EDITED": null,
3786
+ "INPUTED": null
3787
+ }
3788
+ },
3789
+
3790
+ {
3791
+ "variableType": "COLLECTED",
3792
+ "name": "TRAVEL14",
3793
+ "componentRef": "j6p2lwuj",
3794
+ "values": {
3795
+ "PREVIOUS": null,
3796
+ "COLLECTED": null,
3797
+ "FORCED": null,
3798
+ "EDITED": null,
3799
+ "INPUTED": null
3800
+ }
3801
+ },
3802
+
3803
+ {
3804
+ "variableType": "COLLECTED",
3805
+ "name": "TRAVEL15",
3806
+ "componentRef": "j6p2lwuj",
3807
+ "values": {
3808
+ "PREVIOUS": null,
3809
+ "COLLECTED": null,
3810
+ "FORCED": null,
3811
+ "EDITED": null,
3812
+ "INPUTED": null
3813
+ }
3814
+ },
3815
+
3816
+ {
3817
+ "variableType": "COLLECTED",
3818
+ "name": "TRAVEL16",
3819
+ "componentRef": "j6p2lwuj",
3820
+ "values": {
3821
+ "PREVIOUS": null,
3822
+ "COLLECTED": null,
3823
+ "FORCED": null,
3824
+ "EDITED": null,
3825
+ "INPUTED": null
3826
+ }
3827
+ },
3828
+
3829
+ {
3830
+ "variableType": "COLLECTED",
3831
+ "name": "TRAVEL21",
3832
+ "componentRef": "j6p2lwuj",
3833
+ "values": {
3834
+ "PREVIOUS": null,
3835
+ "COLLECTED": null,
3836
+ "FORCED": null,
3837
+ "EDITED": null,
3838
+ "INPUTED": null
3839
+ }
3840
+ },
3841
+
3842
+ {
3843
+ "variableType": "COLLECTED",
3844
+ "name": "TRAVEL22",
3845
+ "componentRef": "j6p2lwuj",
3846
+ "values": {
3847
+ "PREVIOUS": null,
3848
+ "COLLECTED": null,
3849
+ "FORCED": null,
3850
+ "EDITED": null,
3851
+ "INPUTED": null
3852
+ }
3853
+ },
3854
+
3855
+ {
3856
+ "variableType": "COLLECTED",
3857
+ "name": "TRAVEL23",
3858
+ "componentRef": "j6p2lwuj",
3859
+ "values": {
3860
+ "PREVIOUS": null,
3861
+ "COLLECTED": null,
3862
+ "FORCED": null,
3863
+ "EDITED": null,
3864
+ "INPUTED": null
3865
+ }
3866
+ },
3867
+
3868
+ {
3869
+ "variableType": "COLLECTED",
3870
+ "name": "TRAVEL24",
3871
+ "componentRef": "j6p2lwuj",
3872
+ "values": {
3873
+ "PREVIOUS": null,
3874
+ "COLLECTED": null,
3875
+ "FORCED": null,
3876
+ "EDITED": null,
3877
+ "INPUTED": null
3878
+ }
3879
+ },
3880
+
3881
+ {
3882
+ "variableType": "COLLECTED",
3883
+ "name": "TRAVEL25",
3884
+ "componentRef": "j6p2lwuj",
3885
+ "values": {
3886
+ "PREVIOUS": null,
3887
+ "COLLECTED": null,
3888
+ "FORCED": null,
3889
+ "EDITED": null,
3890
+ "INPUTED": null
3891
+ }
3892
+ },
3893
+
3894
+ {
3895
+ "variableType": "COLLECTED",
3896
+ "name": "TRAVEL26",
3897
+ "componentRef": "j6p2lwuj",
3898
+ "values": {
3899
+ "PREVIOUS": null,
3900
+ "COLLECTED": null,
3901
+ "FORCED": null,
3902
+ "EDITED": null,
3903
+ "INPUTED": null
3904
+ }
3905
+ },
3906
+
3907
+ {
3908
+ "variableType": "COLLECTED",
3909
+ "name": "TRAVEL31",
3910
+ "componentRef": "j6p2lwuj",
3911
+ "values": {
3912
+ "PREVIOUS": null,
3913
+ "COLLECTED": null,
3914
+ "FORCED": null,
3915
+ "EDITED": null,
3916
+ "INPUTED": null
3917
+ }
3918
+ },
3919
+
3920
+ {
3921
+ "variableType": "COLLECTED",
3922
+ "name": "TRAVEL32",
3923
+ "componentRef": "j6p2lwuj",
3924
+ "values": {
3925
+ "PREVIOUS": null,
3926
+ "COLLECTED": null,
3927
+ "FORCED": null,
3928
+ "EDITED": null,
3929
+ "INPUTED": null
3930
+ }
3931
+ },
3932
+
3933
+ {
3934
+ "variableType": "COLLECTED",
3935
+ "name": "TRAVEL33",
3936
+ "componentRef": "j6p2lwuj",
3937
+ "values": {
3938
+ "PREVIOUS": null,
3939
+ "COLLECTED": null,
3940
+ "FORCED": null,
3941
+ "EDITED": null,
3942
+ "INPUTED": null
3943
+ }
3944
+ },
3945
+
3946
+ {
3947
+ "variableType": "COLLECTED",
3948
+ "name": "TRAVEL34",
3949
+ "componentRef": "j6p2lwuj",
3950
+ "values": {
3951
+ "PREVIOUS": null,
3952
+ "COLLECTED": null,
3953
+ "FORCED": null,
3954
+ "EDITED": null,
3955
+ "INPUTED": null
3956
+ }
3957
+ },
3958
+
3959
+ {
3960
+ "variableType": "COLLECTED",
3961
+ "name": "TRAVEL35",
3962
+ "componentRef": "j6p2lwuj",
3963
+ "values": {
3964
+ "PREVIOUS": null,
3965
+ "COLLECTED": null,
3966
+ "FORCED": null,
3967
+ "EDITED": null,
3968
+ "INPUTED": null
3969
+ }
3970
+ },
3971
+
3972
+ {
3973
+ "variableType": "COLLECTED",
3974
+ "name": "TRAVEL36",
3975
+ "componentRef": "j6p2lwuj",
3976
+ "values": {
3977
+ "PREVIOUS": null,
3978
+ "COLLECTED": null,
3979
+ "FORCED": null,
3980
+ "EDITED": null,
3981
+ "INPUTED": null
3982
+ }
3983
+ },
3984
+
3985
+ {
3986
+ "variableType": "COLLECTED",
3987
+ "name": "TRAVEL41",
3988
+ "componentRef": "j6p2lwuj",
3989
+ "values": {
3990
+ "PREVIOUS": null,
3991
+ "COLLECTED": null,
3992
+ "FORCED": null,
3993
+ "EDITED": null,
3994
+ "INPUTED": null
3995
+ }
3996
+ },
3997
+
3998
+ {
3999
+ "variableType": "COLLECTED",
4000
+ "name": "TRAVEL42",
4001
+ "componentRef": "j6p2lwuj",
4002
+ "values": {
4003
+ "PREVIOUS": null,
4004
+ "COLLECTED": null,
4005
+ "FORCED": null,
4006
+ "EDITED": null,
4007
+ "INPUTED": null
4008
+ }
4009
+ },
4010
+
4011
+ {
4012
+ "variableType": "COLLECTED",
4013
+ "name": "TRAVEL43",
4014
+ "componentRef": "j6p2lwuj",
4015
+ "values": {
4016
+ "PREVIOUS": null,
4017
+ "COLLECTED": null,
4018
+ "FORCED": null,
4019
+ "EDITED": null,
4020
+ "INPUTED": null
4021
+ }
4022
+ },
4023
+
4024
+ {
4025
+ "variableType": "COLLECTED",
4026
+ "name": "TRAVEL44",
4027
+ "componentRef": "j6p2lwuj",
4028
+ "values": {
4029
+ "PREVIOUS": null,
4030
+ "COLLECTED": null,
4031
+ "FORCED": null,
4032
+ "EDITED": null,
4033
+ "INPUTED": null
4034
+ }
4035
+ },
4036
+
4037
+ {
4038
+ "variableType": "COLLECTED",
4039
+ "name": "TRAVEL45",
4040
+ "componentRef": "j6p2lwuj",
4041
+ "values": {
4042
+ "PREVIOUS": null,
4043
+ "COLLECTED": null,
4044
+ "FORCED": null,
4045
+ "EDITED": null,
4046
+ "INPUTED": null
4047
+ }
4048
+ },
4049
+
4050
+ {
4051
+ "variableType": "COLLECTED",
4052
+ "name": "TRAVEL46",
4053
+ "componentRef": "j6p2lwuj",
4054
+ "values": {
4055
+ "PREVIOUS": null,
4056
+ "COLLECTED": null,
4057
+ "FORCED": null,
4058
+ "EDITED": null,
4059
+ "INPUTED": null
4060
+ }
4061
+ },
4062
+
4063
+ {
4064
+ "variableType": "COLLECTED",
4065
+ "name": "FAVOURITE_CHAR1",
4066
+ "componentRef": "j6qg8rc6",
4067
+ "values": {
4068
+ "PREVIOUS": null,
4069
+ "COLLECTED": null,
4070
+ "FORCED": null,
4071
+ "EDITED": null,
4072
+ "INPUTED": null
4073
+ }
4074
+ },
4075
+
4076
+ {
4077
+ "variableType": "COLLECTED",
4078
+ "name": "FAVOURITE_CHAR2",
4079
+ "componentRef": "j6qg8rc6",
4080
+ "values": {
4081
+ "PREVIOUS": null,
4082
+ "COLLECTED": null,
4083
+ "FORCED": null,
4084
+ "EDITED": null,
4085
+ "INPUTED": null
4086
+ }
4087
+ },
4088
+
4089
+ {
4090
+ "variableType": "COLLECTED",
4091
+ "name": "FAVOURITE_CHAR3",
4092
+ "componentRef": "j6qg8rc6",
4093
+ "values": {
4094
+ "PREVIOUS": null,
4095
+ "COLLECTED": null,
4096
+ "FORCED": null,
4097
+ "EDITED": null,
4098
+ "INPUTED": null
4099
+ }
4100
+ },
4101
+
4102
+ {
4103
+ "variableType": "COLLECTED",
4104
+ "name": "FEELCHAREV1",
4105
+ "componentRef": "jvxux0mi",
4106
+ "values": {
4107
+ "PREVIOUS": null,
4108
+ "COLLECTED": null,
4109
+ "FORCED": null,
4110
+ "EDITED": null,
4111
+ "INPUTED": null
4112
+ }
4113
+ },
4114
+
4115
+ {
4116
+ "variableType": "COLLECTED",
4117
+ "name": "FEELCHAREV2",
4118
+ "componentRef": "jvxux0mi",
4119
+ "values": {
4120
+ "PREVIOUS": null,
4121
+ "COLLECTED": null,
4122
+ "FORCED": null,
4123
+ "EDITED": null,
4124
+ "INPUTED": null
4125
+ }
4126
+ },
4127
+
4128
+ {
4129
+ "variableType": "COLLECTED",
4130
+ "name": "FEELCHAREV3",
4131
+ "componentRef": "jvxux0mi",
4132
+ "values": {
4133
+ "PREVIOUS": null,
4134
+ "COLLECTED": null,
4135
+ "FORCED": null,
4136
+ "EDITED": null,
4137
+ "INPUTED": null
4138
+ }
4139
+ },
4140
+
4141
+ {
4142
+ "variableType": "COLLECTED",
4143
+ "name": "FEELCHAREV4",
4144
+ "componentRef": "jvxux0mi",
4145
+ "values": {
4146
+ "PREVIOUS": null,
4147
+ "COLLECTED": null,
4148
+ "FORCED": null,
4149
+ "EDITED": null,
4150
+ "INPUTED": null
4151
+ }
4152
+ },
4153
+
4154
+ {
4155
+ "variableType": "COLLECTED",
4156
+ "name": "LEAVDURATION11",
4157
+ "componentRef": "jvxwy68n",
4158
+ "values": {
4159
+ "PREVIOUS": null,
4160
+ "COLLECTED": null,
4161
+ "FORCED": null,
4162
+ "EDITED": null,
4163
+ "INPUTED": null
4164
+ }
4165
+ },
4166
+
4167
+ {
4168
+ "variableType": "COLLECTED",
4169
+ "name": "LEAVDURATION12",
4170
+ "componentRef": "jvxwy68n",
4171
+ "values": {
4172
+ "PREVIOUS": null,
4173
+ "COLLECTED": null,
4174
+ "FORCED": null,
4175
+ "EDITED": null,
4176
+ "INPUTED": null
4177
+ }
4178
+ },
4179
+
4180
+ {
4181
+ "variableType": "COLLECTED",
4182
+ "name": "LEAVDURATION21",
4183
+ "componentRef": "jvxwy68n",
4184
+ "values": {
4185
+ "PREVIOUS": null,
4186
+ "COLLECTED": null,
4187
+ "FORCED": null,
4188
+ "EDITED": null,
4189
+ "INPUTED": null
4190
+ }
4191
+ },
4192
+
4193
+ {
4194
+ "variableType": "COLLECTED",
4195
+ "name": "LEAVDURATION22",
4196
+ "componentRef": "jvxwy68n",
4197
+ "values": {
4198
+ "PREVIOUS": null,
4199
+ "COLLECTED": null,
4200
+ "FORCED": null,
4201
+ "EDITED": null,
4202
+ "INPUTED": null
4203
+ }
4204
+ },
4205
+
4206
+ {
4207
+ "variableType": "COLLECTED",
4208
+ "name": "LEAVDURATION31",
4209
+ "componentRef": "jvxwy68n",
4210
+ "values": {
4211
+ "PREVIOUS": null,
4212
+ "COLLECTED": null,
4213
+ "FORCED": null,
4214
+ "EDITED": null,
4215
+ "INPUTED": null
4216
+ }
4217
+ },
4218
+
4219
+ {
4220
+ "variableType": "COLLECTED",
4221
+ "name": "LEAVDURATION32",
4222
+ "componentRef": "jvxwy68n",
4223
+ "values": {
4224
+ "PREVIOUS": null,
4225
+ "COLLECTED": null,
4226
+ "FORCED": null,
4227
+ "EDITED": null,
4228
+ "INPUTED": null
4229
+ }
4230
+ },
4231
+
4232
+ {
4233
+ "variableType": "COLLECTED",
4234
+ "name": "LEAVDURATION41",
4235
+ "componentRef": "jvxwy68n",
4236
+ "values": {
4237
+ "PREVIOUS": null,
4238
+ "COLLECTED": null,
4239
+ "FORCED": null,
4240
+ "EDITED": null,
4241
+ "INPUTED": null
4242
+ }
4243
+ },
4244
+
4245
+ {
4246
+ "variableType": "COLLECTED",
4247
+ "name": "LEAVDURATION42",
4248
+ "componentRef": "jvxwy68n",
4249
+ "values": {
4250
+ "PREVIOUS": null,
4251
+ "COLLECTED": null,
4252
+ "FORCED": null,
4253
+ "EDITED": null,
4254
+ "INPUTED": null
4255
+ }
4256
+ },
4257
+
4258
+ {
4259
+ "variableType": "COLLECTED",
4260
+ "name": "LEAVDURATION51",
4261
+ "componentRef": "jvxwy68n",
4262
+ "values": {
4263
+ "PREVIOUS": null,
4264
+ "COLLECTED": null,
4265
+ "FORCED": null,
4266
+ "EDITED": null,
4267
+ "INPUTED": null
4268
+ }
4269
+ },
4270
+
4271
+ {
4272
+ "variableType": "COLLECTED",
4273
+ "name": "LEAVDURATION52",
4274
+ "componentRef": "jvxwy68n",
4275
+ "values": {
4276
+ "PREVIOUS": null,
4277
+ "COLLECTED": null,
4278
+ "FORCED": null,
4279
+ "EDITED": null,
4280
+ "INPUTED": null
4281
+ }
4282
+ },
4283
+
4284
+ {
4285
+ "variableType": "COLLECTED",
4286
+ "name": "NB_CHAR",
4287
+ "componentRef": "kiq612ky",
4288
+ "values": {
4289
+ "PREVIOUS": null,
4290
+ "COLLECTED": null,
4291
+ "FORCED": null,
4292
+ "EDITED": null,
4293
+ "INPUTED": null
4294
+ }
4295
+ },
4296
+
4297
+ {
4298
+ "variableType": "COLLECTED",
4299
+ "name": "NAME_CHAR",
4300
+ "componentRef": "kiq7bjam",
4301
+ "values": {
4302
+ "PREVIOUS": [null],
4303
+ "COLLECTED": [null],
4304
+ "FORCED": [null],
4305
+ "EDITED": [null],
4306
+ "INPUTED": [null]
4307
+ }
4308
+ },
4309
+
4310
+ {
4311
+ "variableType": "COLLECTED",
4312
+ "name": "AGE_CHAR",
4313
+ "componentRef": "kiq7bjam",
4314
+ "values": {
4315
+ "PREVIOUS": [null],
4316
+ "COLLECTED": [null],
4317
+ "FORCED": [null],
4318
+ "EDITED": [null],
4319
+ "INPUTED": [null]
4320
+ }
4321
+ },
4322
+
4323
+ {
4324
+ "variableType": "COLLECTED",
4325
+ "name": "FAVCHAR",
4326
+ "componentRef": "kiq7cbgo",
4327
+ "values": {
4328
+ "PREVIOUS": [null],
4329
+ "COLLECTED": [null],
4330
+ "FORCED": [null],
4331
+ "EDITED": [null],
4332
+ "INPUTED": [null]
4333
+ }
4334
+ },
4335
+
4336
+ {
4337
+ "variableType": "COLLECTED",
4338
+ "name": "MEMORY_CHAR",
4339
+ "componentRef": "kiq7cbgo",
4340
+ "values": {
4341
+ "PREVIOUS": [null],
4342
+ "COLLECTED": [null],
4343
+ "FORCED": [null],
4344
+ "EDITED": [null],
4345
+ "INPUTED": [null]
4346
+ }
4347
+ },
4348
+
4349
+ {
4350
+ "variableType": "COLLECTED",
4351
+ "name": "SURVEY_COMMENT",
4352
+ "componentRef": "j6z0z3us",
4353
+ "values": {
4354
+ "PREVIOUS": null,
4355
+ "COLLECTED": null,
4356
+ "FORCED": null,
4357
+ "EDITED": null,
4358
+ "INPUTED": null
4359
+ }
4360
+ }
4361
+ ]
4362
+ }