@inseefr/lunatic 3.0.0-rc.11 → 3.0.0-rc.13

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