@inseefr/lunatic 3.5.7 → 3.5.8

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 (235) hide show
  1. package/components/shared/Combobox/Combobox.stories.d.ts +3 -2
  2. package/components/shared/Combobox/Combobox.stories.js +26 -21
  3. package/components/shared/Combobox/Combobox.stories.js.map +1 -1
  4. package/esm/components/shared/Combobox/Combobox.stories.d.ts +3 -2
  5. package/esm/components/shared/Combobox/Combobox.stories.js +28 -24
  6. package/esm/components/shared/Combobox/Combobox.stories.js.map +1 -1
  7. package/esm/hooks/useLocalStorage.d.ts +1 -0
  8. package/esm/hooks/useLocalStorage.js +31 -0
  9. package/esm/hooks/useLocalStorage.js.map +1 -0
  10. package/esm/type.source.d.ts +6 -0
  11. package/esm/use-lunatic/commons/compile-controls.js +22 -14
  12. package/esm/use-lunatic/commons/compile-controls.js.map +1 -1
  13. package/esm/use-lunatic/commons/fill-components/fill-component-expressions.js +4 -1
  14. package/esm/use-lunatic/commons/fill-components/fill-component-expressions.js.map +1 -1
  15. package/esm/use-lunatic/hooks/use-page-has-response.js +1 -1
  16. package/esm/use-lunatic/hooks/use-page-has-response.js.map +1 -1
  17. package/esm/use-lunatic/hooks/useOverview.spec.js +2 -2
  18. package/esm/use-lunatic/hooks/useOverview.spec.js.map +1 -1
  19. package/esm/utils/number.d.ts +4 -0
  20. package/esm/utils/number.js +12 -0
  21. package/esm/utils/number.js.map +1 -1
  22. package/esm/utils/object.d.ts +10 -0
  23. package/esm/utils/object.js +26 -0
  24. package/esm/utils/object.js.map +1 -1
  25. package/hooks/useLocalStorage.d.ts +1 -0
  26. package/hooks/useLocalStorage.js +34 -0
  27. package/hooks/useLocalStorage.js.map +1 -0
  28. package/package.json +76 -137
  29. package/src/components/shared/Combobox/Combobox.stories.tsx +48 -49
  30. package/src/hooks/useLocalStorage.ts +37 -0
  31. package/src/json.d.ts +16 -0
  32. package/src/stories/accordion/accordion.stories.tsx +21 -0
  33. package/src/stories/behaviour/cleaning/cleaning.stories.tsx +40 -0
  34. package/src/stories/behaviour/controls/controls.stories.tsx +51 -0
  35. package/src/stories/behaviour/disabled/disabled.stories.tsx +29 -0
  36. package/src/stories/behaviour/filter/filter.stories.tsx +34 -0
  37. package/src/stories/behaviour/missing/missing.stories.tsx +31 -0
  38. package/src/stories/behaviour/overview/overview.stories.tsx +61 -0
  39. package/src/stories/{overview/sourceWithHierarchy.json → behaviour/overview/source.json} +1 -1
  40. package/src/stories/{overview → behaviour/overview}/sourceLoop.json +1 -1
  41. package/src/stories/behaviour/performance/performance.stories.tsx +29 -0
  42. package/src/stories/behaviour/resizing/resizing.stories.tsx +34 -0
  43. package/src/stories/behaviour/slots.stories.tsx +34 -0
  44. package/src/stories/checkbox/checkbox.stories.tsx +75 -0
  45. package/src/stories/{checkbox-group/sourceLoop.json → checkbox/sourceGroupLoop.json} +1 -1
  46. package/src/stories/datepicker/datepicker.stories.tsx +21 -0
  47. package/src/stories/declaration/declaration.stories.tsx +27 -0
  48. package/src/stories/dropdown/dropdown.stories.tsx +27 -0
  49. package/src/stories/duration/duration.stories.tsx +27 -0
  50. package/src/stories/filter-description/filter-description.stories.tsx +28 -0
  51. package/src/stories/input/input.stories.tsx +21 -0
  52. package/src/stories/input-number/input-number.stories.tsx +35 -0
  53. package/src/stories/loop/loop.stories.tsx +35 -0
  54. package/src/stories/loop/roster-for-loop.stories.tsx +59 -0
  55. package/src/stories/pairwise/pairwise.stories.tsx +30 -0
  56. package/src/stories/paste.stories.tsx +85 -0
  57. package/src/stories/question/question.stories.tsx +21 -0
  58. package/src/stories/questionnaires/logement/logement.stories.tsx +26 -0
  59. package/src/stories/questionnaires/recensement/recensement.stories.tsx +28 -0
  60. package/src/stories/questionnaires/rp/rp.stories.tsx +21 -0
  61. package/src/stories/questionnaires/simpsons/simpsons.stories.tsx +31 -0
  62. package/src/stories/radio/radio.stories.tsx +53 -0
  63. package/src/stories/roundabout/roundabout.stories.tsx +37 -0
  64. package/src/stories/roundabout/source.json +1 -0
  65. package/src/stories/sequence/sequence.stories.tsx +28 -0
  66. package/src/stories/suggester/source-option-responses.json +1 -1
  67. package/src/stories/suggester/suggester.stories.tsx +68 -0
  68. package/src/stories/summary/source.json +22 -1
  69. package/src/stories/summary/summary.stories.tsx +31 -0
  70. package/src/stories/table/table.stories.tsx +35 -0
  71. package/src/stories/text/text.stories.tsx +38 -0
  72. package/src/stories/textarea/textarea.stories.tsx +21 -0
  73. package/src/stories/utils/Orchestrator.tsx +310 -0
  74. package/src/stories/utils/OrchestratorData.tsx +176 -0
  75. package/src/stories/utils/OrchestratorOverview.tsx +70 -0
  76. package/src/stories/utils/OrchestratorSidebar.tsx +119 -0
  77. package/src/stories/utils/SchemaValidator.tsx +29 -0
  78. package/src/stories/utils/referentiel.ts +9 -0
  79. package/src/type.source.ts +6 -0
  80. package/src/use-lunatic/commons/compile-controls.ts +36 -18
  81. package/src/use-lunatic/commons/fill-components/fill-component-expressions.ts +4 -1
  82. package/src/use-lunatic/hooks/use-page-has-response.ts +1 -1
  83. package/src/use-lunatic/hooks/useOverview.spec.ts +3 -2
  84. package/src/use-lunatic/use-lunatic.test.ts +53 -40
  85. package/src/utils/number.ts +13 -0
  86. package/src/utils/object.ts +40 -0
  87. package/tsconfig.build.tsbuildinfo +1 -1
  88. package/type.source.d.ts +6 -0
  89. package/use-lunatic/commons/compile-controls.js +21 -13
  90. package/use-lunatic/commons/compile-controls.js.map +1 -1
  91. package/use-lunatic/commons/fill-components/fill-component-expressions.js +5 -2
  92. package/use-lunatic/commons/fill-components/fill-component-expressions.js.map +1 -1
  93. package/use-lunatic/hooks/use-page-has-response.js +2 -2
  94. package/use-lunatic/hooks/use-page-has-response.js.map +1 -1
  95. package/use-lunatic/hooks/useOverview.spec.js +8 -8
  96. package/use-lunatic/hooks/useOverview.spec.js.map +1 -1
  97. package/utils/number.d.ts +4 -0
  98. package/utils/number.js +13 -0
  99. package/utils/number.js.map +1 -1
  100. package/utils/object.d.ts +10 -0
  101. package/utils/object.js +30 -0
  102. package/utils/object.js.map +1 -1
  103. package/esm/stories/overview/sourceWithHierarchy.json +0 -5151
  104. package/esm/tests/utils/lunatic.d.ts +0 -15
  105. package/esm/tests/utils/lunatic.js +0 -27
  106. package/esm/tests/utils/lunatic.js.map +0 -1
  107. package/esm/use-lunatic/replace-component-sequence.d.ts +0 -36
  108. package/esm/use-lunatic/replace-component-sequence.js +0 -19
  109. package/esm/use-lunatic/replace-component-sequence.js.map +0 -1
  110. package/esm/use-lunatic/test.utils.d.ts +0 -2
  111. package/esm/use-lunatic/test.utils.js +0 -13
  112. package/esm/use-lunatic/test.utils.js.map +0 -1
  113. package/esm/utils/is-object.d.ts +0 -4
  114. package/esm/utils/is-object.js +0 -7
  115. package/esm/utils/is-object.js.map +0 -1
  116. package/esm/utils/to-number.d.ts +0 -4
  117. package/esm/utils/to-number.js +0 -13
  118. package/esm/utils/to-number.js.map +0 -1
  119. package/src/stories/accordion/accordion.stories.jsx +0 -17
  120. package/src/stories/behaviour/cleaning/cleaning.stories.jsx +0 -69
  121. package/src/stories/behaviour/controls/controls.stories.jsx +0 -81
  122. package/src/stories/behaviour/filter/dataLoop.json +0 -14
  123. package/src/stories/behaviour/filter/filter.stories.jsx +0 -36
  124. package/src/stories/behaviour/missing/missing.stories.jsx +0 -69
  125. package/src/stories/behaviour/others/V2_DeclarationsSimples.json +0 -908
  126. package/src/stories/behaviour/others/V2_MinMaxSum_Boucles.json +0 -489
  127. package/src/stories/behaviour/others/V2_QuestSimple_Boucles.json +0 -3919
  128. package/src/stories/behaviour/others/V2_TCMRallyeGames.json +0 -2760
  129. package/src/stories/behaviour/others/test-dylan.json +0 -538
  130. package/src/stories/behaviour/others/test.stories.jsx +0 -78
  131. package/src/stories/behaviour/paste/source.json +0 -32
  132. package/src/stories/behaviour/paste/test.stories.jsx +0 -62
  133. package/src/stories/behaviour/performance/performance.stories.jsx +0 -26
  134. package/src/stories/behaviour/resizing/resizing.stories.jsx +0 -60
  135. package/src/stories/behaviour/slots.stories.jsx +0 -32
  136. package/src/stories/checkbox-boolean/checkboxBoolean.stories.jsx +0 -17
  137. package/src/stories/checkbox-group/checkbox-group.stories.jsx +0 -77
  138. package/src/stories/checkbox-one/checkboxOne.stories.jsx +0 -53
  139. package/src/stories/date-picker/data.json +0 -3
  140. package/src/stories/date-picker/datepicker.stories.jsx +0 -26
  141. package/src/stories/declaration/data.json +0 -1
  142. package/src/stories/declaration/input.stories.jsx +0 -18
  143. package/src/stories/disabled/data.json +0 -16
  144. package/src/stories/disabled/disabled.stories.jsx +0 -18
  145. package/src/stories/dropdown/data.json +0 -8
  146. package/src/stories/dropdown/dropdown.stories.jsx +0 -25
  147. package/src/stories/duration/duration.stories.jsx +0 -25
  148. package/src/stories/filter-description/filter-description.stories.jsx +0 -37
  149. package/src/stories/input/data.json +0 -1
  150. package/src/stories/input/input.stories.jsx +0 -18
  151. package/src/stories/input-number/input-number.stories.jsx +0 -23
  152. package/src/stories/loop/loop.stories.jsx +0 -29
  153. package/src/stories/loop/roster-for-loop.stories.jsx +0 -46
  154. package/src/stories/markdown/markdown.stories.jsx +0 -20
  155. package/src/stories/overview/data.json +0 -1
  156. package/src/stories/overview/dataLoop.json +0 -93
  157. package/src/stories/overview/overview.stories.jsx +0 -44
  158. package/src/stories/overview/source.json +0 -25
  159. package/src/stories/pairwise/data.json +0 -12
  160. package/src/stories/pairwise/pairwise-links.stories.jsx +0 -48
  161. package/src/stories/question/question.stories.jsx +0 -16
  162. package/src/stories/questionnaires/logement/logement.stories.jsx +0 -59
  163. package/src/stories/questionnaires/recensement/data.json +0 -12
  164. package/src/stories/questionnaires/recensement/recensement.stories.jsx +0 -35
  165. package/src/stories/questionnaires/rp/data.json +0 -5
  166. package/src/stories/questionnaires/rp/rp.stories.jsx +0 -23
  167. package/src/stories/questionnaires/simpsons/simpsons.stories.jsx +0 -246
  168. package/src/stories/radio/radio.stories.jsx +0 -78
  169. package/src/stories/roundabout/data1.json +0 -13
  170. package/src/stories/roundabout/data2.json +0 -16
  171. package/src/stories/roundabout/roundabout.stories.jsx +0 -32
  172. package/src/stories/sequence/sequence.stories.jsx +0 -29
  173. package/src/stories/suggester/suggester.stories.jsx +0 -71
  174. package/src/stories/summary/data.json +0 -16
  175. package/src/stories/summary/summary.stories.jsx +0 -23
  176. package/src/stories/switch/README.md +0 -29
  177. package/src/stories/switch/data-forced.json +0 -40
  178. package/src/stories/switch/source.json +0 -64
  179. package/src/stories/switch/switch.stories.jsx +0 -17
  180. package/src/stories/table/data.json +0 -1
  181. package/src/stories/table/table.stories.jsx +0 -30
  182. package/src/stories/text/data-roster.json +0 -5
  183. package/src/stories/text/text.stories.jsx +0 -20
  184. package/src/stories/textarea/data.json +0 -1
  185. package/src/stories/textarea/textarea.stories.jsx +0 -18
  186. package/src/stories/utils/SchemaValidator.jsx +0 -40
  187. package/src/stories/utils/default-arg-types.js +0 -39
  188. package/src/stories/utils/default-args.js +0 -3
  189. package/src/stories/utils/options.js +0 -19
  190. package/src/stories/utils/orchestrator.jsx +0 -267
  191. package/src/stories/utils/orchestrator.scss +0 -66
  192. package/src/stories/utils/overview.jsx +0 -39
  193. package/src/stories/utils/overview.scss +0 -37
  194. package/src/stories/utils/referentiel.js +0 -7
  195. package/src/tests/utils/e2e.js +0 -91
  196. package/src/tests/utils/lunatic.ts +0 -33
  197. package/src/use-lunatic/replace-component-sequence.ts +0 -25
  198. package/src/use-lunatic/test.utils.ts +0 -17
  199. package/src/utils/is-object.ts +0 -6
  200. package/src/utils/to-number.ts +0 -12
  201. package/stories/overview/sourceWithHierarchy.json +0 -5151
  202. package/tests/utils/lunatic.d.ts +0 -15
  203. package/tests/utils/lunatic.js +0 -31
  204. package/tests/utils/lunatic.js.map +0 -1
  205. package/use-lunatic/replace-component-sequence.d.ts +0 -36
  206. package/use-lunatic/replace-component-sequence.js +0 -22
  207. package/use-lunatic/replace-component-sequence.js.map +0 -1
  208. package/use-lunatic/test.utils.d.ts +0 -2
  209. package/use-lunatic/test.utils.js +0 -17
  210. package/use-lunatic/test.utils.js.map +0 -1
  211. package/utils/is-object.d.ts +0 -4
  212. package/utils/is-object.js +0 -10
  213. package/utils/is-object.js.map +0 -1
  214. package/utils/to-number.d.ts +0 -4
  215. package/utils/to-number.js +0 -16
  216. package/utils/to-number.js.map +0 -1
  217. /package/src/stories/behaviour/cleaning/{loop.json → source-loop-scopes.json} +0 -0
  218. /package/src/stories/behaviour/controls/{boucles-n.json → source-boucles-n.json} +0 -0
  219. /package/src/stories/behaviour/controls/{loop.json → source-loop.json} +0 -0
  220. /package/src/stories/behaviour/controls/{roundabout.json → source-roundabout.json} +0 -0
  221. /package/src/stories/behaviour/controls/{simple-numeric.json → source-simple-numeric.json} +0 -0
  222. /package/src/stories/behaviour/controls/{simple.json → source-simple.json} +0 -0
  223. /package/src/stories/{disabled → behaviour/disabled}/source.json +0 -0
  224. /package/src/stories/{checkbox-boolean → checkbox}/source.json +0 -0
  225. /package/src/stories/{checkbox-group/source.json → checkbox/sourceGroup.json} +0 -0
  226. /package/src/stories/{checkbox-group/sourceCondition.json → checkbox/sourceGroupCondition.json} +0 -0
  227. /package/src/stories/{checkbox-group/sourceDetail.json → checkbox/sourceGroupDetail.json} +0 -0
  228. /package/src/stories/{checkbox-one/source.json → checkbox/sourceOne.json} +0 -0
  229. /package/src/stories/{checkbox-one/sourceDetail.json → checkbox/sourceOneDetail.json} +0 -0
  230. /package/src/stories/{date-picker → datepicker}/source.json +0 -0
  231. /package/src/stories/{markdown/source.json → declaration/sourceMarkdown.json} +0 -0
  232. /package/src/stories/duration/{mois.json → sourceMonths.json} +0 -0
  233. /package/src/stories/duration/{time.json → sourceTime.json} +0 -0
  234. /package/src/stories/filter-description/{source-options.json → sourceOptions.json} +0 -0
  235. /package/src/stories/table/{table-dynamique.json → source-dynamic.json} +0 -0
@@ -1,3919 +0,0 @@
1
- {
2
- "id": "l1uiijww",
3
- "modele": "REFLUNATIC",
4
- "enoCoreVersion": "2.3.7-dev-lunatic-v2",
5
- "lunaticModelVersion": "2.2.13-dev-lunatic-v2",
6
- "generatingDate": "22-07-2022 13:26:17",
7
- "missing": false,
8
- "pagination": "question",
9
- "maxPage": "34",
10
- "label": {
11
- "value": "Lunatic - questionnaire de référence simple - VTL",
12
- "type": "VTL|MD"
13
- },
14
- "components": [
15
- {
16
- "id": "jfaz9kv9",
17
- "componentType": "Sequence",
18
- "page": "1",
19
- "label": { "value": "Sequence 1 - Questions ouvertes", "type": "VTL|MD" },
20
- "declarations": [
21
- {
22
- "id": "jfaz9kv9-jfazqgv2",
23
- "declarationType": "INSTRUCTION",
24
- "position": "AFTER_QUESTION_TEXT",
25
- "label": {
26
- "value": "Cette séquence comprend les questions ouvertes (ceci est une déclaration de type consigne, associée au titre de séquence).",
27
- "type": "VTL|MD"
28
- }
29
- },
30
-
31
- {
32
- "id": "jfaz9kv9-l1uiu9hq",
33
- "declarationType": "HELP",
34
- "position": "AFTER_QUESTION_TEXT",
35
- "label": {
36
- "value": "Cette séquence comprend les questions ouvertes (ceci est une déclaration de type aide, associée au titre de séquence).",
37
- "type": "VTL|MD"
38
- }
39
- }
40
- ],
41
- "conditionFilter": { "value": "true", "type": "VTL" },
42
- "hierarchy": {
43
- "sequence": {
44
- "id": "jfaz9kv9",
45
- "page": "1",
46
- "label": {
47
- "value": "Sequence 1 - Questions ouvertes",
48
- "type": "VTL|MD"
49
- }
50
- }
51
- }
52
- },
53
-
54
- {
55
- "id": "jfazmcp8",
56
- "componentType": "Subsequence",
57
- "page": "2",
58
- "goToPage": "2",
59
- "label": {
60
- "value": "Titre de la première sous-séquence",
61
- "type": "VTL|MD"
62
- },
63
- "declarations": [
64
- {
65
- "id": "jfazmcp8-kk47fewm",
66
- "declarationType": "INSTRUCTION",
67
- "position": "AFTER_QUESTION_TEXT",
68
- "label": {
69
- "value": "Ceci est une déclaration de type consigne, associée au titre de sous-séquence.",
70
- "type": "VTL|MD"
71
- }
72
- },
73
-
74
- {
75
- "id": "jfazmcp8-l1uiw60f",
76
- "declarationType": "HELP",
77
- "position": "AFTER_QUESTION_TEXT",
78
- "label": {
79
- "value": "Ceci est une déclaration de type aide, associée au titre de sous-séquence.",
80
- "type": "VTL|MD"
81
- }
82
- }
83
- ],
84
- "conditionFilter": { "value": "true", "type": "VTL" },
85
- "hierarchy": {
86
- "sequence": {
87
- "id": "jfaz9kv9",
88
- "page": "1",
89
- "label": {
90
- "value": "Sequence 1 - Questions ouvertes",
91
- "type": "VTL|MD"
92
- }
93
- },
94
- "subSequence": {
95
- "id": "jfazmcp8",
96
- "page": "2",
97
- "label": {
98
- "value": "Titre de la première sous-séquence",
99
- "type": "VTL|MD"
100
- }
101
- }
102
- }
103
- },
104
-
105
- {
106
- "id": "jfazk91m",
107
- "componentType": "CheckboxBoolean",
108
- "isMandatory": false,
109
- "page": "3",
110
- "label": {
111
- "value": "\"➡ 1. \" || \"Je suis un booleen qui filtre le reste\"",
112
- "type": "VTL|MD"
113
- },
114
- "declarations": [
115
- {
116
- "id": "jfazk91m-l1vvxe3l",
117
- "declarationType": "HELP",
118
- "position": "AFTER_QUESTION_TEXT",
119
- "label": {
120
- "value": "\"Je suis un test de mise en forme : combien de lignes pour cette déclaration ? 4 ?\" \"* un tiret\" \"* deux tirets\" \"Tout va bien\"",
121
- "type": "VTL|MD"
122
- }
123
- }
124
- ],
125
- "conditionFilter": { "value": "true", "type": "VTL" },
126
- "hierarchy": {
127
- "sequence": {
128
- "id": "jfaz9kv9",
129
- "page": "1",
130
- "label": {
131
- "value": "Sequence 1 - Questions ouvertes",
132
- "type": "VTL|MD"
133
- }
134
- },
135
- "subSequence": {
136
- "id": "jfazmcp8",
137
- "page": "2",
138
- "label": {
139
- "value": "Titre de la première sous-séquence",
140
- "type": "VTL|MD"
141
- }
142
- }
143
- },
144
- "bindingDependencies": ["COCHECASE"],
145
- "response": { "name": "COCHECASE" }
146
- },
147
-
148
- {
149
- "id": "jfazsitt",
150
- "componentType": "Subsequence",
151
- "goToPage": "4",
152
- "label": {
153
- "value": "Sous-séquence - questions de type Texte",
154
- "type": "VTL|MD"
155
- },
156
- "conditionFilter": {
157
- "value": "(COCHECASE = true)",
158
- "type": "VTL",
159
- "bindingDependencies": ["COCHECASE"]
160
- },
161
- "hierarchy": {
162
- "sequence": {
163
- "id": "jfaz9kv9",
164
- "page": "1",
165
- "label": {
166
- "value": "Sequence 1 - Questions ouvertes",
167
- "type": "VTL|MD"
168
- }
169
- },
170
- "subSequence": {
171
- "id": "jfazsitt",
172
- "page": "4",
173
- "label": {
174
- "value": "Sous-séquence - questions de type Texte",
175
- "type": "VTL|MD"
176
- }
177
- }
178
- }
179
- },
180
-
181
- {
182
- "id": "jfazww20",
183
- "componentType": "Input",
184
- "isMandatory": false,
185
- "page": "4",
186
- "maxLength": 10,
187
- "label": {
188
- "value": "\"➡ 2. \" || \"Je suis le libellé de la question de type texte de longueur inférieure à 250 caractères (10 ici)\"",
189
- "type": "VTL|MD"
190
- },
191
- "conditionFilter": {
192
- "value": "(COCHECASE = true)",
193
- "type": "VTL",
194
- "bindingDependencies": ["COCHECASE"]
195
- },
196
- "hierarchy": {
197
- "sequence": {
198
- "id": "jfaz9kv9",
199
- "page": "1",
200
- "label": {
201
- "value": "Sequence 1 - Questions ouvertes",
202
- "type": "VTL|MD"
203
- }
204
- },
205
- "subSequence": {
206
- "id": "jfazsitt",
207
- "page": "4",
208
- "label": {
209
- "value": "Sous-séquence - questions de type Texte",
210
- "type": "VTL|MD"
211
- }
212
- }
213
- },
214
- "bindingDependencies": ["TEXTE10"],
215
- "response": { "name": "TEXTE10" }
216
- },
217
-
218
- {
219
- "id": "jfazwjyv",
220
- "componentType": "Input",
221
- "isMandatory": false,
222
- "page": "5",
223
- "maxLength": 249,
224
- "label": {
225
- "value": "\"➡ 3. \" || \"Je suis le libellé de la question de type texte de longueur 249\"",
226
- "type": "VTL|MD"
227
- },
228
- "conditionFilter": {
229
- "value": "(COCHECASE = true)",
230
- "type": "VTL",
231
- "bindingDependencies": ["COCHECASE"]
232
- },
233
- "hierarchy": {
234
- "sequence": {
235
- "id": "jfaz9kv9",
236
- "page": "1",
237
- "label": {
238
- "value": "Sequence 1 - Questions ouvertes",
239
- "type": "VTL|MD"
240
- }
241
- },
242
- "subSequence": {
243
- "id": "jfazsitt",
244
- "page": "4",
245
- "label": {
246
- "value": "Sous-séquence - questions de type Texte",
247
- "type": "VTL|MD"
248
- }
249
- }
250
- },
251
- "bindingDependencies": ["TEXTELONG249"],
252
- "response": { "name": "TEXTELONG249" }
253
- },
254
-
255
- {
256
- "id": "kzwqst6c",
257
- "componentType": "Textarea",
258
- "isMandatory": false,
259
- "page": "6",
260
- "maxLength": 250,
261
- "label": {
262
- "value": "\"➡ 4. \" || \"Je suis le libellé de la question de type texte de longueur supérieure à 250 caractères ici 250\"",
263
- "type": "VTL|MD"
264
- },
265
- "conditionFilter": {
266
- "value": "(COCHECASE = true)",
267
- "type": "VTL",
268
- "bindingDependencies": ["COCHECASE"]
269
- },
270
- "hierarchy": {
271
- "sequence": {
272
- "id": "jfaz9kv9",
273
- "page": "1",
274
- "label": {
275
- "value": "Sequence 1 - Questions ouvertes",
276
- "type": "VTL|MD"
277
- }
278
- },
279
- "subSequence": {
280
- "id": "jfazsitt",
281
- "page": "4",
282
- "label": {
283
- "value": "Sous-séquence - questions de type Texte",
284
- "type": "VTL|MD"
285
- }
286
- }
287
- },
288
- "bindingDependencies": ["TEXTELONG250"],
289
- "response": { "name": "TEXTELONG250" }
290
- },
291
-
292
- {
293
- "id": "kk2fu72i",
294
- "componentType": "Input",
295
- "isMandatory": false,
296
- "page": "7",
297
- "maxLength": 9,
298
- "label": {
299
- "value": "\"➡ 5. \" || \"Quel est votre SIREN (sur 9 caractères) ? (cible : ajouter une regexp / non fait pour l’instant)\"",
300
- "type": "VTL|MD"
301
- },
302
- "declarations": [
303
- {
304
- "id": "kk2fu72i-kk47ngyp",
305
- "declarationType": "INSTRUCTION",
306
- "position": "AFTER_QUESTION_TEXT",
307
- "label": {
308
- "value": "Ceci est une déclaration de type consigne, associée au titre de question.",
309
- "type": "VTL|MD"
310
- }
311
- }
312
- ],
313
- "conditionFilter": {
314
- "value": "(COCHECASE = true)",
315
- "type": "VTL",
316
- "bindingDependencies": ["COCHECASE"]
317
- },
318
- "controls": [
319
- {
320
- "id": "kk2fu72i-CI-0",
321
- "criticality": "WARN",
322
- "control": { "value": "not(SIREN = \"000000000\")", "type": "VTL" },
323
- "errorMessage": {
324
- "value": "Cette réponse n’est pas un SIREN ",
325
- "type": "VTL|MD"
326
- },
327
- "bindingDependencies": ["SIREN"]
328
- }
329
- ],
330
- "hierarchy": {
331
- "sequence": {
332
- "id": "jfaz9kv9",
333
- "page": "1",
334
- "label": {
335
- "value": "Sequence 1 - Questions ouvertes",
336
- "type": "VTL|MD"
337
- }
338
- },
339
- "subSequence": {
340
- "id": "jfazsitt",
341
- "page": "4",
342
- "label": {
343
- "value": "Sous-séquence - questions de type Texte",
344
- "type": "VTL|MD"
345
- }
346
- }
347
- },
348
- "bindingDependencies": ["SIREN"],
349
- "response": { "name": "SIREN" }
350
- },
351
-
352
- {
353
- "id": "jfjhggkx",
354
- "componentType": "Subsequence",
355
- "goToPage": "8",
356
- "label": { "value": "Numériques", "type": "VTL|MD" },
357
- "conditionFilter": {
358
- "value": "(COCHECASE = true)",
359
- "type": "VTL",
360
- "bindingDependencies": ["COCHECASE"]
361
- },
362
- "hierarchy": {
363
- "sequence": {
364
- "id": "jfaz9kv9",
365
- "page": "1",
366
- "label": {
367
- "value": "Sequence 1 - Questions ouvertes",
368
- "type": "VTL|MD"
369
- }
370
- },
371
- "subSequence": {
372
- "id": "jfjhggkx",
373
- "page": "8",
374
- "label": { "value": "Numériques", "type": "VTL|MD" }
375
- }
376
- }
377
- },
378
-
379
- {
380
- "id": "jfjh1ndk",
381
- "componentType": "InputNumber",
382
- "isMandatory": false,
383
- "page": "8",
384
- "min": 10,
385
- "max": 100,
386
- "decimals": 0,
387
- "label": {
388
- "value": "\"➡ 6. \" || \"Nombre entier sans unité, entre 10 et 100.\"",
389
- "type": "VTL|MD"
390
- },
391
- "declarations": [
392
- {
393
- "id": "jfjh1ndk-kyisnj3g",
394
- "declarationType": "HELP",
395
- "position": "AFTER_QUESTION_TEXT",
396
- "label": {
397
- "value": "Aide : controle si saisie > 50",
398
- "type": "VTL|MD"
399
- }
400
- }
401
- ],
402
- "conditionFilter": {
403
- "value": "(COCHECASE = true)",
404
- "type": "VTL",
405
- "bindingDependencies": ["COCHECASE"]
406
- },
407
- "controls": [
408
- {
409
- "id": "jfjh1ndk-CI-0",
410
- "criticality": "WARN",
411
- "control": {
412
- "value": "not(cast(nvl(INTEGER,\"0\"),integer) > 50)",
413
- "type": "VTL"
414
- },
415
- "errorMessage": { "value": "Bizarre que > 50", "type": "VTL|MD" },
416
- "bindingDependencies": ["INTEGER"]
417
- }
418
- ],
419
- "hierarchy": {
420
- "sequence": {
421
- "id": "jfaz9kv9",
422
- "page": "1",
423
- "label": {
424
- "value": "Sequence 1 - Questions ouvertes",
425
- "type": "VTL|MD"
426
- }
427
- },
428
- "subSequence": {
429
- "id": "jfjhggkx",
430
- "page": "8",
431
- "label": { "value": "Numériques", "type": "VTL|MD" }
432
- }
433
- },
434
- "bindingDependencies": ["INTEGER"],
435
- "response": { "name": "INTEGER" }
436
- },
437
-
438
- {
439
- "id": "jfjhb2pz",
440
- "componentType": "InputNumber",
441
- "isMandatory": false,
442
- "page": "9",
443
- "min": 10,
444
- "max": 100,
445
- "decimals": 2,
446
- "label": {
447
- "value": "\"➡ 7. \" || \"Numérique décimal (2) sans unité, entre 10 et 100\"",
448
- "type": "VTL|MD"
449
- },
450
- "conditionFilter": {
451
- "value": "(COCHECASE = true)",
452
- "type": "VTL",
453
- "bindingDependencies": ["COCHECASE"]
454
- },
455
- "hierarchy": {
456
- "sequence": {
457
- "id": "jfaz9kv9",
458
- "page": "1",
459
- "label": {
460
- "value": "Sequence 1 - Questions ouvertes",
461
- "type": "VTL|MD"
462
- }
463
- },
464
- "subSequence": {
465
- "id": "jfjhggkx",
466
- "page": "8",
467
- "label": { "value": "Numériques", "type": "VTL|MD" }
468
- }
469
- },
470
- "bindingDependencies": ["FLOAT"],
471
- "response": { "name": "FLOAT" }
472
- },
473
-
474
- {
475
- "id": "l1ujlrg4",
476
- "componentType": "InputNumber",
477
- "isMandatory": false,
478
- "page": "10",
479
- "min": -1000,
480
- "max": 1000,
481
- "decimals": 0,
482
- "label": {
483
- "value": "\"➡ 8. \" || \"Numérique négatif, entre -1000 et -1000\"",
484
- "type": "VTL|MD"
485
- },
486
- "conditionFilter": {
487
- "value": "(COCHECASE = true)",
488
- "type": "VTL",
489
- "bindingDependencies": ["COCHECASE"]
490
- },
491
- "hierarchy": {
492
- "sequence": {
493
- "id": "jfaz9kv9",
494
- "page": "1",
495
- "label": {
496
- "value": "Sequence 1 - Questions ouvertes",
497
- "type": "VTL|MD"
498
- }
499
- },
500
- "subSequence": {
501
- "id": "jfjhggkx",
502
- "page": "8",
503
- "label": { "value": "Numériques", "type": "VTL|MD" }
504
- }
505
- },
506
- "bindingDependencies": ["FLOATNEG"],
507
- "response": { "name": "FLOATNEG" }
508
- },
509
-
510
- {
511
- "id": "jfjtbqh1",
512
- "componentType": "InputNumber",
513
- "isMandatory": false,
514
- "page": "11",
515
- "min": 0,
516
- "max": 10,
517
- "decimals": 0,
518
- "label": {
519
- "value": "\"➡ 9. \" || \"Nombre sans decimal, avec unité, entre 0 et 10\"",
520
- "type": "VTL|MD"
521
- },
522
- "conditionFilter": {
523
- "value": "(COCHECASE = true)",
524
- "type": "VTL",
525
- "bindingDependencies": ["COCHECASE"]
526
- },
527
- "hierarchy": {
528
- "sequence": {
529
- "id": "jfaz9kv9",
530
- "page": "1",
531
- "label": {
532
- "value": "Sequence 1 - Questions ouvertes",
533
- "type": "VTL|MD"
534
- }
535
- },
536
- "subSequence": {
537
- "id": "jfjhggkx",
538
- "page": "8",
539
- "label": { "value": "Numériques", "type": "VTL|MD" }
540
- }
541
- },
542
- "bindingDependencies": ["UNIT"],
543
- "unit": "k€",
544
- "response": { "name": "UNIT" }
545
- },
546
-
547
- {
548
- "id": "kyiseu7q",
549
- "componentType": "InputNumber",
550
- "isMandatory": false,
551
- "page": "12",
552
- "min": 0,
553
- "max": 10,
554
- "decimals": 2,
555
- "label": {
556
- "value": "\"➡ 10. \" || \"Nombre avec unité, avec décimal, entre 0 et 10.\"",
557
- "type": "VTL|MD"
558
- },
559
- "declarations": [
560
- {
561
- "id": "kyiseu7q-l1uu2ui0",
562
- "declarationType": "HELP",
563
- "position": "AFTER_QUESTION_TEXT",
564
- "label": {
565
- "value": "Controle avec variable précédente (si UNIT > UNITD)",
566
- "type": "VTL|MD"
567
- }
568
- }
569
- ],
570
- "conditionFilter": {
571
- "value": "(COCHECASE = true)",
572
- "type": "VTL",
573
- "bindingDependencies": ["COCHECASE"]
574
- },
575
- "controls": [
576
- {
577
- "id": "kyiseu7q-CI-0",
578
- "criticality": "WARN",
579
- "control": {
580
- "value": "not(cast(nvl(UNIT,\"0\"),number) > cast(nvl(UNITD,\"0\"),number))",
581
- "type": "VTL"
582
- },
583
- "errorMessage": { "value": "UNIT > UNITD ", "type": "VTL|MD" },
584
- "bindingDependencies": ["UNIT", "UNITD"]
585
- }
586
- ],
587
- "hierarchy": {
588
- "sequence": {
589
- "id": "jfaz9kv9",
590
- "page": "1",
591
- "label": {
592
- "value": "Sequence 1 - Questions ouvertes",
593
- "type": "VTL|MD"
594
- }
595
- },
596
- "subSequence": {
597
- "id": "jfjhggkx",
598
- "page": "8",
599
- "label": { "value": "Numériques", "type": "VTL|MD" }
600
- }
601
- },
602
- "bindingDependencies": ["UNITD"],
603
- "unit": "k€",
604
- "response": { "name": "UNITD" }
605
- },
606
-
607
- {
608
- "id": "jfjeuskc",
609
- "componentType": "Subsequence",
610
- "goToPage": "13",
611
- "label": { "value": "Autres formats de réponse", "type": "VTL|MD" },
612
- "conditionFilter": {
613
- "value": "(COCHECASE = true)",
614
- "type": "VTL",
615
- "bindingDependencies": ["COCHECASE"]
616
- },
617
- "hierarchy": {
618
- "sequence": {
619
- "id": "jfaz9kv9",
620
- "page": "1",
621
- "label": {
622
- "value": "Sequence 1 - Questions ouvertes",
623
- "type": "VTL|MD"
624
- }
625
- },
626
- "subSequence": {
627
- "id": "jfjeuskc",
628
- "page": "13",
629
- "label": { "value": "Autres formats de réponse", "type": "VTL|MD" }
630
- }
631
- }
632
- },
633
-
634
- {
635
- "id": "jfjfckyw",
636
- "componentType": "Datepicker",
637
- "isMandatory": false,
638
- "page": "13",
639
- "min": "1980-01-01",
640
- "max": "2022-01-01",
641
- "label": {
642
- "value": "\"➡ 11. \" || \"Date AAAAMMJJ entre 1980 01 01 et 2022 01 01\"",
643
- "type": "VTL|MD"
644
- },
645
- "conditionFilter": {
646
- "value": "(COCHECASE = true)",
647
- "type": "VTL",
648
- "bindingDependencies": ["COCHECASE"]
649
- },
650
- "hierarchy": {
651
- "sequence": {
652
- "id": "jfaz9kv9",
653
- "page": "1",
654
- "label": {
655
- "value": "Sequence 1 - Questions ouvertes",
656
- "type": "VTL|MD"
657
- }
658
- },
659
- "subSequence": {
660
- "id": "jfjeuskc",
661
- "page": "13",
662
- "label": { "value": "Autres formats de réponse", "type": "VTL|MD" }
663
- }
664
- },
665
- "bindingDependencies": ["DATE"],
666
- "dateFormat": "YYYY-MM-DD",
667
- "response": { "name": "DATE" }
668
- },
669
-
670
- {
671
- "id": "kvl6bpxb",
672
- "componentType": "Datepicker",
673
- "isMandatory": false,
674
- "page": "14",
675
- "min": "1900",
676
- "max": "2022",
677
- "label": {
678
- "value": "\"➡ 12. \" || \"Date AAAA entre 1900 et 2022\"",
679
- "type": "VTL|MD"
680
- },
681
- "conditionFilter": {
682
- "value": "(COCHECASE = true)",
683
- "type": "VTL",
684
- "bindingDependencies": ["COCHECASE"]
685
- },
686
- "hierarchy": {
687
- "sequence": {
688
- "id": "jfaz9kv9",
689
- "page": "1",
690
- "label": {
691
- "value": "Sequence 1 - Questions ouvertes",
692
- "type": "VTL|MD"
693
- }
694
- },
695
- "subSequence": {
696
- "id": "jfjeuskc",
697
- "page": "13",
698
- "label": { "value": "Autres formats de réponse", "type": "VTL|MD" }
699
- }
700
- },
701
- "bindingDependencies": ["DAAAA"],
702
- "dateFormat": "YYYY",
703
- "response": { "name": "DAAAA" }
704
- },
705
-
706
- {
707
- "id": "jfjeud07",
708
- "componentType": "CheckboxBoolean",
709
- "isMandatory": false,
710
- "page": "15",
711
- "label": { "value": "\"➡ 13. \" || \"Booléen\"", "type": "VTL|MD" },
712
- "conditionFilter": {
713
- "value": "(COCHECASE = true)",
714
- "type": "VTL",
715
- "bindingDependencies": ["COCHECASE"]
716
- },
717
- "hierarchy": {
718
- "sequence": {
719
- "id": "jfaz9kv9",
720
- "page": "1",
721
- "label": {
722
- "value": "Sequence 1 - Questions ouvertes",
723
- "type": "VTL|MD"
724
- }
725
- },
726
- "subSequence": {
727
- "id": "jfjeuskc",
728
- "page": "13",
729
- "label": { "value": "Autres formats de réponse", "type": "VTL|MD" }
730
- }
731
- },
732
- "bindingDependencies": ["BOOLEN"],
733
- "response": { "name": "BOOLEN" }
734
- },
735
-
736
- {
737
- "id": "jfjew4oy",
738
- "componentType": "Sequence",
739
- "page": "16",
740
- "label": {
741
- "value": "Sequence 2 - Questions à choix unique et questions à choix multiple",
742
- "type": "VTL|MD"
743
- },
744
- "conditionFilter": {
745
- "value": "(COCHECASE = true)",
746
- "type": "VTL",
747
- "bindingDependencies": ["COCHECASE"]
748
- },
749
- "hierarchy": {
750
- "sequence": {
751
- "id": "jfjew4oy",
752
- "page": "16",
753
- "label": {
754
- "value": "Sequence 2 - Questions à choix unique et questions à choix multiple",
755
- "type": "VTL|MD"
756
- }
757
- }
758
- }
759
- },
760
-
761
- {
762
- "id": "jfkxouu8",
763
- "componentType": "Subsequence",
764
- "page": "17",
765
- "goToPage": "17",
766
- "label": { "value": "Questions à choix unique", "type": "VTL|MD" },
767
- "declarations": [
768
- {
769
- "id": "jfkxouu8-l1ujjzks",
770
- "declarationType": "HELP",
771
- "position": "AFTER_QUESTION_TEXT",
772
- "label": { "value": "Description des QCU", "type": "VTL|MD" }
773
- }
774
- ],
775
- "conditionFilter": {
776
- "value": "(COCHECASE = true)",
777
- "type": "VTL",
778
- "bindingDependencies": ["COCHECASE"]
779
- },
780
- "hierarchy": {
781
- "sequence": {
782
- "id": "jfjew4oy",
783
- "page": "16",
784
- "label": {
785
- "value": "Sequence 2 - Questions à choix unique et questions à choix multiple",
786
- "type": "VTL|MD"
787
- }
788
- },
789
- "subSequence": {
790
- "id": "jfkxouu8",
791
- "page": "17",
792
- "label": { "value": "Questions à choix unique", "type": "VTL|MD" }
793
- }
794
- }
795
- },
796
-
797
- {
798
- "id": "jfjepz6i",
799
- "componentType": "Radio",
800
- "isMandatory": false,
801
- "page": "18",
802
- "label": {
803
- "value": "\"➡ 1. \" || \"Question à choix unique - présentation bouton radio\"",
804
- "type": "VTL|MD"
805
- },
806
- "conditionFilter": {
807
- "value": "(COCHECASE = true)",
808
- "type": "VTL",
809
- "bindingDependencies": ["COCHECASE"]
810
- },
811
- "hierarchy": {
812
- "sequence": {
813
- "id": "jfjew4oy",
814
- "page": "16",
815
- "label": {
816
- "value": "Sequence 2 - Questions à choix unique et questions à choix multiple",
817
- "type": "VTL|MD"
818
- }
819
- },
820
- "subSequence": {
821
- "id": "jfkxouu8",
822
- "page": "17",
823
- "label": { "value": "Questions à choix unique", "type": "VTL|MD" }
824
- }
825
- },
826
- "bindingDependencies": ["CHECKBOXONERADIO"],
827
- "options": [
828
- { "value": "1", "label": { "value": "code1", "type": "VTL|MD" } },
829
-
830
- { "value": "2", "label": { "value": "code2", "type": "VTL|MD" } },
831
-
832
- { "value": "3", "label": { "value": "code3", "type": "VTL|MD" } },
833
-
834
- { "value": "4", "label": { "value": "code4", "type": "VTL|MD" } },
835
-
836
- {
837
- "value": "5",
838
- "label": {
839
- "value": "autre et libellé un peu long pour valider",
840
- "type": "VTL|MD"
841
- }
842
- }
843
- ],
844
- "response": { "name": "CHECKBOXONERADIO" }
845
- },
846
-
847
- {
848
- "id": "jfjero7b",
849
- "componentType": "CheckboxOne",
850
- "isMandatory": false,
851
- "page": "19",
852
- "label": {
853
- "value": "\"➡ 2. \" || \"Question à choix unique - présentation case à cocher\"",
854
- "type": "VTL|MD"
855
- },
856
- "conditionFilter": {
857
- "value": "(COCHECASE = true)",
858
- "type": "VTL",
859
- "bindingDependencies": ["COCHECASE"]
860
- },
861
- "hierarchy": {
862
- "sequence": {
863
- "id": "jfjew4oy",
864
- "page": "16",
865
- "label": {
866
- "value": "Sequence 2 - Questions à choix unique et questions à choix multiple",
867
- "type": "VTL|MD"
868
- }
869
- },
870
- "subSequence": {
871
- "id": "jfkxouu8",
872
- "page": "17",
873
- "label": { "value": "Questions à choix unique", "type": "VTL|MD" }
874
- }
875
- },
876
- "bindingDependencies": ["CHECKBOXONECOCHER"],
877
- "options": [
878
- { "value": "1", "label": { "value": "code1", "type": "VTL|MD" } },
879
-
880
- { "value": "2", "label": { "value": "code2", "type": "VTL|MD" } },
881
-
882
- { "value": "3", "label": { "value": "code3", "type": "VTL|MD" } },
883
-
884
- { "value": "4", "label": { "value": "code4", "type": "VTL|MD" } },
885
-
886
- {
887
- "value": "5",
888
- "label": {
889
- "value": "autre et libellé un peu long pour valider",
890
- "type": "VTL|MD"
891
- }
892
- }
893
- ],
894
- "response": { "name": "CHECKBOXONECOCHER" }
895
- },
896
-
897
- {
898
- "id": "jfjfae9f",
899
- "componentType": "Dropdown",
900
- "isMandatory": false,
901
- "page": "20",
902
- "label": {
903
- "value": "\"➡ 3. \" || \"Question à choix unique - présentation liste déroulante\"",
904
- "type": "VTL|MD"
905
- },
906
- "conditionFilter": {
907
- "value": "(COCHECASE = true)",
908
- "type": "VTL",
909
- "bindingDependencies": ["COCHECASE"]
910
- },
911
- "hierarchy": {
912
- "sequence": {
913
- "id": "jfjew4oy",
914
- "page": "16",
915
- "label": {
916
- "value": "Sequence 2 - Questions à choix unique et questions à choix multiple",
917
- "type": "VTL|MD"
918
- }
919
- },
920
- "subSequence": {
921
- "id": "jfkxouu8",
922
- "page": "17",
923
- "label": { "value": "Questions à choix unique", "type": "VTL|MD" }
924
- }
925
- },
926
- "bindingDependencies": ["DROPDOWN"],
927
- "options": [
928
- { "value": "1", "label": { "value": "code1", "type": "VTL|MD" } },
929
-
930
- { "value": "2", "label": { "value": "code2", "type": "VTL|MD" } },
931
-
932
- { "value": "3", "label": { "value": "code3", "type": "VTL|MD" } },
933
-
934
- { "value": "4", "label": { "value": "code4", "type": "VTL|MD" } },
935
-
936
- {
937
- "value": "5",
938
- "label": {
939
- "value": "autre et libellé un peu long pour valider",
940
- "type": "VTL|MD"
941
- }
942
- }
943
- ],
944
- "response": { "name": "DROPDOWN" }
945
- },
946
-
947
- {
948
- "id": "jfkxuinz",
949
- "componentType": "Subsequence",
950
- "page": "21",
951
- "goToPage": "21",
952
- "label": { "value": "Questions à choix multiple", "type": "VTL|MD" },
953
- "declarations": [
954
- {
955
- "id": "jfkxuinz-l1ujnhsh",
956
- "declarationType": "HELP",
957
- "position": "AFTER_QUESTION_TEXT",
958
- "label": { "value": "Liste des QCM", "type": "VTL|MD" }
959
- }
960
- ],
961
- "conditionFilter": {
962
- "value": "(COCHECASE = true)",
963
- "type": "VTL",
964
- "bindingDependencies": ["COCHECASE"]
965
- },
966
- "hierarchy": {
967
- "sequence": {
968
- "id": "jfjew4oy",
969
- "page": "16",
970
- "label": {
971
- "value": "Sequence 2 - Questions à choix unique et questions à choix multiple",
972
- "type": "VTL|MD"
973
- }
974
- },
975
- "subSequence": {
976
- "id": "jfkxuinz",
977
- "page": "21",
978
- "label": { "value": "Questions à choix multiple", "type": "VTL|MD" }
979
- }
980
- }
981
- },
982
-
983
- {
984
- "id": "jfkxh2lf",
985
- "componentType": "CheckboxGroup",
986
- "page": "22",
987
- "label": {
988
- "value": "\"➡ 4. \" || \"Question à choix multiple - réponse booléen\"",
989
- "type": "VTL|MD"
990
- },
991
- "conditionFilter": {
992
- "value": "(COCHECASE = true)",
993
- "type": "VTL",
994
- "bindingDependencies": ["COCHECASE"]
995
- },
996
- "hierarchy": {
997
- "sequence": {
998
- "id": "jfjew4oy",
999
- "page": "16",
1000
- "label": {
1001
- "value": "Sequence 2 - Questions à choix unique et questions à choix multiple",
1002
- "type": "VTL|MD"
1003
- }
1004
- },
1005
- "subSequence": {
1006
- "id": "jfkxuinz",
1007
- "page": "21",
1008
- "label": { "value": "Questions à choix multiple", "type": "VTL|MD" }
1009
- }
1010
- },
1011
- "bindingDependencies": [
1012
- "QCM_BOOLEEN1",
1013
- "QCM_BOOLEEN2",
1014
- "QCM_BOOLEEN3",
1015
- "QCM_BOOLEEN4",
1016
- "QCM_BOOLEEN5",
1017
- "QCM_BOOLEEN6"
1018
- ],
1019
- "responses": [
1020
- {
1021
- "id": "jfkxh2lf-QOP-l1ujvup1",
1022
- "label": { "value": "choix 1", "type": "VTL|MD" },
1023
- "response": { "name": "QCM_BOOLEEN1" }
1024
- },
1025
-
1026
- {
1027
- "id": "jfkxh2lf-QOP-l1ujn7ub",
1028
- "label": { "value": "choix 2", "type": "VTL|MD" },
1029
- "response": { "name": "QCM_BOOLEEN2" }
1030
- },
1031
-
1032
- {
1033
- "id": "jfkxh2lf-QOP-l1ujqshv",
1034
- "label": { "value": "choix 3", "type": "VTL|MD" },
1035
- "response": { "name": "QCM_BOOLEEN3" }
1036
- },
1037
-
1038
- {
1039
- "id": "jfkxh2lf-QOP-l1ujm40x",
1040
- "label": { "value": "choix 4", "type": "VTL|MD" },
1041
- "response": { "name": "QCM_BOOLEEN4" }
1042
- },
1043
-
1044
- {
1045
- "id": "jfkxh2lf-QOP-l1ujqfdi",
1046
- "label": { "value": "choix 5", "type": "VTL|MD" },
1047
- "response": { "name": "QCM_BOOLEEN5" }
1048
- },
1049
-
1050
- {
1051
- "id": "jfkxh2lf-QOP-l1ujiycn",
1052
- "label": {
1053
- "value": "et un choix 6 dont la modalité est plus longue",
1054
- "type": "VTL|MD"
1055
- },
1056
- "response": { "name": "QCM_BOOLEEN6" }
1057
- }
1058
- ]
1059
- },
1060
-
1061
- {
1062
- "id": "jfkxybfe",
1063
- "componentType": "Table",
1064
- "isMandatory": false,
1065
- "page": "23",
1066
- "label": {
1067
- "value": "\"➡ 5. \" || \"Question à choix multiple - réponse oui/non case à cocher\"",
1068
- "type": "VTL|MD"
1069
- },
1070
- "conditionFilter": {
1071
- "value": "(COCHECASE = true)",
1072
- "type": "VTL",
1073
- "bindingDependencies": ["COCHECASE"]
1074
- },
1075
- "hierarchy": {
1076
- "sequence": {
1077
- "id": "jfjew4oy",
1078
- "page": "16",
1079
- "label": {
1080
- "value": "Sequence 2 - Questions à choix unique et questions à choix multiple",
1081
- "type": "VTL|MD"
1082
- }
1083
- },
1084
- "subSequence": {
1085
- "id": "jfkxuinz",
1086
- "page": "21",
1087
- "label": { "value": "Questions à choix multiple", "type": "VTL|MD" }
1088
- }
1089
- },
1090
- "bindingDependencies": [
1091
- "QCM_LISTEON1",
1092
- "QCM_LISTEON2",
1093
- "QCM_LISTEON3",
1094
- "QCM_LISTEON4",
1095
- "QCM_LISTEON5",
1096
- "QCM_LISTEON6"
1097
- ],
1098
- "body": [
1099
- [
1100
- { "value": "1", "label": { "value": "choix 1", "type": "VTL|MD" } },
1101
-
1102
- {
1103
- "componentType": "CheckboxOne",
1104
- "id": "jfkxybfe-QOP-l1ujy9o3",
1105
- "options": [
1106
- { "value": "1", "label": { "value": "Oui", "type": "VTL|MD" } },
1107
-
1108
- { "value": "2", "label": { "value": "Non", "type": "VTL|MD" } }
1109
- ],
1110
- "response": { "name": "QCM_LISTEON1" },
1111
- "bindingDependencies": ["QCM_LISTEON1"]
1112
- }
1113
- ],
1114
-
1115
- [
1116
- { "value": "2", "label": { "value": "choix 2", "type": "VTL|MD" } },
1117
-
1118
- {
1119
- "componentType": "CheckboxOne",
1120
- "id": "jfkxybfe-QOP-l1uju9zu",
1121
- "options": [
1122
- { "value": "1", "label": { "value": "Oui", "type": "VTL|MD" } },
1123
-
1124
- { "value": "2", "label": { "value": "Non", "type": "VTL|MD" } }
1125
- ],
1126
- "response": { "name": "QCM_LISTEON2" },
1127
- "bindingDependencies": ["QCM_LISTEON2"]
1128
- }
1129
- ],
1130
-
1131
- [
1132
- { "value": "3", "label": { "value": "choix 3", "type": "VTL|MD" } },
1133
-
1134
- {
1135
- "componentType": "CheckboxOne",
1136
- "id": "jfkxybfe-QOP-l1ujv3qw",
1137
- "options": [
1138
- { "value": "1", "label": { "value": "Oui", "type": "VTL|MD" } },
1139
-
1140
- { "value": "2", "label": { "value": "Non", "type": "VTL|MD" } }
1141
- ],
1142
- "response": { "name": "QCM_LISTEON3" },
1143
- "bindingDependencies": ["QCM_LISTEON3"]
1144
- }
1145
- ],
1146
-
1147
- [
1148
- { "value": "4", "label": { "value": "choix 4", "type": "VTL|MD" } },
1149
-
1150
- {
1151
- "componentType": "CheckboxOne",
1152
- "id": "jfkxybfe-QOP-l1uk0q0x",
1153
- "options": [
1154
- { "value": "1", "label": { "value": "Oui", "type": "VTL|MD" } },
1155
-
1156
- { "value": "2", "label": { "value": "Non", "type": "VTL|MD" } }
1157
- ],
1158
- "response": { "name": "QCM_LISTEON4" },
1159
- "bindingDependencies": ["QCM_LISTEON4"]
1160
- }
1161
- ],
1162
-
1163
- [
1164
- { "value": "5", "label": { "value": "choix 5", "type": "VTL|MD" } },
1165
-
1166
- {
1167
- "componentType": "CheckboxOne",
1168
- "id": "jfkxybfe-QOP-l1ujsmmt",
1169
- "options": [
1170
- { "value": "1", "label": { "value": "Oui", "type": "VTL|MD" } },
1171
-
1172
- { "value": "2", "label": { "value": "Non", "type": "VTL|MD" } }
1173
- ],
1174
- "response": { "name": "QCM_LISTEON5" },
1175
- "bindingDependencies": ["QCM_LISTEON5"]
1176
- }
1177
- ],
1178
-
1179
- [
1180
- {
1181
- "value": "6",
1182
- "label": {
1183
- "value": "et un choix 6 dont la modalité est plus longue",
1184
- "type": "VTL|MD"
1185
- }
1186
- },
1187
-
1188
- {
1189
- "componentType": "CheckboxOne",
1190
- "id": "jfkxybfe-QOP-l1ujw41k",
1191
- "options": [
1192
- { "value": "1", "label": { "value": "Oui", "type": "VTL|MD" } },
1193
-
1194
- { "value": "2", "label": { "value": "Non", "type": "VTL|MD" } }
1195
- ],
1196
- "response": { "name": "QCM_LISTEON6" },
1197
- "bindingDependencies": ["QCM_LISTEON6"]
1198
- }
1199
- ]
1200
- ]
1201
- },
1202
-
1203
- {
1204
- "id": "jfkyw9o1",
1205
- "componentType": "Table",
1206
- "isMandatory": false,
1207
- "page": "24",
1208
- "label": {
1209
- "value": "\"➡ 6. \" || \"Question à choix multiple - réponse oui/non radio\"",
1210
- "type": "VTL|MD"
1211
- },
1212
- "conditionFilter": {
1213
- "value": "(COCHECASE = true)",
1214
- "type": "VTL",
1215
- "bindingDependencies": ["COCHECASE"]
1216
- },
1217
- "hierarchy": {
1218
- "sequence": {
1219
- "id": "jfjew4oy",
1220
- "page": "16",
1221
- "label": {
1222
- "value": "Sequence 2 - Questions à choix unique et questions à choix multiple",
1223
- "type": "VTL|MD"
1224
- }
1225
- },
1226
- "subSequence": {
1227
- "id": "jfkxuinz",
1228
- "page": "21",
1229
- "label": { "value": "Questions à choix multiple", "type": "VTL|MD" }
1230
- }
1231
- },
1232
- "bindingDependencies": [
1233
- "QCM_LISTEONRADIO1",
1234
- "QCM_LISTEONRADIO2",
1235
- "QCM_LISTEONRADIO3",
1236
- "QCM_LISTEONRADIO4",
1237
- "QCM_LISTEONRADIO5",
1238
- "QCM_LISTEONRADIO6"
1239
- ],
1240
- "body": [
1241
- [
1242
- { "value": "1", "label": { "value": "choix 1", "type": "VTL|MD" } },
1243
-
1244
- {
1245
- "componentType": "Radio",
1246
- "id": "jfkyw9o1-QOP-l1uk0wyz",
1247
- "options": [
1248
- { "value": "1", "label": { "value": "Oui", "type": "VTL|MD" } },
1249
-
1250
- { "value": "2", "label": { "value": "Non", "type": "VTL|MD" } }
1251
- ],
1252
- "response": { "name": "QCM_LISTEONRADIO1" },
1253
- "bindingDependencies": ["QCM_LISTEONRADIO1"]
1254
- }
1255
- ],
1256
-
1257
- [
1258
- { "value": "2", "label": { "value": "choix 2", "type": "VTL|MD" } },
1259
-
1260
- {
1261
- "componentType": "Radio",
1262
- "id": "jfkyw9o1-QOP-l1uji4r3",
1263
- "options": [
1264
- { "value": "1", "label": { "value": "Oui", "type": "VTL|MD" } },
1265
-
1266
- { "value": "2", "label": { "value": "Non", "type": "VTL|MD" } }
1267
- ],
1268
- "response": { "name": "QCM_LISTEONRADIO2" },
1269
- "bindingDependencies": ["QCM_LISTEONRADIO2"]
1270
- }
1271
- ],
1272
-
1273
- [
1274
- { "value": "3", "label": { "value": "choix 3", "type": "VTL|MD" } },
1275
-
1276
- {
1277
- "componentType": "Radio",
1278
- "id": "jfkyw9o1-QOP-l1ujyy91",
1279
- "options": [
1280
- { "value": "1", "label": { "value": "Oui", "type": "VTL|MD" } },
1281
-
1282
- { "value": "2", "label": { "value": "Non", "type": "VTL|MD" } }
1283
- ],
1284
- "response": { "name": "QCM_LISTEONRADIO3" },
1285
- "bindingDependencies": ["QCM_LISTEONRADIO3"]
1286
- }
1287
- ],
1288
-
1289
- [
1290
- { "value": "4", "label": { "value": "choix 4", "type": "VTL|MD" } },
1291
-
1292
- {
1293
- "componentType": "Radio",
1294
- "id": "jfkyw9o1-QOP-l1uk283o",
1295
- "options": [
1296
- { "value": "1", "label": { "value": "Oui", "type": "VTL|MD" } },
1297
-
1298
- { "value": "2", "label": { "value": "Non", "type": "VTL|MD" } }
1299
- ],
1300
- "response": { "name": "QCM_LISTEONRADIO4" },
1301
- "bindingDependencies": ["QCM_LISTEONRADIO4"]
1302
- }
1303
- ],
1304
-
1305
- [
1306
- { "value": "5", "label": { "value": "choix 5", "type": "VTL|MD" } },
1307
-
1308
- {
1309
- "componentType": "Radio",
1310
- "id": "jfkyw9o1-QOP-l1ujy83p",
1311
- "options": [
1312
- { "value": "1", "label": { "value": "Oui", "type": "VTL|MD" } },
1313
-
1314
- { "value": "2", "label": { "value": "Non", "type": "VTL|MD" } }
1315
- ],
1316
- "response": { "name": "QCM_LISTEONRADIO5" },
1317
- "bindingDependencies": ["QCM_LISTEONRADIO5"]
1318
- }
1319
- ],
1320
-
1321
- [
1322
- {
1323
- "value": "6",
1324
- "label": {
1325
- "value": "et un choix 6 dont la modalité est plus longue",
1326
- "type": "VTL|MD"
1327
- }
1328
- },
1329
-
1330
- {
1331
- "componentType": "Radio",
1332
- "id": "jfkyw9o1-QOP-l1ujstez",
1333
- "options": [
1334
- { "value": "1", "label": { "value": "Oui", "type": "VTL|MD" } },
1335
-
1336
- { "value": "2", "label": { "value": "Non", "type": "VTL|MD" } }
1337
- ],
1338
- "response": { "name": "QCM_LISTEONRADIO6" },
1339
- "bindingDependencies": ["QCM_LISTEONRADIO6"]
1340
- }
1341
- ]
1342
- ]
1343
- },
1344
-
1345
- {
1346
- "id": "jfkyvabw",
1347
- "componentType": "Sequence",
1348
- "page": "25",
1349
- "label": {
1350
- "value": "Sequence 3 - tableaux simples et tableau dynamique. Hors boucles, non liés",
1351
- "type": "VTL|MD"
1352
- },
1353
- "conditionFilter": {
1354
- "value": "(COCHECASE = true)",
1355
- "type": "VTL",
1356
- "bindingDependencies": ["COCHECASE"]
1357
- },
1358
- "hierarchy": {
1359
- "sequence": {
1360
- "id": "jfkyvabw",
1361
- "page": "25",
1362
- "label": {
1363
- "value": "Sequence 3 - tableaux simples et tableau dynamique. Hors boucles, non liés",
1364
- "type": "VTL|MD"
1365
- }
1366
- }
1367
- }
1368
- },
1369
-
1370
- {
1371
- "id": "jfkzltkm",
1372
- "componentType": "Table",
1373
- "isMandatory": false,
1374
- "page": "26",
1375
- "label": {
1376
- "value": "\"➡ 1. \" || \"Tableau un axe simple, une mesure\"",
1377
- "type": "VTL|MD"
1378
- },
1379
- "conditionFilter": {
1380
- "value": "(COCHECASE = true)",
1381
- "type": "VTL",
1382
- "bindingDependencies": ["COCHECASE"]
1383
- },
1384
- "hierarchy": {
1385
- "sequence": {
1386
- "id": "jfkyvabw",
1387
- "page": "25",
1388
- "label": {
1389
- "value": "Sequence 3 - tableaux simples et tableau dynamique. Hors boucles, non liés",
1390
- "type": "VTL|MD"
1391
- }
1392
- }
1393
- },
1394
- "bindingDependencies": [
1395
- "TABLEAU1A1M11",
1396
- "TABLEAU1A1M21",
1397
- "TABLEAU1A1M31",
1398
- "TABLEAU1A1M41",
1399
- "TABLEAU1A1M51",
1400
- "TABLEAU1A1M61"
1401
- ],
1402
- "header": [
1403
- { "label": { "value": "", "type": "VTL|MD" } },
1404
-
1405
- { "label": { "value": "Quantité de bidules", "type": "VTL|MD" } }
1406
- ],
1407
- "body": [
1408
- [
1409
- { "value": "1", "label": { "value": "choix 1", "type": "VTL|MD" } },
1410
-
1411
- {
1412
- "componentType": "InputNumber",
1413
- "min": 0,
1414
- "max": 999,
1415
- "decimals": 0,
1416
- "id": "jfkzltkm-QOP-l1uk0wsy",
1417
- "response": { "name": "TABLEAU1A1M11" },
1418
- "bindingDependencies": ["TABLEAU1A1M11"]
1419
- }
1420
- ],
1421
-
1422
- [
1423
- { "value": "2", "label": { "value": "choix 2", "type": "VTL|MD" } },
1424
-
1425
- {
1426
- "componentType": "InputNumber",
1427
- "min": 0,
1428
- "max": 999,
1429
- "decimals": 0,
1430
- "id": "jfkzltkm-QOP-l1uk035v",
1431
- "response": { "name": "TABLEAU1A1M21" },
1432
- "bindingDependencies": ["TABLEAU1A1M21"]
1433
- }
1434
- ],
1435
-
1436
- [
1437
- { "value": "3", "label": { "value": "choix 3", "type": "VTL|MD" } },
1438
-
1439
- {
1440
- "componentType": "InputNumber",
1441
- "min": 0,
1442
- "max": 999,
1443
- "decimals": 0,
1444
- "id": "jfkzltkm-QOP-l1uji2i3",
1445
- "response": { "name": "TABLEAU1A1M31" },
1446
- "bindingDependencies": ["TABLEAU1A1M31"]
1447
- }
1448
- ],
1449
-
1450
- [
1451
- { "value": "4", "label": { "value": "choix 4", "type": "VTL|MD" } },
1452
-
1453
- {
1454
- "componentType": "InputNumber",
1455
- "min": 0,
1456
- "max": 999,
1457
- "decimals": 0,
1458
- "id": "jfkzltkm-QOP-l1ujl8ac",
1459
- "response": { "name": "TABLEAU1A1M41" },
1460
- "bindingDependencies": ["TABLEAU1A1M41"]
1461
- }
1462
- ],
1463
-
1464
- [
1465
- { "value": "5", "label": { "value": "choix 5", "type": "VTL|MD" } },
1466
-
1467
- {
1468
- "componentType": "InputNumber",
1469
- "min": 0,
1470
- "max": 999,
1471
- "decimals": 0,
1472
- "id": "jfkzltkm-QOP-l1ujpn8e",
1473
- "response": { "name": "TABLEAU1A1M51" },
1474
- "bindingDependencies": ["TABLEAU1A1M51"]
1475
- }
1476
- ],
1477
-
1478
- [
1479
- {
1480
- "value": "6",
1481
- "label": {
1482
- "value": "et un choix 6 dont la modalité est plus longue",
1483
- "type": "VTL|MD"
1484
- }
1485
- },
1486
-
1487
- {
1488
- "componentType": "InputNumber",
1489
- "min": 0,
1490
- "max": 999,
1491
- "decimals": 0,
1492
- "id": "jfkzltkm-QOP-l1ujm5dq",
1493
- "response": { "name": "TABLEAU1A1M61" },
1494
- "bindingDependencies": ["TABLEAU1A1M61"]
1495
- }
1496
- ]
1497
- ]
1498
- },
1499
-
1500
- {
1501
- "id": "jfkzpexn",
1502
- "componentType": "Table",
1503
- "isMandatory": false,
1504
- "page": "27",
1505
- "label": {
1506
- "value": "\"➡ 2. \" || \"Tableau un axe simple, plusieurs mesures\"",
1507
- "type": "VTL|MD"
1508
- },
1509
- "conditionFilter": {
1510
- "value": "(COCHECASE = true)",
1511
- "type": "VTL",
1512
- "bindingDependencies": ["COCHECASE"]
1513
- },
1514
- "hierarchy": {
1515
- "sequence": {
1516
- "id": "jfkyvabw",
1517
- "page": "25",
1518
- "label": {
1519
- "value": "Sequence 3 - tableaux simples et tableau dynamique. Hors boucles, non liés",
1520
- "type": "VTL|MD"
1521
- }
1522
- }
1523
- },
1524
- "bindingDependencies": [
1525
- "TABLEAU1A3M11",
1526
- "TABLEAU1A3M12",
1527
- "TABLEAU1A3M13",
1528
- "TABLEAU1A3M21",
1529
- "TABLEAU1A3M22",
1530
- "TABLEAU1A3M23",
1531
- "TABLEAU1A3M31",
1532
- "TABLEAU1A3M32",
1533
- "TABLEAU1A3M33",
1534
- "TABLEAU1A3M41",
1535
- "TABLEAU1A3M42",
1536
- "TABLEAU1A3M43",
1537
- "TABLEAU1A3M51",
1538
- "TABLEAU1A3M52",
1539
- "TABLEAU1A3M53",
1540
- "TABLEAU1A3M61",
1541
- "TABLEAU1A3M62",
1542
- "TABLEAU1A3M63"
1543
- ],
1544
- "header": [
1545
- { "label": { "value": "", "type": "VTL|MD" } },
1546
-
1547
- { "label": { "value": "Quantité de bidules", "type": "VTL|MD" } },
1548
-
1549
- { "label": { "value": "aimez vous les bidules", "type": "VTL|MD" } },
1550
-
1551
- { "label": { "value": "nom", "type": "VTL|MD" } }
1552
- ],
1553
- "body": [
1554
- [
1555
- { "value": "1", "label": { "value": "choix 1", "type": "VTL|MD" } },
1556
-
1557
- {
1558
- "componentType": "InputNumber",
1559
- "min": 0,
1560
- "max": 999,
1561
- "decimals": 0,
1562
- "id": "jfkzpexn-QOP-l1ujy3o3",
1563
- "response": { "name": "TABLEAU1A3M11" },
1564
- "bindingDependencies": ["TABLEAU1A3M11"]
1565
- },
1566
-
1567
- {
1568
- "componentType": "CheckboxOne",
1569
- "id": "jfkzpexn-QOP-l1ujjvof",
1570
- "options": [
1571
- { "value": "1", "label": { "value": "Oui", "type": "VTL|MD" } },
1572
-
1573
- { "value": "2", "label": { "value": "Non", "type": "VTL|MD" } }
1574
- ],
1575
- "response": { "name": "TABLEAU1A3M12" },
1576
- "bindingDependencies": ["TABLEAU1A3M12"]
1577
- },
1578
-
1579
- {
1580
- "componentType": "Input",
1581
- "maxLength": 25,
1582
- "id": "jfkzpexn-QOP-l1uk1a4u",
1583
- "response": { "name": "TABLEAU1A3M13" },
1584
- "bindingDependencies": ["TABLEAU1A3M13"]
1585
- }
1586
- ],
1587
-
1588
- [
1589
- { "value": "2", "label": { "value": "choix 2", "type": "VTL|MD" } },
1590
-
1591
- {
1592
- "componentType": "InputNumber",
1593
- "min": 0,
1594
- "max": 999,
1595
- "decimals": 0,
1596
- "id": "jfkzpexn-QOP-l1ujr9h6",
1597
- "response": { "name": "TABLEAU1A3M21" },
1598
- "bindingDependencies": ["TABLEAU1A3M21"]
1599
- },
1600
-
1601
- {
1602
- "componentType": "CheckboxOne",
1603
- "id": "jfkzpexn-QOP-l1ujivv8",
1604
- "options": [
1605
- { "value": "1", "label": { "value": "Oui", "type": "VTL|MD" } },
1606
-
1607
- { "value": "2", "label": { "value": "Non", "type": "VTL|MD" } }
1608
- ],
1609
- "response": { "name": "TABLEAU1A3M22" },
1610
- "bindingDependencies": ["TABLEAU1A3M22"]
1611
- },
1612
-
1613
- {
1614
- "componentType": "Input",
1615
- "maxLength": 25,
1616
- "id": "jfkzpexn-QOP-l1ujpbuo",
1617
- "response": { "name": "TABLEAU1A3M23" },
1618
- "bindingDependencies": ["TABLEAU1A3M23"]
1619
- }
1620
- ],
1621
-
1622
- [
1623
- { "value": "3", "label": { "value": "choix 3", "type": "VTL|MD" } },
1624
-
1625
- {
1626
- "componentType": "InputNumber",
1627
- "min": 0,
1628
- "max": 999,
1629
- "decimals": 0,
1630
- "id": "jfkzpexn-QOP-l1ujnpx6",
1631
- "response": { "name": "TABLEAU1A3M31" },
1632
- "bindingDependencies": ["TABLEAU1A3M31"]
1633
- },
1634
-
1635
- {
1636
- "componentType": "CheckboxOne",
1637
- "id": "jfkzpexn-QOP-l1ujua93",
1638
- "options": [
1639
- { "value": "1", "label": { "value": "Oui", "type": "VTL|MD" } },
1640
-
1641
- { "value": "2", "label": { "value": "Non", "type": "VTL|MD" } }
1642
- ],
1643
- "response": { "name": "TABLEAU1A3M32" },
1644
- "bindingDependencies": ["TABLEAU1A3M32"]
1645
- },
1646
-
1647
- {
1648
- "componentType": "Input",
1649
- "maxLength": 25,
1650
- "id": "jfkzpexn-QOP-l1ujyf9c",
1651
- "response": { "name": "TABLEAU1A3M33" },
1652
- "bindingDependencies": ["TABLEAU1A3M33"]
1653
- }
1654
- ],
1655
-
1656
- [
1657
- { "value": "4", "label": { "value": "choix 4", "type": "VTL|MD" } },
1658
-
1659
- {
1660
- "componentType": "InputNumber",
1661
- "min": 0,
1662
- "max": 999,
1663
- "decimals": 0,
1664
- "id": "jfkzpexn-QOP-l1ujoena",
1665
- "response": { "name": "TABLEAU1A3M41" },
1666
- "bindingDependencies": ["TABLEAU1A3M41"]
1667
- },
1668
-
1669
- {
1670
- "componentType": "CheckboxOne",
1671
- "id": "jfkzpexn-QOP-l1ujm6cz",
1672
- "options": [
1673
- { "value": "1", "label": { "value": "Oui", "type": "VTL|MD" } },
1674
-
1675
- { "value": "2", "label": { "value": "Non", "type": "VTL|MD" } }
1676
- ],
1677
- "response": { "name": "TABLEAU1A3M42" },
1678
- "bindingDependencies": ["TABLEAU1A3M42"]
1679
- },
1680
-
1681
- {
1682
- "componentType": "Input",
1683
- "maxLength": 25,
1684
- "id": "jfkzpexn-QOP-l1ujwn72",
1685
- "response": { "name": "TABLEAU1A3M43" },
1686
- "bindingDependencies": ["TABLEAU1A3M43"]
1687
- }
1688
- ],
1689
-
1690
- [
1691
- { "value": "5", "label": { "value": "choix 5", "type": "VTL|MD" } },
1692
-
1693
- {
1694
- "componentType": "InputNumber",
1695
- "min": 0,
1696
- "max": 999,
1697
- "decimals": 0,
1698
- "id": "jfkzpexn-QOP-l1uk1xo1",
1699
- "response": { "name": "TABLEAU1A3M51" },
1700
- "bindingDependencies": ["TABLEAU1A3M51"]
1701
- },
1702
-
1703
- {
1704
- "componentType": "CheckboxOne",
1705
- "id": "jfkzpexn-QOP-l1ujxoe9",
1706
- "options": [
1707
- { "value": "1", "label": { "value": "Oui", "type": "VTL|MD" } },
1708
-
1709
- { "value": "2", "label": { "value": "Non", "type": "VTL|MD" } }
1710
- ],
1711
- "response": { "name": "TABLEAU1A3M52" },
1712
- "bindingDependencies": ["TABLEAU1A3M52"]
1713
- },
1714
-
1715
- {
1716
- "componentType": "Input",
1717
- "maxLength": 25,
1718
- "id": "jfkzpexn-QOP-l1ujo33k",
1719
- "response": { "name": "TABLEAU1A3M53" },
1720
- "bindingDependencies": ["TABLEAU1A3M53"]
1721
- }
1722
- ],
1723
-
1724
- [
1725
- {
1726
- "value": "6",
1727
- "label": {
1728
- "value": "et un choix 6 dont la modalité est plus longue",
1729
- "type": "VTL|MD"
1730
- }
1731
- },
1732
-
1733
- {
1734
- "componentType": "InputNumber",
1735
- "min": 0,
1736
- "max": 999,
1737
- "decimals": 0,
1738
- "id": "jfkzpexn-QOP-l1ujr7pv",
1739
- "response": { "name": "TABLEAU1A3M61" },
1740
- "bindingDependencies": ["TABLEAU1A3M61"]
1741
- },
1742
-
1743
- {
1744
- "componentType": "CheckboxOne",
1745
- "id": "jfkzpexn-QOP-l1ujunro",
1746
- "options": [
1747
- { "value": "1", "label": { "value": "Oui", "type": "VTL|MD" } },
1748
-
1749
- { "value": "2", "label": { "value": "Non", "type": "VTL|MD" } }
1750
- ],
1751
- "response": { "name": "TABLEAU1A3M62" },
1752
- "bindingDependencies": ["TABLEAU1A3M62"]
1753
- },
1754
-
1755
- {
1756
- "componentType": "Input",
1757
- "maxLength": 25,
1758
- "id": "jfkzpexn-QOP-l1ujn34z",
1759
- "response": { "name": "TABLEAU1A3M63" },
1760
- "bindingDependencies": ["TABLEAU1A3M63"]
1761
- }
1762
- ]
1763
- ]
1764
- },
1765
-
1766
- {
1767
- "id": "jfkzttm3",
1768
- "componentType": "Table",
1769
- "isMandatory": false,
1770
- "page": "28",
1771
- "label": {
1772
- "value": "\"➡ 3. \" || \"Tableau 2 axes\"",
1773
- "type": "VTL|MD"
1774
- },
1775
- "conditionFilter": {
1776
- "value": "(COCHECASE = true)",
1777
- "type": "VTL",
1778
- "bindingDependencies": ["COCHECASE"]
1779
- },
1780
- "hierarchy": {
1781
- "sequence": {
1782
- "id": "jfkyvabw",
1783
- "page": "25",
1784
- "label": {
1785
- "value": "Sequence 3 - tableaux simples et tableau dynamique. Hors boucles, non liés",
1786
- "type": "VTL|MD"
1787
- }
1788
- }
1789
- },
1790
- "bindingDependencies": [
1791
- "TABLEAU2A11",
1792
- "TABLEAU2A12",
1793
- "TABLEAU2A13",
1794
- "TABLEAU2A14",
1795
- "TABLEAU2A15",
1796
- "TABLEAU2A21",
1797
- "TABLEAU2A22",
1798
- "TABLEAU2A23",
1799
- "TABLEAU2A24",
1800
- "TABLEAU2A25",
1801
- "TABLEAU2A31",
1802
- "TABLEAU2A32",
1803
- "TABLEAU2A33",
1804
- "TABLEAU2A34",
1805
- "TABLEAU2A35",
1806
- "TABLEAU2A41",
1807
- "TABLEAU2A42",
1808
- "TABLEAU2A43",
1809
- "TABLEAU2A44",
1810
- "TABLEAU2A45",
1811
- "TABLEAU2A51",
1812
- "TABLEAU2A52",
1813
- "TABLEAU2A53",
1814
- "TABLEAU2A54",
1815
- "TABLEAU2A55",
1816
- "TABLEAU2A61",
1817
- "TABLEAU2A62",
1818
- "TABLEAU2A63",
1819
- "TABLEAU2A64",
1820
- "TABLEAU2A65"
1821
- ],
1822
- "header": [
1823
- { "label": { "value": "", "type": "VTL|MD" } },
1824
-
1825
- { "label": { "value": "code1", "type": "VTL|MD" } },
1826
-
1827
- { "label": { "value": "code2", "type": "VTL|MD" } },
1828
-
1829
- { "label": { "value": "code3", "type": "VTL|MD" } },
1830
-
1831
- { "label": { "value": "code4", "type": "VTL|MD" } },
1832
-
1833
- {
1834
- "label": {
1835
- "value": "autre et libellé un peu long pour valider",
1836
- "type": "VTL|MD"
1837
- }
1838
- }
1839
- ],
1840
- "body": [
1841
- [
1842
- { "value": "1", "label": { "value": "choix 1", "type": "VTL|MD" } },
1843
-
1844
- {
1845
- "componentType": "InputNumber",
1846
- "min": 0,
1847
- "max": 100,
1848
- "decimals": 0,
1849
- "id": "jfkzttm3-QOP-l1ujk7i2",
1850
- "response": { "name": "TABLEAU2A11" },
1851
- "bindingDependencies": ["TABLEAU2A11"]
1852
- },
1853
-
1854
- {
1855
- "componentType": "InputNumber",
1856
- "min": 0,
1857
- "max": 100,
1858
- "decimals": 0,
1859
- "id": "jfkzttm3-QOP-l1ujokny",
1860
- "response": { "name": "TABLEAU2A12" },
1861
- "bindingDependencies": ["TABLEAU2A12"]
1862
- },
1863
-
1864
- {
1865
- "componentType": "InputNumber",
1866
- "min": 0,
1867
- "max": 100,
1868
- "decimals": 0,
1869
- "id": "jfkzttm3-QOP-l1ujko9e",
1870
- "response": { "name": "TABLEAU2A13" },
1871
- "bindingDependencies": ["TABLEAU2A13"]
1872
- },
1873
-
1874
- {
1875
- "componentType": "InputNumber",
1876
- "min": 0,
1877
- "max": 100,
1878
- "decimals": 0,
1879
- "id": "jfkzttm3-QOP-l1ujujrh",
1880
- "response": { "name": "TABLEAU2A14" },
1881
- "bindingDependencies": ["TABLEAU2A14"]
1882
- },
1883
-
1884
- {
1885
- "componentType": "InputNumber",
1886
- "min": 0,
1887
- "max": 100,
1888
- "decimals": 0,
1889
- "id": "jfkzttm3-QOP-l1ujygrf",
1890
- "response": { "name": "TABLEAU2A15" },
1891
- "bindingDependencies": ["TABLEAU2A15"]
1892
- }
1893
- ],
1894
-
1895
- [
1896
- { "value": "2", "label": { "value": "choix 2", "type": "VTL|MD" } },
1897
-
1898
- {
1899
- "componentType": "InputNumber",
1900
- "min": 0,
1901
- "max": 100,
1902
- "decimals": 0,
1903
- "id": "jfkzttm3-QOP-l1ujyvbd",
1904
- "response": { "name": "TABLEAU2A21" },
1905
- "bindingDependencies": ["TABLEAU2A21"]
1906
- },
1907
-
1908
- {
1909
- "componentType": "InputNumber",
1910
- "min": 0,
1911
- "max": 100,
1912
- "decimals": 0,
1913
- "id": "jfkzttm3-QOP-l1ujm86z",
1914
- "response": { "name": "TABLEAU2A22" },
1915
- "bindingDependencies": ["TABLEAU2A22"]
1916
- },
1917
-
1918
- {
1919
- "componentType": "InputNumber",
1920
- "min": 0,
1921
- "max": 100,
1922
- "decimals": 0,
1923
- "id": "jfkzttm3-QOP-l1ujqrec",
1924
- "response": { "name": "TABLEAU2A23" },
1925
- "bindingDependencies": ["TABLEAU2A23"]
1926
- },
1927
-
1928
- {
1929
- "componentType": "InputNumber",
1930
- "min": 0,
1931
- "max": 100,
1932
- "decimals": 0,
1933
- "id": "jfkzttm3-QOP-l1ujxyjn",
1934
- "response": { "name": "TABLEAU2A24" },
1935
- "bindingDependencies": ["TABLEAU2A24"]
1936
- },
1937
-
1938
- {
1939
- "componentType": "InputNumber",
1940
- "min": 0,
1941
- "max": 100,
1942
- "decimals": 0,
1943
- "id": "jfkzttm3-QOP-l1ujytea",
1944
- "response": { "name": "TABLEAU2A25" },
1945
- "bindingDependencies": ["TABLEAU2A25"]
1946
- }
1947
- ],
1948
-
1949
- [
1950
- { "value": "3", "label": { "value": "choix 3", "type": "VTL|MD" } },
1951
-
1952
- {
1953
- "componentType": "InputNumber",
1954
- "min": 0,
1955
- "max": 100,
1956
- "decimals": 0,
1957
- "id": "jfkzttm3-QOP-l1uk0h81",
1958
- "response": { "name": "TABLEAU2A31" },
1959
- "bindingDependencies": ["TABLEAU2A31"]
1960
- },
1961
-
1962
- {
1963
- "componentType": "InputNumber",
1964
- "min": 0,
1965
- "max": 100,
1966
- "decimals": 0,
1967
- "id": "jfkzttm3-QOP-l1ujzfyx",
1968
- "response": { "name": "TABLEAU2A32" },
1969
- "bindingDependencies": ["TABLEAU2A32"]
1970
- },
1971
-
1972
- {
1973
- "componentType": "InputNumber",
1974
- "min": 0,
1975
- "max": 100,
1976
- "decimals": 0,
1977
- "id": "jfkzttm3-QOP-l1ujxbgs",
1978
- "response": { "name": "TABLEAU2A33" },
1979
- "bindingDependencies": ["TABLEAU2A33"]
1980
- },
1981
-
1982
- {
1983
- "componentType": "InputNumber",
1984
- "min": 0,
1985
- "max": 100,
1986
- "decimals": 0,
1987
- "id": "jfkzttm3-QOP-l1ujrxoa",
1988
- "response": { "name": "TABLEAU2A34" },
1989
- "bindingDependencies": ["TABLEAU2A34"]
1990
- },
1991
-
1992
- {
1993
- "componentType": "InputNumber",
1994
- "min": 0,
1995
- "max": 100,
1996
- "decimals": 0,
1997
- "id": "jfkzttm3-QOP-l1ujsarc",
1998
- "response": { "name": "TABLEAU2A35" },
1999
- "bindingDependencies": ["TABLEAU2A35"]
2000
- }
2001
- ],
2002
-
2003
- [
2004
- { "value": "4", "label": { "value": "choix 4", "type": "VTL|MD" } },
2005
-
2006
- {
2007
- "componentType": "InputNumber",
2008
- "min": 0,
2009
- "max": 100,
2010
- "decimals": 0,
2011
- "id": "jfkzttm3-QOP-l1uk06w9",
2012
- "response": { "name": "TABLEAU2A41" },
2013
- "bindingDependencies": ["TABLEAU2A41"]
2014
- },
2015
-
2016
- {
2017
- "componentType": "InputNumber",
2018
- "min": 0,
2019
- "max": 100,
2020
- "decimals": 0,
2021
- "id": "jfkzttm3-QOP-l1ujtvwj",
2022
- "response": { "name": "TABLEAU2A42" },
2023
- "bindingDependencies": ["TABLEAU2A42"]
2024
- },
2025
-
2026
- {
2027
- "componentType": "InputNumber",
2028
- "min": 0,
2029
- "max": 100,
2030
- "decimals": 0,
2031
- "id": "jfkzttm3-QOP-l1ujjorw",
2032
- "response": { "name": "TABLEAU2A43" },
2033
- "bindingDependencies": ["TABLEAU2A43"]
2034
- },
2035
-
2036
- {
2037
- "componentType": "InputNumber",
2038
- "min": 0,
2039
- "max": 100,
2040
- "decimals": 0,
2041
- "id": "jfkzttm3-QOP-l1uk25o1",
2042
- "response": { "name": "TABLEAU2A44" },
2043
- "bindingDependencies": ["TABLEAU2A44"]
2044
- },
2045
-
2046
- {
2047
- "componentType": "InputNumber",
2048
- "min": 0,
2049
- "max": 100,
2050
- "decimals": 0,
2051
- "id": "jfkzttm3-QOP-l1ujvpbj",
2052
- "response": { "name": "TABLEAU2A45" },
2053
- "bindingDependencies": ["TABLEAU2A45"]
2054
- }
2055
- ],
2056
-
2057
- [
2058
- { "value": "5", "label": { "value": "choix 5", "type": "VTL|MD" } },
2059
-
2060
- {
2061
- "componentType": "InputNumber",
2062
- "min": 0,
2063
- "max": 100,
2064
- "decimals": 0,
2065
- "id": "jfkzttm3-QOP-l1ujwln7",
2066
- "response": { "name": "TABLEAU2A51" },
2067
- "bindingDependencies": ["TABLEAU2A51"]
2068
- },
2069
-
2070
- {
2071
- "componentType": "InputNumber",
2072
- "min": 0,
2073
- "max": 100,
2074
- "decimals": 0,
2075
- "id": "jfkzttm3-QOP-l1ujpw6f",
2076
- "response": { "name": "TABLEAU2A52" },
2077
- "bindingDependencies": ["TABLEAU2A52"]
2078
- },
2079
-
2080
- {
2081
- "componentType": "InputNumber",
2082
- "min": 0,
2083
- "max": 100,
2084
- "decimals": 0,
2085
- "id": "jfkzttm3-QOP-l1ujljwz",
2086
- "response": { "name": "TABLEAU2A53" },
2087
- "bindingDependencies": ["TABLEAU2A53"]
2088
- },
2089
-
2090
- {
2091
- "componentType": "InputNumber",
2092
- "min": 0,
2093
- "max": 100,
2094
- "decimals": 0,
2095
- "id": "jfkzttm3-QOP-l1uk11gp",
2096
- "response": { "name": "TABLEAU2A54" },
2097
- "bindingDependencies": ["TABLEAU2A54"]
2098
- },
2099
-
2100
- {
2101
- "componentType": "InputNumber",
2102
- "min": 0,
2103
- "max": 100,
2104
- "decimals": 0,
2105
- "id": "jfkzttm3-QOP-l1ujmqp9",
2106
- "response": { "name": "TABLEAU2A55" },
2107
- "bindingDependencies": ["TABLEAU2A55"]
2108
- }
2109
- ],
2110
-
2111
- [
2112
- {
2113
- "value": "6",
2114
- "label": {
2115
- "value": "et un choix 6 dont la modalité est plus longue",
2116
- "type": "VTL|MD"
2117
- }
2118
- },
2119
-
2120
- {
2121
- "componentType": "InputNumber",
2122
- "min": 0,
2123
- "max": 100,
2124
- "decimals": 0,
2125
- "id": "jfkzttm3-QOP-l1ujwhwu",
2126
- "response": { "name": "TABLEAU2A61" },
2127
- "bindingDependencies": ["TABLEAU2A61"]
2128
- },
2129
-
2130
- {
2131
- "componentType": "InputNumber",
2132
- "min": 0,
2133
- "max": 100,
2134
- "decimals": 0,
2135
- "id": "jfkzttm3-QOP-l1ujzsjw",
2136
- "response": { "name": "TABLEAU2A62" },
2137
- "bindingDependencies": ["TABLEAU2A62"]
2138
- },
2139
-
2140
- {
2141
- "componentType": "InputNumber",
2142
- "min": 0,
2143
- "max": 100,
2144
- "decimals": 0,
2145
- "id": "jfkzttm3-QOP-l1ujzxsr",
2146
- "response": { "name": "TABLEAU2A63" },
2147
- "bindingDependencies": ["TABLEAU2A63"]
2148
- },
2149
-
2150
- {
2151
- "componentType": "InputNumber",
2152
- "min": 0,
2153
- "max": 100,
2154
- "decimals": 0,
2155
- "id": "jfkzttm3-QOP-l1ujksll",
2156
- "response": { "name": "TABLEAU2A64" },
2157
- "bindingDependencies": ["TABLEAU2A64"]
2158
- },
2159
-
2160
- {
2161
- "componentType": "InputNumber",
2162
- "min": 0,
2163
- "max": 100,
2164
- "decimals": 0,
2165
- "id": "jfkzttm3-QOP-l1ujh2nw",
2166
- "response": { "name": "TABLEAU2A65" },
2167
- "bindingDependencies": ["TABLEAU2A65"]
2168
- }
2169
- ]
2170
- ]
2171
- },
2172
-
2173
- {
2174
- "id": "jfkzrwce",
2175
- "componentType": "Table",
2176
- "isMandatory": false,
2177
- "page": "29",
2178
- "label": {
2179
- "value": "\"➡ 4. \" || \"Tableau 1 axe avec hiérarchie , 1 mesure\"",
2180
- "type": "VTL|MD"
2181
- },
2182
- "conditionFilter": {
2183
- "value": "(COCHECASE = true)",
2184
- "type": "VTL",
2185
- "bindingDependencies": ["COCHECASE"]
2186
- },
2187
- "hierarchy": {
2188
- "sequence": {
2189
- "id": "jfkyvabw",
2190
- "page": "25",
2191
- "label": {
2192
- "value": "Sequence 3 - tableaux simples et tableau dynamique. Hors boucles, non liés",
2193
- "type": "VTL|MD"
2194
- }
2195
- }
2196
- },
2197
- "bindingDependencies": ["TABLEAU1AH1M11", "TABLEAU1AH1M21"],
2198
- "header": [
2199
- { "label": { "value": "", "type": "VTL|MD" } },
2200
-
2201
- { "label": { "value": "montant", "type": "VTL|MD" } }
2202
- ],
2203
- "body": [
2204
- [
2205
- { "value": "20", "label": { "value": "code2", "type": "VTL|MD" } },
2206
-
2207
- {
2208
- "componentType": "InputNumber",
2209
- "min": 0,
2210
- "max": 999,
2211
- "decimals": 0,
2212
- "id": "jfkzrwce-QOP-l1ujyhz5",
2213
- "unit": "k€",
2214
- "response": { "name": "TABLEAU1AH1M11" },
2215
- "bindingDependencies": ["TABLEAU1AH1M11"]
2216
- }
2217
- ],
2218
-
2219
- [
2220
- { "value": "30", "label": { "value": "code 3", "type": "VTL|MD" } },
2221
-
2222
- {
2223
- "componentType": "InputNumber",
2224
- "min": 0,
2225
- "max": 999,
2226
- "decimals": 0,
2227
- "id": "jfkzrwce-QOP-l1ujiqfp",
2228
- "unit": "k€",
2229
- "response": { "name": "TABLEAU1AH1M21" },
2230
- "bindingDependencies": ["TABLEAU1AH1M21"]
2231
- }
2232
- ]
2233
- ]
2234
- },
2235
-
2236
- {
2237
- "id": "kk47qwrd",
2238
- "componentType": "Table",
2239
- "isMandatory": false,
2240
- "page": "30",
2241
- "label": {
2242
- "value": "\"➡ 5. \" || \"Tableau dynamique\"",
2243
- "type": "VTL|MD"
2244
- },
2245
- "conditionFilter": {
2246
- "value": "(COCHECASE = true)",
2247
- "type": "VTL",
2248
- "bindingDependencies": ["COCHECASE"]
2249
- },
2250
- "hierarchy": {
2251
- "sequence": {
2252
- "id": "jfkyvabw",
2253
- "page": "25",
2254
- "label": {
2255
- "value": "Sequence 3 - tableaux simples et tableau dynamique. Hors boucles, non liés",
2256
- "type": "VTL|MD"
2257
- }
2258
- }
2259
- },
2260
- "bindingDependencies": [
2261
- "TABLEAUDYN1",
2262
- "TABLEAUDYN2",
2263
- "TABLEAUDYN1_1_1",
2264
- "TABLEAUDYN2_1_2",
2265
- "TABLEAUDYN1_2_1",
2266
- "TABLEAUDYN2_2_2",
2267
- "TABLEAUDYN1_3_1",
2268
- "TABLEAUDYN2_3_2",
2269
- "TABLEAUDYN1_4_1",
2270
- "TABLEAUDYN2_4_2",
2271
- "TABLEAUDYN1_5_1",
2272
- "TABLEAUDYN2_5_2"
2273
- ],
2274
- "lines": {
2275
- "min": { "value": "1", "type": "VTL" },
2276
- "max": { "value": "5", "type": "VTL" }
2277
- },
2278
- "header": [
2279
- { "label": { "value": "montant colonne 1", "type": "VTL|MD" } },
2280
-
2281
- { "label": { "value": "texte colonne 2", "type": "VTL|MD" } }
2282
- ],
2283
- "body": [
2284
- [
2285
- {
2286
- "componentType": "InputNumber",
2287
- "min": 0,
2288
- "max": 999,
2289
- "decimals": 0,
2290
- "id": "kk47qwrd-QOP-l1ujls2l",
2291
- "unit": "k€",
2292
- "response": { "name": "TABLEAUDYN1_1_1" },
2293
- "bindingDependencies": ["TABLEAUDYN1_1_1"]
2294
- },
2295
-
2296
- {
2297
- "componentType": "Input",
2298
- "maxLength": 20,
2299
- "id": "kk47qwrd-QOP-l1ujplks",
2300
- "response": { "name": "TABLEAUDYN2_1_2" },
2301
- "bindingDependencies": ["TABLEAUDYN2_1_2"]
2302
- }
2303
- ],
2304
-
2305
- [
2306
- {
2307
- "componentType": "InputNumber",
2308
- "min": 0,
2309
- "max": 999,
2310
- "decimals": 0,
2311
- "id": "kk47qwrd-QOP-l1ujls2l",
2312
- "unit": "k€",
2313
- "response": { "name": "TABLEAUDYN1_2_1" },
2314
- "bindingDependencies": ["TABLEAUDYN1_2_1"]
2315
- },
2316
-
2317
- {
2318
- "componentType": "Input",
2319
- "maxLength": 20,
2320
- "id": "kk47qwrd-QOP-l1ujplks",
2321
- "response": { "name": "TABLEAUDYN2_2_2" },
2322
- "bindingDependencies": ["TABLEAUDYN2_2_2"]
2323
- }
2324
- ],
2325
-
2326
- [
2327
- {
2328
- "componentType": "InputNumber",
2329
- "min": 0,
2330
- "max": 999,
2331
- "decimals": 0,
2332
- "id": "kk47qwrd-QOP-l1ujls2l",
2333
- "unit": "k€",
2334
- "response": { "name": "TABLEAUDYN1_3_1" },
2335
- "bindingDependencies": ["TABLEAUDYN1_3_1"]
2336
- },
2337
-
2338
- {
2339
- "componentType": "Input",
2340
- "maxLength": 20,
2341
- "id": "kk47qwrd-QOP-l1ujplks",
2342
- "response": { "name": "TABLEAUDYN2_3_2" },
2343
- "bindingDependencies": ["TABLEAUDYN2_3_2"]
2344
- }
2345
- ],
2346
-
2347
- [
2348
- {
2349
- "componentType": "InputNumber",
2350
- "min": 0,
2351
- "max": 999,
2352
- "decimals": 0,
2353
- "id": "kk47qwrd-QOP-l1ujls2l",
2354
- "unit": "k€",
2355
- "response": { "name": "TABLEAUDYN1_4_1" },
2356
- "bindingDependencies": ["TABLEAUDYN1_4_1"]
2357
- },
2358
-
2359
- {
2360
- "componentType": "Input",
2361
- "maxLength": 20,
2362
- "id": "kk47qwrd-QOP-l1ujplks",
2363
- "response": { "name": "TABLEAUDYN2_4_2" },
2364
- "bindingDependencies": ["TABLEAUDYN2_4_2"]
2365
- }
2366
- ],
2367
-
2368
- [
2369
- {
2370
- "componentType": "InputNumber",
2371
- "min": 0,
2372
- "max": 999,
2373
- "decimals": 0,
2374
- "id": "kk47qwrd-QOP-l1ujls2l",
2375
- "unit": "k€",
2376
- "response": { "name": "TABLEAUDYN1_5_1" },
2377
- "bindingDependencies": ["TABLEAUDYN1_5_1"]
2378
- },
2379
-
2380
- {
2381
- "componentType": "Input",
2382
- "maxLength": 20,
2383
- "id": "kk47qwrd-QOP-l1ujplks",
2384
- "response": { "name": "TABLEAUDYN2_5_2" },
2385
- "bindingDependencies": ["TABLEAUDYN2_5_2"]
2386
- }
2387
- ]
2388
- ]
2389
- },
2390
-
2391
- {
2392
- "id": "k3opdj10",
2393
- "componentType": "Sequence",
2394
- "page": "31",
2395
- "label": {
2396
- "value": "Séquence 4 : 2 boucles basées sur calculé",
2397
- "type": "VTL|MD"
2398
- },
2399
- "conditionFilter": { "value": "true", "type": "VTL" },
2400
- "hierarchy": {
2401
- "sequence": {
2402
- "id": "k3opdj10",
2403
- "page": "31",
2404
- "label": {
2405
- "value": "Séquence 4 : 2 boucles basées sur calculé",
2406
- "type": "VTL|MD"
2407
- }
2408
- }
2409
- }
2410
- },
2411
-
2412
- {
2413
- "id": "kmg10a27",
2414
- "componentType": "InputNumber",
2415
- "isMandatory": false,
2416
- "page": "32",
2417
- "min": 1,
2418
- "max": 20,
2419
- "decimals": 0,
2420
- "label": {
2421
- "value": "\"➡ 1. \" || \"Combien d’individus (moins de 10) ?\"",
2422
- "type": "VTL|MD"
2423
- },
2424
- "declarations": [
2425
- {
2426
- "id": "kmg10a27-l203zi7m",
2427
- "declarationType": "HELP",
2428
- "position": "AFTER_QUESTION_TEXT",
2429
- "label": { "value": "cast(NHABCALC,string)", "type": "VTL|MD" }
2430
- }
2431
- ],
2432
- "conditionFilter": { "value": "true", "type": "VTL" },
2433
- "hierarchy": {
2434
- "sequence": {
2435
- "id": "k3opdj10",
2436
- "page": "31",
2437
- "label": {
2438
- "value": "Séquence 4 : 2 boucles basées sur calculé",
2439
- "type": "VTL|MD"
2440
- }
2441
- }
2442
- },
2443
- "bindingDependencies": ["NHABCALC", "NHAB"],
2444
- "response": { "name": "NHAB" }
2445
- },
2446
-
2447
- {
2448
- "id": "kmg0zwhd",
2449
- "componentType": "Loop",
2450
- "page": "33",
2451
- "depth": 1,
2452
- "paginatedLoop": false,
2453
- "conditionFilter": { "value": "true", "type": "VTL" },
2454
- "hierarchy": {
2455
- "sequence": {
2456
- "id": "k3opdj10",
2457
- "page": "31",
2458
- "label": {
2459
- "value": "Séquence 4 : 2 boucles basées sur calculé",
2460
- "type": "VTL|MD"
2461
- }
2462
- }
2463
- },
2464
- "bindingDependencies": ["NHABCALC", "PRENOM1", "AGE1"],
2465
- "loopDependencies": ["NHABCALC"],
2466
- "lines": {
2467
- "min": { "value": "cast(NHABCALC,integer)", "type": "VTL" },
2468
- "max": { "value": "cast(NHABCALC,integer)", "type": "VTL" }
2469
- },
2470
- "components": [
2471
- {
2472
- "id": "kmg0rom2",
2473
- "componentType": "Subsequence",
2474
- "page": "33",
2475
- "goToPage": "33",
2476
- "label": {
2477
- "value": "\"Description des \" || cast(NHABCALC,string) || \" individu(s) - boucle de NHABCALC à NHABCALC\"",
2478
- "type": "VTL|MD"
2479
- },
2480
- "declarations": [
2481
- {
2482
- "id": "kmg0rom2-l5s0c7g0",
2483
- "declarationType": "HELP",
2484
- "position": "AFTER_QUESTION_TEXT",
2485
- "label": {
2486
- "value": "boucle de NHABCALC à NHABCALC",
2487
- "type": "VTL|MD"
2488
- }
2489
- }
2490
- ],
2491
- "conditionFilter": { "value": "true", "type": "VTL" },
2492
- "hierarchy": {
2493
- "sequence": {
2494
- "id": "k3opdj10",
2495
- "page": "31",
2496
- "label": {
2497
- "value": "Séquence 4 : 2 boucles basées sur calculé",
2498
- "type": "VTL|MD"
2499
- }
2500
- },
2501
- "subSequence": {
2502
- "id": "kmg0rom2",
2503
- "page": "33",
2504
- "label": {
2505
- "value": "\"Description des \" || cast(NHABCALC,string) || \" individu(s) - boucle de NHABCALC à NHABCALC\"",
2506
- "type": "VTL|MD"
2507
- }
2508
- }
2509
- },
2510
- "bindingDependencies": ["NHABCALC"]
2511
- },
2512
-
2513
- {
2514
- "id": "kmg0zlec",
2515
- "componentType": "Input",
2516
- "isMandatory": false,
2517
- "page": "33",
2518
- "maxLength": 30,
2519
- "label": {
2520
- "value": "\"➡ 2. \" || \"Quel est le prenom de l’individu ?\"",
2521
- "type": "VTL|MD"
2522
- },
2523
- "conditionFilter": { "value": "true", "type": "VTL" },
2524
- "hierarchy": {
2525
- "sequence": {
2526
- "id": "k3opdj10",
2527
- "page": "31",
2528
- "label": {
2529
- "value": "Séquence 4 : 2 boucles basées sur calculé",
2530
- "type": "VTL|MD"
2531
- }
2532
- },
2533
- "subSequence": {
2534
- "id": "kmg0rom2",
2535
- "page": "33",
2536
- "label": {
2537
- "value": "\"Description des \" || cast(NHABCALC,string) || \" individu(s) - boucle de NHABCALC à NHABCALC\"",
2538
- "type": "VTL|MD"
2539
- }
2540
- }
2541
- },
2542
- "bindingDependencies": ["PRENOM1", "NHABCALC"],
2543
- "response": { "name": "PRENOM1" }
2544
- },
2545
-
2546
- {
2547
- "id": "k3opea2m",
2548
- "componentType": "InputNumber",
2549
- "isMandatory": false,
2550
- "page": "33",
2551
- "min": 0,
2552
- "max": 120,
2553
- "decimals": 0,
2554
- "label": {
2555
- "value": "\"➡ 3. \" || \"Quel âge a \" || PRENOM1 || \" ?\"",
2556
- "type": "VTL|MD"
2557
- },
2558
- "conditionFilter": { "value": "true", "type": "VTL" },
2559
- "hierarchy": {
2560
- "sequence": {
2561
- "id": "k3opdj10",
2562
- "page": "31",
2563
- "label": {
2564
- "value": "Séquence 4 : 2 boucles basées sur calculé",
2565
- "type": "VTL|MD"
2566
- }
2567
- },
2568
- "subSequence": {
2569
- "id": "kmg0rom2",
2570
- "page": "33",
2571
- "label": {
2572
- "value": "\"Description des \" || cast(NHABCALC,string) || \" individu(s) - boucle de NHABCALC à NHABCALC\"",
2573
- "type": "VTL|MD"
2574
- }
2575
- }
2576
- },
2577
- "bindingDependencies": ["PRENOM1", "AGE1", "NHABCALC"],
2578
- "response": { "name": "AGE1" }
2579
- }
2580
- ]
2581
- },
2582
-
2583
- {
2584
- "id": "l203qtw0",
2585
- "componentType": "Loop",
2586
- "page": "34",
2587
-
2588
- "depth": 1,
2589
- "paginatedLoop": false,
2590
- "conditionFilter": { "value": "true", "type": "VTL" },
2591
- "hierarchy": {
2592
- "sequence": {
2593
- "id": "k3opdj10",
2594
- "page": "31",
2595
- "label": {
2596
- "value": "Séquence 4 : 2 boucles basées sur calculé",
2597
- "type": "VTL|MD"
2598
- }
2599
- }
2600
- },
2601
- "bindingDependencies": ["NHABCALC", "PRENOM2", "AGE2"],
2602
- "loopDependencies": ["NHABCALC"],
2603
- "lines": {
2604
- "min": { "value": "1", "type": "VTL" },
2605
- "max": { "value": "cast(NHABCALC,integer)", "type": "VTL" }
2606
- },
2607
- "components": [
2608
- {
2609
- "id": "l203lif1",
2610
- "componentType": "Subsequence",
2611
- "page": "34",
2612
- "goToPage": "34",
2613
- "label": {
2614
- "value": "\"Description des \" || cast(NHABCALC,string) || \" individu(s) - boucle de 1 a NHABCALC \"",
2615
- "type": "VTL|MD"
2616
- },
2617
- "declarations": [
2618
- {
2619
- "id": "l203lif1-l203w9y3",
2620
- "declarationType": "HELP",
2621
- "position": "AFTER_QUESTION_TEXT",
2622
- "label": { "value": "boucle de 1 a NHABCALC", "type": "VTL|MD" }
2623
- }
2624
- ],
2625
- "conditionFilter": { "value": "true", "type": "VTL" },
2626
- "hierarchy": {
2627
- "sequence": {
2628
- "id": "k3opdj10",
2629
- "page": "31",
2630
- "label": {
2631
- "value": "Séquence 4 : 2 boucles basées sur calculé",
2632
- "type": "VTL|MD"
2633
- }
2634
- },
2635
- "subSequence": {
2636
- "id": "l203lif1",
2637
- "page": "34",
2638
- "label": {
2639
- "value": "\"Description des \" || cast(NHABCALC,string) || \" individu(s) - boucle de 1 a NHABCALC \"",
2640
- "type": "VTL|MD"
2641
- }
2642
- }
2643
- },
2644
- "bindingDependencies": ["NHABCALC"]
2645
- },
2646
-
2647
- {
2648
- "id": "l204183l",
2649
- "componentType": "Input",
2650
- "isMandatory": false,
2651
- "page": "34",
2652
- "maxLength": 30,
2653
- "label": {
2654
- "value": "\"➡ 4. \" || \"Quel est le prenom de l’individu ?\"",
2655
- "type": "VTL|MD"
2656
- },
2657
- "conditionFilter": { "value": "true", "type": "VTL" },
2658
- "hierarchy": {
2659
- "sequence": {
2660
- "id": "k3opdj10",
2661
- "page": "31",
2662
- "label": {
2663
- "value": "Séquence 4 : 2 boucles basées sur calculé",
2664
- "type": "VTL|MD"
2665
- }
2666
- },
2667
- "subSequence": {
2668
- "id": "l203lif1",
2669
- "page": "34",
2670
- "label": {
2671
- "value": "\"Description des \" || cast(NHABCALC,string) || \" individu(s) - boucle de 1 a NHABCALC \"",
2672
- "type": "VTL|MD"
2673
- }
2674
- }
2675
- },
2676
- "bindingDependencies": ["PRENOM2", "NHABCALC"],
2677
- "response": { "name": "PRENOM2" }
2678
- },
2679
-
2680
- {
2681
- "id": "l20407qf",
2682
- "componentType": "InputNumber",
2683
- "isMandatory": false,
2684
- "page": "34",
2685
- "min": 0,
2686
- "max": 120,
2687
- "decimals": 0,
2688
- "label": {
2689
- "value": "\"➡ 5. \" || \"Quel âge a \" || PRENOM2 || \" ?\"",
2690
- "type": "VTL|MD"
2691
- },
2692
- "conditionFilter": { "value": "true", "type": "VTL" },
2693
- "hierarchy": {
2694
- "sequence": {
2695
- "id": "k3opdj10",
2696
- "page": "31",
2697
- "label": {
2698
- "value": "Séquence 4 : 2 boucles basées sur calculé",
2699
- "type": "VTL|MD"
2700
- }
2701
- },
2702
- "subSequence": {
2703
- "id": "l203lif1",
2704
- "page": "34",
2705
- "label": {
2706
- "value": "\"Description des \" || cast(NHABCALC,string) || \" individu(s) - boucle de 1 a NHABCALC \"",
2707
- "type": "VTL|MD"
2708
- }
2709
- }
2710
- },
2711
- "bindingDependencies": ["PRENOM2", "AGE2", "NHABCALC"],
2712
- "response": { "name": "AGE2" }
2713
- }
2714
- ]
2715
- }
2716
- ],
2717
-
2718
- "variables": [
2719
- {
2720
- "variableType": "COLLECTED",
2721
- "name": "TABLEAUDYN1_1_1",
2722
- "values": {
2723
- "COLLECTED": null
2724
- }
2725
- },
2726
-
2727
- {
2728
- "variableType": "COLLECTED",
2729
- "name": "TABLEAUDYN2_1_2",
2730
- "values": {
2731
- "COLLECTED": null
2732
- }
2733
- },
2734
-
2735
- {
2736
- "variableType": "COLLECTED",
2737
- "name": "TABLEAUDYN1_2_1",
2738
- "values": {
2739
- "COLLECTED": null
2740
- }
2741
- },
2742
-
2743
- {
2744
- "variableType": "COLLECTED",
2745
- "name": "TABLEAUDYN2_2_2",
2746
- "values": {
2747
- "COLLECTED": null
2748
- }
2749
- },
2750
-
2751
- {
2752
- "variableType": "COLLECTED",
2753
- "name": "TABLEAUDYN1_3_1",
2754
- "values": {
2755
- "COLLECTED": null
2756
- }
2757
- },
2758
-
2759
- {
2760
- "variableType": "COLLECTED",
2761
- "name": "TABLEAUDYN2_3_2",
2762
- "values": {
2763
- "COLLECTED": null
2764
- }
2765
- },
2766
-
2767
- {
2768
- "variableType": "COLLECTED",
2769
- "name": "TABLEAUDYN1_4_1",
2770
- "values": {
2771
- "COLLECTED": null
2772
- }
2773
- },
2774
-
2775
- {
2776
- "variableType": "COLLECTED",
2777
- "name": "TABLEAUDYN2_4_2",
2778
- "values": {
2779
- "COLLECTED": null
2780
- }
2781
- },
2782
-
2783
- {
2784
- "variableType": "COLLECTED",
2785
- "name": "TABLEAUDYN1_5_1",
2786
- "values": {
2787
- "COLLECTED": null
2788
- }
2789
- },
2790
-
2791
- {
2792
- "variableType": "COLLECTED",
2793
- "name": "TABLEAUDYN2_5_2",
2794
- "values": {
2795
- "COLLECTED": null
2796
- }
2797
- },
2798
-
2799
- {
2800
- "variableType": "COLLECTED",
2801
- "name": "COCHECASE",
2802
- "values": {
2803
- "COLLECTED": null
2804
- }
2805
- },
2806
-
2807
- {
2808
- "variableType": "COLLECTED",
2809
- "name": "TEXTE10",
2810
- "values": {
2811
- "COLLECTED": null
2812
- }
2813
- },
2814
-
2815
- {
2816
- "variableType": "COLLECTED",
2817
- "name": "TEXTELONG249",
2818
- "values": {
2819
- "COLLECTED": null
2820
- }
2821
- },
2822
-
2823
- {
2824
- "variableType": "COLLECTED",
2825
- "name": "TEXTELONG250",
2826
- "values": {
2827
- "COLLECTED": null
2828
- }
2829
- },
2830
-
2831
- {
2832
- "variableType": "COLLECTED",
2833
- "name": "SIREN",
2834
- "values": {
2835
- "COLLECTED": null
2836
- }
2837
- },
2838
-
2839
- {
2840
- "variableType": "COLLECTED",
2841
- "name": "INTEGER",
2842
- "values": {
2843
- "COLLECTED": null
2844
- }
2845
- },
2846
-
2847
- {
2848
- "variableType": "COLLECTED",
2849
- "name": "FLOAT",
2850
- "values": {
2851
- "COLLECTED": null
2852
- }
2853
- },
2854
-
2855
- {
2856
- "variableType": "COLLECTED",
2857
- "name": "FLOATNEG",
2858
- "values": {
2859
- "COLLECTED": null
2860
- }
2861
- },
2862
-
2863
- {
2864
- "variableType": "COLLECTED",
2865
- "name": "UNIT",
2866
- "values": {
2867
- "COLLECTED": null
2868
- }
2869
- },
2870
-
2871
- {
2872
- "variableType": "COLLECTED",
2873
- "name": "UNITD",
2874
- "values": {
2875
- "COLLECTED": null
2876
- }
2877
- },
2878
-
2879
- {
2880
- "variableType": "COLLECTED",
2881
- "name": "DATE",
2882
- "values": {
2883
- "COLLECTED": null
2884
- }
2885
- },
2886
-
2887
- {
2888
- "variableType": "COLLECTED",
2889
- "name": "DAAAA",
2890
- "values": {
2891
- "COLLECTED": null
2892
- }
2893
- },
2894
-
2895
- {
2896
- "variableType": "COLLECTED",
2897
- "name": "BOOLEN",
2898
- "values": {
2899
- "COLLECTED": null
2900
- }
2901
- },
2902
-
2903
- {
2904
- "variableType": "COLLECTED",
2905
- "name": "CHECKBOXONERADIO",
2906
- "values": {
2907
- "COLLECTED": null
2908
- }
2909
- },
2910
-
2911
- {
2912
- "variableType": "COLLECTED",
2913
- "name": "CHECKBOXONECOCHER",
2914
- "values": {
2915
- "COLLECTED": null
2916
- }
2917
- },
2918
-
2919
- {
2920
- "variableType": "COLLECTED",
2921
- "name": "DROPDOWN",
2922
- "values": {
2923
- "COLLECTED": null
2924
- }
2925
- },
2926
-
2927
- {
2928
- "variableType": "COLLECTED",
2929
- "name": "QCM_BOOLEEN1",
2930
- "values": {
2931
- "COLLECTED": null
2932
- }
2933
- },
2934
-
2935
- {
2936
- "variableType": "COLLECTED",
2937
- "name": "QCM_BOOLEEN2",
2938
- "values": {
2939
- "COLLECTED": null
2940
- }
2941
- },
2942
-
2943
- {
2944
- "variableType": "COLLECTED",
2945
- "name": "QCM_BOOLEEN3",
2946
- "values": {
2947
- "COLLECTED": null
2948
- }
2949
- },
2950
-
2951
- {
2952
- "variableType": "COLLECTED",
2953
- "name": "QCM_BOOLEEN4",
2954
- "values": {
2955
- "COLLECTED": null
2956
- }
2957
- },
2958
-
2959
- {
2960
- "variableType": "COLLECTED",
2961
- "name": "QCM_BOOLEEN5",
2962
- "values": {
2963
- "COLLECTED": null
2964
- }
2965
- },
2966
-
2967
- {
2968
- "variableType": "COLLECTED",
2969
- "name": "QCM_BOOLEEN6",
2970
- "values": {
2971
- "COLLECTED": null
2972
- }
2973
- },
2974
-
2975
- {
2976
- "variableType": "COLLECTED",
2977
- "name": "QCM_LISTEON1",
2978
- "values": {
2979
- "COLLECTED": null
2980
- }
2981
- },
2982
-
2983
- {
2984
- "variableType": "COLLECTED",
2985
- "name": "QCM_LISTEON2",
2986
- "values": {
2987
- "COLLECTED": null
2988
- }
2989
- },
2990
-
2991
- {
2992
- "variableType": "COLLECTED",
2993
- "name": "QCM_LISTEON3",
2994
- "values": {
2995
- "COLLECTED": null
2996
- }
2997
- },
2998
-
2999
- {
3000
- "variableType": "COLLECTED",
3001
- "name": "QCM_LISTEON4",
3002
- "values": {
3003
- "COLLECTED": null
3004
- }
3005
- },
3006
-
3007
- {
3008
- "variableType": "COLLECTED",
3009
- "name": "QCM_LISTEON5",
3010
- "values": {
3011
- "COLLECTED": null
3012
- }
3013
- },
3014
-
3015
- {
3016
- "variableType": "COLLECTED",
3017
- "name": "QCM_LISTEON6",
3018
- "values": {
3019
- "COLLECTED": null
3020
- }
3021
- },
3022
-
3023
- {
3024
- "variableType": "COLLECTED",
3025
- "name": "QCM_LISTEONRADIO1",
3026
- "values": {
3027
- "COLLECTED": null
3028
- }
3029
- },
3030
-
3031
- {
3032
- "variableType": "COLLECTED",
3033
- "name": "QCM_LISTEONRADIO2",
3034
- "values": {
3035
- "COLLECTED": null
3036
- }
3037
- },
3038
-
3039
- {
3040
- "variableType": "COLLECTED",
3041
- "name": "QCM_LISTEONRADIO3",
3042
- "values": {
3043
- "COLLECTED": null
3044
- }
3045
- },
3046
-
3047
- {
3048
- "variableType": "COLLECTED",
3049
- "name": "QCM_LISTEONRADIO4",
3050
- "values": {
3051
- "COLLECTED": null
3052
- }
3053
- },
3054
-
3055
- {
3056
- "variableType": "COLLECTED",
3057
- "name": "QCM_LISTEONRADIO5",
3058
- "values": {
3059
- "COLLECTED": null
3060
- }
3061
- },
3062
-
3063
- {
3064
- "variableType": "COLLECTED",
3065
- "name": "QCM_LISTEONRADIO6",
3066
- "values": {
3067
- "COLLECTED": null
3068
- }
3069
- },
3070
-
3071
- {
3072
- "variableType": "COLLECTED",
3073
- "name": "TABLEAU1A1M11",
3074
- "values": {
3075
- "COLLECTED": null
3076
- }
3077
- },
3078
-
3079
- {
3080
- "variableType": "COLLECTED",
3081
- "name": "TABLEAU1A1M21",
3082
- "values": {
3083
- "COLLECTED": null
3084
- }
3085
- },
3086
-
3087
- {
3088
- "variableType": "COLLECTED",
3089
- "name": "TABLEAU1A1M31",
3090
- "values": {
3091
- "COLLECTED": null
3092
- }
3093
- },
3094
-
3095
- {
3096
- "variableType": "COLLECTED",
3097
- "name": "TABLEAU1A1M41",
3098
- "values": {
3099
- "COLLECTED": null
3100
- }
3101
- },
3102
-
3103
- {
3104
- "variableType": "COLLECTED",
3105
- "name": "TABLEAU1A1M51",
3106
- "values": {
3107
- "COLLECTED": null
3108
- }
3109
- },
3110
-
3111
- {
3112
- "variableType": "COLLECTED",
3113
- "name": "TABLEAU1A1M61",
3114
- "values": {
3115
- "COLLECTED": null
3116
- }
3117
- },
3118
-
3119
- {
3120
- "variableType": "COLLECTED",
3121
- "name": "TABLEAU1A3M11",
3122
- "values": {
3123
- "COLLECTED": null
3124
- }
3125
- },
3126
-
3127
- {
3128
- "variableType": "COLLECTED",
3129
- "name": "TABLEAU1A3M12",
3130
- "values": {
3131
- "COLLECTED": null
3132
- }
3133
- },
3134
-
3135
- {
3136
- "variableType": "COLLECTED",
3137
- "name": "TABLEAU1A3M13",
3138
- "values": {
3139
- "COLLECTED": null
3140
- }
3141
- },
3142
-
3143
- {
3144
- "variableType": "COLLECTED",
3145
- "name": "TABLEAU1A3M21",
3146
- "values": {
3147
- "COLLECTED": null
3148
- }
3149
- },
3150
-
3151
- {
3152
- "variableType": "COLLECTED",
3153
- "name": "TABLEAU1A3M22",
3154
- "values": {
3155
- "COLLECTED": null
3156
- }
3157
- },
3158
-
3159
- {
3160
- "variableType": "COLLECTED",
3161
- "name": "TABLEAU1A3M23",
3162
- "values": {
3163
- "COLLECTED": null
3164
- }
3165
- },
3166
-
3167
- {
3168
- "variableType": "COLLECTED",
3169
- "name": "TABLEAU1A3M31",
3170
- "values": {
3171
- "COLLECTED": null
3172
- }
3173
- },
3174
-
3175
- {
3176
- "variableType": "COLLECTED",
3177
- "name": "TABLEAU1A3M32",
3178
- "values": {
3179
- "COLLECTED": null
3180
- }
3181
- },
3182
-
3183
- {
3184
- "variableType": "COLLECTED",
3185
- "name": "TABLEAU1A3M33",
3186
- "values": {
3187
- "COLLECTED": null
3188
- }
3189
- },
3190
-
3191
- {
3192
- "variableType": "COLLECTED",
3193
- "name": "TABLEAU1A3M41",
3194
- "values": {
3195
- "COLLECTED": null
3196
- }
3197
- },
3198
-
3199
- {
3200
- "variableType": "COLLECTED",
3201
- "name": "TABLEAU1A3M42",
3202
- "values": {
3203
- "COLLECTED": null
3204
- }
3205
- },
3206
-
3207
- {
3208
- "variableType": "COLLECTED",
3209
- "name": "TABLEAU1A3M43",
3210
- "values": {
3211
- "COLLECTED": null
3212
- }
3213
- },
3214
-
3215
- {
3216
- "variableType": "COLLECTED",
3217
- "name": "TABLEAU1A3M51",
3218
- "values": {
3219
- "COLLECTED": null
3220
- }
3221
- },
3222
-
3223
- {
3224
- "variableType": "COLLECTED",
3225
- "name": "TABLEAU1A3M52",
3226
- "values": {
3227
- "COLLECTED": null
3228
- }
3229
- },
3230
-
3231
- {
3232
- "variableType": "COLLECTED",
3233
- "name": "TABLEAU1A3M53",
3234
- "values": {
3235
- "COLLECTED": null
3236
- }
3237
- },
3238
-
3239
- {
3240
- "variableType": "COLLECTED",
3241
- "name": "TABLEAU1A3M61",
3242
- "values": {
3243
- "COLLECTED": null
3244
- }
3245
- },
3246
-
3247
- {
3248
- "variableType": "COLLECTED",
3249
- "name": "TABLEAU1A3M62",
3250
- "values": {
3251
- "COLLECTED": null
3252
- }
3253
- },
3254
-
3255
- {
3256
- "variableType": "COLLECTED",
3257
- "name": "TABLEAU1A3M63",
3258
- "values": {
3259
- "COLLECTED": null
3260
- }
3261
- },
3262
-
3263
- {
3264
- "variableType": "COLLECTED",
3265
- "name": "TABLEAU2A11",
3266
- "values": {
3267
- "COLLECTED": null
3268
- }
3269
- },
3270
-
3271
- {
3272
- "variableType": "COLLECTED",
3273
- "name": "TABLEAU2A12",
3274
- "values": {
3275
- "COLLECTED": null
3276
- }
3277
- },
3278
-
3279
- {
3280
- "variableType": "COLLECTED",
3281
- "name": "TABLEAU2A13",
3282
- "values": {
3283
- "COLLECTED": null
3284
- }
3285
- },
3286
-
3287
- {
3288
- "variableType": "COLLECTED",
3289
- "name": "TABLEAU2A14",
3290
- "values": {
3291
- "COLLECTED": null
3292
- }
3293
- },
3294
-
3295
- {
3296
- "variableType": "COLLECTED",
3297
- "name": "TABLEAU2A15",
3298
- "values": {
3299
- "COLLECTED": null
3300
- }
3301
- },
3302
-
3303
- {
3304
- "variableType": "COLLECTED",
3305
- "name": "TABLEAU2A21",
3306
- "values": {
3307
- "COLLECTED": null
3308
- }
3309
- },
3310
-
3311
- {
3312
- "variableType": "COLLECTED",
3313
- "name": "TABLEAU2A22",
3314
- "values": {
3315
- "COLLECTED": null
3316
- }
3317
- },
3318
-
3319
- {
3320
- "variableType": "COLLECTED",
3321
- "name": "TABLEAU2A23",
3322
- "values": {
3323
- "COLLECTED": null
3324
- }
3325
- },
3326
-
3327
- {
3328
- "variableType": "COLLECTED",
3329
- "name": "TABLEAU2A24",
3330
- "values": {
3331
- "COLLECTED": null
3332
- }
3333
- },
3334
-
3335
- {
3336
- "variableType": "COLLECTED",
3337
- "name": "TABLEAU2A25",
3338
- "values": {
3339
- "COLLECTED": null
3340
- }
3341
- },
3342
-
3343
- {
3344
- "variableType": "COLLECTED",
3345
- "name": "TABLEAU2A31",
3346
- "values": {
3347
- "COLLECTED": null
3348
- }
3349
- },
3350
-
3351
- {
3352
- "variableType": "COLLECTED",
3353
- "name": "TABLEAU2A32",
3354
- "values": {
3355
- "COLLECTED": null
3356
- }
3357
- },
3358
-
3359
- {
3360
- "variableType": "COLLECTED",
3361
- "name": "TABLEAU2A33",
3362
- "values": {
3363
- "COLLECTED": null
3364
- }
3365
- },
3366
-
3367
- {
3368
- "variableType": "COLLECTED",
3369
- "name": "TABLEAU2A34",
3370
- "values": {
3371
- "COLLECTED": null
3372
- }
3373
- },
3374
-
3375
- {
3376
- "variableType": "COLLECTED",
3377
- "name": "TABLEAU2A35",
3378
- "values": {
3379
- "COLLECTED": null
3380
- }
3381
- },
3382
-
3383
- {
3384
- "variableType": "COLLECTED",
3385
- "name": "TABLEAU2A41",
3386
- "values": {
3387
- "COLLECTED": null
3388
- }
3389
- },
3390
-
3391
- {
3392
- "variableType": "COLLECTED",
3393
- "name": "TABLEAU2A42",
3394
- "values": {
3395
- "COLLECTED": null
3396
- }
3397
- },
3398
-
3399
- {
3400
- "variableType": "COLLECTED",
3401
- "name": "TABLEAU2A43",
3402
- "values": {
3403
- "COLLECTED": null
3404
- }
3405
- },
3406
-
3407
- {
3408
- "variableType": "COLLECTED",
3409
- "name": "TABLEAU2A44",
3410
- "values": {
3411
- "COLLECTED": null
3412
- }
3413
- },
3414
-
3415
- {
3416
- "variableType": "COLLECTED",
3417
- "name": "TABLEAU2A45",
3418
- "values": {
3419
- "COLLECTED": null
3420
- }
3421
- },
3422
-
3423
- {
3424
- "variableType": "COLLECTED",
3425
- "name": "TABLEAU2A51",
3426
- "values": {
3427
- "COLLECTED": null
3428
- }
3429
- },
3430
-
3431
- {
3432
- "variableType": "COLLECTED",
3433
- "name": "TABLEAU2A52",
3434
- "values": {
3435
- "COLLECTED": null
3436
- }
3437
- },
3438
-
3439
- {
3440
- "variableType": "COLLECTED",
3441
- "name": "TABLEAU2A53",
3442
- "values": {
3443
- "COLLECTED": null
3444
- }
3445
- },
3446
-
3447
- {
3448
- "variableType": "COLLECTED",
3449
- "name": "TABLEAU2A54",
3450
- "values": {
3451
- "COLLECTED": null
3452
- }
3453
- },
3454
-
3455
- {
3456
- "variableType": "COLLECTED",
3457
- "name": "TABLEAU2A55",
3458
- "values": {
3459
- "COLLECTED": null
3460
- }
3461
- },
3462
-
3463
- {
3464
- "variableType": "COLLECTED",
3465
- "name": "TABLEAU2A61",
3466
- "values": {
3467
- "COLLECTED": null
3468
- }
3469
- },
3470
-
3471
- {
3472
- "variableType": "COLLECTED",
3473
- "name": "TABLEAU2A62",
3474
- "values": {
3475
- "COLLECTED": null
3476
- }
3477
- },
3478
-
3479
- {
3480
- "variableType": "COLLECTED",
3481
- "name": "TABLEAU2A63",
3482
- "values": {
3483
- "COLLECTED": null
3484
- }
3485
- },
3486
-
3487
- {
3488
- "variableType": "COLLECTED",
3489
- "name": "TABLEAU2A64",
3490
- "values": {
3491
- "COLLECTED": null
3492
- }
3493
- },
3494
-
3495
- {
3496
- "variableType": "COLLECTED",
3497
- "name": "TABLEAU2A65",
3498
- "values": {
3499
- "COLLECTED": null
3500
- }
3501
- },
3502
-
3503
- {
3504
- "variableType": "COLLECTED",
3505
- "name": "TABLEAU1AH1M11",
3506
- "values": {
3507
- "COLLECTED": null
3508
- }
3509
- },
3510
-
3511
- {
3512
- "variableType": "COLLECTED",
3513
- "name": "TABLEAU1AH1M21",
3514
- "values": {
3515
- "COLLECTED": null
3516
- }
3517
- },
3518
-
3519
- {
3520
- "variableType": "COLLECTED",
3521
- "name": "TABLEAUDYN1",
3522
- "values": {
3523
- "COLLECTED": null
3524
- }
3525
- },
3526
-
3527
- {
3528
- "variableType": "COLLECTED",
3529
- "name": "TABLEAUDYN2",
3530
- "values": {
3531
- "COLLECTED": null
3532
- }
3533
- },
3534
-
3535
- {
3536
- "variableType": "COLLECTED",
3537
- "name": "NHAB",
3538
- "values": {
3539
- "COLLECTED": null
3540
- }
3541
- },
3542
-
3543
- {
3544
- "variableType": "COLLECTED",
3545
- "name": "PRENOM1",
3546
- "values": {
3547
- "COLLECTED": [null]
3548
- }
3549
- },
3550
-
3551
- {
3552
- "variableType": "COLLECTED",
3553
- "name": "AGE1",
3554
- "values": {
3555
- "COLLECTED": [null]
3556
- }
3557
- },
3558
-
3559
- {
3560
- "variableType": "COLLECTED",
3561
- "name": "PRENOM2",
3562
- "values": {
3563
- "COLLECTED": [null]
3564
- }
3565
- },
3566
-
3567
- {
3568
- "variableType": "COLLECTED",
3569
- "name": "AGE2",
3570
- "values": {
3571
- "COLLECTED": [null]
3572
- }
3573
- },
3574
-
3575
- {
3576
- "variableType": "CALCULATED",
3577
- "name": "FILTER_RESULT_COCHECASE",
3578
- "expression": { "value": "true", "type": "VTL" },
3579
- "inFilter": "false"
3580
- },
3581
-
3582
- {
3583
- "variableType": "CALCULATED",
3584
- "name": "FILTER_RESULT_TEXTE10",
3585
- "expression": { "value": "(COCHECASE = true)", "type": "VTL" },
3586
- "bindingDependencies": ["COCHECASE"],
3587
- "inFilter": "false"
3588
- },
3589
-
3590
- {
3591
- "variableType": "CALCULATED",
3592
- "name": "FILTER_RESULT_TEXTELONG249",
3593
- "expression": { "value": "(COCHECASE = true)", "type": "VTL" },
3594
- "bindingDependencies": ["COCHECASE"],
3595
- "inFilter": "false"
3596
- },
3597
-
3598
- {
3599
- "variableType": "CALCULATED",
3600
- "name": "FILTER_RESULT_TEXTELONG250",
3601
- "expression": { "value": "(COCHECASE = true)", "type": "VTL" },
3602
- "bindingDependencies": ["COCHECASE"],
3603
- "inFilter": "false"
3604
- },
3605
-
3606
- {
3607
- "variableType": "CALCULATED",
3608
- "name": "FILTER_RESULT_SIREN",
3609
- "expression": { "value": "(COCHECASE = true)", "type": "VTL" },
3610
- "bindingDependencies": ["COCHECASE"],
3611
- "inFilter": "false"
3612
- },
3613
-
3614
- {
3615
- "variableType": "CALCULATED",
3616
- "name": "FILTER_RESULT_INTEGER",
3617
- "expression": { "value": "(COCHECASE = true)", "type": "VTL" },
3618
- "bindingDependencies": ["COCHECASE"],
3619
- "inFilter": "false"
3620
- },
3621
-
3622
- {
3623
- "variableType": "CALCULATED",
3624
- "name": "FILTER_RESULT_FLOAT",
3625
- "expression": { "value": "(COCHECASE = true)", "type": "VTL" },
3626
- "bindingDependencies": ["COCHECASE"],
3627
- "inFilter": "false"
3628
- },
3629
-
3630
- {
3631
- "variableType": "CALCULATED",
3632
- "name": "FILTER_RESULT_FLOATNEG",
3633
- "expression": { "value": "(COCHECASE = true)", "type": "VTL" },
3634
- "bindingDependencies": ["COCHECASE"],
3635
- "inFilter": "false"
3636
- },
3637
-
3638
- {
3639
- "variableType": "CALCULATED",
3640
- "name": "FILTER_RESULT_UNIT",
3641
- "expression": { "value": "(COCHECASE = true)", "type": "VTL" },
3642
- "bindingDependencies": ["COCHECASE"],
3643
- "inFilter": "false"
3644
- },
3645
-
3646
- {
3647
- "variableType": "CALCULATED",
3648
- "name": "FILTER_RESULT_UNITD",
3649
- "expression": { "value": "(COCHECASE = true)", "type": "VTL" },
3650
- "bindingDependencies": ["COCHECASE"],
3651
- "inFilter": "false"
3652
- },
3653
-
3654
- {
3655
- "variableType": "CALCULATED",
3656
- "name": "FILTER_RESULT_DATE",
3657
- "expression": { "value": "(COCHECASE = true)", "type": "VTL" },
3658
- "bindingDependencies": ["COCHECASE"],
3659
- "inFilter": "false"
3660
- },
3661
-
3662
- {
3663
- "variableType": "CALCULATED",
3664
- "name": "FILTER_RESULT_DAAAA",
3665
- "expression": { "value": "(COCHECASE = true)", "type": "VTL" },
3666
- "bindingDependencies": ["COCHECASE"],
3667
- "inFilter": "false"
3668
- },
3669
-
3670
- {
3671
- "variableType": "CALCULATED",
3672
- "name": "FILTER_RESULT_BOOLEN",
3673
- "expression": { "value": "(COCHECASE = true)", "type": "VTL" },
3674
- "bindingDependencies": ["COCHECASE"],
3675
- "inFilter": "false"
3676
- },
3677
-
3678
- {
3679
- "variableType": "CALCULATED",
3680
- "name": "FILTER_RESULT_CHECKBOXONERADIO",
3681
- "expression": { "value": "(COCHECASE = true)", "type": "VTL" },
3682
- "bindingDependencies": ["COCHECASE"],
3683
- "inFilter": "false"
3684
- },
3685
-
3686
- {
3687
- "variableType": "CALCULATED",
3688
- "name": "FILTER_RESULT_CHECKBOXONECOCHER",
3689
- "expression": { "value": "(COCHECASE = true)", "type": "VTL" },
3690
- "bindingDependencies": ["COCHECASE"],
3691
- "inFilter": "false"
3692
- },
3693
-
3694
- {
3695
- "variableType": "CALCULATED",
3696
- "name": "FILTER_RESULT_DROPDOWN",
3697
- "expression": { "value": "(COCHECASE = true)", "type": "VTL" },
3698
- "bindingDependencies": ["COCHECASE"],
3699
- "inFilter": "false"
3700
- },
3701
-
3702
- {
3703
- "variableType": "CALCULATED",
3704
- "name": "FILTER_RESULT_QCM_BOOLEEN",
3705
- "expression": { "value": "(COCHECASE = true)", "type": "VTL" },
3706
- "bindingDependencies": ["COCHECASE"],
3707
- "inFilter": "false"
3708
- },
3709
-
3710
- {
3711
- "variableType": "CALCULATED",
3712
- "name": "FILTER_RESULT_QCM_LISTEON",
3713
- "expression": { "value": "(COCHECASE = true)", "type": "VTL" },
3714
- "bindingDependencies": ["COCHECASE"],
3715
- "inFilter": "false"
3716
- },
3717
-
3718
- {
3719
- "variableType": "CALCULATED",
3720
- "name": "FILTER_RESULT_QCM_LISTEONRADIO",
3721
- "expression": { "value": "(COCHECASE = true)", "type": "VTL" },
3722
- "bindingDependencies": ["COCHECASE"],
3723
- "inFilter": "false"
3724
- },
3725
-
3726
- {
3727
- "variableType": "CALCULATED",
3728
- "name": "FILTER_RESULT_TABLEAU1A1M",
3729
- "expression": { "value": "(COCHECASE = true)", "type": "VTL" },
3730
- "bindingDependencies": ["COCHECASE"],
3731
- "inFilter": "false"
3732
- },
3733
-
3734
- {
3735
- "variableType": "CALCULATED",
3736
- "name": "FILTER_RESULT_TABLEAU1A3M",
3737
- "expression": { "value": "(COCHECASE = true)", "type": "VTL" },
3738
- "bindingDependencies": ["COCHECASE"],
3739
- "inFilter": "false"
3740
- },
3741
-
3742
- {
3743
- "variableType": "CALCULATED",
3744
- "name": "FILTER_RESULT_TABLEAU2A",
3745
- "expression": { "value": "(COCHECASE = true)", "type": "VTL" },
3746
- "bindingDependencies": ["COCHECASE"],
3747
- "inFilter": "false"
3748
- },
3749
-
3750
- {
3751
- "variableType": "CALCULATED",
3752
- "name": "FILTER_RESULT_TABLEAU1AH1M",
3753
- "expression": { "value": "(COCHECASE = true)", "type": "VTL" },
3754
- "bindingDependencies": ["COCHECASE"],
3755
- "inFilter": "false"
3756
- },
3757
-
3758
- {
3759
- "variableType": "CALCULATED",
3760
- "name": "FILTER_RESULT_TABLEAUDYN",
3761
- "expression": { "value": "(COCHECASE = true)", "type": "VTL" },
3762
- "bindingDependencies": ["COCHECASE"],
3763
- "inFilter": "false"
3764
- },
3765
-
3766
- {
3767
- "variableType": "CALCULATED",
3768
- "name": "FILTER_RESULT_NHAB",
3769
- "expression": { "value": "true", "type": "VTL" },
3770
- "inFilter": "false"
3771
- },
3772
-
3773
- {
3774
- "variableType": "CALCULATED",
3775
- "name": "FILTER_RESULT_PRENOM1",
3776
- "expression": { "value": "true", "type": "VTL" },
3777
- "shapeFrom": "PRENOM1",
3778
- "inFilter": "false"
3779
- },
3780
-
3781
- {
3782
- "variableType": "CALCULATED",
3783
- "name": "FILTER_RESULT_AGE1",
3784
- "expression": { "value": "true", "type": "VTL" },
3785
- "shapeFrom": "PRENOM1",
3786
- "inFilter": "false"
3787
- },
3788
-
3789
- {
3790
- "variableType": "CALCULATED",
3791
- "name": "FILTER_RESULT_PRENOM2",
3792
- "expression": { "value": "true", "type": "VTL" },
3793
- "shapeFrom": "PRENOM2",
3794
- "inFilter": "false"
3795
- },
3796
-
3797
- {
3798
- "variableType": "CALCULATED",
3799
- "name": "FILTER_RESULT_AGE2",
3800
- "expression": { "value": "true", "type": "VTL" },
3801
- "shapeFrom": "PRENOM2",
3802
- "inFilter": "false"
3803
- },
3804
-
3805
- {
3806
- "variableType": "CALCULATED",
3807
- "name": "NHABCALC",
3808
- "expression": {
3809
- "value": "if (isnull(NHAB)) then 1 else cast(NHAB,integer)",
3810
- "type": "VTL"
3811
- },
3812
- "bindingDependencies": ["NHAB"],
3813
- "inFilter": "true"
3814
- }
3815
- ],
3816
- "cleaning": {
3817
- "COCHECASE": {
3818
- "TEXTE10": "(COCHECASE = true)",
3819
- "TEXTELONG249": "(COCHECASE = true)",
3820
- "TEXTELONG250": "(COCHECASE = true)",
3821
- "SIREN": "(COCHECASE = true)",
3822
- "INTEGER": "(COCHECASE = true)",
3823
- "FLOAT": "(COCHECASE = true)",
3824
- "FLOATNEG": "(COCHECASE = true)",
3825
- "UNIT": "(COCHECASE = true)",
3826
- "UNITD": "(COCHECASE = true)",
3827
- "DATE": "(COCHECASE = true)",
3828
- "DAAAA": "(COCHECASE = true)",
3829
- "BOOLEN": "(COCHECASE = true)",
3830
- "CHECKBOXONERADIO": "(COCHECASE = true)",
3831
- "CHECKBOXONECOCHER": "(COCHECASE = true)",
3832
- "DROPDOWN": "(COCHECASE = true)",
3833
- "QCM_LISTEON1": "(COCHECASE = true)",
3834
- "QCM_LISTEON2": "(COCHECASE = true)",
3835
- "QCM_LISTEON3": "(COCHECASE = true)",
3836
- "QCM_LISTEON4": "(COCHECASE = true)",
3837
- "QCM_LISTEON5": "(COCHECASE = true)",
3838
- "QCM_LISTEON6": "(COCHECASE = true)",
3839
- "QCM_LISTEONRADIO1": "(COCHECASE = true)",
3840
- "QCM_LISTEONRADIO2": "(COCHECASE = true)",
3841
- "QCM_LISTEONRADIO3": "(COCHECASE = true)",
3842
- "QCM_LISTEONRADIO4": "(COCHECASE = true)",
3843
- "QCM_LISTEONRADIO5": "(COCHECASE = true)",
3844
- "QCM_LISTEONRADIO6": "(COCHECASE = true)",
3845
- "TABLEAU1A1M11": "(COCHECASE = true)",
3846
- "TABLEAU1A1M21": "(COCHECASE = true)",
3847
- "TABLEAU1A1M31": "(COCHECASE = true)",
3848
- "TABLEAU1A1M41": "(COCHECASE = true)",
3849
- "TABLEAU1A1M51": "(COCHECASE = true)",
3850
- "TABLEAU1A1M61": "(COCHECASE = true)",
3851
- "TABLEAU1A3M11": "(COCHECASE = true)",
3852
- "TABLEAU1A3M12": "(COCHECASE = true)",
3853
- "TABLEAU1A3M13": "(COCHECASE = true)",
3854
- "TABLEAU1A3M21": "(COCHECASE = true)",
3855
- "TABLEAU1A3M22": "(COCHECASE = true)",
3856
- "TABLEAU1A3M23": "(COCHECASE = true)",
3857
- "TABLEAU1A3M31": "(COCHECASE = true)",
3858
- "TABLEAU1A3M32": "(COCHECASE = true)",
3859
- "TABLEAU1A3M33": "(COCHECASE = true)",
3860
- "TABLEAU1A3M41": "(COCHECASE = true)",
3861
- "TABLEAU1A3M42": "(COCHECASE = true)",
3862
- "TABLEAU1A3M43": "(COCHECASE = true)",
3863
- "TABLEAU1A3M51": "(COCHECASE = true)",
3864
- "TABLEAU1A3M52": "(COCHECASE = true)",
3865
- "TABLEAU1A3M53": "(COCHECASE = true)",
3866
- "TABLEAU1A3M61": "(COCHECASE = true)",
3867
- "TABLEAU1A3M62": "(COCHECASE = true)",
3868
- "TABLEAU1A3M63": "(COCHECASE = true)",
3869
- "TABLEAU2A11": "(COCHECASE = true)",
3870
- "TABLEAU2A12": "(COCHECASE = true)",
3871
- "TABLEAU2A13": "(COCHECASE = true)",
3872
- "TABLEAU2A14": "(COCHECASE = true)",
3873
- "TABLEAU2A15": "(COCHECASE = true)",
3874
- "TABLEAU2A21": "(COCHECASE = true)",
3875
- "TABLEAU2A22": "(COCHECASE = true)",
3876
- "TABLEAU2A23": "(COCHECASE = true)",
3877
- "TABLEAU2A24": "(COCHECASE = true)",
3878
- "TABLEAU2A25": "(COCHECASE = true)",
3879
- "TABLEAU2A31": "(COCHECASE = true)",
3880
- "TABLEAU2A32": "(COCHECASE = true)",
3881
- "TABLEAU2A33": "(COCHECASE = true)",
3882
- "TABLEAU2A34": "(COCHECASE = true)",
3883
- "TABLEAU2A35": "(COCHECASE = true)",
3884
- "TABLEAU2A41": "(COCHECASE = true)",
3885
- "TABLEAU2A42": "(COCHECASE = true)",
3886
- "TABLEAU2A43": "(COCHECASE = true)",
3887
- "TABLEAU2A44": "(COCHECASE = true)",
3888
- "TABLEAU2A45": "(COCHECASE = true)",
3889
- "TABLEAU2A51": "(COCHECASE = true)",
3890
- "TABLEAU2A52": "(COCHECASE = true)",
3891
- "TABLEAU2A53": "(COCHECASE = true)",
3892
- "TABLEAU2A54": "(COCHECASE = true)",
3893
- "TABLEAU2A55": "(COCHECASE = true)",
3894
- "TABLEAU2A61": "(COCHECASE = true)",
3895
- "TABLEAU2A62": "(COCHECASE = true)",
3896
- "TABLEAU2A63": "(COCHECASE = true)",
3897
- "TABLEAU2A64": "(COCHECASE = true)",
3898
- "TABLEAU2A65": "(COCHECASE = true)",
3899
- "TABLEAU1AH1M11": "(COCHECASE = true)",
3900
- "TABLEAU1AH1M21": "(COCHECASE = true)",
3901
- "TABLEAUDYN1_1_1": "(COCHECASE = true)",
3902
- "TABLEAUDYN2_1_2": "(COCHECASE = true)",
3903
- "TABLEAUDYN1_2_1": "(COCHECASE = true)",
3904
- "TABLEAUDYN2_2_2": "(COCHECASE = true)",
3905
- "TABLEAUDYN1_3_1": "(COCHECASE = true)",
3906
- "TABLEAUDYN2_3_2": "(COCHECASE = true)",
3907
- "TABLEAUDYN1_4_1": "(COCHECASE = true)",
3908
- "TABLEAUDYN2_4_2": "(COCHECASE = true)",
3909
- "TABLEAUDYN1_5_1": "(COCHECASE = true)",
3910
- "TABLEAUDYN2_5_2": "(COCHECASE = true)"
3911
- }
3912
- },
3913
- "resizing": {
3914
- "NHAB": {
3915
- "size": "cast(NHABCALC,integer)",
3916
- "variables": ["PRENOM1", "AGE1", "PRENOM2", "AGE2"]
3917
- }
3918
- }
3919
- }