@inseefr/lunatic 0.2.60 → 0.3.0-experimental

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