@inseefr/lunatic 0.3.1-experimental → 0.3.2-v2

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