From 5735bd9fabe6ae6b5de85995889930ca59193c5c Mon Sep 17 00:00:00 2001 From: Athemane Dahmouh Date: Fri, 4 Mar 2022 08:40:54 +0100 Subject: [PATCH 01/32] First try to add cleaning block to Lunatic Model Flat --- src/main/resources/xsd/LunaticModelFlat.xsd | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/main/resources/xsd/LunaticModelFlat.xsd b/src/main/resources/xsd/LunaticModelFlat.xsd index afb3a234..a70c55fb 100644 --- a/src/main/resources/xsd/LunaticModelFlat.xsd +++ b/src/main/resources/xsd/LunaticModelFlat.xsd @@ -30,6 +30,7 @@ + @@ -525,5 +526,18 @@ + + + + + + + + + + + + + From da01c56dce5f493416287d5e881624d0ef2b89c1 Mon Sep 17 00:00:00 2001 From: Athemane Dahmouh Date: Fri, 4 Mar 2022 10:11:56 +0100 Subject: [PATCH 02/32] Revising xsd schema for the cleaning block : lax, will copy anything without applying a strict object representation --- src/main/resources/xsd/LunaticModelFlat.xsd | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/src/main/resources/xsd/LunaticModelFlat.xsd b/src/main/resources/xsd/LunaticModelFlat.xsd index a70c55fb..34deee9a 100644 --- a/src/main/resources/xsd/LunaticModelFlat.xsd +++ b/src/main/resources/xsd/LunaticModelFlat.xsd @@ -528,15 +528,9 @@ - - - - - - - - - + + + From bdcce469da87af38d2992c399518abe7144dc876 Mon Sep 17 00:00:00 2001 From: Athemane Dahmouh Date: Fri, 4 Mar 2022 10:13:54 +0100 Subject: [PATCH 03/32] Following the lax representation for cleaning block, json produces array and behaves badly with line returns -> tidying in JSONCleaner --- src/main/resources/xslt/json-cleaner.xsl | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/main/resources/xslt/json-cleaner.xsl b/src/main/resources/xslt/json-cleaner.xsl index e111b084..0fb94695 100644 --- a/src/main/resources/xslt/json-cleaner.xsl +++ b/src/main/resources/xslt/json-cleaner.xsl @@ -58,6 +58,22 @@ + + + + + + + + + + + + + + + From 9da11b416351464b72aa9b37c0e23a7e73b680dc Mon Sep 17 00:00:00 2001 From: Athemane Dahmouh Date: Fri, 4 Mar 2022 10:18:07 +0100 Subject: [PATCH 04/32] Adding cleaning block in xsd schema for Hierarchical model too --- src/main/resources/xsd/LunaticModel.xsd | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/main/resources/xsd/LunaticModel.xsd b/src/main/resources/xsd/LunaticModel.xsd index de701a3c..9555ac93 100644 --- a/src/main/resources/xsd/LunaticModel.xsd +++ b/src/main/resources/xsd/LunaticModel.xsd @@ -30,6 +30,7 @@ + @@ -530,5 +531,11 @@ + + + + + + From ea7a526cb2f101942a002a2baab6dcc66c7b6d6a Mon Sep 17 00:00:00 2001 From: Athemane Dahmouh Date: Fri, 4 Mar 2022 16:13:22 +0100 Subject: [PATCH 05/32] Bumping lunatic model version to 2.2.11 : adding the cleaning block --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6493dfea..a836d9cd 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ fr.insee.lunatic lunatic-model jar - 2.2.10 + 2.2.11 Lunatic Model Classes and converters for the Lunatic model http://www.insee.fr From cdd2e140c6a6b6cb0efdca67686de797234dfdb0 Mon Sep 17 00:00:00 2001 From: Athemane Dahmouh Date: Fri, 11 Mar 2022 14:27:39 +0100 Subject: [PATCH 06/32] In xsd models, label is now a complex element with a value (what should be displayed) and a type (t oknow if evaluation of VTL or markdown needs to be done) --- src/main/resources/xsd/LunaticModel.xsd | 19 +++++++++++++------ src/main/resources/xsd/LunaticModelFlat.xsd | 19 +++++++++++++------ 2 files changed, 26 insertions(+), 12 deletions(-) diff --git a/src/main/resources/xsd/LunaticModel.xsd b/src/main/resources/xsd/LunaticModel.xsd index 9555ac93..a63c7f8d 100644 --- a/src/main/resources/xsd/LunaticModel.xsd +++ b/src/main/resources/xsd/LunaticModel.xsd @@ -60,7 +60,7 @@ - + @@ -94,7 +94,7 @@ - + @@ -111,6 +111,13 @@ + + + + + + + @@ -120,7 +127,7 @@ - + @@ -454,7 +461,7 @@ - + @@ -480,7 +487,7 @@ - + @@ -488,7 +495,7 @@ - + diff --git a/src/main/resources/xsd/LunaticModelFlat.xsd b/src/main/resources/xsd/LunaticModelFlat.xsd index 34deee9a..4b549ea5 100644 --- a/src/main/resources/xsd/LunaticModelFlat.xsd +++ b/src/main/resources/xsd/LunaticModelFlat.xsd @@ -53,7 +53,7 @@ - + @@ -87,7 +87,7 @@ - + @@ -105,6 +105,13 @@ + + + + + + + @@ -115,7 +122,7 @@ - + @@ -449,7 +456,7 @@ - + @@ -475,7 +482,7 @@ - + @@ -483,7 +490,7 @@ - + From eaa6e087f881ec54020185f00c2e967dff9ea515 Mon Sep 17 00:00:00 2001 From: Athemane Dahmouh Date: Fri, 11 Mar 2022 14:29:01 +0100 Subject: [PATCH 07/32] In json-cleaner, type key should be kept when its parent is a label --- src/main/resources/xslt/json-cleaner.xsl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/xslt/json-cleaner.xsl b/src/main/resources/xslt/json-cleaner.xsl index 0fb94695..7491a471 100644 --- a/src/main/resources/xslt/json-cleaner.xsl +++ b/src/main/resources/xslt/json-cleaner.xsl @@ -21,8 +21,8 @@ - - + + From 97cde5d570cf43ae8cb4d612a0effe6306b0a1d8 Mon Sep 17 00:00:00 2001 From: Athemane Dahmouh Date: Fri, 11 Mar 2022 14:57:31 +0100 Subject: [PATCH 08/32] Modifying the various test files to support the new label format, containing a value and a type --- src/test/resources/dummy/form.xml | 1790 ++++-- src/test/resources/dummy/form_flat.xml | 5230 ++++++++++------- .../resources/examples/xmlf-2-jsonf/out.json | 1436 +++-- .../resources/examples/xmlh-2-jsonf/out.json | 1436 +++-- .../resources/examples/xmlh-2-jsonh/out.json | 1436 +++-- .../resources/examples/xmlh-2-xmlf/out.xml | 1790 ++++-- 6 files changed, 9244 insertions(+), 3874 deletions(-) diff --git a/src/test/resources/dummy/form.xml b/src/test/resources/dummy/form.xml index 75476dbe..45406f42 100644 --- a/src/test/resources/dummy/form.xml +++ b/src/test/resources/dummy/form.xml @@ -6,23 +6,35 @@ enoCoreVersion="2.2.8" pagination="question" maxPage="37"> - + - + - + true - + - + true - + COMMENT @@ -48,18 +66,27 @@ id="j6p0np9q" mandatory="false" page="3"> - + - + true - + READY @@ -70,13 +97,19 @@ id="j6p6my1d" filterDescription="false" page="3"> - + true - + @@ -84,17 +117,26 @@ componentType="Subsequence" id="j6p0s7o5" goToPage="4"> - + (not(cast(READY,integer) <> 1)) READY - + - + - + (not(cast(READY,integer) <> 1)) READY - + - + PRODUCER @@ -127,17 +178,26 @@ max="99" decimals="0" page="5"> - + (not(cast(READY,integer) <> 1)) READY - + - + SEASON_NUMBER @@ -150,11 +210,17 @@ min="1900-01-01" max="format-date(current-date(),'[Y0001]-[M01]-[D01]')" page="6"> - + - + (not(cast(READY,integer) <> 1)) @@ -162,10 +228,16 @@ - + - + DATEFIRST @@ -178,11 +250,17 @@ mandatory="false" min="1980-05" page="7"> - + - + (not(cast(READY,integer) <> 1)) @@ -190,10 +268,16 @@ - + - + DATEYYYYMM @@ -207,11 +291,17 @@ min="1900" max="year-from-date(current-date())" page="8"> - + - + (not(cast(READY,integer) <> 1)) @@ -219,10 +309,16 @@ - + - + DATEYYYY @@ -237,17 +333,26 @@ max="70.00" decimals="2" page="9"> - + (not(cast(READY,integer) <> 1)) READY - + - + DURATIONH @@ -262,17 +367,26 @@ max="366.0" decimals="1" page="10"> - + (not(cast(READY,integer) <> 1)) READY - + - + DURATIOND @@ -287,17 +401,26 @@ max="12" decimals="0" page="11"> - + (not(cast(READY,integer) <> 1)) READY - + - + DURATIONM @@ -312,17 +435,26 @@ max="100" decimals="0" page="12"> - + (not(cast(READY,integer) <> 1)) READY - + - + DURATIONY @@ -337,17 +469,26 @@ max="99.0" decimals="1" page="13"> - + (not(cast(READY,integer) <> 1)) READY - + - + AUDIENCE_SHARE @@ -360,11 +501,17 @@ componentType="Sequence" id="j3341528" page="14"> - + - + (not(cast(READY,integer) <> 1)) @@ -372,7 +519,10 @@ - + - + - + (not(cast(READY,integer) <> 1)) @@ -392,21 +548,33 @@ - + CITY 00001 - + 00002 - + 03 - + @@ -415,11 +583,17 @@ id="j6qdfhvw" mandatory="false" page="16"> - + - + (not(cast(READY,integer) <> 1)) @@ -427,25 +601,40 @@ - + MAYOR 1 - + 2 - + 3 - + OT - + @@ -454,68 +643,113 @@ id="j4nw5cqz" mandatory="false" page="17"> - + (not(cast(READY,integer) <> 1)) READY - + STATE 1 - + 2 - + 3 - + 4 - + 5 - + 6 - + 7 - + 8 - + 9 - + 10 - + 11 - + 12 - + 13 - + @@ -524,25 +758,37 @@ componentType="Sequence" id="j6qe0h9q" page="18"> - + (not(cast(READY,integer) <> 1)) READY - + - + - + (not(cast(READY,integer) <> 1)) @@ -550,7 +796,10 @@ - + PET1 @@ -558,19 +807,31 @@ PET3 PET4 - + - + - + - + @@ -580,11 +841,17 @@ positioning="HORIZONTAL" mandatory="false" page="20"> - + - + (not(cast(READY,integer) <> 1)) @@ -592,7 +859,10 @@ - + ICE_FLAVOUR1 @@ -602,16 +872,25 @@ 1 - + 1 - + 0 - + ICE_FLAVOUR1 @@ -620,16 +899,25 @@ 2 - + 1 - + 0 - + ICE_FLAVOUR2 @@ -638,16 +926,25 @@ 3 - + 1 - + 0 - + ICE_FLAVOUR3 @@ -656,16 +953,25 @@ OT - + 1 - + 0 - + ICE_FLAVOUR4 @@ -678,14 +984,20 @@ positioning="HORIZONTAL" mandatory="false" page="21"> - + (not(cast(READY,integer) <> 1)) READY - + NUCLEAR_CHARACTER1 @@ -695,16 +1007,25 @@ 1 - + 1 - + 0 - + NUCLEAR_CHARACTER1 @@ -713,16 +1034,25 @@ 2 - + 1 - + 0 - + NUCLEAR_CHARACTER2 @@ -731,16 +1061,25 @@ 3 - + 1 - + 0 - + NUCLEAR_CHARACTER3 @@ -749,16 +1088,25 @@ 4 - + 1 - + 0 - + NUCLEAR_CHARACTER4 @@ -771,14 +1119,20 @@ positioning="HORIZONTAL" mandatory="false" page="22"> - + (not(cast(READY,integer) <> 1)) READY - + BIRTH_CHARACTER1 @@ -789,28 +1143,46 @@ 1 - + 1 - + 2 - + 3 - + 4 - + 5 - + BIRTH_CHARACTER1 @@ -819,28 +1191,46 @@ 2 - + 1 - + 2 - + 3 - + 4 - + 5 - + BIRTH_CHARACTER2 @@ -849,28 +1239,46 @@ 3 - + 1 - + 2 - + 3 - + 4 - + 5 - + BIRTH_CHARACTER3 @@ -879,28 +1287,46 @@ 4 - + 1 - + 2 - + 3 - + 4 - + 5 - + BIRTH_CHARACTER4 @@ -909,28 +1335,46 @@ 5 - + 1 - + 2 - + 3 - + 4 - + 5 - + BIRTH_CHARACTER5 @@ -942,31 +1386,46 @@ componentType="Sequence" id="j4nw88h2" page="23"> - + (not(cast(READY,integer) <> 1)) READY - + - + (not(cast(READY,integer) <> 1)) READY - + - + - + (not(cast(READY,integer) <> 1)) READY - + - + PERCENTAGE_EXPENSES11 @@ -997,20 +1465,32 @@ PERCENTAGE_EXPENSES71 - - + A - + A1 - + A2 - + B - + B1 - + B2 - + B3 - + C - + C1 - + D - + E - + @@ -1134,17 +1641,26 @@ positioning="HORIZONTAL" mandatory="false" page="25"> - + (not(cast(READY,integer) <> 1)) READY - + - + LAST_FOOD_SHOPPING11 @@ -1157,33 +1673,54 @@ LAST_FOOD_SHOPPING81 - - + A - + A1 - + 1 - + 2 - + 3 - + LAST_FOOD_SHOPPING11 @@ -1192,20 +1729,32 @@ A2 - + 1 - + 2 - + 3 - + LAST_FOOD_SHOPPING21 @@ -1214,24 +1763,39 @@ B - + B1 - + 1 - + 2 - + 3 - + LAST_FOOD_SHOPPING31 @@ -1240,20 +1804,32 @@ B2 - + 1 - + 2 - + 3 - + LAST_FOOD_SHOPPING41 @@ -1262,20 +1838,32 @@ B3 - + 1 - + 2 - + 3 - + LAST_FOOD_SHOPPING51 @@ -1284,24 +1872,39 @@ C - + C1 - + 1 - + 2 - + 3 - + LAST_FOOD_SHOPPING61 @@ -1310,20 +1913,32 @@ D - + 1 - + 2 - + 3 - + LAST_FOOD_SHOPPING71 @@ -1332,20 +1947,32 @@ E - + 1 - + 2 - + 3 - + LAST_FOOD_SHOPPING81 @@ -1357,17 +1984,26 @@ componentType="Subsequence" id="j6qejudb" goToPage="26"> - + (not(cast(READY,integer) <> 1)) READY - + - + - + (not(cast(READY,integer) <> 1)) READY - + - + CLOWNING11 @@ -1399,36 +2044,60 @@ CLOWNING42 - - + - + 1 - + 1 - + 2 - + 3 - + O - + CLOWNING11 @@ -1441,24 +2110,39 @@ 2 - + 1 - + 2 - + 3 - + O - + CLOWNING21 @@ -1471,24 +2155,39 @@ 3 - + 1 - + 2 - + 3 - + O - + CLOWNING31 @@ -1501,24 +2200,39 @@ 4 - + 1 - + 2 - + 3 - + O - + CLOWNING41 @@ -1534,17 +2248,26 @@ componentType="Subsequence" id="j6qeh91y" goToPage="27"> - + (not(cast(READY,integer) <> 1)) READY - + - + - + - + (not(cast(READY,integer) <> 1)) @@ -1565,10 +2294,16 @@ - + - + TRAVEL11 @@ -1597,31 +2332,55 @@ TRAVEL46 - - + - + - + - + - + - + 1 - + @@ -1651,7 +2410,10 @@ 2 - + @@ -1681,7 +2443,10 @@ 3 - + @@ -1711,7 +2476,10 @@ 4 - + @@ -1745,14 +2513,20 @@ componentType="Sequence" id="j6qfx9qe" page="28"> - + (not(cast(READY,integer) <> 1)) READY - + - + (not(cast(READY,integer) <> 1)) READY - + FAVOURITE_CHAR1 @@ -1807,13 +2587,22 @@ - + - + - + @@ -1832,15 +2621,24 @@ 1 - + 2 - + 3 - + FAVOURITE_CHAR3_1_3 @@ -1862,15 +2660,24 @@ 1 - + 2 - + 3 - + FAVOURITE_CHAR3_2_3 @@ -1892,15 +2699,24 @@ 1 - + 2 - + 3 - + FAVOURITE_CHAR3_3_3 @@ -1922,15 +2738,24 @@ 1 - + 2 - + 3 - + FAVOURITE_CHAR3_4_3 @@ -1952,15 +2777,24 @@ 1 - + 2 - + 3 - + FAVOURITE_CHAR3_5_3 @@ -1982,15 +2816,24 @@ 1 - + 2 - + 3 - + FAVOURITE_CHAR3_6_3 @@ -2012,15 +2855,24 @@ 1 - + 2 - + 3 - + FAVOURITE_CHAR3_7_3 @@ -2042,15 +2894,24 @@ 1 - + 2 - + 3 - + FAVOURITE_CHAR3_8_3 @@ -2072,15 +2933,24 @@ 1 - + 2 - + 3 - + FAVOURITE_CHAR3_9_3 @@ -2102,15 +2972,24 @@ 1 - + 2 - + 3 - + FAVOURITE_CHAR3_10_3 @@ -2123,14 +3002,20 @@ positioning="HORIZONTAL" mandatory="false" page="30"> - + (not(cast(READY,integer) <> 1)) READY - + FEELCHAREV1 @@ -2140,20 +3025,32 @@ 1 - + 1 - + 2 - + 3 - + FEELCHAREV1 @@ -2162,20 +3059,32 @@ 2 - + 1 - + 2 - + 3 - + FEELCHAREV2 @@ -2184,20 +3093,32 @@ 3 - + 1 - + 2 - + 3 - + FEELCHAREV3 @@ -2206,20 +3127,32 @@ O - + 1 - + 2 - + 3 - + FEELCHAREV4 @@ -2232,14 +3165,20 @@ positioning="HORIZONTAL" mandatory="false" page="31"> - + (not(cast(READY,integer) <> 1)) READY - + LEAVDURATION11 @@ -2254,19 +3193,31 @@ LEAVDURATION52 - - + - + 1 - + 1 - + 2 - + LEAVDURATION12 @@ -2292,7 +3249,10 @@ 2 - + 1 - + 2 - + LEAVDURATION22 @@ -2318,7 +3284,10 @@ 3 - + 1 - + 2 - + LEAVDURATION32 @@ -2344,7 +3319,10 @@ 4 - + 1 - + 2 - + LEAVDURATION42 @@ -2370,7 +3354,10 @@ 5 - + 1 - + 2 - + LEAVDURATION52 @@ -2399,14 +3392,20 @@ componentType="Sequence" id="kiq5mr0b" page="32"> - + (not(cast(READY,integer) <> 1)) READY - + - + (not(cast(READY,integer) <> 1)) READY - + NB_CHAR @@ -2435,14 +3440,20 @@ id="kiq7bjam" page="34" paginatedLoop="false"> - + (not(cast(READY,integer) <> 1)) READY - + NAME_CHAR @@ -2452,17 +3463,26 @@ id="kiq5u8d5" page="34" goToPage="34"> - + (not(cast(READY,integer) <> 1)) READY - + - + - + (not(cast(READY,integer) <> 1)) READY - + - + NAME_CHAR @@ -2495,17 +3524,26 @@ max="120" decimals="0" page="34"> - + (not(cast(READY,integer) <> 1)) READY - + - + AGE_CHAR @@ -2535,14 +3573,20 @@ componentType="Sequence" id="kiq5xw5p" page="35.1"> - + (not(cast(READY,integer) <> 1)) READY - + NAME_CHAR @@ -2551,25 +3595,37 @@ id="kiq65x3c" mandatory="false" page="35.2"> - + (not(cast(READY,integer) <> 1)) READY - + NAME_CHAR FAVCHAR 1 - + 0 - + @@ -2579,14 +3635,20 @@ maxLength="255" mandatory="false" page="35.3"> - + (not(cast(READY,integer) <> 1)) READY - + NAME_CHAR @@ -2599,13 +3661,19 @@ componentType="Sequence" id="j6z12s2d" page="36"> - + true - + - + true - + SURVEY_COMMENT diff --git a/src/test/resources/dummy/form_flat.xml b/src/test/resources/dummy/form_flat.xml index e8a79d90..de72f6f9 100644 --- a/src/test/resources/dummy/form_flat.xml +++ b/src/test/resources/dummy/form_flat.xml @@ -6,23 +6,35 @@ enoCoreVersion="2.2.8" pagination="question" maxPage="37"> - + - + - + true - + @@ -32,72 +44,102 @@ maxLength="500" mandatory="true" page="2"> - - - true - - - - - - - COMMENT - - + + + true + + + + + + + COMMENT + + - - + "➡ 2. If you agree to answer this questionnaire, please check the box" + VTL|MD + + - - - - true - - - - - - - READY - - + + + + true + + + + + + + READY + + - - - true - - - - - - - + + + true + + + + + + + - + - (not(cast(READY,integer) <> 1)) - READY - + (not(cast(READY,integer) <> 1)) + READY + - - - - - - - + + + + + + + - - - (not(cast(READY,integer) <> 1)) - READY - - - - - - - - - - PRODUCER - - + + + (not(cast(READY,integer) <> 1)) + READY + + + + + + + + + + PRODUCER + + - - - (not(cast(READY,integer) <> 1)) - READY - - - - - - - - - - SEASON_NUMBER - - + + + (not(cast(READY,integer) <> 1)) + READY + + + + + + + + + + SEASON_NUMBER + + - - + "➡ 5. When was the first episode of Simpsons? (format YYYY-MM-DD)" + VTL|MD + + - - - - (not(cast(READY,integer) <> 1)) - READY - - - - - - - - - - DATEFIRST - YYYY-MM-DD - - + + + + (not(cast(READY,integer) <> 1)) + READY + + + + + + + + + + DATEFIRST + YYYY-MM-DD + + - - + "➡ 6. When was the first episode of the Simpsons? (format YYYY-MM)" + VTL|MD + + - - - - (not(cast(READY,integer) <> 1)) - READY - - - - - - - - - - DATEYYYYMM - YYYY-MM - - + + + + (not(cast(READY,integer) <> 1)) + READY + + + + + + + + + + DATEYYYYMM + YYYY-MM + + - - + "➡ 7. When was the first episode of the Simpsons? (format YYYY)" + VTL|MD + + - - - - (not(cast(READY,integer) <> 1)) - READY - - - - - - - - - - DATEYYYY - YYYY - - + + + + (not(cast(READY,integer) <> 1)) + READY + + + + + + + + + + DATEYYYY + YYYY + + - - - (not(cast(READY,integer) <> 1)) - READY - - - - - - - - - - DURATIONH - heures - - + + + (not(cast(READY,integer) <> 1)) + READY + + + + + + + + + + DURATIONH + heures + + - - - (not(cast(READY,integer) <> 1)) - READY - - - - - - - - - - DURATIOND - jours - - + + + (not(cast(READY,integer) <> 1)) + READY + + + + + + + + + + DURATIOND + jours + + - - - (not(cast(READY,integer) <> 1)) - READY - - - - - - - - - - DURATIONM - mois - - + + + (not(cast(READY,integer) <> 1)) + READY + + + + + + + + + + DURATIONM + mois + + - - - (not(cast(READY,integer) <> 1)) - READY - - - - - - - - - - DURATIONY - années - - + + + (not(cast(READY,integer) <> 1)) + READY + + + + + + + + + + DURATIONY + années + + - - - (not(cast(READY,integer) <> 1)) - READY - - - - - - - - - - AUDIENCE_SHARE - % - - + + + (not(cast(READY,integer) <> 1)) + READY + + + + + + + + + + AUDIENCE_SHARE + % + + - + - + (not(cast(READY,integer) <> 1)) @@ -372,7 +519,10 @@ - + @@ -381,157 +531,247 @@ id="j3343clt" mandatory="true" page="15"> - - + "➡ 1. In which city do the Simpsons reside?" + VTL|MD + + - - - - (not(cast(READY,integer) <> 1)) - READY - - - - - - - CITY - - 00001 - - - - 00002 - - - - 03 - - - - + + + + (not(cast(READY,integer) <> 1)) + READY + + + + + + + CITY + + 00001 + + + + 00002 + + + + 03 + + + + - - + "➡ 2. Who is the Simpsons city mayor?" + VTL|MD + + - - - - (not(cast(READY,integer) <> 1)) - READY - - - - - - - MAYOR - - 1 - - - - 2 - - - - 3 - - - - OT - - - - + + + + (not(cast(READY,integer) <> 1)) + READY + + + + + + + MAYOR + + 1 + + + + 2 + + + + 3 + + + + OT + + + + - - - (not(cast(READY,integer) <> 1)) - READY - - - - - - - STATE - - 1 - - - - 2 - - - - 3 - - - - 4 - - - - 5 - - - - 6 - - - - 7 - - - - 8 - - - - 9 - - - - 10 - - - - 11 - - - - 12 - - - - 13 - - - - + + + (not(cast(READY,integer) <> 1)) + READY + + + + + + + STATE + + 1 + + + + 2 + + + + 3 + + + + 4 + + + + 5 + + + + 6 + + + + 7 + + + + 8 + + + + 9 + + + + 10 + + + + 11 + + + + 12 + + + + 13 + + + + - + (not(cast(READY,integer) <> 1)) READY - + @@ -539,417 +779,627 @@ componentType="CheckboxGroup" id="j334akov" page="19"> - - + "➡ 1. What are the pet names that the Simpsons family had?" + VTL|MD + + - - - - (not(cast(READY,integer) <> 1)) - READY - - - - - - - PET1 - PET2 - PET3 - PET4 - - - - - - - - - - - - - - - - - + + + + (not(cast(READY,integer) <> 1)) + READY + + + + + + + PET1 + PET2 + PET3 + PET4 + + + + + + + + + + + + + + + + + - - + "➡ 2. Does Jay like the following ice cream flavours?" + VTL|MD + + - - - - (not(cast(READY,integer) <> 1)) - READY - - - - - - - ICE_FLAVOUR1 - ICE_FLAVOUR2 - ICE_FLAVOUR3 - ICE_FLAVOUR4 - - + + + + (not(cast(READY,integer) <> 1)) + READY + + + + + + + ICE_FLAVOUR1 + ICE_FLAVOUR2 + ICE_FLAVOUR3 + ICE_FLAVOUR4 + + + 1 + + + + 1 - - - - - 1 - - - - 0 - - - - ICE_FLAVOUR1 - - - - - 2 - - - - - 1 - - - - 0 - - - - ICE_FLAVOUR2 - - - - - 3 - - - - - 1 - - - - 0 - - - - ICE_FLAVOUR3 - - - - - OT - - - - - 1 - - - - 0 - - - - ICE_FLAVOUR4 - + + + + 0 + + + + ICE_FLAVOUR1 - + + + + 2 + + + + + 1 + + + + 0 + + + + ICE_FLAVOUR2 + + + + + 3 + + + + + 1 + + + + 0 + + + + ICE_FLAVOUR3 + + + + + OT + + + + + 1 + + + + 0 + + + + ICE_FLAVOUR4 + + + - - - (not(cast(READY,integer) <> 1)) - READY - - - - - - - NUCLEAR_CHARACTER1 - NUCLEAR_CHARACTER2 - NUCLEAR_CHARACTER3 - NUCLEAR_CHARACTER4 - - + + + (not(cast(READY,integer) <> 1)) + READY + + + + + + + NUCLEAR_CHARACTER1 + NUCLEAR_CHARACTER2 + NUCLEAR_CHARACTER3 + NUCLEAR_CHARACTER4 + + + 1 + + + + 1 - - - - - 1 - - - - 0 - - - - NUCLEAR_CHARACTER1 - - - - - 2 - - - - - 1 - - - - 0 - - - - NUCLEAR_CHARACTER2 - - - - - 3 - - - - - 1 - - - - 0 - - - - NUCLEAR_CHARACTER3 - - - - - 4 - - - - - 1 - - - - 0 - - - - NUCLEAR_CHARACTER4 - + + + + 0 + + + + NUCLEAR_CHARACTER1 - + + + + 2 + + + + + 1 + + + + 0 + + + + NUCLEAR_CHARACTER2 + + + + + 3 + + + + + 1 + + + + 0 + + + + NUCLEAR_CHARACTER3 + + + + + 4 + + + + + 1 + + + + 0 + + + + NUCLEAR_CHARACTER4 + + + - - - (not(cast(READY,integer) <> 1)) - READY - - - - - - - BIRTH_CHARACTER1 - BIRTH_CHARACTER2 - BIRTH_CHARACTER3 - BIRTH_CHARACTER4 - BIRTH_CHARACTER5 - - + + + (not(cast(READY,integer) <> 1)) + READY + + + + + + + BIRTH_CHARACTER1 + BIRTH_CHARACTER2 + BIRTH_CHARACTER3 + BIRTH_CHARACTER4 + BIRTH_CHARACTER5 + + + 1 + + + + 1 - - - - - 1 - - - - 2 - - - - 3 - - - - 4 - - - - 5 - - - - BIRTH_CHARACTER1 - - - - + + + 2 - - - - - 1 - - - - 2 - - - - 3 - - - - 4 - - - - 5 - - - - BIRTH_CHARACTER2 - - - - + + + 3 - - - - - 1 - - - - 2 - - - - 3 - - - - 4 - - - - 5 - - - - BIRTH_CHARACTER3 - - - - + + + 4 - - - - - 1 - - - - 2 - - - - 3 - - - - 4 - - - - 5 - - - - BIRTH_CHARACTER4 - - - - + + + 5 - - - - - 1 - - - - 2 - - - - 3 - - - - 4 - - - - 5 - - - - BIRTH_CHARACTER5 - + + + + BIRTH_CHARACTER1 - + + + + 2 + + + + + 1 + + + + 2 + + + + 3 + + + + 4 + + + + 5 + + + + BIRTH_CHARACTER2 + + + + + 3 + + + + + 1 + + + + 2 + + + + 3 + + + + 4 + + + + 5 + + + + BIRTH_CHARACTER3 + + + + + 4 + + + + + 1 + + + + 2 + + + + 3 + + + + 4 + + + + 5 + + + + BIRTH_CHARACTER4 + + + + + 5 + + + + + 1 + + + + 2 + + + + 3 + + + + 4 + + + + 5 + + + + BIRTH_CHARACTER5 + + + - + (not(cast(READY,integer) <> 1)) READY - + @@ -957,19 +1407,28 @@ componentType="Subsequence" id="j6qe237q" goToPage="24"> - + - (not(cast(READY,integer) <> 1)) - READY - + (not(cast(READY,integer) <> 1)) + READY + - - - - - - - + + + + + + + - - - (not(cast(READY,integer) <> 1)) - READY - - - - - - - - - - PERCENTAGE_EXPENSES11 - PERCENTAGE_EXPENSES21 - PERCENTAGE_EXPENSES31 - PERCENTAGE_EXPENSES41 - PERCENTAGE_EXPENSES51 - PERCENTAGE_EXPENSES61 - PERCENTAGE_EXPENSES71 - - - - - - - - - - A - - - - A1 - - - + "➡ 1. Please, specify the percentage of Jay’s expenses in the Kwik-E-Mart for each product?" + VTL|MD + + + (not(cast(READY,integer) <> 1)) + READY + + + + + + + + + + PERCENTAGE_EXPENSES11 + PERCENTAGE_EXPENSES21 + PERCENTAGE_EXPENSES31 + PERCENTAGE_EXPENSES41 + PERCENTAGE_EXPENSES51 + PERCENTAGE_EXPENSES61 + PERCENTAGE_EXPENSES71 + + + + + + + + + + + A + + + + A1 + + + - % - - PERCENTAGE_EXPENSES11 - - - - - A2 - - - % + + PERCENTAGE_EXPENSES11 + + + + + A2 + + + - % - - PERCENTAGE_EXPENSES21 - - - - - B - - - - B1 - - - % + + PERCENTAGE_EXPENSES21 + + + + + B + + + + B1 + + + - % - - PERCENTAGE_EXPENSES31 - - - - - B2 - - - % + + PERCENTAGE_EXPENSES31 + + + + + B2 + + + - % - - PERCENTAGE_EXPENSES41 - - - - - B3 - - - % + + PERCENTAGE_EXPENSES41 + + + + + B3 + + + - % - - PERCENTAGE_EXPENSES51 - - - - - C - - - - C1 - - - % + + PERCENTAGE_EXPENSES51 + + + + + C + + + + C1 + + + - % - - PERCENTAGE_EXPENSES61 - - - - - D - - - % + + PERCENTAGE_EXPENSES61 + + + + + D + + + - % - - PERCENTAGE_EXPENSES71 - - - - - E - - - - - + % + + PERCENTAGE_EXPENSES71 + + + + + E + + + + + - - - (not(cast(READY,integer) <> 1)) - READY - - - - - - - - - + + + (not(cast(READY,integer) <> 1)) + READY + + + + + + + + + + LAST_FOOD_SHOPPING11 + LAST_FOOD_SHOPPING21 + LAST_FOOD_SHOPPING31 + LAST_FOOD_SHOPPING41 + LAST_FOOD_SHOPPING51 + LAST_FOOD_SHOPPING61 + LAST_FOOD_SHOPPING71 + LAST_FOOD_SHOPPING81 + + + + + + + + + + + A + + + + A1 + + + + + 1 + + + + 2 + + + + 3 + + + LAST_FOOD_SHOPPING11 + + + + + A2 + + + + + 1 + + + + 2 + + + + 3 + + + LAST_FOOD_SHOPPING21 + + + + + B + + + + B1 + + + + + 1 + + + + 2 + + + + 3 + + + LAST_FOOD_SHOPPING31 + + + + + B2 + + + + + 1 + + + + 2 + + + + 3 + + + LAST_FOOD_SHOPPING41 + + + + + B3 + + + + + 1 + + + + 2 + + + + 3 + + + LAST_FOOD_SHOPPING51 + + + + + C + + + + C1 + + + + + 1 + + + + 2 + + + + 3 + + + LAST_FOOD_SHOPPING61 + + + + + D + + + + + 1 + + + + 2 + + + + 3 + + + LAST_FOOD_SHOPPING71 + + + + + E + + + + + 1 + + + + 2 + + + + 3 + + + LAST_FOOD_SHOPPING81 - - - - - - - - - - A - - - - A1 - - - - - 1 - - - - 2 - - - - 3 - - - - LAST_FOOD_SHOPPING11 - - - - - A2 - - - - - 1 - - - - 2 - - - - 3 - - - - LAST_FOOD_SHOPPING21 - - - - - B - - - - B1 - - - - - 1 - - - - 2 - - - - 3 - - - - LAST_FOOD_SHOPPING31 - - - - - B2 - - - - - 1 - - - - 2 - - - - 3 - - - - LAST_FOOD_SHOPPING41 - - - - - B3 - - - - - 1 - - - - 2 - - - - 3 - - - - LAST_FOOD_SHOPPING51 - - - - - C - - - - C1 - - - - - 1 - - - - 2 - - - - 3 - - - - LAST_FOOD_SHOPPING61 - - - - - D - - - - - 1 - - - - 2 - - - - 3 - - - - LAST_FOOD_SHOPPING71 - - - - - E - - - - - 1 - - - - 2 - - - - 3 - - - - LAST_FOOD_SHOPPING81 - - - + + + - + - (not(cast(READY,integer) <> 1)) - READY - + (not(cast(READY,integer) <> 1)) + READY + - - - - - - - + + + + + + + - - - (not(cast(READY,integer) <> 1)) - READY - - - - - - - - - + + + (not(cast(READY,integer) <> 1)) + READY + + + + + + + + + + CLOWNING11 + CLOWNING12 + CLOWNING21 + CLOWNING22 + CLOWNING31 + CLOWNING32 + CLOWNING41 + CLOWNING42 + + + + + + + + + + + + + + 1 + + + + + 1 + + + + 2 + + + + 3 + + + + O + + + CLOWNING11 + + + CLOWNING12 + + + + + 2 + + + + + 1 + + + + 2 + + + + 3 + + + + O + + + CLOWNING21 + + + CLOWNING22 + + + + + 3 + + + + + 1 + + + + 2 + + + + 3 + + + + O + + + CLOWNING31 + + + CLOWNING32 + + + + + 4 + + + + + 1 + + + + 2 + + + + 3 + + + + O + + + CLOWNING41 + + + CLOWNING42 - - - - - - - - - - - - - 1 - - - - - 1 - - - - 2 - - - - 3 - - - - O - - - - CLOWNING11 - - - - CLOWNING12 - - - - - 2 - - - - - 1 - - - - 2 - - - - 3 - - - - O - - - - CLOWNING21 - - - - CLOWNING22 - - - - - 3 - - - - - 1 - - - - 2 - - - - 3 - - - - O - - - - CLOWNING31 - - - - CLOWNING32 - - - - - 4 - - - - - 1 - - - - 2 - - - - 3 - - - - O - - - - CLOWNING41 - - - - CLOWNING42 - - - + + + - + - (not(cast(READY,integer) <> 1)) - READY - + (not(cast(READY,integer) <> 1)) + READY + - - - - - - - + + + + + + + - - + "➡ 4. Which of the following means of transport were used by the hero and in which country?" + VTL|MD + + - - - - (not(cast(READY,integer) <> 1)) - READY - - - - - - - - - + + + + (not(cast(READY,integer) <> 1)) + READY + + + + + + + + + + TRAVEL11 + TRAVEL12 + TRAVEL13 + TRAVEL14 + TRAVEL15 + TRAVEL16 + TRAVEL21 + TRAVEL22 + TRAVEL23 + TRAVEL24 + TRAVEL25 + TRAVEL26 + TRAVEL31 + TRAVEL32 + TRAVEL33 + TRAVEL34 + TRAVEL35 + TRAVEL36 + TRAVEL41 + TRAVEL42 + TRAVEL43 + TRAVEL44 + TRAVEL45 + TRAVEL46 + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + TRAVEL11 + + + TRAVEL12 + + + TRAVEL13 + + + TRAVEL14 + + + TRAVEL15 + + + TRAVEL16 + + + + + 2 + + + + TRAVEL21 + + + TRAVEL22 + + + TRAVEL23 + + + TRAVEL24 + + + TRAVEL25 + + + TRAVEL26 + + + + + 3 + + + + TRAVEL31 + + + TRAVEL32 + + + TRAVEL33 + + + TRAVEL34 + + + TRAVEL35 + + + TRAVEL36 + + + + + 4 + + + + TRAVEL41 + + + TRAVEL42 + + + TRAVEL43 + + + TRAVEL44 + + + TRAVEL45 + + + TRAVEL46 - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - TRAVEL11 - - - - TRAVEL12 - - - - TRAVEL13 - - - - TRAVEL14 - - - - TRAVEL15 - - - - TRAVEL16 - - - - - 2 - - - - - TRAVEL21 - - - - TRAVEL22 - - - - TRAVEL23 - - - - TRAVEL24 - - - - TRAVEL25 - - - - TRAVEL26 - - - - - 3 - - - - - TRAVEL31 - - - - TRAVEL32 - - - - TRAVEL33 - - - - TRAVEL34 - - - - TRAVEL35 - - - - TRAVEL36 - - - - - 4 - - - - - TRAVEL41 - - - - TRAVEL42 - - - - TRAVEL43 - - - - TRAVEL44 - - - - TRAVEL45 - - - - TRAVEL46 - - - + + + - + (not(cast(READY,integer) <> 1)) READY - + @@ -1762,651 +2536,876 @@ positioning="HORIZONTAL" mandatory="false" page="29"> - - - (not(cast(READY,integer) <> 1)) - READY - - - - - - - FAVOURITE_CHAR1 - FAVOURITE_CHAR2 - FAVOURITE_CHAR3 - FAVOURITE_CHAR1_1_1 - FAVOURITE_CHAR2_1_2 - FAVOURITE_CHAR3_1_3 - FAVOURITE_CHAR1_2_1 - FAVOURITE_CHAR2_2_2 - FAVOURITE_CHAR3_2_3 - FAVOURITE_CHAR1_3_1 - FAVOURITE_CHAR2_3_2 - FAVOURITE_CHAR3_3_3 - FAVOURITE_CHAR1_4_1 - FAVOURITE_CHAR2_4_2 - FAVOURITE_CHAR3_4_3 - FAVOURITE_CHAR1_5_1 - FAVOURITE_CHAR2_5_2 - FAVOURITE_CHAR3_5_3 - FAVOURITE_CHAR1_6_1 - FAVOURITE_CHAR2_6_2 - FAVOURITE_CHAR3_6_3 - FAVOURITE_CHAR1_7_1 - FAVOURITE_CHAR2_7_2 - FAVOURITE_CHAR3_7_3 - FAVOURITE_CHAR1_8_1 - FAVOURITE_CHAR2_8_2 - FAVOURITE_CHAR3_8_3 - FAVOURITE_CHAR1_9_1 - FAVOURITE_CHAR2_9_2 - FAVOURITE_CHAR3_9_3 - FAVOURITE_CHAR1_10_1 - FAVOURITE_CHAR2_10_2 - FAVOURITE_CHAR3_10_3 - - - - - - - - - - - - - - + "➡ 1. Please, complete the following grid with your favourite characters" + VTL|MD + + + (not(cast(READY,integer) <> 1)) + READY + + + + + + + FAVOURITE_CHAR1 + FAVOURITE_CHAR2 + FAVOURITE_CHAR3 + FAVOURITE_CHAR1_1_1 + FAVOURITE_CHAR2_1_2 + FAVOURITE_CHAR3_1_3 + FAVOURITE_CHAR1_2_1 + FAVOURITE_CHAR2_2_2 + FAVOURITE_CHAR3_2_3 + FAVOURITE_CHAR1_3_1 + FAVOURITE_CHAR2_3_2 + FAVOURITE_CHAR3_3_3 + FAVOURITE_CHAR1_4_1 + FAVOURITE_CHAR2_4_2 + FAVOURITE_CHAR3_4_3 + FAVOURITE_CHAR1_5_1 + FAVOURITE_CHAR2_5_2 + FAVOURITE_CHAR3_5_3 + FAVOURITE_CHAR1_6_1 + FAVOURITE_CHAR2_6_2 + FAVOURITE_CHAR3_6_3 + FAVOURITE_CHAR1_7_1 + FAVOURITE_CHAR2_7_2 + FAVOURITE_CHAR3_7_3 + FAVOURITE_CHAR1_8_1 + FAVOURITE_CHAR2_8_2 + FAVOURITE_CHAR3_8_3 + FAVOURITE_CHAR1_9_1 + FAVOURITE_CHAR2_9_2 + FAVOURITE_CHAR3_9_3 + FAVOURITE_CHAR1_10_1 + FAVOURITE_CHAR2_10_2 + FAVOURITE_CHAR3_10_3 + + + + + + + + + + + + + + - - FAVOURITE_CHAR1_1_1 - - + FAVOURITE_CHAR1_1_1 + + - - FAVOURITE_CHAR2_1_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_1_3 - - - - + FAVOURITE_CHAR2_1_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_1_3 + + + + - - FAVOURITE_CHAR1_2_1 - - + FAVOURITE_CHAR1_2_1 + + - - FAVOURITE_CHAR2_2_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_2_3 - - - - + FAVOURITE_CHAR2_2_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_2_3 + + + + - - FAVOURITE_CHAR1_3_1 - - + FAVOURITE_CHAR1_3_1 + + - - FAVOURITE_CHAR2_3_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_3_3 - - - - + FAVOURITE_CHAR2_3_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_3_3 + + + + - - FAVOURITE_CHAR1_4_1 - - + FAVOURITE_CHAR1_4_1 + + - - FAVOURITE_CHAR2_4_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_4_3 - - - - + FAVOURITE_CHAR2_4_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_4_3 + + + + - - FAVOURITE_CHAR1_5_1 - - + FAVOURITE_CHAR1_5_1 + + - - FAVOURITE_CHAR2_5_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_5_3 - - - - + FAVOURITE_CHAR2_5_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_5_3 + + + + - - FAVOURITE_CHAR1_6_1 - - + FAVOURITE_CHAR1_6_1 + + - - FAVOURITE_CHAR2_6_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_6_3 - - - - + FAVOURITE_CHAR2_6_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_6_3 + + + + - - FAVOURITE_CHAR1_7_1 - - + FAVOURITE_CHAR1_7_1 + + - - FAVOURITE_CHAR2_7_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_7_3 - - - - + FAVOURITE_CHAR2_7_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_7_3 + + + + - - FAVOURITE_CHAR1_8_1 - - + FAVOURITE_CHAR1_8_1 + + - - FAVOURITE_CHAR2_8_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_8_3 - - - - + FAVOURITE_CHAR2_8_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_8_3 + + + + - - FAVOURITE_CHAR1_9_1 - - + FAVOURITE_CHAR1_9_1 + + - - FAVOURITE_CHAR2_9_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_9_3 - - - - + FAVOURITE_CHAR2_9_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_9_3 + + + + - - FAVOURITE_CHAR1_10_1 - - + FAVOURITE_CHAR1_10_1 + + - - FAVOURITE_CHAR2_10_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_10_3 - + + FAVOURITE_CHAR2_10_2 - + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_10_3 + + + - - - (not(cast(READY,integer) <> 1)) - READY - - - - - - - FEELCHAREV1 - FEELCHAREV2 - FEELCHAREV3 - FEELCHAREV4 - - + + + (not(cast(READY,integer) <> 1)) + READY + + + + + + + FEELCHAREV1 + FEELCHAREV2 + FEELCHAREV3 + FEELCHAREV4 + + + 1 + + + + 1 - - - - - 1 - - - - 2 - - - - 3 - - - - FEELCHAREV1 - - - - + + + 2 - - - - - 1 - - - - 2 - - - - 3 - - - - FEELCHAREV2 - - - - + + + 3 - - - - - 1 - - - - 2 - - - - 3 - - - - FEELCHAREV3 - - - - - O - - - - - 1 - - - - 2 - - - - 3 - - - - FEELCHAREV4 - + + + + FEELCHAREV1 - + + + + 2 + + + + + 1 + + + + 2 + + + + 3 + + + + FEELCHAREV2 + + + + + 3 + + + + + 1 + + + + 2 + + + + 3 + + + + FEELCHAREV3 + + + + + O + + + + + 1 + + + + 2 + + + + 3 + + + + FEELCHAREV4 + + + - - - (not(cast(READY,integer) <> 1)) - READY - - - - - - - LEAVDURATION11 - LEAVDURATION12 - LEAVDURATION21 - LEAVDURATION22 - LEAVDURATION31 - LEAVDURATION32 - LEAVDURATION41 - LEAVDURATION42 - LEAVDURATION51 - LEAVDURATION52 - - - - - - - - - - - - - 1 - - - + "➡ 3. Can you tell how long Bart Simpson has been on leave for each type and whether there has been another type?" + VTL|MD + + + (not(cast(READY,integer) <> 1)) + READY + + + + + + + LEAVDURATION11 + LEAVDURATION12 + LEAVDURATION21 + LEAVDURATION22 + LEAVDURATION31 + LEAVDURATION32 + LEAVDURATION41 + LEAVDURATION42 + LEAVDURATION51 + LEAVDURATION52 + + + + + + + + + + + + + + 1 + + + - - LEAVDURATION11 - - - - 1 - - - - 2 - - - - LEAVDURATION12 - - - - + + LEAVDURATION11 + + + + 1 + + + 2 - - - + "Calendar days" + VTL|MD + + + + LEAVDURATION12 + + + + + 2 + + + - - LEAVDURATION21 - - - - 1 - - - - 2 - - - - LEAVDURATION22 - - - - - 3 - - - + LEAVDURATION21 + + + + 1 + + + + 2 + + + + LEAVDURATION22 + + + + + 3 + + + - - LEAVDURATION31 - - - - 1 - - - - 2 - - - - LEAVDURATION32 - - - - - 4 - - - + LEAVDURATION31 + + + + 1 + + + + 2 + + + + LEAVDURATION32 + + + + + 4 + + + - - LEAVDURATION41 - - - - 1 - - - - 2 - - - - LEAVDURATION42 - - - - - 5 - - - + LEAVDURATION41 + + + + 1 + + + + 2 + + + + LEAVDURATION42 + + + + + 5 + + + - - LEAVDURATION51 - - - - 1 - - - - 2 - - - - LEAVDURATION52 - + + LEAVDURATION51 - + + + 1 + + + + 2 + + + + LEAVDURATION52 + + + - + (not(cast(READY,integer) <> 1)) READY - + @@ -2418,54 +3417,75 @@ max="20" decimals="0" page="33"> - - - (not(cast(READY,integer) <> 1)) - READY - - - - - - - NB_CHAR - - + + + (not(cast(READY,integer) <> 1)) + READY + + + + + + + NB_CHAR + + - + + + (not(cast(READY,integer) <> 1)) + READY + + + + + + + NAME_CHAR + AGE_CHAR + + (not(cast(READY,integer) <> 1)) READY - + + + + - NAME_CHAR - AGE_CHAR - - - - (not(cast(READY,integer) <> 1)) - READY - - - - - - - - - - - - (not(cast(READY,integer) <> 1)) - READY - - - - - - - - - - NAME_CHAR - - + + + (not(cast(READY,integer) <> 1)) + READY + + + + + + + + + + NAME_CHAR + + - - - (not(cast(READY,integer) <> 1)) - READY - - - - - - - - - - AGE_CHAR - - + + + (not(cast(READY,integer) <> 1)) + READY + + + + + + + + + + AGE_CHAR + + - + (not(cast(READY,integer) <> 1)) READY - + NAME_CHAR @@ -2552,60 +3596,84 @@ id="kiq65x3c" mandatory="false" page="35.2"> - - - (not(cast(READY,integer) <> 1)) - READY - - - - - - - NAME_CHAR - FAVCHAR - - 1 - - - - 0 - - - - + + + (not(cast(READY,integer) <> 1)) + READY + + + + + + + NAME_CHAR + FAVCHAR + + 1 + + + + 0 + + + + - - - (not(cast(READY,integer) <> 1)) - READY - - - - - - - NAME_CHAR - MEMORY_CHAR - - + + + (not(cast(READY,integer) <> 1)) + READY + + + + + + + NAME_CHAR + MEMORY_CHAR + + - + true - + @@ -2615,18 +3683,24 @@ maxLength="255" mandatory="false" page="37"> - - - true - - - - - - - SURVEY_COMMENT - - + + + true + + + + + + + SURVEY_COMMENT + + FAVOURITE_CHAR1_1_1 j6qg8rc6 diff --git a/src/test/resources/examples/xmlf-2-jsonf/out.json b/src/test/resources/examples/xmlf-2-jsonf/out.json index 7b8b9206..06e87192 100644 --- a/src/test/resources/examples/xmlf-2-jsonf/out.json +++ b/src/test/resources/examples/xmlf-2-jsonf/out.json @@ -2,44 +2,56 @@ { "id" : "i6vwi2506qf2mms", "modele" : "SIMPSONS", "enoCoreVersion" : "2.2.8", - "lunaticModelVersion" : "2.1.2", - "generatingDate" : "28-06-2021 17:07:23", + "lunaticModelVersion" : "2.2.11", + "generatingDate" : "11-03-2022 14:52:01", "pagination" : "question", "maxPage" : "37", - "label" : "Questionnaire SIMPSONS 20201215", + "label" : + { "value" : "Questionnaire SIMPSONS 20201215", + "type" : "VTL|MD" }, "components" : [ { "id" : "j6p0ti5h", "componentType" : "Sequence", "page" : "1", - "label" : "\"I - Introduction\"", + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" }, "declarations" : [ { "id" : "j6p0ti5h-d1", "declarationType" : "COMMENT", "position" : "AFTER_QUESTION_TEXT", - "label" : "\"We’re going to test your knowledge about the simpsons series.Welcome in the simpsons world!\"" } ], + "label" : + { "value" : "\"We’re going to test your knowledge about the simpsons series.Welcome in the simpsons world!\"", + "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "true" }, "hierarchy" : { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" } } }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } } } }, { "id" : "j6p3dkx6", "componentType" : "Textarea", "mandatory" : true, "page" : "2", "maxLength" : 500, - "label" : "\"➡ 1. Before starting, do you have any comments about the Simpsons family?\"", + "label" : + { "value" : "\"➡ 1. Before starting, do you have any comments about the Simpsons family?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "true" }, "hierarchy" : { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" } }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "COMMENT" ], "response" : @@ -49,20 +61,26 @@ "componentType" : "CheckboxBoolean", "mandatory" : false, "page" : "3", - "label" : "\"➡ 2. If you agree to answer this questionnaire, please check the box\"", + "label" : + { "value" : "\"➡ 2. If you agree to answer this questionnaire, please check the box\"", + "type" : "VTL|MD" }, "declarations" : [ { "id" : "j6p0np9q-kir6xl1e", "declarationType" : "COMMENT", "position" : "AFTER_QUESTION_TEXT", - "label" : "\"If not, this is unfortunately the end of this questionnaire.\"" } ], + "label" : + { "value" : "\"If not, this is unfortunately the end of this questionnaire.\"", + "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "true" }, "hierarchy" : { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" } }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "READY" ], "response" : @@ -72,19 +90,25 @@ "componentType" : "FilterDescription", "page" : "3", "filterDescription" : false, - "label" : "\"If you are not ready, please go to the end of the questionnaire\"", + "label" : + { "value" : "\"If you are not ready, please go to the end of the questionnaire\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "true" }, "hierarchy" : { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" } } }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } } } }, { "id" : "j6p0s7o5", "componentType" : "Subsequence", "goToPage" : "4", - "label" : "\"General knowledge of the series\"", + "label" : + { "value" : "\"General knowledge of the series\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -93,18 +117,24 @@ { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6p0s7o5", "page" : "4", - "label" : "\"General knowledge of the series\"" } } }, + "label" : + { "value" : "\"General knowledge of the series\"", + "type" : "VTL|MD" } } } }, { "id" : "j3343qhx", "componentType" : "Input", "mandatory" : false, "page" : "4", "maxLength" : 30, - "label" : "\"➡ 3. Who is the producer?\"", + "label" : + { "value" : "\"➡ 3. Who is the producer?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -113,11 +143,15 @@ { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6p0s7o5", "page" : "4", - "label" : "\"General knowledge of the series\"" } }, + "label" : + { "value" : "\"General knowledge of the series\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "PRODUCER" ], "response" : @@ -130,7 +164,9 @@ "min" : 0, "max" : 99, "decimals" : 0, - "label" : "\"➡ 4. What is the current season number?\"", + "label" : + { "value" : "\"➡ 4. What is the current season number?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -139,11 +175,15 @@ { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6p0s7o5", "page" : "4", - "label" : "\"General knowledge of the series\"" } }, + "label" : + { "value" : "\"General knowledge of the series\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "SEASON_NUMBER" ], "response" : @@ -155,13 +195,17 @@ "page" : "6", "min" : "1900-01-01", "max" : "format-date(current-date(),'[Y0001]-[M01]-[D01]')", - "label" : "\"➡ 5. When was the first episode of Simpsons? (format YYYY-MM-DD)\"", + "label" : + { "value" : "\"➡ 5. When was the first episode of Simpsons? (format YYYY-MM-DD)\"", + "type" : "VTL|MD" }, "declarations" : [ { "id" : "kiq71eoi-kiq7dsy2", "declarationType" : "INSTRUCTION", "position" : "AFTER_QUESTION_TEXT", - "label" : "\"Please answer with YYYY-MM-DD format\"" } ], + "label" : + { "value" : "\"Please answer with YYYY-MM-DD format\"", + "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -170,11 +214,15 @@ { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6p0s7o5", "page" : "4", - "label" : "\"General knowledge of the series\"" } }, + "label" : + { "value" : "\"General knowledge of the series\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "DATEFIRST" ], "dateFormat" : "YYYY-MM-DD", @@ -186,13 +234,17 @@ "mandatory" : false, "page" : "7", "min" : "1980-05", - "label" : "\"➡ 6. When was the first episode of the Simpsons? (format YYYY-MM)\"", + "label" : + { "value" : "\"➡ 6. When was the first episode of the Simpsons? (format YYYY-MM)\"", + "type" : "VTL|MD" }, "declarations" : [ { "id" : "k5nvty2o-k5nvxld8", "declarationType" : "COMMENT", "position" : "AFTER_QUESTION_TEXT", - "label" : "\"Please answer with YYYY-MM format\"" } ], + "label" : + { "value" : "\"Please answer with YYYY-MM format\"", + "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -201,11 +253,15 @@ { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6p0s7o5", "page" : "4", - "label" : "\"General knowledge of the series\"" } }, + "label" : + { "value" : "\"General knowledge of the series\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "DATEYYYYMM" ], "dateFormat" : "YYYY-MM", @@ -218,13 +274,17 @@ "page" : "8", "min" : "1900", "max" : "year-from-date(current-date())", - "label" : "\"➡ 7. When was the first episode of the Simpsons? (format YYYY)\"", + "label" : + { "value" : "\"➡ 7. When was the first episode of the Simpsons? (format YYYY)\"", + "type" : "VTL|MD" }, "declarations" : [ { "id" : "k5nw1fir-k5nvmx3n", "declarationType" : "COMMENT", "position" : "AFTER_QUESTION_TEXT", - "label" : "\"Please answer with YYYY format\"" } ], + "label" : + { "value" : "\"Please answer with YYYY format\"", + "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -233,11 +293,15 @@ { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6p0s7o5", "page" : "4", - "label" : "\"General knowledge of the series\"" } }, + "label" : + { "value" : "\"General knowledge of the series\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "DATEYYYY" ], "dateFormat" : "YYYY", @@ -251,7 +315,9 @@ "min" : 0, "max" : 70, "decimals" : 2, - "label" : "\"➡ 8. How long does an episode last?\"", + "label" : + { "value" : "\"➡ 8. How long does an episode last?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -260,11 +326,15 @@ { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6p0s7o5", "page" : "4", - "label" : "\"General knowledge of the series\"" } }, + "label" : + { "value" : "\"General knowledge of the series\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "DURATIONH" ], "unit" : "heures", @@ -278,7 +348,9 @@ "min" : 0, "max" : 366, "decimals" : 1, - "label" : "\"➡ 9. How long does it take to write a new episode?\"", + "label" : + { "value" : "\"➡ 9. How long does it take to write a new episode?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -287,11 +359,15 @@ { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6p0s7o5", "page" : "4", - "label" : "\"General knowledge of the series\"" } }, + "label" : + { "value" : "\"General knowledge of the series\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "DURATIOND" ], "unit" : "jours", @@ -305,7 +381,9 @@ "min" : 0, "max" : 12, "decimals" : 0, - "label" : "\"➡ 10. How long will it take you to watch all the existing episodes?\"", + "label" : + { "value" : "\"➡ 10. How long will it take you to watch all the existing episodes?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -314,11 +392,15 @@ { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6p0s7o5", "page" : "4", - "label" : "\"General knowledge of the series\"" } }, + "label" : + { "value" : "\"General knowledge of the series\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "DURATIONM" ], "unit" : "mois", @@ -332,7 +414,9 @@ "min" : 0, "max" : 100, "decimals" : 0, - "label" : "\"➡ 11. For how long have you known the Simpsons family?\"", + "label" : + { "value" : "\"➡ 11. For how long have you known the Simpsons family?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -341,11 +425,15 @@ { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6p0s7o5", "page" : "4", - "label" : "\"General knowledge of the series\"" } }, + "label" : + { "value" : "\"General knowledge of the series\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "DURATIONY" ], "unit" : "années", @@ -359,7 +447,9 @@ "min" : 0, "max" : 99, "decimals" : 1, - "label" : "\"➡ 15. In your opinion, how much is the part of audience share in US for the 2016 season?\"", + "label" : + { "value" : "\"➡ 15. In your opinion, how much is the part of audience share in US for the 2016 season?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -368,11 +458,15 @@ { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6p0s7o5", "page" : "4", - "label" : "\"General knowledge of the series\"" } }, + "label" : + { "value" : "\"General knowledge of the series\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "AUDIENCE_SHARE" ], "unit" : "%", @@ -382,13 +476,17 @@ { "id" : "j3341528", "componentType" : "Sequence", "page" : "14", - "label" : "\"II - Simpsons’ city\"", + "label" : + { "value" : "\"II - Simpsons’ city\"", + "type" : "VTL|MD" }, "declarations" : [ { "id" : "j3341528-d2", "declarationType" : "COMMENT", "position" : "AFTER_QUESTION_TEXT", - "label" : "\"This module asks about your general knowledge of the Simpsons city\"" } ], + "label" : + { "value" : "\"This module asks about your general knowledge of the Simpsons city\"", + "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -397,19 +495,25 @@ { "sequence" : { "id" : "j3341528", "page" : "14", - "label" : "\"II - Simpsons’ city\"" } } }, + "label" : + { "value" : "\"II - Simpsons’ city\"", + "type" : "VTL|MD" } } } }, { "id" : "j3343clt", "componentType" : "Radio", "mandatory" : true, "page" : "15", - "label" : "\"➡ 1. In which city do the Simpsons reside?\"", + "label" : + { "value" : "\"➡ 1. In which city do the Simpsons reside?\"", + "type" : "VTL|MD" }, "declarations" : [ { "id" : "j3343clt-d3", "declarationType" : "INSTRUCTION", "position" : "AFTER_QUESTION_TEXT", - "label" : "\"One possible answer\"" } ], + "label" : + { "value" : "\"One possible answer\"", + "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -418,19 +522,27 @@ { "sequence" : { "id" : "j3341528", "page" : "14", - "label" : "\"II - Simpsons’ city\"" } }, + "label" : + { "value" : "\"II - Simpsons’ city\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "CITY" ], "options" : [ { "value" : "00001", - "label" : "\"Springfield\"" }, + "label" : + { "value" : "\"Springfield\"", + "type" : "VTL|MD" } }, { "value" : "00002", - "label" : "\"Shelbyville\"" }, + "label" : + { "value" : "\"Shelbyville\"", + "type" : "VTL|MD" } }, { "value" : "03", - "label" : "\"Seinfeld\"" } ], + "label" : + { "value" : "\"Seinfeld\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "CITY" } }, @@ -438,13 +550,17 @@ "componentType" : "CheckboxOne", "mandatory" : false, "page" : "16", - "label" : "\"➡ 2. Who is the Simpsons city mayor?\"", + "label" : + { "value" : "\"➡ 2. Who is the Simpsons city mayor?\"", + "type" : "VTL|MD" }, "declarations" : [ { "id" : "j6qdfhvw-d4", "declarationType" : "INSTRUCTION", "position" : "AFTER_QUESTION_TEXT", - "label" : "\"Only one possible answer\"" } ], + "label" : + { "value" : "\"Only one possible answer\"", + "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -453,22 +569,32 @@ { "sequence" : { "id" : "j3341528", "page" : "14", - "label" : "\"II - Simpsons’ city\"" } }, + "label" : + { "value" : "\"II - Simpsons’ city\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "MAYOR" ], "options" : [ { "value" : "1", - "label" : "\"Constance Harm\"" }, + "label" : + { "value" : "\"Constance Harm\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Timothy Lovejoy\"" }, + "label" : + { "value" : "\"Timothy Lovejoy\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Joe Quimby\"" }, + "label" : + { "value" : "\"Joe Quimby\"", + "type" : "VTL|MD" } }, { "value" : "OT", - "label" : "\"Other name\"" } ], + "label" : + { "value" : "\"Other name\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "MAYOR" } }, @@ -476,7 +602,9 @@ "componentType" : "Dropdown", "mandatory" : false, "page" : "17", - "label" : "\"➡ 3. In which state do The Simpsons reside?\"", + "label" : + { "value" : "\"➡ 3. In which state do The Simpsons reside?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -485,56 +613,86 @@ { "sequence" : { "id" : "j3341528", "page" : "14", - "label" : "\"II - Simpsons’ city\"" } }, + "label" : + { "value" : "\"II - Simpsons’ city\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "STATE" ], "options" : [ { "value" : "1", - "label" : "\"Washington\"" }, + "label" : + { "value" : "\"Washington\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Kentucky\"" }, + "label" : + { "value" : "\"Kentucky\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Ohio\"" }, + "label" : + { "value" : "\"Ohio\"", + "type" : "VTL|MD" } }, { "value" : "4", - "label" : "\"Maine\"" }, + "label" : + { "value" : "\"Maine\"", + "type" : "VTL|MD" } }, { "value" : "5", - "label" : "\"North Dakota\"" }, + "label" : + { "value" : "\"North Dakota\"", + "type" : "VTL|MD" } }, { "value" : "6", - "label" : "\"Florida\"" }, + "label" : + { "value" : "\"Florida\"", + "type" : "VTL|MD" } }, { "value" : "7", - "label" : "\"North Takoma\"" }, + "label" : + { "value" : "\"North Takoma\"", + "type" : "VTL|MD" } }, { "value" : "8", - "label" : "\"California\"" }, + "label" : + { "value" : "\"California\"", + "type" : "VTL|MD" } }, { "value" : "9", - "label" : "\"Texas\"" }, + "label" : + { "value" : "\"Texas\"", + "type" : "VTL|MD" } }, { "value" : "10", - "label" : "\"Massachusetts\"" }, + "label" : + { "value" : "\"Massachusetts\"", + "type" : "VTL|MD" } }, { "value" : "11", - "label" : "\"Nevada\"" }, + "label" : + { "value" : "\"Nevada\"", + "type" : "VTL|MD" } }, { "value" : "12", - "label" : "\"Illinois\"" }, + "label" : + { "value" : "\"Illinois\"", + "type" : "VTL|MD" } }, { "value" : "13", - "label" : "\"Not in any state, you fool!\"" } ], + "label" : + { "value" : "\"Not in any state, you fool!\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "STATE" } }, { "id" : "j6qe0h9q", "componentType" : "Sequence", "page" : "18", - "label" : "\"III - Characters\"", + "label" : + { "value" : "\"III - Characters\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -543,18 +701,24 @@ { "sequence" : { "id" : "j6qe0h9q", "page" : "18", - "label" : "\"III - Characters\"" } } }, + "label" : + { "value" : "\"III - Characters\"", + "type" : "VTL|MD" } } } }, { "id" : "j334akov", "componentType" : "CheckboxGroup", "page" : "19", - "label" : "\"➡ 1. What are the pet names that the Simpsons family had?\"", + "label" : + { "value" : "\"➡ 1. What are the pet names that the Simpsons family had?\"", + "type" : "VTL|MD" }, "declarations" : [ { "id" : "j334akov-d5", "declarationType" : "INSTRUCTION", "position" : "AFTER_QUESTION_TEXT", - "label" : "\"Several possible answers\"" } ], + "label" : + { "value" : "\"Several possible answers\"", + "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -563,7 +727,9 @@ { "sequence" : { "id" : "j6qe0h9q", "page" : "18", - "label" : "\"III - Characters\"" } }, + "label" : + { "value" : "\"III - Characters\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "PET1", "PET2", @@ -572,22 +738,30 @@ "responses" : [ { "id" : "j334akov-QOP-khokqjtw", - "label" : "\"Santa’s Little Helper\"", + "label" : + { "value" : "\"Santa’s Little Helper\"", + "type" : "VTL|MD" }, "response" : { "name" : "PET1" } }, { "id" : "j334akov-QOP-khokur7a", - "label" : "\"Snowball I\"", + "label" : + { "value" : "\"Snowball I\"", + "type" : "VTL|MD" }, "response" : { "name" : "PET2" } }, { "id" : "j334akov-QOP-khol82ux", - "label" : "\"Coltrane\"", + "label" : + { "value" : "\"Coltrane\"", + "type" : "VTL|MD" }, "response" : { "name" : "PET3" } }, { "id" : "j334akov-QOP-khokqee5", - "label" : "\"Other name\"", + "label" : + { "value" : "\"Other name\"", + "type" : "VTL|MD" }, "response" : { "name" : "PET4" } } ] }, @@ -596,13 +770,17 @@ "mandatory" : false, "page" : "20", "positioning" : "HORIZONTAL", - "label" : "\"➡ 2. Does Jay like the following ice cream flavours?\"", + "label" : + { "value" : "\"➡ 2. Does Jay like the following ice cream flavours?\"", + "type" : "VTL|MD" }, "declarations" : [ { "id" : "d12-SI", "declarationType" : "STATEMENT", "position" : "BEFORE_QUESTION_TEXT", - "label" : "\"Now we are going to know if you think that Jay is a gluton.\"" } ], + "label" : + { "value" : "\"Now we are going to know if you think that Jay is a gluton.\"", + "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -611,7 +789,9 @@ { "sequence" : { "id" : "j6qe0h9q", "page" : "18", - "label" : "\"III - Characters\"" } }, + "label" : + { "value" : "\"III - Characters\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "ICE_FLAVOUR1", "ICE_FLAVOUR2", @@ -621,17 +801,23 @@ [ [ { "value" : "1", - "label" : "\"Vanilla\"" }, + "label" : + { "value" : "\"Vanilla\"", + "type" : "VTL|MD" } }, { "componentType" : "Radio", "id" : "j6p29i81-QOP-kiq5w99y", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "0", - "label" : "\"No\"" } ], + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "ICE_FLAVOUR1" }, "bindingDependencies" : @@ -639,17 +825,23 @@ [ { "value" : "2", - "label" : "\"Strawberry\"" }, + "label" : + { "value" : "\"Strawberry\"", + "type" : "VTL|MD" } }, { "componentType" : "Radio", "id" : "j6p29i81-QOP-kiq5ummf", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "0", - "label" : "\"No\"" } ], + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "ICE_FLAVOUR2" }, "bindingDependencies" : @@ -657,17 +849,23 @@ [ { "value" : "3", - "label" : "\"Apple\"" }, + "label" : + { "value" : "\"Apple\"", + "type" : "VTL|MD" } }, { "componentType" : "Radio", "id" : "j6p29i81-QOP-kiq5mry5", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "0", - "label" : "\"No\"" } ], + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "ICE_FLAVOUR3" }, "bindingDependencies" : @@ -675,17 +873,23 @@ [ { "value" : "OT", - "label" : "\"Other flavour\"" }, + "label" : + { "value" : "\"Other flavour\"", + "type" : "VTL|MD" } }, { "componentType" : "Radio", "id" : "j6p29i81-QOP-kiq5lkr8", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "0", - "label" : "\"No\"" } ], + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "ICE_FLAVOUR4" }, "bindingDependencies" : @@ -696,7 +900,9 @@ "mandatory" : false, "page" : "21", "positioning" : "HORIZONTAL", - "label" : "\"➡ 3. Which character works in the nuclear power plant?\"", + "label" : + { "value" : "\"➡ 3. Which character works in the nuclear power plant?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -705,7 +911,9 @@ { "sequence" : { "id" : "j6qe0h9q", "page" : "18", - "label" : "\"III - Characters\"" } }, + "label" : + { "value" : "\"III - Characters\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "NUCLEAR_CHARACTER1", "NUCLEAR_CHARACTER2", @@ -715,17 +923,23 @@ [ [ { "value" : "1", - "label" : "\"Charles Montgomery Burns\"" }, + "label" : + { "value" : "\"Charles Montgomery Burns\"", + "type" : "VTL|MD" } }, { "componentType" : "Dropdown", "id" : "j6qefnga-QOP-kewva8xg", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "0", - "label" : "\"No\"" } ], + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "NUCLEAR_CHARACTER1" }, "bindingDependencies" : @@ -733,17 +947,23 @@ [ { "value" : "2", - "label" : "\"Carl Carlson\"" }, + "label" : + { "value" : "\"Carl Carlson\"", + "type" : "VTL|MD" } }, { "componentType" : "Dropdown", "id" : "j6qefnga-QOP-kewvj0ad", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "0", - "label" : "\"No\"" } ], + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "NUCLEAR_CHARACTER2" }, "bindingDependencies" : @@ -751,17 +971,23 @@ [ { "value" : "3", - "label" : "\"Otto Mann\"" }, + "label" : + { "value" : "\"Otto Mann\"", + "type" : "VTL|MD" } }, { "componentType" : "Dropdown", "id" : "j6qefnga-QOP-kewveltm", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "0", - "label" : "\"No\"" } ], + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "NUCLEAR_CHARACTER3" }, "bindingDependencies" : @@ -769,17 +995,23 @@ [ { "value" : "4", - "label" : "\"Lenny Leonard\"" }, + "label" : + { "value" : "\"Lenny Leonard\"", + "type" : "VTL|MD" } }, { "componentType" : "Dropdown", "id" : "j6qefnga-QOP-kewvgax4", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "0", - "label" : "\"No\"" } ], + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "NUCLEAR_CHARACTER4" }, "bindingDependencies" : @@ -790,7 +1022,9 @@ "mandatory" : false, "page" : "22", "positioning" : "HORIZONTAL", - "label" : "\"➡ 4. In which city each character was born?\"", + "label" : + { "value" : "\"➡ 4. In which city each character was born?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -799,7 +1033,9 @@ { "sequence" : { "id" : "j6qe0h9q", "page" : "18", - "label" : "\"III - Characters\"" } }, + "label" : + { "value" : "\"III - Characters\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "BIRTH_CHARACTER1", "BIRTH_CHARACTER2", @@ -810,26 +1046,38 @@ [ [ { "value" : "1", - "label" : "\"Selma Bouvier\"" }, + "label" : + { "value" : "\"Selma Bouvier\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "j6yzoc6g-QOP-kewvjvcs", "options" : [ { "value" : "1", - "label" : "\"Albuquerque\"" }, + "label" : + { "value" : "\"Albuquerque\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Springfield\"" }, + "label" : + { "value" : "\"Springfield\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Portland\"" }, + "label" : + { "value" : "\"Portland\"", + "type" : "VTL|MD" } }, { "value" : "4", - "label" : "\"Shelbyville\"" }, + "label" : + { "value" : "\"Shelbyville\"", + "type" : "VTL|MD" } }, { "value" : "5", - "label" : "\"Dagstuhl\"" } ], + "label" : + { "value" : "\"Dagstuhl\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "BIRTH_CHARACTER1" }, "bindingDependencies" : @@ -837,26 +1085,38 @@ [ { "value" : "2", - "label" : "\"Kent Brockman\"" }, + "label" : + { "value" : "\"Kent Brockman\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "j6yzoc6g-QOP-kewvhoda", "options" : [ { "value" : "1", - "label" : "\"Albuquerque\"" }, + "label" : + { "value" : "\"Albuquerque\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Springfield\"" }, + "label" : + { "value" : "\"Springfield\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Portland\"" }, + "label" : + { "value" : "\"Portland\"", + "type" : "VTL|MD" } }, { "value" : "4", - "label" : "\"Shelbyville\"" }, + "label" : + { "value" : "\"Shelbyville\"", + "type" : "VTL|MD" } }, { "value" : "5", - "label" : "\"Dagstuhl\"" } ], + "label" : + { "value" : "\"Dagstuhl\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "BIRTH_CHARACTER2" }, "bindingDependencies" : @@ -864,26 +1124,38 @@ [ { "value" : "3", - "label" : "\"Milhouse Van Houten\"" }, + "label" : + { "value" : "\"Milhouse Van Houten\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "j6yzoc6g-QOP-kewv64s5", "options" : [ { "value" : "1", - "label" : "\"Albuquerque\"" }, + "label" : + { "value" : "\"Albuquerque\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Springfield\"" }, + "label" : + { "value" : "\"Springfield\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Portland\"" }, + "label" : + { "value" : "\"Portland\"", + "type" : "VTL|MD" } }, { "value" : "4", - "label" : "\"Shelbyville\"" }, + "label" : + { "value" : "\"Shelbyville\"", + "type" : "VTL|MD" } }, { "value" : "5", - "label" : "\"Dagstuhl\"" } ], + "label" : + { "value" : "\"Dagstuhl\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "BIRTH_CHARACTER3" }, "bindingDependencies" : @@ -891,26 +1163,38 @@ [ { "value" : "4", - "label" : "\"Nelson Muntz\"" }, + "label" : + { "value" : "\"Nelson Muntz\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "j6yzoc6g-QOP-kewvj21j", "options" : [ { "value" : "1", - "label" : "\"Albuquerque\"" }, + "label" : + { "value" : "\"Albuquerque\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Springfield\"" }, + "label" : + { "value" : "\"Springfield\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Portland\"" }, + "label" : + { "value" : "\"Portland\"", + "type" : "VTL|MD" } }, { "value" : "4", - "label" : "\"Shelbyville\"" }, + "label" : + { "value" : "\"Shelbyville\"", + "type" : "VTL|MD" } }, { "value" : "5", - "label" : "\"Dagstuhl\"" } ], + "label" : + { "value" : "\"Dagstuhl\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "BIRTH_CHARACTER4" }, "bindingDependencies" : @@ -918,26 +1202,38 @@ [ { "value" : "5", - "label" : "\"Crazy Cat Lady\"" }, + "label" : + { "value" : "\"Crazy Cat Lady\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "j6yzoc6g-QOP-kewva5uf", "options" : [ { "value" : "1", - "label" : "\"Albuquerque\"" }, + "label" : + { "value" : "\"Albuquerque\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Springfield\"" }, + "label" : + { "value" : "\"Springfield\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Portland\"" }, + "label" : + { "value" : "\"Portland\"", + "type" : "VTL|MD" } }, { "value" : "4", - "label" : "\"Shelbyville\"" }, + "label" : + { "value" : "\"Shelbyville\"", + "type" : "VTL|MD" } }, { "value" : "5", - "label" : "\"Dagstuhl\"" } ], + "label" : + { "value" : "\"Dagstuhl\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "BIRTH_CHARACTER5" }, "bindingDependencies" : @@ -946,7 +1242,9 @@ { "id" : "j4nw88h2", "componentType" : "Sequence", "page" : "23", - "label" : "\"IV - General questions\"", + "label" : + { "value" : "\"IV - General questions\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -955,12 +1253,16 @@ { "sequence" : { "id" : "j4nw88h2", "page" : "23", - "label" : "\"IV - General questions\"" } } }, + "label" : + { "value" : "\"IV - General questions\"", + "type" : "VTL|MD" } } } }, { "id" : "j6qe237q", "componentType" : "Subsequence", "goToPage" : "24", - "label" : "\"Kwik-E-Mart\"", + "label" : + { "value" : "\"Kwik-E-Mart\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -969,18 +1271,24 @@ { "sequence" : { "id" : "j4nw88h2", "page" : "23", - "label" : "\"IV - General questions\"" }, + "label" : + { "value" : "\"IV - General questions\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6qe237q", "page" : "24", - "label" : "\"Kwik-E-Mart\"" } } }, + "label" : + { "value" : "\"Kwik-E-Mart\"", + "type" : "VTL|MD" } } } }, { "id" : "j4nwc63q", "componentType" : "Table", "mandatory" : false, "page" : "24", "positioning" : "HORIZONTAL", - "label" : "\"➡ 1. Please, specify the percentage of Jay’s expenses in the Kwik-E-Mart for each product?\"", + "label" : + { "value" : "\"➡ 1. Please, specify the percentage of Jay’s expenses in the Kwik-E-Mart for each product?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -989,11 +1297,15 @@ { "sequence" : { "id" : "j4nw88h2", "page" : "23", - "label" : "\"IV - General questions\"" }, + "label" : + { "value" : "\"IV - General questions\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6qe237q", "page" : "24", - "label" : "\"Kwik-E-Mart\"" } }, + "label" : + { "value" : "\"Kwik-E-Mart\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "PERCENTAGE_EXPENSES11", "PERCENTAGE_EXPENSES21", @@ -1007,18 +1319,26 @@ [ { "headerCell" : true, "colspan" : 2, - "label" : "" }, + "label" : + { "value" : "", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"Percentage\"" } ], + "label" : + { "value" : "\"Percentage\"", + "type" : "VTL|MD" } } ], [ { "rowspan" : 2, "value" : "A", - "label" : "\"Frozen products\"" }, + "label" : + { "value" : "\"Frozen products\"", + "type" : "VTL|MD" } }, { "value" : "A1", - "label" : "\"Ice creams\"" }, + "label" : + { "value" : "\"Ice creams\"", + "type" : "VTL|MD" } }, { "componentType" : "InputNumber", "min" : 0, @@ -1033,7 +1353,9 @@ [ { "value" : "A2", - "label" : "\"Jasper Beardly\"" }, + "label" : + { "value" : "\"Jasper Beardly\"", + "type" : "VTL|MD" } }, { "componentType" : "InputNumber", "min" : 0, @@ -1049,10 +1371,14 @@ [ { "rowspan" : 3, "value" : "B", - "label" : "\"Meat\"" }, + "label" : + { "value" : "\"Meat\"", + "type" : "VTL|MD" } }, { "value" : "B1", - "label" : "\"Bacon\"" }, + "label" : + { "value" : "\"Bacon\"", + "type" : "VTL|MD" } }, { "componentType" : "InputNumber", "min" : 0, @@ -1067,7 +1393,9 @@ [ { "value" : "B2", - "label" : "\"Pork chop\"" }, + "label" : + { "value" : "\"Pork chop\"", + "type" : "VTL|MD" } }, { "componentType" : "InputNumber", "min" : 0, @@ -1082,7 +1410,9 @@ [ { "value" : "B3", - "label" : "\"Chicken\"" }, + "label" : + { "value" : "\"Chicken\"", + "type" : "VTL|MD" } }, { "componentType" : "InputNumber", "min" : 0, @@ -1097,10 +1427,14 @@ [ { "value" : "C", - "label" : "\"Compote\"" }, + "label" : + { "value" : "\"Compote\"", + "type" : "VTL|MD" } }, { "value" : "C1", - "label" : "\"Powersauce\"" }, + "label" : + { "value" : "\"Powersauce\"", + "type" : "VTL|MD" } }, { "componentType" : "InputNumber", "min" : 0, @@ -1116,7 +1450,9 @@ [ { "colspan" : 2, "value" : "D", - "label" : "\"Other\"" }, + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } }, { "componentType" : "InputNumber", "min" : 0, @@ -1132,7 +1468,9 @@ [ { "colspan" : 2, "value" : "E", - "label" : "\"Total\"" }, + "label" : + { "value" : "\"Total\"", + "type" : "VTL|MD" } }, { "headerCell" : false } ] ] }, @@ -1141,7 +1479,9 @@ "mandatory" : false, "page" : "25", "positioning" : "HORIZONTAL", - "label" : "\"➡ 2. Please specify if Jay has bought each product in his last food shopping\"", + "label" : + { "value" : "\"➡ 2. Please specify if Jay has bought each product in his last food shopping\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -1150,11 +1490,15 @@ { "sequence" : { "id" : "j4nw88h2", "page" : "23", - "label" : "\"IV - General questions\"" }, + "label" : + { "value" : "\"IV - General questions\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6qe237q", "page" : "24", - "label" : "\"Kwik-E-Mart\"" } }, + "label" : + { "value" : "\"Kwik-E-Mart\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "LAST_FOOD_SHOPPING11", "LAST_FOOD_SHOPPING21", @@ -1169,31 +1513,45 @@ [ { "headerCell" : true, "colspan" : 2, - "label" : "" }, + "label" : + { "value" : "", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"In his last food shopping\"" } ], + "label" : + { "value" : "\"In his last food shopping\"", + "type" : "VTL|MD" } } ], [ { "rowspan" : 2, "value" : "A", - "label" : "\"Frozen products\"" }, + "label" : + { "value" : "\"Frozen products\"", + "type" : "VTL|MD" } }, { "value" : "A1", - "label" : "\"Ice creams\"" }, + "label" : + { "value" : "\"Ice creams\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "k9cg2q5t-QOP-kiq6pljq", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "LAST_FOOD_SHOPPING11" }, "bindingDependencies" : @@ -1201,20 +1559,28 @@ [ { "value" : "A2", - "label" : "\"Jasper Beardly\"" }, + "label" : + { "value" : "\"Jasper Beardly\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "k9cg2q5t-QOP-kiq6mgpv", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "LAST_FOOD_SHOPPING21" }, "bindingDependencies" : @@ -1223,23 +1589,33 @@ [ { "rowspan" : 3, "value" : "B", - "label" : "\"Meat\"" }, + "label" : + { "value" : "\"Meat\"", + "type" : "VTL|MD" } }, { "value" : "B1", - "label" : "\"Bacon\"" }, + "label" : + { "value" : "\"Bacon\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "k9cg2q5t-QOP-kiq6pmtz", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "LAST_FOOD_SHOPPING31" }, "bindingDependencies" : @@ -1247,20 +1623,28 @@ [ { "value" : "B2", - "label" : "\"Pork chop\"" }, + "label" : + { "value" : "\"Pork chop\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "k9cg2q5t-QOP-kiq6k4lf", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "LAST_FOOD_SHOPPING41" }, "bindingDependencies" : @@ -1268,20 +1652,28 @@ [ { "value" : "B3", - "label" : "\"Chicken\"" }, + "label" : + { "value" : "\"Chicken\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "k9cg2q5t-QOP-kiq6p70n", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "LAST_FOOD_SHOPPING51" }, "bindingDependencies" : @@ -1289,23 +1681,33 @@ [ { "value" : "C", - "label" : "\"Compote\"" }, + "label" : + { "value" : "\"Compote\"", + "type" : "VTL|MD" } }, { "value" : "C1", - "label" : "\"Powersauce\"" }, + "label" : + { "value" : "\"Powersauce\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "k9cg2q5t-QOP-kiq6lh5v", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "LAST_FOOD_SHOPPING61" }, "bindingDependencies" : @@ -1314,20 +1716,28 @@ [ { "colspan" : 2, "value" : "D", - "label" : "\"Other\"" }, + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "k9cg2q5t-QOP-kiq703te", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "LAST_FOOD_SHOPPING71" }, "bindingDependencies" : @@ -1336,20 +1746,28 @@ [ { "colspan" : 2, "value" : "E", - "label" : "\"Total\"" }, + "label" : + { "value" : "\"Total\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "k9cg2q5t-QOP-kiq6zpd3", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "LAST_FOOD_SHOPPING81" }, "bindingDependencies" : @@ -1358,7 +1776,9 @@ { "id" : "j6qejudb", "componentType" : "Subsequence", "goToPage" : "26", - "label" : "\"Clowning\"", + "label" : + { "value" : "\"Clowning\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -1367,18 +1787,24 @@ { "sequence" : { "id" : "j4nw88h2", "page" : "23", - "label" : "\"IV - General questions\"" }, + "label" : + { "value" : "\"IV - General questions\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6qejudb", "page" : "26", - "label" : "\"Clowning\"" } } }, + "label" : + { "value" : "\"Clowning\"", + "type" : "VTL|MD" } } } }, { "id" : "kbkjvgel", "componentType" : "Table", "mandatory" : false, "page" : "26", "positioning" : "HORIZONTAL", - "label" : "\"➡ 3. Who did these clownings and tell us what you remember?\"", + "label" : + { "value" : "\"➡ 3. Who did these clownings and tell us what you remember?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -1387,11 +1813,15 @@ { "sequence" : { "id" : "j4nw88h2", "page" : "23", - "label" : "\"IV - General questions\"" }, + "label" : + { "value" : "\"IV - General questions\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6qejudb", "page" : "26", - "label" : "\"Clowning\"" } }, + "label" : + { "value" : "\"Clowning\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "CLOWNING11", "CLOWNING12", @@ -1405,33 +1835,49 @@ [ [ { "headerCell" : true, - "label" : "" }, + "label" : + { "value" : "", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"Clowning\"" }, + "label" : + { "value" : "\"Clowning\"", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"Remember?\"" } ], + "label" : + { "value" : "\"Remember?\"", + "type" : "VTL|MD" } } ], [ { "value" : "1", - "label" : "\"Break the windows of the whole city\"" }, + "label" : + { "value" : "\"Break the windows of the whole city\"", + "type" : "VTL|MD" } }, { "componentType" : "Dropdown", "id" : "kbkjvgel-QOP-kiq6m5n0", "options" : [ { "value" : "1", - "label" : "\"Jay\"" }, + "label" : + { "value" : "\"Jay\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Bart\"" }, + "label" : + { "value" : "\"Bart\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Krusty the clown\"" }, + "label" : + { "value" : "\"Krusty the clown\"", + "type" : "VTL|MD" } }, { "value" : "O", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "CLOWNING11" }, "bindingDependencies" : @@ -1447,23 +1893,33 @@ [ { "value" : "2", - "label" : "\"Loose the violin of his daughter playing poker\"" }, + "label" : + { "value" : "\"Loose the violin of his daughter playing poker\"", + "type" : "VTL|MD" } }, { "componentType" : "Dropdown", "id" : "kbkjvgel-QOP-kiq6l29o", "options" : [ { "value" : "1", - "label" : "\"Jay\"" }, + "label" : + { "value" : "\"Jay\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Bart\"" }, + "label" : + { "value" : "\"Bart\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Krusty the clown\"" }, + "label" : + { "value" : "\"Krusty the clown\"", + "type" : "VTL|MD" } }, { "value" : "O", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "CLOWNING21" }, "bindingDependencies" : @@ -1479,23 +1935,33 @@ [ { "value" : "3", - "label" : "\"Kill Mr Burns\"" }, + "label" : + { "value" : "\"Kill Mr Burns\"", + "type" : "VTL|MD" } }, { "componentType" : "Dropdown", "id" : "kbkjvgel-QOP-kiq72biw", "options" : [ { "value" : "1", - "label" : "\"Jay\"" }, + "label" : + { "value" : "\"Jay\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Bart\"" }, + "label" : + { "value" : "\"Bart\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Krusty the clown\"" }, + "label" : + { "value" : "\"Krusty the clown\"", + "type" : "VTL|MD" } }, { "value" : "O", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "CLOWNING31" }, "bindingDependencies" : @@ -1511,23 +1977,33 @@ [ { "value" : "4", - "label" : "\"Leaving a mechanical object to control the nuclear power plant\"" }, + "label" : + { "value" : "\"Leaving a mechanical object to control the nuclear power plant\"", + "type" : "VTL|MD" } }, { "componentType" : "Dropdown", "id" : "kbkjvgel-QOP-kiq6mlan", "options" : [ { "value" : "1", - "label" : "\"Jay\"" }, + "label" : + { "value" : "\"Jay\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Bart\"" }, + "label" : + { "value" : "\"Bart\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Krusty the clown\"" }, + "label" : + { "value" : "\"Krusty the clown\"", + "type" : "VTL|MD" } }, { "value" : "O", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "CLOWNING41" }, "bindingDependencies" : @@ -1544,7 +2020,9 @@ { "id" : "j6qeh91y", "componentType" : "Subsequence", "goToPage" : "27", - "label" : "\"Transport\"", + "label" : + { "value" : "\"Transport\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -1553,24 +2031,32 @@ { "sequence" : { "id" : "j4nw88h2", "page" : "23", - "label" : "\"IV - General questions\"" }, + "label" : + { "value" : "\"IV - General questions\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6qeh91y", "page" : "27", - "label" : "\"Transport\"" } } }, + "label" : + { "value" : "\"Transport\"", + "type" : "VTL|MD" } } } }, { "id" : "j6p2lwuj", "componentType" : "Table", "mandatory" : false, "page" : "27", "positioning" : "HORIZONTAL", - "label" : "\"➡ 4. Which of the following means of transport were used by the hero and in which country?\"", + "label" : + { "value" : "\"➡ 4. Which of the following means of transport were used by the hero and in which country?\"", + "type" : "VTL|MD" }, "declarations" : [ { "id" : "j6p2lwuj-d10", "declarationType" : "INSTRUCTION", "position" : "AFTER_QUESTION_TEXT", - "label" : "\"Several answers possible: check off all the relevant boxes\"" } ], + "label" : + { "value" : "\"Several answers possible: check off all the relevant boxes\"", + "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -1579,11 +2065,15 @@ { "sequence" : { "id" : "j4nw88h2", "page" : "23", - "label" : "\"IV - General questions\"" }, + "label" : + { "value" : "\"IV - General questions\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6qeh91y", "page" : "27", - "label" : "\"Transport\"" } }, + "label" : + { "value" : "\"Transport\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "TRAVEL11", "TRAVEL12", @@ -1613,29 +2103,45 @@ [ [ { "headerCell" : true, - "label" : "" }, + "label" : + { "value" : "", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"Brazil\"" }, + "label" : + { "value" : "\"Brazil\"", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"Canada\"" }, + "label" : + { "value" : "\"Canada\"", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"Japan\"" }, + "label" : + { "value" : "\"Japan\"", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"France\"" }, + "label" : + { "value" : "\"France\"", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"Other country\"" }, + "label" : + { "value" : "\"Other country\"", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"Other planet\"" } ], + "label" : + { "value" : "\"Other planet\"", + "type" : "VTL|MD" } } ], [ { "value" : "1", - "label" : "\"Car\"" }, + "label" : + { "value" : "\"Car\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxBoolean", "id" : "j6p2lwuj-QOP-kewvm4qg", @@ -1681,7 +2187,9 @@ [ { "value" : "2", - "label" : "\"Bike\"" }, + "label" : + { "value" : "\"Bike\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxBoolean", "id" : "j6p2lwuj-QOP-kewvebem", @@ -1727,7 +2235,9 @@ [ { "value" : "3", - "label" : "\"Skateboard\"" }, + "label" : + { "value" : "\"Skateboard\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxBoolean", "id" : "j6p2lwuj-QOP-kewv62xx", @@ -1773,7 +2283,9 @@ [ { "value" : "4", - "label" : "\"Plane\"" }, + "label" : + { "value" : "\"Plane\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxBoolean", "id" : "j6p2lwuj-QOP-kewvjcck", @@ -1820,7 +2332,9 @@ { "id" : "j6qfx9qe", "componentType" : "Sequence", "page" : "28", - "label" : "\"V - Favourite characters (dynamic table)\"", + "label" : + { "value" : "\"V - Favourite characters (dynamic table)\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -1829,14 +2343,18 @@ { "sequence" : { "id" : "j6qfx9qe", "page" : "28", - "label" : "\"V - Favourite characters (dynamic table)\"" } } }, + "label" : + { "value" : "\"V - Favourite characters (dynamic table)\"", + "type" : "VTL|MD" } } } }, { "id" : "j6qg8rc6", "componentType" : "Table", "mandatory" : false, "page" : "29", "positioning" : "HORIZONTAL", - "label" : "\"➡ 1. Please, complete the following grid with your favourite characters\"", + "label" : + { "value" : "\"➡ 1. Please, complete the following grid with your favourite characters\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -1845,7 +2363,9 @@ { "sequence" : { "id" : "j6qfx9qe", "page" : "28", - "label" : "\"V - Favourite characters (dynamic table)\"" } }, + "label" : + { "value" : "\"V - Favourite characters (dynamic table)\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "FAVOURITE_CHAR1", "FAVOURITE_CHAR2", @@ -1887,13 +2407,19 @@ [ [ { "headerCell" : true, - "label" : "\"Name\"" }, + "label" : + { "value" : "\"Name\"", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"Age\"" }, + "label" : + { "value" : "\"Age\"", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"Member of the Simpsons family\"" } ], + "label" : + { "value" : "\"Member of the Simpsons family\"", + "type" : "VTL|MD" } } ], [ { "componentType" : "Textarea", @@ -1917,13 +2443,19 @@ "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FAVOURITE_CHAR3_1_3" }, "bindingDependencies" : @@ -1951,13 +2483,19 @@ "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FAVOURITE_CHAR3_2_3" }, "bindingDependencies" : @@ -1985,13 +2523,19 @@ "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FAVOURITE_CHAR3_3_3" }, "bindingDependencies" : @@ -2019,13 +2563,19 @@ "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FAVOURITE_CHAR3_4_3" }, "bindingDependencies" : @@ -2053,13 +2603,19 @@ "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FAVOURITE_CHAR3_5_3" }, "bindingDependencies" : @@ -2087,13 +2643,19 @@ "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FAVOURITE_CHAR3_6_3" }, "bindingDependencies" : @@ -2121,13 +2683,19 @@ "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FAVOURITE_CHAR3_7_3" }, "bindingDependencies" : @@ -2155,13 +2723,19 @@ "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FAVOURITE_CHAR3_8_3" }, "bindingDependencies" : @@ -2189,13 +2763,19 @@ "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FAVOURITE_CHAR3_9_3" }, "bindingDependencies" : @@ -2223,13 +2803,19 @@ "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FAVOURITE_CHAR3_10_3" }, "bindingDependencies" : @@ -2240,7 +2826,9 @@ "mandatory" : false, "page" : "30", "positioning" : "HORIZONTAL", - "label" : "\"➡ 2. How has your feeling about the following characters evolved over time?\"", + "label" : + { "value" : "\"➡ 2. How has your feeling about the following characters evolved over time?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -2249,7 +2837,9 @@ { "sequence" : { "id" : "j6qfx9qe", "page" : "28", - "label" : "\"V - Favourite characters (dynamic table)\"" } }, + "label" : + { "value" : "\"V - Favourite characters (dynamic table)\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "FEELCHAREV1", "FEELCHAREV2", @@ -2259,20 +2849,28 @@ [ [ { "value" : "1", - "label" : "\"Jay\"" }, + "label" : + { "value" : "\"Jay\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "jvxux0mi-QOP-kiq76emy", "options" : [ { "value" : "1", - "label" : "\"Up\"" }, + "label" : + { "value" : "\"Up\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Down\"" }, + "label" : + { "value" : "\"Down\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Steady\"" } ], + "label" : + { "value" : "\"Steady\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FEELCHAREV1" }, "bindingDependencies" : @@ -2280,20 +2878,28 @@ [ { "value" : "2", - "label" : "\"Bart\"" }, + "label" : + { "value" : "\"Bart\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "jvxux0mi-QOP-kiq6zv60", "options" : [ { "value" : "1", - "label" : "\"Up\"" }, + "label" : + { "value" : "\"Up\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Down\"" }, + "label" : + { "value" : "\"Down\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Steady\"" } ], + "label" : + { "value" : "\"Steady\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FEELCHAREV2" }, "bindingDependencies" : @@ -2301,20 +2907,28 @@ [ { "value" : "3", - "label" : "\"Krusty the clown\"" }, + "label" : + { "value" : "\"Krusty the clown\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "jvxux0mi-QOP-kiq7bgk3", "options" : [ { "value" : "1", - "label" : "\"Up\"" }, + "label" : + { "value" : "\"Up\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Down\"" }, + "label" : + { "value" : "\"Down\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Steady\"" } ], + "label" : + { "value" : "\"Steady\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FEELCHAREV3" }, "bindingDependencies" : @@ -2322,20 +2936,28 @@ [ { "value" : "O", - "label" : "\"Other\"" }, + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "jvxux0mi-QOP-kiq6ync3", "options" : [ { "value" : "1", - "label" : "\"Up\"" }, + "label" : + { "value" : "\"Up\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Down\"" }, + "label" : + { "value" : "\"Down\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Steady\"" } ], + "label" : + { "value" : "\"Steady\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FEELCHAREV4" }, "bindingDependencies" : @@ -2346,7 +2968,9 @@ "mandatory" : false, "page" : "31", "positioning" : "HORIZONTAL", - "label" : "\"➡ 3. Can you tell how long Bart Simpson has been on leave for each type and whether there has been another type?\"", + "label" : + { "value" : "\"➡ 3. Can you tell how long Bart Simpson has been on leave for each type and whether there has been another type?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -2355,7 +2979,9 @@ { "sequence" : { "id" : "j6qfx9qe", "page" : "28", - "label" : "\"V - Favourite characters (dynamic table)\"" } }, + "label" : + { "value" : "\"V - Favourite characters (dynamic table)\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "LEAVDURATION11", "LEAVDURATION12", @@ -2371,17 +2997,25 @@ [ [ { "headerCell" : true, - "label" : "" }, + "label" : + { "value" : "", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"Days\"" }, + "label" : + { "value" : "\"Days\"", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"Unit\"" } ], + "label" : + { "value" : "\"Unit\"", + "type" : "VTL|MD" } } ], [ { "value" : "1", - "label" : "\"Leave with pay\"" }, + "label" : + { "value" : "\"Leave with pay\"", + "type" : "VTL|MD" } }, { "componentType" : "InputNumber", "min" : 0, @@ -2398,10 +3032,14 @@ "options" : [ { "value" : "1", - "label" : "\"Working Days\"" }, + "label" : + { "value" : "\"Working Days\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Calendar days\"" } ], + "label" : + { "value" : "\"Calendar days\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "LEAVDURATION12" }, "bindingDependencies" : @@ -2409,7 +3047,9 @@ [ { "value" : "2", - "label" : "\"Public holiday\"" }, + "label" : + { "value" : "\"Public holiday\"", + "type" : "VTL|MD" } }, { "componentType" : "InputNumber", "min" : 0, @@ -2426,10 +3066,14 @@ "options" : [ { "value" : "1", - "label" : "\"Working Days\"" }, + "label" : + { "value" : "\"Working Days\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Calendar days\"" } ], + "label" : + { "value" : "\"Calendar days\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "LEAVDURATION22" }, "bindingDependencies" : @@ -2437,7 +3081,9 @@ [ { "value" : "3", - "label" : "\"Sick leave\"" }, + "label" : + { "value" : "\"Sick leave\"", + "type" : "VTL|MD" } }, { "componentType" : "InputNumber", "min" : 0, @@ -2454,10 +3100,14 @@ "options" : [ { "value" : "1", - "label" : "\"Working Days\"" }, + "label" : + { "value" : "\"Working Days\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Calendar days\"" } ], + "label" : + { "value" : "\"Calendar days\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "LEAVDURATION32" }, "bindingDependencies" : @@ -2465,7 +3115,9 @@ [ { "value" : "4", - "label" : "\"Maternity\/paternity leave\"" }, + "label" : + { "value" : "\"Maternity\/paternity leave\"", + "type" : "VTL|MD" } }, { "componentType" : "InputNumber", "min" : 0, @@ -2482,10 +3134,14 @@ "options" : [ { "value" : "1", - "label" : "\"Working Days\"" }, + "label" : + { "value" : "\"Working Days\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Calendar days\"" } ], + "label" : + { "value" : "\"Calendar days\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "LEAVDURATION42" }, "bindingDependencies" : @@ -2493,7 +3149,9 @@ [ { "value" : "5", - "label" : "\"Other type\"" }, + "label" : + { "value" : "\"Other type\"", + "type" : "VTL|MD" } }, { "componentType" : "InputNumber", "min" : 0, @@ -2510,10 +3168,14 @@ "options" : [ { "value" : "1", - "label" : "\"Working Days\"" }, + "label" : + { "value" : "\"Working Days\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Calendar days\"" } ], + "label" : + { "value" : "\"Calendar days\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "LEAVDURATION52" }, "bindingDependencies" : @@ -2522,7 +3184,9 @@ { "id" : "kiq5mr0b", "componentType" : "Sequence", "page" : "32", - "label" : "\"VI - Favourite characters (Loop)\"", + "label" : + { "value" : "\"VI - Favourite characters (Loop)\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -2531,7 +3195,9 @@ { "sequence" : { "id" : "kiq5mr0b", "page" : "32", - "label" : "\"VI - Favourite characters (Loop)\"" } } }, + "label" : + { "value" : "\"VI - Favourite characters (Loop)\"", + "type" : "VTL|MD" } } } }, { "id" : "kiq612ky", "componentType" : "InputNumber", @@ -2540,7 +3206,9 @@ "min" : 0, "max" : 20, "decimals" : 0, - "label" : "\"➡ 1. How many characters from the Simpsons family could you precisely describe?\"", + "label" : + { "value" : "\"➡ 1. How many characters from the Simpsons family could you precisely describe?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -2549,7 +3217,9 @@ { "sequence" : { "id" : "kiq5mr0b", "page" : "32", - "label" : "\"VI - Favourite characters (Loop)\"" } }, + "label" : + { "value" : "\"VI - Favourite characters (Loop)\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "NB_CHAR" ], "response" : @@ -2559,7 +3229,9 @@ "componentType" : "Loop", "page" : "34", "paginatedLoop" : false, - "label" : "\"Add a character\"", + "label" : + { "value" : "\"Add a character\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -2568,7 +3240,9 @@ { "sequence" : { "id" : "kiq5mr0b", "page" : "32", - "label" : "\"VI - Favourite characters (Loop)\"" } }, + "label" : + { "value" : "\"VI - Favourite characters (Loop)\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "NAME_CHAR", "AGE_CHAR" ], @@ -2578,7 +3252,9 @@ "componentType" : "Subsequence", "page" : "34", "goToPage" : "34", - "label" : "\"Description of each character\"", + "label" : + { "value" : "\"Description of each character\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -2587,18 +3263,24 @@ { "sequence" : { "id" : "kiq5mr0b", "page" : "32", - "label" : "\"VI - Favourite characters (Loop)\"" }, + "label" : + { "value" : "\"VI - Favourite characters (Loop)\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "kiq5u8d5", "page" : "34", - "label" : "\"Description of each character\"" } } }, + "label" : + { "value" : "\"Description of each character\"", + "type" : "VTL|MD" } } } }, { "id" : "kiq66gtw", "componentType" : "Input", "mandatory" : false, "page" : "34", "maxLength" : 30, - "label" : "\"➡ 2. What is the first name of this character?\"", + "label" : + { "value" : "\"➡ 2. What is the first name of this character?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -2607,11 +3289,15 @@ { "sequence" : { "id" : "kiq5mr0b", "page" : "32", - "label" : "\"VI - Favourite characters (Loop)\"" }, + "label" : + { "value" : "\"VI - Favourite characters (Loop)\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "kiq5u8d5", "page" : "34", - "label" : "\"Description of each character\"" } }, + "label" : + { "value" : "\"Description of each character\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "NAME_CHAR" ], "response" : @@ -2624,7 +3310,9 @@ "min" : 0, "max" : 120, "decimals" : 0, - "label" : "\"➡ 3. How old is this character in the first episode of the Simpsons family?\"", + "label" : + { "value" : "\"➡ 3. How old is this character in the first episode of the Simpsons family?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -2633,11 +3321,15 @@ { "sequence" : { "id" : "kiq5mr0b", "page" : "32", - "label" : "\"VI - Favourite characters (Loop)\"" }, + "label" : + { "value" : "\"VI - Favourite characters (Loop)\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "kiq5u8d5", "page" : "34", - "label" : "\"Description of each character\"" } }, + "label" : + { "value" : "\"Description of each character\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "AGE_CHAR" ], "response" : @@ -2666,7 +3358,9 @@ { "id" : "kiq5xw5p", "componentType" : "Sequence", "page" : "35.1", - "label" : "\"VII - Other details about character named \" || cast(cast(NAME_CHAR,string),string) || \" \"", + "label" : + { "value" : "\"VII - Other details about character named \" || cast(cast(NAME_CHAR,string),string) || \" \"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -2675,7 +3369,9 @@ { "sequence" : { "id" : "kiq5xw5p", "page" : "35.1", - "label" : "\"VII - Other details about character named \" || cast(cast(NAME_CHAR,string),string) || \" \"" } }, + "label" : + { "value" : "\"VII - Other details about character named \" || cast(cast(NAME_CHAR,string),string) || \" \"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "NAME_CHAR" ] }, @@ -2683,7 +3379,9 @@ "componentType" : "CheckboxOne", "mandatory" : false, "page" : "35.2", - "label" : "\"➡ 1. Is character named \" || cast(cast(NAME_CHAR,string),string) || \" your favourite one ? \"", + "label" : + { "value" : "\"➡ 1. Is character named \" || cast(cast(NAME_CHAR,string),string) || \" your favourite one ? \"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -2692,17 +3390,23 @@ { "sequence" : { "id" : "kiq5xw5p", "page" : "35.1", - "label" : "\"VII - Other details about character named \" || cast(cast(NAME_CHAR,string),string) || \" \"" } }, + "label" : + { "value" : "\"VII - Other details about character named \" || cast(cast(NAME_CHAR,string),string) || \" \"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "NAME_CHAR", "FAVCHAR" ], "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "0", - "label" : "\"No\"" } ], + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FAVCHAR" } }, @@ -2711,7 +3415,9 @@ "mandatory" : false, "page" : "35.3", "maxLength" : 255, - "label" : "\"➡ 2. What is your best memory about character named \" || cast(cast(NAME_CHAR,string),string) || \" ? \"", + "label" : + { "value" : "\"➡ 2. What is your best memory about character named \" || cast(cast(NAME_CHAR,string),string) || \" ? \"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -2720,7 +3426,9 @@ { "sequence" : { "id" : "kiq5xw5p", "page" : "35.1", - "label" : "\"VII - Other details about character named \" || cast(cast(NAME_CHAR,string),string) || \" \"" } }, + "label" : + { "value" : "\"VII - Other details about character named \" || cast(cast(NAME_CHAR,string),string) || \" \"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "NAME_CHAR", "MEMORY_CHAR" ], @@ -2730,28 +3438,36 @@ { "id" : "j6z12s2d", "componentType" : "Sequence", "page" : "36", - "label" : "\"VIII - Comment\"", + "label" : + { "value" : "\"VIII - Comment\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "true" }, "hierarchy" : { "sequence" : { "id" : "j6z12s2d", "page" : "36", - "label" : "\"VIII - Comment\"" } } }, + "label" : + { "value" : "\"VIII - Comment\"", + "type" : "VTL|MD" } } } }, { "id" : "j6z0z3us", "componentType" : "Textarea", "mandatory" : false, "page" : "37", "maxLength" : 255, - "label" : "\"➡ 1. Do you have any comment about the survey?\"", + "label" : + { "value" : "\"➡ 1. Do you have any comment about the survey?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "true" }, "hierarchy" : { "sequence" : { "id" : "j6z12s2d", "page" : "36", - "label" : "\"VIII - Comment\"" } }, + "label" : + { "value" : "\"VIII - Comment\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "SURVEY_COMMENT" ], "response" : diff --git a/src/test/resources/examples/xmlh-2-jsonf/out.json b/src/test/resources/examples/xmlh-2-jsonf/out.json index 7b8b9206..2598a9be 100644 --- a/src/test/resources/examples/xmlh-2-jsonf/out.json +++ b/src/test/resources/examples/xmlh-2-jsonf/out.json @@ -2,44 +2,56 @@ { "id" : "i6vwi2506qf2mms", "modele" : "SIMPSONS", "enoCoreVersion" : "2.2.8", - "lunaticModelVersion" : "2.1.2", - "generatingDate" : "28-06-2021 17:07:23", + "lunaticModelVersion" : "2.2.11", + "generatingDate" : "11-03-2022 11:35:02", "pagination" : "question", "maxPage" : "37", - "label" : "Questionnaire SIMPSONS 20201215", + "label" : + { "value" : "Questionnaire SIMPSONS 20201215", + "type" : "VTL|MD" }, "components" : [ { "id" : "j6p0ti5h", "componentType" : "Sequence", "page" : "1", - "label" : "\"I - Introduction\"", + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" }, "declarations" : [ { "id" : "j6p0ti5h-d1", "declarationType" : "COMMENT", "position" : "AFTER_QUESTION_TEXT", - "label" : "\"We’re going to test your knowledge about the simpsons series.Welcome in the simpsons world!\"" } ], + "label" : + { "value" : "\"We’re going to test your knowledge about the simpsons series.Welcome in the simpsons world!\"", + "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "true" }, "hierarchy" : { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" } } }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } } } }, { "id" : "j6p3dkx6", "componentType" : "Textarea", "mandatory" : true, "page" : "2", "maxLength" : 500, - "label" : "\"➡ 1. Before starting, do you have any comments about the Simpsons family?\"", + "label" : + { "value" : "\"➡ 1. Before starting, do you have any comments about the Simpsons family?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "true" }, "hierarchy" : { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" } }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "COMMENT" ], "response" : @@ -49,20 +61,26 @@ "componentType" : "CheckboxBoolean", "mandatory" : false, "page" : "3", - "label" : "\"➡ 2. If you agree to answer this questionnaire, please check the box\"", + "label" : + { "value" : "\"➡ 2. If you agree to answer this questionnaire, please check the box\"", + "type" : "VTL|MD" }, "declarations" : [ { "id" : "j6p0np9q-kir6xl1e", "declarationType" : "COMMENT", "position" : "AFTER_QUESTION_TEXT", - "label" : "\"If not, this is unfortunately the end of this questionnaire.\"" } ], + "label" : + { "value" : "\"If not, this is unfortunately the end of this questionnaire.\"", + "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "true" }, "hierarchy" : { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" } }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "READY" ], "response" : @@ -72,19 +90,25 @@ "componentType" : "FilterDescription", "page" : "3", "filterDescription" : false, - "label" : "\"If you are not ready, please go to the end of the questionnaire\"", + "label" : + { "value" : "\"If you are not ready, please go to the end of the questionnaire\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "true" }, "hierarchy" : { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" } } }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } } } }, { "id" : "j6p0s7o5", "componentType" : "Subsequence", "goToPage" : "4", - "label" : "\"General knowledge of the series\"", + "label" : + { "value" : "\"General knowledge of the series\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -93,18 +117,24 @@ { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6p0s7o5", "page" : "4", - "label" : "\"General knowledge of the series\"" } } }, + "label" : + { "value" : "\"General knowledge of the series\"", + "type" : "VTL|MD" } } } }, { "id" : "j3343qhx", "componentType" : "Input", "mandatory" : false, "page" : "4", "maxLength" : 30, - "label" : "\"➡ 3. Who is the producer?\"", + "label" : + { "value" : "\"➡ 3. Who is the producer?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -113,11 +143,15 @@ { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6p0s7o5", "page" : "4", - "label" : "\"General knowledge of the series\"" } }, + "label" : + { "value" : "\"General knowledge of the series\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "PRODUCER" ], "response" : @@ -130,7 +164,9 @@ "min" : 0, "max" : 99, "decimals" : 0, - "label" : "\"➡ 4. What is the current season number?\"", + "label" : + { "value" : "\"➡ 4. What is the current season number?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -139,11 +175,15 @@ { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6p0s7o5", "page" : "4", - "label" : "\"General knowledge of the series\"" } }, + "label" : + { "value" : "\"General knowledge of the series\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "SEASON_NUMBER" ], "response" : @@ -155,13 +195,17 @@ "page" : "6", "min" : "1900-01-01", "max" : "format-date(current-date(),'[Y0001]-[M01]-[D01]')", - "label" : "\"➡ 5. When was the first episode of Simpsons? (format YYYY-MM-DD)\"", + "label" : + { "value" : "\"➡ 5. When was the first episode of Simpsons? (format YYYY-MM-DD)\"", + "type" : "VTL|MD" }, "declarations" : [ { "id" : "kiq71eoi-kiq7dsy2", "declarationType" : "INSTRUCTION", "position" : "AFTER_QUESTION_TEXT", - "label" : "\"Please answer with YYYY-MM-DD format\"" } ], + "label" : + { "value" : "\"Please answer with YYYY-MM-DD format\"", + "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -170,11 +214,15 @@ { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6p0s7o5", "page" : "4", - "label" : "\"General knowledge of the series\"" } }, + "label" : + { "value" : "\"General knowledge of the series\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "DATEFIRST" ], "dateFormat" : "YYYY-MM-DD", @@ -186,13 +234,17 @@ "mandatory" : false, "page" : "7", "min" : "1980-05", - "label" : "\"➡ 6. When was the first episode of the Simpsons? (format YYYY-MM)\"", + "label" : + { "value" : "\"➡ 6. When was the first episode of the Simpsons? (format YYYY-MM)\"", + "type" : "VTL|MD" }, "declarations" : [ { "id" : "k5nvty2o-k5nvxld8", "declarationType" : "COMMENT", "position" : "AFTER_QUESTION_TEXT", - "label" : "\"Please answer with YYYY-MM format\"" } ], + "label" : + { "value" : "\"Please answer with YYYY-MM format\"", + "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -201,11 +253,15 @@ { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6p0s7o5", "page" : "4", - "label" : "\"General knowledge of the series\"" } }, + "label" : + { "value" : "\"General knowledge of the series\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "DATEYYYYMM" ], "dateFormat" : "YYYY-MM", @@ -218,13 +274,17 @@ "page" : "8", "min" : "1900", "max" : "year-from-date(current-date())", - "label" : "\"➡ 7. When was the first episode of the Simpsons? (format YYYY)\"", + "label" : + { "value" : "\"➡ 7. When was the first episode of the Simpsons? (format YYYY)\"", + "type" : "VTL|MD" }, "declarations" : [ { "id" : "k5nw1fir-k5nvmx3n", "declarationType" : "COMMENT", "position" : "AFTER_QUESTION_TEXT", - "label" : "\"Please answer with YYYY format\"" } ], + "label" : + { "value" : "\"Please answer with YYYY format\"", + "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -233,11 +293,15 @@ { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6p0s7o5", "page" : "4", - "label" : "\"General knowledge of the series\"" } }, + "label" : + { "value" : "\"General knowledge of the series\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "DATEYYYY" ], "dateFormat" : "YYYY", @@ -251,7 +315,9 @@ "min" : 0, "max" : 70, "decimals" : 2, - "label" : "\"➡ 8. How long does an episode last?\"", + "label" : + { "value" : "\"➡ 8. How long does an episode last?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -260,11 +326,15 @@ { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6p0s7o5", "page" : "4", - "label" : "\"General knowledge of the series\"" } }, + "label" : + { "value" : "\"General knowledge of the series\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "DURATIONH" ], "unit" : "heures", @@ -278,7 +348,9 @@ "min" : 0, "max" : 366, "decimals" : 1, - "label" : "\"➡ 9. How long does it take to write a new episode?\"", + "label" : + { "value" : "\"➡ 9. How long does it take to write a new episode?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -287,11 +359,15 @@ { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6p0s7o5", "page" : "4", - "label" : "\"General knowledge of the series\"" } }, + "label" : + { "value" : "\"General knowledge of the series\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "DURATIOND" ], "unit" : "jours", @@ -305,7 +381,9 @@ "min" : 0, "max" : 12, "decimals" : 0, - "label" : "\"➡ 10. How long will it take you to watch all the existing episodes?\"", + "label" : + { "value" : "\"➡ 10. How long will it take you to watch all the existing episodes?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -314,11 +392,15 @@ { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6p0s7o5", "page" : "4", - "label" : "\"General knowledge of the series\"" } }, + "label" : + { "value" : "\"General knowledge of the series\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "DURATIONM" ], "unit" : "mois", @@ -332,7 +414,9 @@ "min" : 0, "max" : 100, "decimals" : 0, - "label" : "\"➡ 11. For how long have you known the Simpsons family?\"", + "label" : + { "value" : "\"➡ 11. For how long have you known the Simpsons family?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -341,11 +425,15 @@ { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6p0s7o5", "page" : "4", - "label" : "\"General knowledge of the series\"" } }, + "label" : + { "value" : "\"General knowledge of the series\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "DURATIONY" ], "unit" : "années", @@ -359,7 +447,9 @@ "min" : 0, "max" : 99, "decimals" : 1, - "label" : "\"➡ 15. In your opinion, how much is the part of audience share in US for the 2016 season?\"", + "label" : + { "value" : "\"➡ 15. In your opinion, how much is the part of audience share in US for the 2016 season?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -368,11 +458,15 @@ { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6p0s7o5", "page" : "4", - "label" : "\"General knowledge of the series\"" } }, + "label" : + { "value" : "\"General knowledge of the series\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "AUDIENCE_SHARE" ], "unit" : "%", @@ -382,13 +476,17 @@ { "id" : "j3341528", "componentType" : "Sequence", "page" : "14", - "label" : "\"II - Simpsons’ city\"", + "label" : + { "value" : "\"II - Simpsons’ city\"", + "type" : "VTL|MD" }, "declarations" : [ { "id" : "j3341528-d2", "declarationType" : "COMMENT", "position" : "AFTER_QUESTION_TEXT", - "label" : "\"This module asks about your general knowledge of the Simpsons city\"" } ], + "label" : + { "value" : "\"This module asks about your general knowledge of the Simpsons city\"", + "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -397,19 +495,25 @@ { "sequence" : { "id" : "j3341528", "page" : "14", - "label" : "\"II - Simpsons’ city\"" } } }, + "label" : + { "value" : "\"II - Simpsons’ city\"", + "type" : "VTL|MD" } } } }, { "id" : "j3343clt", "componentType" : "Radio", "mandatory" : true, "page" : "15", - "label" : "\"➡ 1. In which city do the Simpsons reside?\"", + "label" : + { "value" : "\"➡ 1. In which city do the Simpsons reside?\"", + "type" : "VTL|MD" }, "declarations" : [ { "id" : "j3343clt-d3", "declarationType" : "INSTRUCTION", "position" : "AFTER_QUESTION_TEXT", - "label" : "\"One possible answer\"" } ], + "label" : + { "value" : "\"One possible answer\"", + "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -418,19 +522,27 @@ { "sequence" : { "id" : "j3341528", "page" : "14", - "label" : "\"II - Simpsons’ city\"" } }, + "label" : + { "value" : "\"II - Simpsons’ city\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "CITY" ], "options" : [ { "value" : "00001", - "label" : "\"Springfield\"" }, + "label" : + { "value" : "\"Springfield\"", + "type" : "VTL|MD" } }, { "value" : "00002", - "label" : "\"Shelbyville\"" }, + "label" : + { "value" : "\"Shelbyville\"", + "type" : "VTL|MD" } }, { "value" : "03", - "label" : "\"Seinfeld\"" } ], + "label" : + { "value" : "\"Seinfeld\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "CITY" } }, @@ -438,13 +550,17 @@ "componentType" : "CheckboxOne", "mandatory" : false, "page" : "16", - "label" : "\"➡ 2. Who is the Simpsons city mayor?\"", + "label" : + { "value" : "\"➡ 2. Who is the Simpsons city mayor?\"", + "type" : "VTL|MD" }, "declarations" : [ { "id" : "j6qdfhvw-d4", "declarationType" : "INSTRUCTION", "position" : "AFTER_QUESTION_TEXT", - "label" : "\"Only one possible answer\"" } ], + "label" : + { "value" : "\"Only one possible answer\"", + "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -453,22 +569,32 @@ { "sequence" : { "id" : "j3341528", "page" : "14", - "label" : "\"II - Simpsons’ city\"" } }, + "label" : + { "value" : "\"II - Simpsons’ city\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "MAYOR" ], "options" : [ { "value" : "1", - "label" : "\"Constance Harm\"" }, + "label" : + { "value" : "\"Constance Harm\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Timothy Lovejoy\"" }, + "label" : + { "value" : "\"Timothy Lovejoy\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Joe Quimby\"" }, + "label" : + { "value" : "\"Joe Quimby\"", + "type" : "VTL|MD" } }, { "value" : "OT", - "label" : "\"Other name\"" } ], + "label" : + { "value" : "\"Other name\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "MAYOR" } }, @@ -476,7 +602,9 @@ "componentType" : "Dropdown", "mandatory" : false, "page" : "17", - "label" : "\"➡ 3. In which state do The Simpsons reside?\"", + "label" : + { "value" : "\"➡ 3. In which state do The Simpsons reside?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -485,56 +613,86 @@ { "sequence" : { "id" : "j3341528", "page" : "14", - "label" : "\"II - Simpsons’ city\"" } }, + "label" : + { "value" : "\"II - Simpsons’ city\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "STATE" ], "options" : [ { "value" : "1", - "label" : "\"Washington\"" }, + "label" : + { "value" : "\"Washington\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Kentucky\"" }, + "label" : + { "value" : "\"Kentucky\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Ohio\"" }, + "label" : + { "value" : "\"Ohio\"", + "type" : "VTL|MD" } }, { "value" : "4", - "label" : "\"Maine\"" }, + "label" : + { "value" : "\"Maine\"", + "type" : "VTL|MD" } }, { "value" : "5", - "label" : "\"North Dakota\"" }, + "label" : + { "value" : "\"North Dakota\"", + "type" : "VTL|MD" } }, { "value" : "6", - "label" : "\"Florida\"" }, + "label" : + { "value" : "\"Florida\"", + "type" : "VTL|MD" } }, { "value" : "7", - "label" : "\"North Takoma\"" }, + "label" : + { "value" : "\"North Takoma\"", + "type" : "VTL|MD" } }, { "value" : "8", - "label" : "\"California\"" }, + "label" : + { "value" : "\"California\"", + "type" : "VTL|MD" } }, { "value" : "9", - "label" : "\"Texas\"" }, + "label" : + { "value" : "\"Texas\"", + "type" : "VTL|MD" } }, { "value" : "10", - "label" : "\"Massachusetts\"" }, + "label" : + { "value" : "\"Massachusetts\"", + "type" : "VTL|MD" } }, { "value" : "11", - "label" : "\"Nevada\"" }, + "label" : + { "value" : "\"Nevada\"", + "type" : "VTL|MD" } }, { "value" : "12", - "label" : "\"Illinois\"" }, + "label" : + { "value" : "\"Illinois\"", + "type" : "VTL|MD" } }, { "value" : "13", - "label" : "\"Not in any state, you fool!\"" } ], + "label" : + { "value" : "\"Not in any state, you fool!\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "STATE" } }, { "id" : "j6qe0h9q", "componentType" : "Sequence", "page" : "18", - "label" : "\"III - Characters\"", + "label" : + { "value" : "\"III - Characters\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -543,18 +701,24 @@ { "sequence" : { "id" : "j6qe0h9q", "page" : "18", - "label" : "\"III - Characters\"" } } }, + "label" : + { "value" : "\"III - Characters\"", + "type" : "VTL|MD" } } } }, { "id" : "j334akov", "componentType" : "CheckboxGroup", "page" : "19", - "label" : "\"➡ 1. What are the pet names that the Simpsons family had?\"", + "label" : + { "value" : "\"➡ 1. What are the pet names that the Simpsons family had?\"", + "type" : "VTL|MD" }, "declarations" : [ { "id" : "j334akov-d5", "declarationType" : "INSTRUCTION", "position" : "AFTER_QUESTION_TEXT", - "label" : "\"Several possible answers\"" } ], + "label" : + { "value" : "\"Several possible answers\"", + "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -563,7 +727,9 @@ { "sequence" : { "id" : "j6qe0h9q", "page" : "18", - "label" : "\"III - Characters\"" } }, + "label" : + { "value" : "\"III - Characters\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "PET1", "PET2", @@ -572,22 +738,30 @@ "responses" : [ { "id" : "j334akov-QOP-khokqjtw", - "label" : "\"Santa’s Little Helper\"", + "label" : + { "value" : "\"Santa’s Little Helper\"", + "type" : "VTL|MD" }, "response" : { "name" : "PET1" } }, { "id" : "j334akov-QOP-khokur7a", - "label" : "\"Snowball I\"", + "label" : + { "value" : "\"Snowball I\"", + "type" : "VTL|MD" }, "response" : { "name" : "PET2" } }, { "id" : "j334akov-QOP-khol82ux", - "label" : "\"Coltrane\"", + "label" : + { "value" : "\"Coltrane\"", + "type" : "VTL|MD" }, "response" : { "name" : "PET3" } }, { "id" : "j334akov-QOP-khokqee5", - "label" : "\"Other name\"", + "label" : + { "value" : "\"Other name\"", + "type" : "VTL|MD" }, "response" : { "name" : "PET4" } } ] }, @@ -596,13 +770,17 @@ "mandatory" : false, "page" : "20", "positioning" : "HORIZONTAL", - "label" : "\"➡ 2. Does Jay like the following ice cream flavours?\"", + "label" : + { "value" : "\"➡ 2. Does Jay like the following ice cream flavours?\"", + "type" : "VTL|MD" }, "declarations" : [ { "id" : "d12-SI", "declarationType" : "STATEMENT", "position" : "BEFORE_QUESTION_TEXT", - "label" : "\"Now we are going to know if you think that Jay is a gluton.\"" } ], + "label" : + { "value" : "\"Now we are going to know if you think that Jay is a gluton.\"", + "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -611,7 +789,9 @@ { "sequence" : { "id" : "j6qe0h9q", "page" : "18", - "label" : "\"III - Characters\"" } }, + "label" : + { "value" : "\"III - Characters\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "ICE_FLAVOUR1", "ICE_FLAVOUR2", @@ -621,17 +801,23 @@ [ [ { "value" : "1", - "label" : "\"Vanilla\"" }, + "label" : + { "value" : "\"Vanilla\"", + "type" : "VTL|MD" } }, { "componentType" : "Radio", "id" : "j6p29i81-QOP-kiq5w99y", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "0", - "label" : "\"No\"" } ], + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "ICE_FLAVOUR1" }, "bindingDependencies" : @@ -639,17 +825,23 @@ [ { "value" : "2", - "label" : "\"Strawberry\"" }, + "label" : + { "value" : "\"Strawberry\"", + "type" : "VTL|MD" } }, { "componentType" : "Radio", "id" : "j6p29i81-QOP-kiq5ummf", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "0", - "label" : "\"No\"" } ], + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "ICE_FLAVOUR2" }, "bindingDependencies" : @@ -657,17 +849,23 @@ [ { "value" : "3", - "label" : "\"Apple\"" }, + "label" : + { "value" : "\"Apple\"", + "type" : "VTL|MD" } }, { "componentType" : "Radio", "id" : "j6p29i81-QOP-kiq5mry5", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "0", - "label" : "\"No\"" } ], + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "ICE_FLAVOUR3" }, "bindingDependencies" : @@ -675,17 +873,23 @@ [ { "value" : "OT", - "label" : "\"Other flavour\"" }, + "label" : + { "value" : "\"Other flavour\"", + "type" : "VTL|MD" } }, { "componentType" : "Radio", "id" : "j6p29i81-QOP-kiq5lkr8", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "0", - "label" : "\"No\"" } ], + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "ICE_FLAVOUR4" }, "bindingDependencies" : @@ -696,7 +900,9 @@ "mandatory" : false, "page" : "21", "positioning" : "HORIZONTAL", - "label" : "\"➡ 3. Which character works in the nuclear power plant?\"", + "label" : + { "value" : "\"➡ 3. Which character works in the nuclear power plant?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -705,7 +911,9 @@ { "sequence" : { "id" : "j6qe0h9q", "page" : "18", - "label" : "\"III - Characters\"" } }, + "label" : + { "value" : "\"III - Characters\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "NUCLEAR_CHARACTER1", "NUCLEAR_CHARACTER2", @@ -715,17 +923,23 @@ [ [ { "value" : "1", - "label" : "\"Charles Montgomery Burns\"" }, + "label" : + { "value" : "\"Charles Montgomery Burns\"", + "type" : "VTL|MD" } }, { "componentType" : "Dropdown", "id" : "j6qefnga-QOP-kewva8xg", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "0", - "label" : "\"No\"" } ], + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "NUCLEAR_CHARACTER1" }, "bindingDependencies" : @@ -733,17 +947,23 @@ [ { "value" : "2", - "label" : "\"Carl Carlson\"" }, + "label" : + { "value" : "\"Carl Carlson\"", + "type" : "VTL|MD" } }, { "componentType" : "Dropdown", "id" : "j6qefnga-QOP-kewvj0ad", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "0", - "label" : "\"No\"" } ], + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "NUCLEAR_CHARACTER2" }, "bindingDependencies" : @@ -751,17 +971,23 @@ [ { "value" : "3", - "label" : "\"Otto Mann\"" }, + "label" : + { "value" : "\"Otto Mann\"", + "type" : "VTL|MD" } }, { "componentType" : "Dropdown", "id" : "j6qefnga-QOP-kewveltm", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "0", - "label" : "\"No\"" } ], + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "NUCLEAR_CHARACTER3" }, "bindingDependencies" : @@ -769,17 +995,23 @@ [ { "value" : "4", - "label" : "\"Lenny Leonard\"" }, + "label" : + { "value" : "\"Lenny Leonard\"", + "type" : "VTL|MD" } }, { "componentType" : "Dropdown", "id" : "j6qefnga-QOP-kewvgax4", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "0", - "label" : "\"No\"" } ], + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "NUCLEAR_CHARACTER4" }, "bindingDependencies" : @@ -790,7 +1022,9 @@ "mandatory" : false, "page" : "22", "positioning" : "HORIZONTAL", - "label" : "\"➡ 4. In which city each character was born?\"", + "label" : + { "value" : "\"➡ 4. In which city each character was born?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -799,7 +1033,9 @@ { "sequence" : { "id" : "j6qe0h9q", "page" : "18", - "label" : "\"III - Characters\"" } }, + "label" : + { "value" : "\"III - Characters\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "BIRTH_CHARACTER1", "BIRTH_CHARACTER2", @@ -810,26 +1046,38 @@ [ [ { "value" : "1", - "label" : "\"Selma Bouvier\"" }, + "label" : + { "value" : "\"Selma Bouvier\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "j6yzoc6g-QOP-kewvjvcs", "options" : [ { "value" : "1", - "label" : "\"Albuquerque\"" }, + "label" : + { "value" : "\"Albuquerque\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Springfield\"" }, + "label" : + { "value" : "\"Springfield\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Portland\"" }, + "label" : + { "value" : "\"Portland\"", + "type" : "VTL|MD" } }, { "value" : "4", - "label" : "\"Shelbyville\"" }, + "label" : + { "value" : "\"Shelbyville\"", + "type" : "VTL|MD" } }, { "value" : "5", - "label" : "\"Dagstuhl\"" } ], + "label" : + { "value" : "\"Dagstuhl\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "BIRTH_CHARACTER1" }, "bindingDependencies" : @@ -837,26 +1085,38 @@ [ { "value" : "2", - "label" : "\"Kent Brockman\"" }, + "label" : + { "value" : "\"Kent Brockman\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "j6yzoc6g-QOP-kewvhoda", "options" : [ { "value" : "1", - "label" : "\"Albuquerque\"" }, + "label" : + { "value" : "\"Albuquerque\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Springfield\"" }, + "label" : + { "value" : "\"Springfield\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Portland\"" }, + "label" : + { "value" : "\"Portland\"", + "type" : "VTL|MD" } }, { "value" : "4", - "label" : "\"Shelbyville\"" }, + "label" : + { "value" : "\"Shelbyville\"", + "type" : "VTL|MD" } }, { "value" : "5", - "label" : "\"Dagstuhl\"" } ], + "label" : + { "value" : "\"Dagstuhl\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "BIRTH_CHARACTER2" }, "bindingDependencies" : @@ -864,26 +1124,38 @@ [ { "value" : "3", - "label" : "\"Milhouse Van Houten\"" }, + "label" : + { "value" : "\"Milhouse Van Houten\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "j6yzoc6g-QOP-kewv64s5", "options" : [ { "value" : "1", - "label" : "\"Albuquerque\"" }, + "label" : + { "value" : "\"Albuquerque\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Springfield\"" }, + "label" : + { "value" : "\"Springfield\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Portland\"" }, + "label" : + { "value" : "\"Portland\"", + "type" : "VTL|MD" } }, { "value" : "4", - "label" : "\"Shelbyville\"" }, + "label" : + { "value" : "\"Shelbyville\"", + "type" : "VTL|MD" } }, { "value" : "5", - "label" : "\"Dagstuhl\"" } ], + "label" : + { "value" : "\"Dagstuhl\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "BIRTH_CHARACTER3" }, "bindingDependencies" : @@ -891,26 +1163,38 @@ [ { "value" : "4", - "label" : "\"Nelson Muntz\"" }, + "label" : + { "value" : "\"Nelson Muntz\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "j6yzoc6g-QOP-kewvj21j", "options" : [ { "value" : "1", - "label" : "\"Albuquerque\"" }, + "label" : + { "value" : "\"Albuquerque\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Springfield\"" }, + "label" : + { "value" : "\"Springfield\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Portland\"" }, + "label" : + { "value" : "\"Portland\"", + "type" : "VTL|MD" } }, { "value" : "4", - "label" : "\"Shelbyville\"" }, + "label" : + { "value" : "\"Shelbyville\"", + "type" : "VTL|MD" } }, { "value" : "5", - "label" : "\"Dagstuhl\"" } ], + "label" : + { "value" : "\"Dagstuhl\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "BIRTH_CHARACTER4" }, "bindingDependencies" : @@ -918,26 +1202,38 @@ [ { "value" : "5", - "label" : "\"Crazy Cat Lady\"" }, + "label" : + { "value" : "\"Crazy Cat Lady\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "j6yzoc6g-QOP-kewva5uf", "options" : [ { "value" : "1", - "label" : "\"Albuquerque\"" }, + "label" : + { "value" : "\"Albuquerque\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Springfield\"" }, + "label" : + { "value" : "\"Springfield\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Portland\"" }, + "label" : + { "value" : "\"Portland\"", + "type" : "VTL|MD" } }, { "value" : "4", - "label" : "\"Shelbyville\"" }, + "label" : + { "value" : "\"Shelbyville\"", + "type" : "VTL|MD" } }, { "value" : "5", - "label" : "\"Dagstuhl\"" } ], + "label" : + { "value" : "\"Dagstuhl\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "BIRTH_CHARACTER5" }, "bindingDependencies" : @@ -946,7 +1242,9 @@ { "id" : "j4nw88h2", "componentType" : "Sequence", "page" : "23", - "label" : "\"IV - General questions\"", + "label" : + { "value" : "\"IV - General questions\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -955,12 +1253,16 @@ { "sequence" : { "id" : "j4nw88h2", "page" : "23", - "label" : "\"IV - General questions\"" } } }, + "label" : + { "value" : "\"IV - General questions\"", + "type" : "VTL|MD" } } } }, { "id" : "j6qe237q", "componentType" : "Subsequence", "goToPage" : "24", - "label" : "\"Kwik-E-Mart\"", + "label" : + { "value" : "\"Kwik-E-Mart\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -969,18 +1271,24 @@ { "sequence" : { "id" : "j4nw88h2", "page" : "23", - "label" : "\"IV - General questions\"" }, + "label" : + { "value" : "\"IV - General questions\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6qe237q", "page" : "24", - "label" : "\"Kwik-E-Mart\"" } } }, + "label" : + { "value" : "\"Kwik-E-Mart\"", + "type" : "VTL|MD" } } } }, { "id" : "j4nwc63q", "componentType" : "Table", "mandatory" : false, "page" : "24", "positioning" : "HORIZONTAL", - "label" : "\"➡ 1. Please, specify the percentage of Jay’s expenses in the Kwik-E-Mart for each product?\"", + "label" : + { "value" : "\"➡ 1. Please, specify the percentage of Jay’s expenses in the Kwik-E-Mart for each product?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -989,11 +1297,15 @@ { "sequence" : { "id" : "j4nw88h2", "page" : "23", - "label" : "\"IV - General questions\"" }, + "label" : + { "value" : "\"IV - General questions\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6qe237q", "page" : "24", - "label" : "\"Kwik-E-Mart\"" } }, + "label" : + { "value" : "\"Kwik-E-Mart\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "PERCENTAGE_EXPENSES11", "PERCENTAGE_EXPENSES21", @@ -1007,18 +1319,26 @@ [ { "headerCell" : true, "colspan" : 2, - "label" : "" }, + "label" : + { "value" : "", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"Percentage\"" } ], + "label" : + { "value" : "\"Percentage\"", + "type" : "VTL|MD" } } ], [ { "rowspan" : 2, "value" : "A", - "label" : "\"Frozen products\"" }, + "label" : + { "value" : "\"Frozen products\"", + "type" : "VTL|MD" } }, { "value" : "A1", - "label" : "\"Ice creams\"" }, + "label" : + { "value" : "\"Ice creams\"", + "type" : "VTL|MD" } }, { "componentType" : "InputNumber", "min" : 0, @@ -1033,7 +1353,9 @@ [ { "value" : "A2", - "label" : "\"Jasper Beardly\"" }, + "label" : + { "value" : "\"Jasper Beardly\"", + "type" : "VTL|MD" } }, { "componentType" : "InputNumber", "min" : 0, @@ -1049,10 +1371,14 @@ [ { "rowspan" : 3, "value" : "B", - "label" : "\"Meat\"" }, + "label" : + { "value" : "\"Meat\"", + "type" : "VTL|MD" } }, { "value" : "B1", - "label" : "\"Bacon\"" }, + "label" : + { "value" : "\"Bacon\"", + "type" : "VTL|MD" } }, { "componentType" : "InputNumber", "min" : 0, @@ -1067,7 +1393,9 @@ [ { "value" : "B2", - "label" : "\"Pork chop\"" }, + "label" : + { "value" : "\"Pork chop\"", + "type" : "VTL|MD" } }, { "componentType" : "InputNumber", "min" : 0, @@ -1082,7 +1410,9 @@ [ { "value" : "B3", - "label" : "\"Chicken\"" }, + "label" : + { "value" : "\"Chicken\"", + "type" : "VTL|MD" } }, { "componentType" : "InputNumber", "min" : 0, @@ -1097,10 +1427,14 @@ [ { "value" : "C", - "label" : "\"Compote\"" }, + "label" : + { "value" : "\"Compote\"", + "type" : "VTL|MD" } }, { "value" : "C1", - "label" : "\"Powersauce\"" }, + "label" : + { "value" : "\"Powersauce\"", + "type" : "VTL|MD" } }, { "componentType" : "InputNumber", "min" : 0, @@ -1116,7 +1450,9 @@ [ { "colspan" : 2, "value" : "D", - "label" : "\"Other\"" }, + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } }, { "componentType" : "InputNumber", "min" : 0, @@ -1132,7 +1468,9 @@ [ { "colspan" : 2, "value" : "E", - "label" : "\"Total\"" }, + "label" : + { "value" : "\"Total\"", + "type" : "VTL|MD" } }, { "headerCell" : false } ] ] }, @@ -1141,7 +1479,9 @@ "mandatory" : false, "page" : "25", "positioning" : "HORIZONTAL", - "label" : "\"➡ 2. Please specify if Jay has bought each product in his last food shopping\"", + "label" : + { "value" : "\"➡ 2. Please specify if Jay has bought each product in his last food shopping\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -1150,11 +1490,15 @@ { "sequence" : { "id" : "j4nw88h2", "page" : "23", - "label" : "\"IV - General questions\"" }, + "label" : + { "value" : "\"IV - General questions\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6qe237q", "page" : "24", - "label" : "\"Kwik-E-Mart\"" } }, + "label" : + { "value" : "\"Kwik-E-Mart\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "LAST_FOOD_SHOPPING11", "LAST_FOOD_SHOPPING21", @@ -1169,31 +1513,45 @@ [ { "headerCell" : true, "colspan" : 2, - "label" : "" }, + "label" : + { "value" : "", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"In his last food shopping\"" } ], + "label" : + { "value" : "\"In his last food shopping\"", + "type" : "VTL|MD" } } ], [ { "rowspan" : 2, "value" : "A", - "label" : "\"Frozen products\"" }, + "label" : + { "value" : "\"Frozen products\"", + "type" : "VTL|MD" } }, { "value" : "A1", - "label" : "\"Ice creams\"" }, + "label" : + { "value" : "\"Ice creams\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "k9cg2q5t-QOP-kiq6pljq", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "LAST_FOOD_SHOPPING11" }, "bindingDependencies" : @@ -1201,20 +1559,28 @@ [ { "value" : "A2", - "label" : "\"Jasper Beardly\"" }, + "label" : + { "value" : "\"Jasper Beardly\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "k9cg2q5t-QOP-kiq6mgpv", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "LAST_FOOD_SHOPPING21" }, "bindingDependencies" : @@ -1223,23 +1589,33 @@ [ { "rowspan" : 3, "value" : "B", - "label" : "\"Meat\"" }, + "label" : + { "value" : "\"Meat\"", + "type" : "VTL|MD" } }, { "value" : "B1", - "label" : "\"Bacon\"" }, + "label" : + { "value" : "\"Bacon\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "k9cg2q5t-QOP-kiq6pmtz", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "LAST_FOOD_SHOPPING31" }, "bindingDependencies" : @@ -1247,20 +1623,28 @@ [ { "value" : "B2", - "label" : "\"Pork chop\"" }, + "label" : + { "value" : "\"Pork chop\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "k9cg2q5t-QOP-kiq6k4lf", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "LAST_FOOD_SHOPPING41" }, "bindingDependencies" : @@ -1268,20 +1652,28 @@ [ { "value" : "B3", - "label" : "\"Chicken\"" }, + "label" : + { "value" : "\"Chicken\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "k9cg2q5t-QOP-kiq6p70n", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "LAST_FOOD_SHOPPING51" }, "bindingDependencies" : @@ -1289,23 +1681,33 @@ [ { "value" : "C", - "label" : "\"Compote\"" }, + "label" : + { "value" : "\"Compote\"", + "type" : "VTL|MD" } }, { "value" : "C1", - "label" : "\"Powersauce\"" }, + "label" : + { "value" : "\"Powersauce\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "k9cg2q5t-QOP-kiq6lh5v", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "LAST_FOOD_SHOPPING61" }, "bindingDependencies" : @@ -1314,20 +1716,28 @@ [ { "colspan" : 2, "value" : "D", - "label" : "\"Other\"" }, + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "k9cg2q5t-QOP-kiq703te", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "LAST_FOOD_SHOPPING71" }, "bindingDependencies" : @@ -1336,20 +1746,28 @@ [ { "colspan" : 2, "value" : "E", - "label" : "\"Total\"" }, + "label" : + { "value" : "\"Total\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "k9cg2q5t-QOP-kiq6zpd3", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "LAST_FOOD_SHOPPING81" }, "bindingDependencies" : @@ -1358,7 +1776,9 @@ { "id" : "j6qejudb", "componentType" : "Subsequence", "goToPage" : "26", - "label" : "\"Clowning\"", + "label" : + { "value" : "\"Clowning\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -1367,18 +1787,24 @@ { "sequence" : { "id" : "j4nw88h2", "page" : "23", - "label" : "\"IV - General questions\"" }, + "label" : + { "value" : "\"IV - General questions\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6qejudb", "page" : "26", - "label" : "\"Clowning\"" } } }, + "label" : + { "value" : "\"Clowning\"", + "type" : "VTL|MD" } } } }, { "id" : "kbkjvgel", "componentType" : "Table", "mandatory" : false, "page" : "26", "positioning" : "HORIZONTAL", - "label" : "\"➡ 3. Who did these clownings and tell us what you remember?\"", + "label" : + { "value" : "\"➡ 3. Who did these clownings and tell us what you remember?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -1387,11 +1813,15 @@ { "sequence" : { "id" : "j4nw88h2", "page" : "23", - "label" : "\"IV - General questions\"" }, + "label" : + { "value" : "\"IV - General questions\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6qejudb", "page" : "26", - "label" : "\"Clowning\"" } }, + "label" : + { "value" : "\"Clowning\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "CLOWNING11", "CLOWNING12", @@ -1405,33 +1835,49 @@ [ [ { "headerCell" : true, - "label" : "" }, + "label" : + { "value" : "", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"Clowning\"" }, + "label" : + { "value" : "\"Clowning\"", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"Remember?\"" } ], + "label" : + { "value" : "\"Remember?\"", + "type" : "VTL|MD" } } ], [ { "value" : "1", - "label" : "\"Break the windows of the whole city\"" }, + "label" : + { "value" : "\"Break the windows of the whole city\"", + "type" : "VTL|MD" } }, { "componentType" : "Dropdown", "id" : "kbkjvgel-QOP-kiq6m5n0", "options" : [ { "value" : "1", - "label" : "\"Jay\"" }, + "label" : + { "value" : "\"Jay\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Bart\"" }, + "label" : + { "value" : "\"Bart\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Krusty the clown\"" }, + "label" : + { "value" : "\"Krusty the clown\"", + "type" : "VTL|MD" } }, { "value" : "O", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "CLOWNING11" }, "bindingDependencies" : @@ -1447,23 +1893,33 @@ [ { "value" : "2", - "label" : "\"Loose the violin of his daughter playing poker\"" }, + "label" : + { "value" : "\"Loose the violin of his daughter playing poker\"", + "type" : "VTL|MD" } }, { "componentType" : "Dropdown", "id" : "kbkjvgel-QOP-kiq6l29o", "options" : [ { "value" : "1", - "label" : "\"Jay\"" }, + "label" : + { "value" : "\"Jay\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Bart\"" }, + "label" : + { "value" : "\"Bart\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Krusty the clown\"" }, + "label" : + { "value" : "\"Krusty the clown\"", + "type" : "VTL|MD" } }, { "value" : "O", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "CLOWNING21" }, "bindingDependencies" : @@ -1479,23 +1935,33 @@ [ { "value" : "3", - "label" : "\"Kill Mr Burns\"" }, + "label" : + { "value" : "\"Kill Mr Burns\"", + "type" : "VTL|MD" } }, { "componentType" : "Dropdown", "id" : "kbkjvgel-QOP-kiq72biw", "options" : [ { "value" : "1", - "label" : "\"Jay\"" }, + "label" : + { "value" : "\"Jay\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Bart\"" }, + "label" : + { "value" : "\"Bart\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Krusty the clown\"" }, + "label" : + { "value" : "\"Krusty the clown\"", + "type" : "VTL|MD" } }, { "value" : "O", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "CLOWNING31" }, "bindingDependencies" : @@ -1511,23 +1977,33 @@ [ { "value" : "4", - "label" : "\"Leaving a mechanical object to control the nuclear power plant\"" }, + "label" : + { "value" : "\"Leaving a mechanical object to control the nuclear power plant\"", + "type" : "VTL|MD" } }, { "componentType" : "Dropdown", "id" : "kbkjvgel-QOP-kiq6mlan", "options" : [ { "value" : "1", - "label" : "\"Jay\"" }, + "label" : + { "value" : "\"Jay\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Bart\"" }, + "label" : + { "value" : "\"Bart\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Krusty the clown\"" }, + "label" : + { "value" : "\"Krusty the clown\"", + "type" : "VTL|MD" } }, { "value" : "O", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "CLOWNING41" }, "bindingDependencies" : @@ -1544,7 +2020,9 @@ { "id" : "j6qeh91y", "componentType" : "Subsequence", "goToPage" : "27", - "label" : "\"Transport\"", + "label" : + { "value" : "\"Transport\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -1553,24 +2031,32 @@ { "sequence" : { "id" : "j4nw88h2", "page" : "23", - "label" : "\"IV - General questions\"" }, + "label" : + { "value" : "\"IV - General questions\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6qeh91y", "page" : "27", - "label" : "\"Transport\"" } } }, + "label" : + { "value" : "\"Transport\"", + "type" : "VTL|MD" } } } }, { "id" : "j6p2lwuj", "componentType" : "Table", "mandatory" : false, "page" : "27", "positioning" : "HORIZONTAL", - "label" : "\"➡ 4. Which of the following means of transport were used by the hero and in which country?\"", + "label" : + { "value" : "\"➡ 4. Which of the following means of transport were used by the hero and in which country?\"", + "type" : "VTL|MD" }, "declarations" : [ { "id" : "j6p2lwuj-d10", "declarationType" : "INSTRUCTION", "position" : "AFTER_QUESTION_TEXT", - "label" : "\"Several answers possible: check off all the relevant boxes\"" } ], + "label" : + { "value" : "\"Several answers possible: check off all the relevant boxes\"", + "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -1579,11 +2065,15 @@ { "sequence" : { "id" : "j4nw88h2", "page" : "23", - "label" : "\"IV - General questions\"" }, + "label" : + { "value" : "\"IV - General questions\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6qeh91y", "page" : "27", - "label" : "\"Transport\"" } }, + "label" : + { "value" : "\"Transport\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "TRAVEL11", "TRAVEL12", @@ -1613,29 +2103,45 @@ [ [ { "headerCell" : true, - "label" : "" }, + "label" : + { "value" : "", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"Brazil\"" }, + "label" : + { "value" : "\"Brazil\"", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"Canada\"" }, + "label" : + { "value" : "\"Canada\"", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"Japan\"" }, + "label" : + { "value" : "\"Japan\"", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"France\"" }, + "label" : + { "value" : "\"France\"", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"Other country\"" }, + "label" : + { "value" : "\"Other country\"", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"Other planet\"" } ], + "label" : + { "value" : "\"Other planet\"", + "type" : "VTL|MD" } } ], [ { "value" : "1", - "label" : "\"Car\"" }, + "label" : + { "value" : "\"Car\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxBoolean", "id" : "j6p2lwuj-QOP-kewvm4qg", @@ -1681,7 +2187,9 @@ [ { "value" : "2", - "label" : "\"Bike\"" }, + "label" : + { "value" : "\"Bike\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxBoolean", "id" : "j6p2lwuj-QOP-kewvebem", @@ -1727,7 +2235,9 @@ [ { "value" : "3", - "label" : "\"Skateboard\"" }, + "label" : + { "value" : "\"Skateboard\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxBoolean", "id" : "j6p2lwuj-QOP-kewv62xx", @@ -1773,7 +2283,9 @@ [ { "value" : "4", - "label" : "\"Plane\"" }, + "label" : + { "value" : "\"Plane\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxBoolean", "id" : "j6p2lwuj-QOP-kewvjcck", @@ -1820,7 +2332,9 @@ { "id" : "j6qfx9qe", "componentType" : "Sequence", "page" : "28", - "label" : "\"V - Favourite characters (dynamic table)\"", + "label" : + { "value" : "\"V - Favourite characters (dynamic table)\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -1829,14 +2343,18 @@ { "sequence" : { "id" : "j6qfx9qe", "page" : "28", - "label" : "\"V - Favourite characters (dynamic table)\"" } } }, + "label" : + { "value" : "\"V - Favourite characters (dynamic table)\"", + "type" : "VTL|MD" } } } }, { "id" : "j6qg8rc6", "componentType" : "Table", "mandatory" : false, "page" : "29", "positioning" : "HORIZONTAL", - "label" : "\"➡ 1. Please, complete the following grid with your favourite characters\"", + "label" : + { "value" : "\"➡ 1. Please, complete the following grid with your favourite characters\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -1845,7 +2363,9 @@ { "sequence" : { "id" : "j6qfx9qe", "page" : "28", - "label" : "\"V - Favourite characters (dynamic table)\"" } }, + "label" : + { "value" : "\"V - Favourite characters (dynamic table)\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "FAVOURITE_CHAR1", "FAVOURITE_CHAR2", @@ -1887,13 +2407,19 @@ [ [ { "headerCell" : true, - "label" : "\"Name\"" }, + "label" : + { "value" : "\"Name\"", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"Age\"" }, + "label" : + { "value" : "\"Age\"", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"Member of the Simpsons family\"" } ], + "label" : + { "value" : "\"Member of the Simpsons family\"", + "type" : "VTL|MD" } } ], [ { "componentType" : "Textarea", @@ -1917,13 +2443,19 @@ "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FAVOURITE_CHAR3_1_3" }, "bindingDependencies" : @@ -1951,13 +2483,19 @@ "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FAVOURITE_CHAR3_2_3" }, "bindingDependencies" : @@ -1985,13 +2523,19 @@ "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FAVOURITE_CHAR3_3_3" }, "bindingDependencies" : @@ -2019,13 +2563,19 @@ "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FAVOURITE_CHAR3_4_3" }, "bindingDependencies" : @@ -2053,13 +2603,19 @@ "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FAVOURITE_CHAR3_5_3" }, "bindingDependencies" : @@ -2087,13 +2643,19 @@ "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FAVOURITE_CHAR3_6_3" }, "bindingDependencies" : @@ -2121,13 +2683,19 @@ "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FAVOURITE_CHAR3_7_3" }, "bindingDependencies" : @@ -2155,13 +2723,19 @@ "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FAVOURITE_CHAR3_8_3" }, "bindingDependencies" : @@ -2189,13 +2763,19 @@ "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FAVOURITE_CHAR3_9_3" }, "bindingDependencies" : @@ -2223,13 +2803,19 @@ "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FAVOURITE_CHAR3_10_3" }, "bindingDependencies" : @@ -2240,7 +2826,9 @@ "mandatory" : false, "page" : "30", "positioning" : "HORIZONTAL", - "label" : "\"➡ 2. How has your feeling about the following characters evolved over time?\"", + "label" : + { "value" : "\"➡ 2. How has your feeling about the following characters evolved over time?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -2249,7 +2837,9 @@ { "sequence" : { "id" : "j6qfx9qe", "page" : "28", - "label" : "\"V - Favourite characters (dynamic table)\"" } }, + "label" : + { "value" : "\"V - Favourite characters (dynamic table)\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "FEELCHAREV1", "FEELCHAREV2", @@ -2259,20 +2849,28 @@ [ [ { "value" : "1", - "label" : "\"Jay\"" }, + "label" : + { "value" : "\"Jay\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "jvxux0mi-QOP-kiq76emy", "options" : [ { "value" : "1", - "label" : "\"Up\"" }, + "label" : + { "value" : "\"Up\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Down\"" }, + "label" : + { "value" : "\"Down\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Steady\"" } ], + "label" : + { "value" : "\"Steady\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FEELCHAREV1" }, "bindingDependencies" : @@ -2280,20 +2878,28 @@ [ { "value" : "2", - "label" : "\"Bart\"" }, + "label" : + { "value" : "\"Bart\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "jvxux0mi-QOP-kiq6zv60", "options" : [ { "value" : "1", - "label" : "\"Up\"" }, + "label" : + { "value" : "\"Up\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Down\"" }, + "label" : + { "value" : "\"Down\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Steady\"" } ], + "label" : + { "value" : "\"Steady\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FEELCHAREV2" }, "bindingDependencies" : @@ -2301,20 +2907,28 @@ [ { "value" : "3", - "label" : "\"Krusty the clown\"" }, + "label" : + { "value" : "\"Krusty the clown\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "jvxux0mi-QOP-kiq7bgk3", "options" : [ { "value" : "1", - "label" : "\"Up\"" }, + "label" : + { "value" : "\"Up\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Down\"" }, + "label" : + { "value" : "\"Down\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Steady\"" } ], + "label" : + { "value" : "\"Steady\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FEELCHAREV3" }, "bindingDependencies" : @@ -2322,20 +2936,28 @@ [ { "value" : "O", - "label" : "\"Other\"" }, + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "jvxux0mi-QOP-kiq6ync3", "options" : [ { "value" : "1", - "label" : "\"Up\"" }, + "label" : + { "value" : "\"Up\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Down\"" }, + "label" : + { "value" : "\"Down\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Steady\"" } ], + "label" : + { "value" : "\"Steady\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FEELCHAREV4" }, "bindingDependencies" : @@ -2346,7 +2968,9 @@ "mandatory" : false, "page" : "31", "positioning" : "HORIZONTAL", - "label" : "\"➡ 3. Can you tell how long Bart Simpson has been on leave for each type and whether there has been another type?\"", + "label" : + { "value" : "\"➡ 3. Can you tell how long Bart Simpson has been on leave for each type and whether there has been another type?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -2355,7 +2979,9 @@ { "sequence" : { "id" : "j6qfx9qe", "page" : "28", - "label" : "\"V - Favourite characters (dynamic table)\"" } }, + "label" : + { "value" : "\"V - Favourite characters (dynamic table)\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "LEAVDURATION11", "LEAVDURATION12", @@ -2371,17 +2997,25 @@ [ [ { "headerCell" : true, - "label" : "" }, + "label" : + { "value" : "", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"Days\"" }, + "label" : + { "value" : "\"Days\"", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"Unit\"" } ], + "label" : + { "value" : "\"Unit\"", + "type" : "VTL|MD" } } ], [ { "value" : "1", - "label" : "\"Leave with pay\"" }, + "label" : + { "value" : "\"Leave with pay\"", + "type" : "VTL|MD" } }, { "componentType" : "InputNumber", "min" : 0, @@ -2398,10 +3032,14 @@ "options" : [ { "value" : "1", - "label" : "\"Working Days\"" }, + "label" : + { "value" : "\"Working Days\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Calendar days\"" } ], + "label" : + { "value" : "\"Calendar days\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "LEAVDURATION12" }, "bindingDependencies" : @@ -2409,7 +3047,9 @@ [ { "value" : "2", - "label" : "\"Public holiday\"" }, + "label" : + { "value" : "\"Public holiday\"", + "type" : "VTL|MD" } }, { "componentType" : "InputNumber", "min" : 0, @@ -2426,10 +3066,14 @@ "options" : [ { "value" : "1", - "label" : "\"Working Days\"" }, + "label" : + { "value" : "\"Working Days\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Calendar days\"" } ], + "label" : + { "value" : "\"Calendar days\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "LEAVDURATION22" }, "bindingDependencies" : @@ -2437,7 +3081,9 @@ [ { "value" : "3", - "label" : "\"Sick leave\"" }, + "label" : + { "value" : "\"Sick leave\"", + "type" : "VTL|MD" } }, { "componentType" : "InputNumber", "min" : 0, @@ -2454,10 +3100,14 @@ "options" : [ { "value" : "1", - "label" : "\"Working Days\"" }, + "label" : + { "value" : "\"Working Days\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Calendar days\"" } ], + "label" : + { "value" : "\"Calendar days\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "LEAVDURATION32" }, "bindingDependencies" : @@ -2465,7 +3115,9 @@ [ { "value" : "4", - "label" : "\"Maternity\/paternity leave\"" }, + "label" : + { "value" : "\"Maternity\/paternity leave\"", + "type" : "VTL|MD" } }, { "componentType" : "InputNumber", "min" : 0, @@ -2482,10 +3134,14 @@ "options" : [ { "value" : "1", - "label" : "\"Working Days\"" }, + "label" : + { "value" : "\"Working Days\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Calendar days\"" } ], + "label" : + { "value" : "\"Calendar days\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "LEAVDURATION42" }, "bindingDependencies" : @@ -2493,7 +3149,9 @@ [ { "value" : "5", - "label" : "\"Other type\"" }, + "label" : + { "value" : "\"Other type\"", + "type" : "VTL|MD" } }, { "componentType" : "InputNumber", "min" : 0, @@ -2510,10 +3168,14 @@ "options" : [ { "value" : "1", - "label" : "\"Working Days\"" }, + "label" : + { "value" : "\"Working Days\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Calendar days\"" } ], + "label" : + { "value" : "\"Calendar days\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "LEAVDURATION52" }, "bindingDependencies" : @@ -2522,7 +3184,9 @@ { "id" : "kiq5mr0b", "componentType" : "Sequence", "page" : "32", - "label" : "\"VI - Favourite characters (Loop)\"", + "label" : + { "value" : "\"VI - Favourite characters (Loop)\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -2531,7 +3195,9 @@ { "sequence" : { "id" : "kiq5mr0b", "page" : "32", - "label" : "\"VI - Favourite characters (Loop)\"" } } }, + "label" : + { "value" : "\"VI - Favourite characters (Loop)\"", + "type" : "VTL|MD" } } } }, { "id" : "kiq612ky", "componentType" : "InputNumber", @@ -2540,7 +3206,9 @@ "min" : 0, "max" : 20, "decimals" : 0, - "label" : "\"➡ 1. How many characters from the Simpsons family could you precisely describe?\"", + "label" : + { "value" : "\"➡ 1. How many characters from the Simpsons family could you precisely describe?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -2549,7 +3217,9 @@ { "sequence" : { "id" : "kiq5mr0b", "page" : "32", - "label" : "\"VI - Favourite characters (Loop)\"" } }, + "label" : + { "value" : "\"VI - Favourite characters (Loop)\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "NB_CHAR" ], "response" : @@ -2559,7 +3229,9 @@ "componentType" : "Loop", "page" : "34", "paginatedLoop" : false, - "label" : "\"Add a character\"", + "label" : + { "value" : "\"Add a character\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -2568,7 +3240,9 @@ { "sequence" : { "id" : "kiq5mr0b", "page" : "32", - "label" : "\"VI - Favourite characters (Loop)\"" } }, + "label" : + { "value" : "\"VI - Favourite characters (Loop)\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "NAME_CHAR", "AGE_CHAR" ], @@ -2578,7 +3252,9 @@ "componentType" : "Subsequence", "page" : "34", "goToPage" : "34", - "label" : "\"Description of each character\"", + "label" : + { "value" : "\"Description of each character\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -2587,18 +3263,24 @@ { "sequence" : { "id" : "kiq5mr0b", "page" : "32", - "label" : "\"VI - Favourite characters (Loop)\"" }, + "label" : + { "value" : "\"VI - Favourite characters (Loop)\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "kiq5u8d5", "page" : "34", - "label" : "\"Description of each character\"" } } }, + "label" : + { "value" : "\"Description of each character\"", + "type" : "VTL|MD" } } } }, { "id" : "kiq66gtw", "componentType" : "Input", "mandatory" : false, "page" : "34", "maxLength" : 30, - "label" : "\"➡ 2. What is the first name of this character?\"", + "label" : + { "value" : "\"➡ 2. What is the first name of this character?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -2607,11 +3289,15 @@ { "sequence" : { "id" : "kiq5mr0b", "page" : "32", - "label" : "\"VI - Favourite characters (Loop)\"" }, + "label" : + { "value" : "\"VI - Favourite characters (Loop)\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "kiq5u8d5", "page" : "34", - "label" : "\"Description of each character\"" } }, + "label" : + { "value" : "\"Description of each character\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "NAME_CHAR" ], "response" : @@ -2624,7 +3310,9 @@ "min" : 0, "max" : 120, "decimals" : 0, - "label" : "\"➡ 3. How old is this character in the first episode of the Simpsons family?\"", + "label" : + { "value" : "\"➡ 3. How old is this character in the first episode of the Simpsons family?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -2633,11 +3321,15 @@ { "sequence" : { "id" : "kiq5mr0b", "page" : "32", - "label" : "\"VI - Favourite characters (Loop)\"" }, + "label" : + { "value" : "\"VI - Favourite characters (Loop)\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "kiq5u8d5", "page" : "34", - "label" : "\"Description of each character\"" } }, + "label" : + { "value" : "\"Description of each character\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "AGE_CHAR" ], "response" : @@ -2666,7 +3358,9 @@ { "id" : "kiq5xw5p", "componentType" : "Sequence", "page" : "35.1", - "label" : "\"VII - Other details about character named \" || cast(cast(NAME_CHAR,string),string) || \" \"", + "label" : + { "value" : "\"VII - Other details about character named \" || cast(cast(NAME_CHAR,string),string) || \" \"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -2675,7 +3369,9 @@ { "sequence" : { "id" : "kiq5xw5p", "page" : "35.1", - "label" : "\"VII - Other details about character named \" || cast(cast(NAME_CHAR,string),string) || \" \"" } }, + "label" : + { "value" : "\"VII - Other details about character named \" || cast(cast(NAME_CHAR,string),string) || \" \"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "NAME_CHAR" ] }, @@ -2683,7 +3379,9 @@ "componentType" : "CheckboxOne", "mandatory" : false, "page" : "35.2", - "label" : "\"➡ 1. Is character named \" || cast(cast(NAME_CHAR,string),string) || \" your favourite one ? \"", + "label" : + { "value" : "\"➡ 1. Is character named \" || cast(cast(NAME_CHAR,string),string) || \" your favourite one ? \"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -2692,17 +3390,23 @@ { "sequence" : { "id" : "kiq5xw5p", "page" : "35.1", - "label" : "\"VII - Other details about character named \" || cast(cast(NAME_CHAR,string),string) || \" \"" } }, + "label" : + { "value" : "\"VII - Other details about character named \" || cast(cast(NAME_CHAR,string),string) || \" \"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "NAME_CHAR", "FAVCHAR" ], "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "0", - "label" : "\"No\"" } ], + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FAVCHAR" } }, @@ -2711,7 +3415,9 @@ "mandatory" : false, "page" : "35.3", "maxLength" : 255, - "label" : "\"➡ 2. What is your best memory about character named \" || cast(cast(NAME_CHAR,string),string) || \" ? \"", + "label" : + { "value" : "\"➡ 2. What is your best memory about character named \" || cast(cast(NAME_CHAR,string),string) || \" ? \"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -2720,7 +3426,9 @@ { "sequence" : { "id" : "kiq5xw5p", "page" : "35.1", - "label" : "\"VII - Other details about character named \" || cast(cast(NAME_CHAR,string),string) || \" \"" } }, + "label" : + { "value" : "\"VII - Other details about character named \" || cast(cast(NAME_CHAR,string),string) || \" \"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "NAME_CHAR", "MEMORY_CHAR" ], @@ -2730,28 +3438,36 @@ { "id" : "j6z12s2d", "componentType" : "Sequence", "page" : "36", - "label" : "\"VIII - Comment\"", + "label" : + { "value" : "\"VIII - Comment\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "true" }, "hierarchy" : { "sequence" : { "id" : "j6z12s2d", "page" : "36", - "label" : "\"VIII - Comment\"" } } }, + "label" : + { "value" : "\"VIII - Comment\"", + "type" : "VTL|MD" } } } }, { "id" : "j6z0z3us", "componentType" : "Textarea", "mandatory" : false, "page" : "37", "maxLength" : 255, - "label" : "\"➡ 1. Do you have any comment about the survey?\"", + "label" : + { "value" : "\"➡ 1. Do you have any comment about the survey?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "true" }, "hierarchy" : { "sequence" : { "id" : "j6z12s2d", "page" : "36", - "label" : "\"VIII - Comment\"" } }, + "label" : + { "value" : "\"VIII - Comment\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "SURVEY_COMMENT" ], "response" : diff --git a/src/test/resources/examples/xmlh-2-jsonh/out.json b/src/test/resources/examples/xmlh-2-jsonh/out.json index 7bf0c889..769a5a49 100644 --- a/src/test/resources/examples/xmlh-2-jsonh/out.json +++ b/src/test/resources/examples/xmlh-2-jsonh/out.json @@ -2,30 +2,38 @@ { "id" : "i6vwi2506qf2mms", "modele" : "SIMPSONS", "enoCoreVersion" : "2.2.8", - "lunaticModelVersion" : "2.1.2", - "generatingDate" : "28-06-2021 17:07:23", + "lunaticModelVersion" : "2.2.11", + "generatingDate" : "11-03-2022 11:39:17", "pagination" : "question", "maxPage" : "37", - "label" : "Questionnaire SIMPSONS 20201215", + "label" : + { "value" : "Questionnaire SIMPSONS 20201215", + "type" : "VTL|MD" }, "components" : [ { "id" : "j6p0ti5h", "componentType" : "Sequence", "page" : "1", - "label" : "\"I - Introduction\"", + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" }, "declarations" : [ { "id" : "j6p0ti5h-d1", "declarationType" : "COMMENT", "position" : "AFTER_QUESTION_TEXT", - "label" : "\"We’re going to test your knowledge about the simpsons series.Welcome in the simpsons world!\"" } ], + "label" : + { "value" : "\"We’re going to test your knowledge about the simpsons series.Welcome in the simpsons world!\"", + "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "true" }, "hierarchy" : { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" } }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } } }, "components" : [ { "id" : "j6p3dkx6", @@ -33,14 +41,18 @@ "mandatory" : true, "page" : "2", "maxLength" : 500, - "label" : "\"➡ 1. Before starting, do you have any comments about the Simpsons family?\"", + "label" : + { "value" : "\"➡ 1. Before starting, do you have any comments about the Simpsons family?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "true" }, "hierarchy" : { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" } }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "COMMENT" ], "response" : @@ -50,20 +62,26 @@ "componentType" : "CheckboxBoolean", "mandatory" : false, "page" : "3", - "label" : "\"➡ 2. If you agree to answer this questionnaire, please check the box\"", + "label" : + { "value" : "\"➡ 2. If you agree to answer this questionnaire, please check the box\"", + "type" : "VTL|MD" }, "declarations" : [ { "id" : "j6p0np9q-kir6xl1e", "declarationType" : "COMMENT", "position" : "AFTER_QUESTION_TEXT", - "label" : "\"If not, this is unfortunately the end of this questionnaire.\"" } ], + "label" : + { "value" : "\"If not, this is unfortunately the end of this questionnaire.\"", + "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "true" }, "hierarchy" : { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" } }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "READY" ], "response" : @@ -73,19 +91,25 @@ "componentType" : "FilterDescription", "page" : "3", "filterDescription" : false, - "label" : "\"If you are not ready, please go to the end of the questionnaire\"", + "label" : + { "value" : "\"If you are not ready, please go to the end of the questionnaire\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "true" }, "hierarchy" : { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" } } }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } } } }, { "id" : "j6p0s7o5", "componentType" : "Subsequence", "goToPage" : "4", - "label" : "\"General knowledge of the series\"", + "label" : + { "value" : "\"General knowledge of the series\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -94,11 +118,15 @@ { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6p0s7o5", "page" : "4", - "label" : "\"General knowledge of the series\"" } }, + "label" : + { "value" : "\"General knowledge of the series\"", + "type" : "VTL|MD" } } }, "components" : [ { "id" : "j3343qhx", @@ -106,7 +134,9 @@ "mandatory" : false, "page" : "4", "maxLength" : 30, - "label" : "\"➡ 3. Who is the producer?\"", + "label" : + { "value" : "\"➡ 3. Who is the producer?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -115,11 +145,15 @@ { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6p0s7o5", "page" : "4", - "label" : "\"General knowledge of the series\"" } }, + "label" : + { "value" : "\"General knowledge of the series\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "PRODUCER" ], "response" : @@ -132,7 +166,9 @@ "min" : 0, "max" : 99, "decimals" : 0, - "label" : "\"➡ 4. What is the current season number?\"", + "label" : + { "value" : "\"➡ 4. What is the current season number?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -141,11 +177,15 @@ { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6p0s7o5", "page" : "4", - "label" : "\"General knowledge of the series\"" } }, + "label" : + { "value" : "\"General knowledge of the series\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "SEASON_NUMBER" ], "response" : @@ -157,13 +197,17 @@ "page" : "6", "min" : "1900-01-01", "max" : "format-date(current-date(),'[Y0001]-[M01]-[D01]')", - "label" : "\"➡ 5. When was the first episode of Simpsons? (format YYYY-MM-DD)\"", + "label" : + { "value" : "\"➡ 5. When was the first episode of Simpsons? (format YYYY-MM-DD)\"", + "type" : "VTL|MD" }, "declarations" : [ { "id" : "kiq71eoi-kiq7dsy2", "declarationType" : "INSTRUCTION", "position" : "AFTER_QUESTION_TEXT", - "label" : "\"Please answer with YYYY-MM-DD format\"" } ], + "label" : + { "value" : "\"Please answer with YYYY-MM-DD format\"", + "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -172,11 +216,15 @@ { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6p0s7o5", "page" : "4", - "label" : "\"General knowledge of the series\"" } }, + "label" : + { "value" : "\"General knowledge of the series\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "DATEFIRST" ], "dateFormat" : "YYYY-MM-DD", @@ -188,13 +236,17 @@ "mandatory" : false, "page" : "7", "min" : "1980-05", - "label" : "\"➡ 6. When was the first episode of the Simpsons? (format YYYY-MM)\"", + "label" : + { "value" : "\"➡ 6. When was the first episode of the Simpsons? (format YYYY-MM)\"", + "type" : "VTL|MD" }, "declarations" : [ { "id" : "k5nvty2o-k5nvxld8", "declarationType" : "COMMENT", "position" : "AFTER_QUESTION_TEXT", - "label" : "\"Please answer with YYYY-MM format\"" } ], + "label" : + { "value" : "\"Please answer with YYYY-MM format\"", + "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -203,11 +255,15 @@ { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6p0s7o5", "page" : "4", - "label" : "\"General knowledge of the series\"" } }, + "label" : + { "value" : "\"General knowledge of the series\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "DATEYYYYMM" ], "dateFormat" : "YYYY-MM", @@ -220,13 +276,17 @@ "page" : "8", "min" : "1900", "max" : "year-from-date(current-date())", - "label" : "\"➡ 7. When was the first episode of the Simpsons? (format YYYY)\"", + "label" : + { "value" : "\"➡ 7. When was the first episode of the Simpsons? (format YYYY)\"", + "type" : "VTL|MD" }, "declarations" : [ { "id" : "k5nw1fir-k5nvmx3n", "declarationType" : "COMMENT", "position" : "AFTER_QUESTION_TEXT", - "label" : "\"Please answer with YYYY format\"" } ], + "label" : + { "value" : "\"Please answer with YYYY format\"", + "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -235,11 +295,15 @@ { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6p0s7o5", "page" : "4", - "label" : "\"General knowledge of the series\"" } }, + "label" : + { "value" : "\"General knowledge of the series\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "DATEYYYY" ], "dateFormat" : "YYYY", @@ -253,7 +317,9 @@ "min" : 0, "max" : 70, "decimals" : 2, - "label" : "\"➡ 8. How long does an episode last?\"", + "label" : + { "value" : "\"➡ 8. How long does an episode last?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -262,11 +328,15 @@ { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6p0s7o5", "page" : "4", - "label" : "\"General knowledge of the series\"" } }, + "label" : + { "value" : "\"General knowledge of the series\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "DURATIONH" ], "unit" : "heures", @@ -280,7 +350,9 @@ "min" : 0, "max" : 366, "decimals" : 1, - "label" : "\"➡ 9. How long does it take to write a new episode?\"", + "label" : + { "value" : "\"➡ 9. How long does it take to write a new episode?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -289,11 +361,15 @@ { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6p0s7o5", "page" : "4", - "label" : "\"General knowledge of the series\"" } }, + "label" : + { "value" : "\"General knowledge of the series\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "DURATIOND" ], "unit" : "jours", @@ -307,7 +383,9 @@ "min" : 0, "max" : 12, "decimals" : 0, - "label" : "\"➡ 10. How long will it take you to watch all the existing episodes?\"", + "label" : + { "value" : "\"➡ 10. How long will it take you to watch all the existing episodes?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -316,11 +394,15 @@ { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6p0s7o5", "page" : "4", - "label" : "\"General knowledge of the series\"" } }, + "label" : + { "value" : "\"General knowledge of the series\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "DURATIONM" ], "unit" : "mois", @@ -334,7 +416,9 @@ "min" : 0, "max" : 100, "decimals" : 0, - "label" : "\"➡ 11. For how long have you known the Simpsons family?\"", + "label" : + { "value" : "\"➡ 11. For how long have you known the Simpsons family?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -343,11 +427,15 @@ { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6p0s7o5", "page" : "4", - "label" : "\"General knowledge of the series\"" } }, + "label" : + { "value" : "\"General knowledge of the series\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "DURATIONY" ], "unit" : "années", @@ -361,7 +449,9 @@ "min" : 0, "max" : 99, "decimals" : 1, - "label" : "\"➡ 15. In your opinion, how much is the part of audience share in US for the 2016 season?\"", + "label" : + { "value" : "\"➡ 15. In your opinion, how much is the part of audience share in US for the 2016 season?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -370,11 +460,15 @@ { "sequence" : { "id" : "j6p0ti5h", "page" : "1", - "label" : "\"I - Introduction\"" }, + "label" : + { "value" : "\"I - Introduction\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6p0s7o5", "page" : "4", - "label" : "\"General knowledge of the series\"" } }, + "label" : + { "value" : "\"General knowledge of the series\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "AUDIENCE_SHARE" ], "unit" : "%", @@ -384,13 +478,17 @@ { "id" : "j3341528", "componentType" : "Sequence", "page" : "14", - "label" : "\"II - Simpsons’ city\"", + "label" : + { "value" : "\"II - Simpsons’ city\"", + "type" : "VTL|MD" }, "declarations" : [ { "id" : "j3341528-d2", "declarationType" : "COMMENT", "position" : "AFTER_QUESTION_TEXT", - "label" : "\"This module asks about your general knowledge of the Simpsons city\"" } ], + "label" : + { "value" : "\"This module asks about your general knowledge of the Simpsons city\"", + "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -399,20 +497,26 @@ { "sequence" : { "id" : "j3341528", "page" : "14", - "label" : "\"II - Simpsons’ city\"" } }, + "label" : + { "value" : "\"II - Simpsons’ city\"", + "type" : "VTL|MD" } } }, "components" : [ { "id" : "j3343clt", "componentType" : "Radio", "mandatory" : true, "page" : "15", - "label" : "\"➡ 1. In which city do the Simpsons reside?\"", + "label" : + { "value" : "\"➡ 1. In which city do the Simpsons reside?\"", + "type" : "VTL|MD" }, "declarations" : [ { "id" : "j3343clt-d3", "declarationType" : "INSTRUCTION", "position" : "AFTER_QUESTION_TEXT", - "label" : "\"One possible answer\"" } ], + "label" : + { "value" : "\"One possible answer\"", + "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -421,19 +525,27 @@ { "sequence" : { "id" : "j3341528", "page" : "14", - "label" : "\"II - Simpsons’ city\"" } }, + "label" : + { "value" : "\"II - Simpsons’ city\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "CITY" ], "options" : [ { "value" : "00001", - "label" : "\"Springfield\"" }, + "label" : + { "value" : "\"Springfield\"", + "type" : "VTL|MD" } }, { "value" : "00002", - "label" : "\"Shelbyville\"" }, + "label" : + { "value" : "\"Shelbyville\"", + "type" : "VTL|MD" } }, { "value" : "03", - "label" : "\"Seinfeld\"" } ], + "label" : + { "value" : "\"Seinfeld\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "CITY" } }, @@ -441,13 +553,17 @@ "componentType" : "CheckboxOne", "mandatory" : false, "page" : "16", - "label" : "\"➡ 2. Who is the Simpsons city mayor?\"", + "label" : + { "value" : "\"➡ 2. Who is the Simpsons city mayor?\"", + "type" : "VTL|MD" }, "declarations" : [ { "id" : "j6qdfhvw-d4", "declarationType" : "INSTRUCTION", "position" : "AFTER_QUESTION_TEXT", - "label" : "\"Only one possible answer\"" } ], + "label" : + { "value" : "\"Only one possible answer\"", + "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -456,22 +572,32 @@ { "sequence" : { "id" : "j3341528", "page" : "14", - "label" : "\"II - Simpsons’ city\"" } }, + "label" : + { "value" : "\"II - Simpsons’ city\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "MAYOR" ], "options" : [ { "value" : "1", - "label" : "\"Constance Harm\"" }, + "label" : + { "value" : "\"Constance Harm\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Timothy Lovejoy\"" }, + "label" : + { "value" : "\"Timothy Lovejoy\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Joe Quimby\"" }, + "label" : + { "value" : "\"Joe Quimby\"", + "type" : "VTL|MD" } }, { "value" : "OT", - "label" : "\"Other name\"" } ], + "label" : + { "value" : "\"Other name\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "MAYOR" } }, @@ -479,7 +605,9 @@ "componentType" : "Dropdown", "mandatory" : false, "page" : "17", - "label" : "\"➡ 3. In which state do The Simpsons reside?\"", + "label" : + { "value" : "\"➡ 3. In which state do The Simpsons reside?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -488,56 +616,86 @@ { "sequence" : { "id" : "j3341528", "page" : "14", - "label" : "\"II - Simpsons’ city\"" } }, + "label" : + { "value" : "\"II - Simpsons’ city\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "STATE" ], "options" : [ { "value" : "1", - "label" : "\"Washington\"" }, + "label" : + { "value" : "\"Washington\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Kentucky\"" }, + "label" : + { "value" : "\"Kentucky\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Ohio\"" }, + "label" : + { "value" : "\"Ohio\"", + "type" : "VTL|MD" } }, { "value" : "4", - "label" : "\"Maine\"" }, + "label" : + { "value" : "\"Maine\"", + "type" : "VTL|MD" } }, { "value" : "5", - "label" : "\"North Dakota\"" }, + "label" : + { "value" : "\"North Dakota\"", + "type" : "VTL|MD" } }, { "value" : "6", - "label" : "\"Florida\"" }, + "label" : + { "value" : "\"Florida\"", + "type" : "VTL|MD" } }, { "value" : "7", - "label" : "\"North Takoma\"" }, + "label" : + { "value" : "\"North Takoma\"", + "type" : "VTL|MD" } }, { "value" : "8", - "label" : "\"California\"" }, + "label" : + { "value" : "\"California\"", + "type" : "VTL|MD" } }, { "value" : "9", - "label" : "\"Texas\"" }, + "label" : + { "value" : "\"Texas\"", + "type" : "VTL|MD" } }, { "value" : "10", - "label" : "\"Massachusetts\"" }, + "label" : + { "value" : "\"Massachusetts\"", + "type" : "VTL|MD" } }, { "value" : "11", - "label" : "\"Nevada\"" }, + "label" : + { "value" : "\"Nevada\"", + "type" : "VTL|MD" } }, { "value" : "12", - "label" : "\"Illinois\"" }, + "label" : + { "value" : "\"Illinois\"", + "type" : "VTL|MD" } }, { "value" : "13", - "label" : "\"Not in any state, you fool!\"" } ], + "label" : + { "value" : "\"Not in any state, you fool!\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "STATE" } } ] }, { "id" : "j6qe0h9q", "componentType" : "Sequence", "page" : "18", - "label" : "\"III - Characters\"", + "label" : + { "value" : "\"III - Characters\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -546,19 +704,25 @@ { "sequence" : { "id" : "j6qe0h9q", "page" : "18", - "label" : "\"III - Characters\"" } }, + "label" : + { "value" : "\"III - Characters\"", + "type" : "VTL|MD" } } }, "components" : [ { "id" : "j334akov", "componentType" : "CheckboxGroup", "page" : "19", - "label" : "\"➡ 1. What are the pet names that the Simpsons family had?\"", + "label" : + { "value" : "\"➡ 1. What are the pet names that the Simpsons family had?\"", + "type" : "VTL|MD" }, "declarations" : [ { "id" : "j334akov-d5", "declarationType" : "INSTRUCTION", "position" : "AFTER_QUESTION_TEXT", - "label" : "\"Several possible answers\"" } ], + "label" : + { "value" : "\"Several possible answers\"", + "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -567,7 +731,9 @@ { "sequence" : { "id" : "j6qe0h9q", "page" : "18", - "label" : "\"III - Characters\"" } }, + "label" : + { "value" : "\"III - Characters\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "PET1", "PET2", @@ -576,22 +742,30 @@ "responses" : [ { "id" : "j334akov-QOP-khokqjtw", - "label" : "\"Santa’s Little Helper\"", + "label" : + { "value" : "\"Santa’s Little Helper\"", + "type" : "VTL|MD" }, "response" : { "name" : "PET1" } }, { "id" : "j334akov-QOP-khokur7a", - "label" : "\"Snowball I\"", + "label" : + { "value" : "\"Snowball I\"", + "type" : "VTL|MD" }, "response" : { "name" : "PET2" } }, { "id" : "j334akov-QOP-khol82ux", - "label" : "\"Coltrane\"", + "label" : + { "value" : "\"Coltrane\"", + "type" : "VTL|MD" }, "response" : { "name" : "PET3" } }, { "id" : "j334akov-QOP-khokqee5", - "label" : "\"Other name\"", + "label" : + { "value" : "\"Other name\"", + "type" : "VTL|MD" }, "response" : { "name" : "PET4" } } ] }, @@ -600,13 +774,17 @@ "mandatory" : false, "page" : "20", "positioning" : "HORIZONTAL", - "label" : "\"➡ 2. Does Jay like the following ice cream flavours?\"", + "label" : + { "value" : "\"➡ 2. Does Jay like the following ice cream flavours?\"", + "type" : "VTL|MD" }, "declarations" : [ { "id" : "d12-SI", "declarationType" : "STATEMENT", "position" : "BEFORE_QUESTION_TEXT", - "label" : "\"Now we are going to know if you think that Jay is a gluton.\"" } ], + "label" : + { "value" : "\"Now we are going to know if you think that Jay is a gluton.\"", + "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -615,7 +793,9 @@ { "sequence" : { "id" : "j6qe0h9q", "page" : "18", - "label" : "\"III - Characters\"" } }, + "label" : + { "value" : "\"III - Characters\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "ICE_FLAVOUR1", "ICE_FLAVOUR2", @@ -625,17 +805,23 @@ [ [ { "value" : "1", - "label" : "\"Vanilla\"" }, + "label" : + { "value" : "\"Vanilla\"", + "type" : "VTL|MD" } }, { "componentType" : "Radio", "id" : "j6p29i81-QOP-kiq5w99y", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "0", - "label" : "\"No\"" } ], + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "ICE_FLAVOUR1" }, "bindingDependencies" : @@ -643,17 +829,23 @@ [ { "value" : "2", - "label" : "\"Strawberry\"" }, + "label" : + { "value" : "\"Strawberry\"", + "type" : "VTL|MD" } }, { "componentType" : "Radio", "id" : "j6p29i81-QOP-kiq5ummf", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "0", - "label" : "\"No\"" } ], + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "ICE_FLAVOUR2" }, "bindingDependencies" : @@ -661,17 +853,23 @@ [ { "value" : "3", - "label" : "\"Apple\"" }, + "label" : + { "value" : "\"Apple\"", + "type" : "VTL|MD" } }, { "componentType" : "Radio", "id" : "j6p29i81-QOP-kiq5mry5", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "0", - "label" : "\"No\"" } ], + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "ICE_FLAVOUR3" }, "bindingDependencies" : @@ -679,17 +877,23 @@ [ { "value" : "OT", - "label" : "\"Other flavour\"" }, + "label" : + { "value" : "\"Other flavour\"", + "type" : "VTL|MD" } }, { "componentType" : "Radio", "id" : "j6p29i81-QOP-kiq5lkr8", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "0", - "label" : "\"No\"" } ], + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "ICE_FLAVOUR4" }, "bindingDependencies" : @@ -700,7 +904,9 @@ "mandatory" : false, "page" : "21", "positioning" : "HORIZONTAL", - "label" : "\"➡ 3. Which character works in the nuclear power plant?\"", + "label" : + { "value" : "\"➡ 3. Which character works in the nuclear power plant?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -709,7 +915,9 @@ { "sequence" : { "id" : "j6qe0h9q", "page" : "18", - "label" : "\"III - Characters\"" } }, + "label" : + { "value" : "\"III - Characters\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "NUCLEAR_CHARACTER1", "NUCLEAR_CHARACTER2", @@ -719,17 +927,23 @@ [ [ { "value" : "1", - "label" : "\"Charles Montgomery Burns\"" }, + "label" : + { "value" : "\"Charles Montgomery Burns\"", + "type" : "VTL|MD" } }, { "componentType" : "Dropdown", "id" : "j6qefnga-QOP-kewva8xg", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "0", - "label" : "\"No\"" } ], + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "NUCLEAR_CHARACTER1" }, "bindingDependencies" : @@ -737,17 +951,23 @@ [ { "value" : "2", - "label" : "\"Carl Carlson\"" }, + "label" : + { "value" : "\"Carl Carlson\"", + "type" : "VTL|MD" } }, { "componentType" : "Dropdown", "id" : "j6qefnga-QOP-kewvj0ad", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "0", - "label" : "\"No\"" } ], + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "NUCLEAR_CHARACTER2" }, "bindingDependencies" : @@ -755,17 +975,23 @@ [ { "value" : "3", - "label" : "\"Otto Mann\"" }, + "label" : + { "value" : "\"Otto Mann\"", + "type" : "VTL|MD" } }, { "componentType" : "Dropdown", "id" : "j6qefnga-QOP-kewveltm", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "0", - "label" : "\"No\"" } ], + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "NUCLEAR_CHARACTER3" }, "bindingDependencies" : @@ -773,17 +999,23 @@ [ { "value" : "4", - "label" : "\"Lenny Leonard\"" }, + "label" : + { "value" : "\"Lenny Leonard\"", + "type" : "VTL|MD" } }, { "componentType" : "Dropdown", "id" : "j6qefnga-QOP-kewvgax4", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "0", - "label" : "\"No\"" } ], + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "NUCLEAR_CHARACTER4" }, "bindingDependencies" : @@ -794,7 +1026,9 @@ "mandatory" : false, "page" : "22", "positioning" : "HORIZONTAL", - "label" : "\"➡ 4. In which city each character was born?\"", + "label" : + { "value" : "\"➡ 4. In which city each character was born?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -803,7 +1037,9 @@ { "sequence" : { "id" : "j6qe0h9q", "page" : "18", - "label" : "\"III - Characters\"" } }, + "label" : + { "value" : "\"III - Characters\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "BIRTH_CHARACTER1", "BIRTH_CHARACTER2", @@ -814,26 +1050,38 @@ [ [ { "value" : "1", - "label" : "\"Selma Bouvier\"" }, + "label" : + { "value" : "\"Selma Bouvier\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "j6yzoc6g-QOP-kewvjvcs", "options" : [ { "value" : "1", - "label" : "\"Albuquerque\"" }, + "label" : + { "value" : "\"Albuquerque\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Springfield\"" }, + "label" : + { "value" : "\"Springfield\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Portland\"" }, + "label" : + { "value" : "\"Portland\"", + "type" : "VTL|MD" } }, { "value" : "4", - "label" : "\"Shelbyville\"" }, + "label" : + { "value" : "\"Shelbyville\"", + "type" : "VTL|MD" } }, { "value" : "5", - "label" : "\"Dagstuhl\"" } ], + "label" : + { "value" : "\"Dagstuhl\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "BIRTH_CHARACTER1" }, "bindingDependencies" : @@ -841,26 +1089,38 @@ [ { "value" : "2", - "label" : "\"Kent Brockman\"" }, + "label" : + { "value" : "\"Kent Brockman\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "j6yzoc6g-QOP-kewvhoda", "options" : [ { "value" : "1", - "label" : "\"Albuquerque\"" }, + "label" : + { "value" : "\"Albuquerque\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Springfield\"" }, + "label" : + { "value" : "\"Springfield\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Portland\"" }, + "label" : + { "value" : "\"Portland\"", + "type" : "VTL|MD" } }, { "value" : "4", - "label" : "\"Shelbyville\"" }, + "label" : + { "value" : "\"Shelbyville\"", + "type" : "VTL|MD" } }, { "value" : "5", - "label" : "\"Dagstuhl\"" } ], + "label" : + { "value" : "\"Dagstuhl\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "BIRTH_CHARACTER2" }, "bindingDependencies" : @@ -868,26 +1128,38 @@ [ { "value" : "3", - "label" : "\"Milhouse Van Houten\"" }, + "label" : + { "value" : "\"Milhouse Van Houten\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "j6yzoc6g-QOP-kewv64s5", "options" : [ { "value" : "1", - "label" : "\"Albuquerque\"" }, + "label" : + { "value" : "\"Albuquerque\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Springfield\"" }, + "label" : + { "value" : "\"Springfield\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Portland\"" }, + "label" : + { "value" : "\"Portland\"", + "type" : "VTL|MD" } }, { "value" : "4", - "label" : "\"Shelbyville\"" }, + "label" : + { "value" : "\"Shelbyville\"", + "type" : "VTL|MD" } }, { "value" : "5", - "label" : "\"Dagstuhl\"" } ], + "label" : + { "value" : "\"Dagstuhl\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "BIRTH_CHARACTER3" }, "bindingDependencies" : @@ -895,26 +1167,38 @@ [ { "value" : "4", - "label" : "\"Nelson Muntz\"" }, + "label" : + { "value" : "\"Nelson Muntz\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "j6yzoc6g-QOP-kewvj21j", "options" : [ { "value" : "1", - "label" : "\"Albuquerque\"" }, + "label" : + { "value" : "\"Albuquerque\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Springfield\"" }, + "label" : + { "value" : "\"Springfield\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Portland\"" }, + "label" : + { "value" : "\"Portland\"", + "type" : "VTL|MD" } }, { "value" : "4", - "label" : "\"Shelbyville\"" }, + "label" : + { "value" : "\"Shelbyville\"", + "type" : "VTL|MD" } }, { "value" : "5", - "label" : "\"Dagstuhl\"" } ], + "label" : + { "value" : "\"Dagstuhl\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "BIRTH_CHARACTER4" }, "bindingDependencies" : @@ -922,26 +1206,38 @@ [ { "value" : "5", - "label" : "\"Crazy Cat Lady\"" }, + "label" : + { "value" : "\"Crazy Cat Lady\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "j6yzoc6g-QOP-kewva5uf", "options" : [ { "value" : "1", - "label" : "\"Albuquerque\"" }, + "label" : + { "value" : "\"Albuquerque\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Springfield\"" }, + "label" : + { "value" : "\"Springfield\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Portland\"" }, + "label" : + { "value" : "\"Portland\"", + "type" : "VTL|MD" } }, { "value" : "4", - "label" : "\"Shelbyville\"" }, + "label" : + { "value" : "\"Shelbyville\"", + "type" : "VTL|MD" } }, { "value" : "5", - "label" : "\"Dagstuhl\"" } ], + "label" : + { "value" : "\"Dagstuhl\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "BIRTH_CHARACTER5" }, "bindingDependencies" : @@ -950,7 +1246,9 @@ { "id" : "j4nw88h2", "componentType" : "Sequence", "page" : "23", - "label" : "\"IV - General questions\"", + "label" : + { "value" : "\"IV - General questions\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -959,13 +1257,17 @@ { "sequence" : { "id" : "j4nw88h2", "page" : "23", - "label" : "\"IV - General questions\"" } }, + "label" : + { "value" : "\"IV - General questions\"", + "type" : "VTL|MD" } } }, "components" : [ { "id" : "j6qe237q", "componentType" : "Subsequence", "goToPage" : "24", - "label" : "\"Kwik-E-Mart\"", + "label" : + { "value" : "\"Kwik-E-Mart\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -974,11 +1276,15 @@ { "sequence" : { "id" : "j4nw88h2", "page" : "23", - "label" : "\"IV - General questions\"" }, + "label" : + { "value" : "\"IV - General questions\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6qe237q", "page" : "24", - "label" : "\"Kwik-E-Mart\"" } }, + "label" : + { "value" : "\"Kwik-E-Mart\"", + "type" : "VTL|MD" } } }, "components" : [ { "id" : "j4nwc63q", @@ -986,7 +1292,9 @@ "mandatory" : false, "page" : "24", "positioning" : "HORIZONTAL", - "label" : "\"➡ 1. Please, specify the percentage of Jay’s expenses in the Kwik-E-Mart for each product?\"", + "label" : + { "value" : "\"➡ 1. Please, specify the percentage of Jay’s expenses in the Kwik-E-Mart for each product?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -995,11 +1303,15 @@ { "sequence" : { "id" : "j4nw88h2", "page" : "23", - "label" : "\"IV - General questions\"" }, + "label" : + { "value" : "\"IV - General questions\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6qe237q", "page" : "24", - "label" : "\"Kwik-E-Mart\"" } }, + "label" : + { "value" : "\"Kwik-E-Mart\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "PERCENTAGE_EXPENSES11", "PERCENTAGE_EXPENSES21", @@ -1013,18 +1325,26 @@ [ { "headerCell" : true, "colspan" : 2, - "label" : "" }, + "label" : + { "value" : "", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"Percentage\"" } ], + "label" : + { "value" : "\"Percentage\"", + "type" : "VTL|MD" } } ], [ { "rowspan" : 2, "value" : "A", - "label" : "\"Frozen products\"" }, + "label" : + { "value" : "\"Frozen products\"", + "type" : "VTL|MD" } }, { "value" : "A1", - "label" : "\"Ice creams\"" }, + "label" : + { "value" : "\"Ice creams\"", + "type" : "VTL|MD" } }, { "componentType" : "InputNumber", "min" : 0, @@ -1039,7 +1359,9 @@ [ { "value" : "A2", - "label" : "\"Jasper Beardly\"" }, + "label" : + { "value" : "\"Jasper Beardly\"", + "type" : "VTL|MD" } }, { "componentType" : "InputNumber", "min" : 0, @@ -1055,10 +1377,14 @@ [ { "rowspan" : 3, "value" : "B", - "label" : "\"Meat\"" }, + "label" : + { "value" : "\"Meat\"", + "type" : "VTL|MD" } }, { "value" : "B1", - "label" : "\"Bacon\"" }, + "label" : + { "value" : "\"Bacon\"", + "type" : "VTL|MD" } }, { "componentType" : "InputNumber", "min" : 0, @@ -1073,7 +1399,9 @@ [ { "value" : "B2", - "label" : "\"Pork chop\"" }, + "label" : + { "value" : "\"Pork chop\"", + "type" : "VTL|MD" } }, { "componentType" : "InputNumber", "min" : 0, @@ -1088,7 +1416,9 @@ [ { "value" : "B3", - "label" : "\"Chicken\"" }, + "label" : + { "value" : "\"Chicken\"", + "type" : "VTL|MD" } }, { "componentType" : "InputNumber", "min" : 0, @@ -1103,10 +1433,14 @@ [ { "value" : "C", - "label" : "\"Compote\"" }, + "label" : + { "value" : "\"Compote\"", + "type" : "VTL|MD" } }, { "value" : "C1", - "label" : "\"Powersauce\"" }, + "label" : + { "value" : "\"Powersauce\"", + "type" : "VTL|MD" } }, { "componentType" : "InputNumber", "min" : 0, @@ -1122,7 +1456,9 @@ [ { "colspan" : 2, "value" : "D", - "label" : "\"Other\"" }, + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } }, { "componentType" : "InputNumber", "min" : 0, @@ -1138,7 +1474,9 @@ [ { "colspan" : 2, "value" : "E", - "label" : "\"Total\"" }, + "label" : + { "value" : "\"Total\"", + "type" : "VTL|MD" } }, { "headerCell" : false } ] ] }, @@ -1147,7 +1485,9 @@ "mandatory" : false, "page" : "25", "positioning" : "HORIZONTAL", - "label" : "\"➡ 2. Please specify if Jay has bought each product in his last food shopping\"", + "label" : + { "value" : "\"➡ 2. Please specify if Jay has bought each product in his last food shopping\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -1156,11 +1496,15 @@ { "sequence" : { "id" : "j4nw88h2", "page" : "23", - "label" : "\"IV - General questions\"" }, + "label" : + { "value" : "\"IV - General questions\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6qe237q", "page" : "24", - "label" : "\"Kwik-E-Mart\"" } }, + "label" : + { "value" : "\"Kwik-E-Mart\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "LAST_FOOD_SHOPPING11", "LAST_FOOD_SHOPPING21", @@ -1175,31 +1519,45 @@ [ { "headerCell" : true, "colspan" : 2, - "label" : "" }, + "label" : + { "value" : "", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"In his last food shopping\"" } ], + "label" : + { "value" : "\"In his last food shopping\"", + "type" : "VTL|MD" } } ], [ { "rowspan" : 2, "value" : "A", - "label" : "\"Frozen products\"" }, + "label" : + { "value" : "\"Frozen products\"", + "type" : "VTL|MD" } }, { "value" : "A1", - "label" : "\"Ice creams\"" }, + "label" : + { "value" : "\"Ice creams\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "k9cg2q5t-QOP-kiq6pljq", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "LAST_FOOD_SHOPPING11" }, "bindingDependencies" : @@ -1207,20 +1565,28 @@ [ { "value" : "A2", - "label" : "\"Jasper Beardly\"" }, + "label" : + { "value" : "\"Jasper Beardly\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "k9cg2q5t-QOP-kiq6mgpv", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "LAST_FOOD_SHOPPING21" }, "bindingDependencies" : @@ -1229,23 +1595,33 @@ [ { "rowspan" : 3, "value" : "B", - "label" : "\"Meat\"" }, + "label" : + { "value" : "\"Meat\"", + "type" : "VTL|MD" } }, { "value" : "B1", - "label" : "\"Bacon\"" }, + "label" : + { "value" : "\"Bacon\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "k9cg2q5t-QOP-kiq6pmtz", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "LAST_FOOD_SHOPPING31" }, "bindingDependencies" : @@ -1253,20 +1629,28 @@ [ { "value" : "B2", - "label" : "\"Pork chop\"" }, + "label" : + { "value" : "\"Pork chop\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "k9cg2q5t-QOP-kiq6k4lf", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "LAST_FOOD_SHOPPING41" }, "bindingDependencies" : @@ -1274,20 +1658,28 @@ [ { "value" : "B3", - "label" : "\"Chicken\"" }, + "label" : + { "value" : "\"Chicken\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "k9cg2q5t-QOP-kiq6p70n", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "LAST_FOOD_SHOPPING51" }, "bindingDependencies" : @@ -1295,23 +1687,33 @@ [ { "value" : "C", - "label" : "\"Compote\"" }, + "label" : + { "value" : "\"Compote\"", + "type" : "VTL|MD" } }, { "value" : "C1", - "label" : "\"Powersauce\"" }, + "label" : + { "value" : "\"Powersauce\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "k9cg2q5t-QOP-kiq6lh5v", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "LAST_FOOD_SHOPPING61" }, "bindingDependencies" : @@ -1320,20 +1722,28 @@ [ { "colspan" : 2, "value" : "D", - "label" : "\"Other\"" }, + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "k9cg2q5t-QOP-kiq703te", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "LAST_FOOD_SHOPPING71" }, "bindingDependencies" : @@ -1342,20 +1752,28 @@ [ { "colspan" : 2, "value" : "E", - "label" : "\"Total\"" }, + "label" : + { "value" : "\"Total\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "k9cg2q5t-QOP-kiq6zpd3", "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "LAST_FOOD_SHOPPING81" }, "bindingDependencies" : @@ -1364,7 +1782,9 @@ { "id" : "j6qejudb", "componentType" : "Subsequence", "goToPage" : "26", - "label" : "\"Clowning\"", + "label" : + { "value" : "\"Clowning\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -1373,11 +1793,15 @@ { "sequence" : { "id" : "j4nw88h2", "page" : "23", - "label" : "\"IV - General questions\"" }, + "label" : + { "value" : "\"IV - General questions\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6qejudb", "page" : "26", - "label" : "\"Clowning\"" } }, + "label" : + { "value" : "\"Clowning\"", + "type" : "VTL|MD" } } }, "components" : [ { "id" : "kbkjvgel", @@ -1385,7 +1809,9 @@ "mandatory" : false, "page" : "26", "positioning" : "HORIZONTAL", - "label" : "\"➡ 3. Who did these clownings and tell us what you remember?\"", + "label" : + { "value" : "\"➡ 3. Who did these clownings and tell us what you remember?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -1394,11 +1820,15 @@ { "sequence" : { "id" : "j4nw88h2", "page" : "23", - "label" : "\"IV - General questions\"" }, + "label" : + { "value" : "\"IV - General questions\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6qejudb", "page" : "26", - "label" : "\"Clowning\"" } }, + "label" : + { "value" : "\"Clowning\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "CLOWNING11", "CLOWNING12", @@ -1412,33 +1842,49 @@ [ [ { "headerCell" : true, - "label" : "" }, + "label" : + { "value" : "", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"Clowning\"" }, + "label" : + { "value" : "\"Clowning\"", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"Remember?\"" } ], + "label" : + { "value" : "\"Remember?\"", + "type" : "VTL|MD" } } ], [ { "value" : "1", - "label" : "\"Break the windows of the whole city\"" }, + "label" : + { "value" : "\"Break the windows of the whole city\"", + "type" : "VTL|MD" } }, { "componentType" : "Dropdown", "id" : "kbkjvgel-QOP-kiq6m5n0", "options" : [ { "value" : "1", - "label" : "\"Jay\"" }, + "label" : + { "value" : "\"Jay\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Bart\"" }, + "label" : + { "value" : "\"Bart\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Krusty the clown\"" }, + "label" : + { "value" : "\"Krusty the clown\"", + "type" : "VTL|MD" } }, { "value" : "O", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "CLOWNING11" }, "bindingDependencies" : @@ -1454,23 +1900,33 @@ [ { "value" : "2", - "label" : "\"Loose the violin of his daughter playing poker\"" }, + "label" : + { "value" : "\"Loose the violin of his daughter playing poker\"", + "type" : "VTL|MD" } }, { "componentType" : "Dropdown", "id" : "kbkjvgel-QOP-kiq6l29o", "options" : [ { "value" : "1", - "label" : "\"Jay\"" }, + "label" : + { "value" : "\"Jay\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Bart\"" }, + "label" : + { "value" : "\"Bart\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Krusty the clown\"" }, + "label" : + { "value" : "\"Krusty the clown\"", + "type" : "VTL|MD" } }, { "value" : "O", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "CLOWNING21" }, "bindingDependencies" : @@ -1486,23 +1942,33 @@ [ { "value" : "3", - "label" : "\"Kill Mr Burns\"" }, + "label" : + { "value" : "\"Kill Mr Burns\"", + "type" : "VTL|MD" } }, { "componentType" : "Dropdown", "id" : "kbkjvgel-QOP-kiq72biw", "options" : [ { "value" : "1", - "label" : "\"Jay\"" }, + "label" : + { "value" : "\"Jay\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Bart\"" }, + "label" : + { "value" : "\"Bart\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Krusty the clown\"" }, + "label" : + { "value" : "\"Krusty the clown\"", + "type" : "VTL|MD" } }, { "value" : "O", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "CLOWNING31" }, "bindingDependencies" : @@ -1518,23 +1984,33 @@ [ { "value" : "4", - "label" : "\"Leaving a mechanical object to control the nuclear power plant\"" }, + "label" : + { "value" : "\"Leaving a mechanical object to control the nuclear power plant\"", + "type" : "VTL|MD" } }, { "componentType" : "Dropdown", "id" : "kbkjvgel-QOP-kiq6mlan", "options" : [ { "value" : "1", - "label" : "\"Jay\"" }, + "label" : + { "value" : "\"Jay\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Bart\"" }, + "label" : + { "value" : "\"Bart\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Krusty the clown\"" }, + "label" : + { "value" : "\"Krusty the clown\"", + "type" : "VTL|MD" } }, { "value" : "O", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "CLOWNING41" }, "bindingDependencies" : @@ -1551,7 +2027,9 @@ { "id" : "j6qeh91y", "componentType" : "Subsequence", "goToPage" : "27", - "label" : "\"Transport\"", + "label" : + { "value" : "\"Transport\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -1560,11 +2038,15 @@ { "sequence" : { "id" : "j4nw88h2", "page" : "23", - "label" : "\"IV - General questions\"" }, + "label" : + { "value" : "\"IV - General questions\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6qeh91y", "page" : "27", - "label" : "\"Transport\"" } }, + "label" : + { "value" : "\"Transport\"", + "type" : "VTL|MD" } } }, "components" : [ { "id" : "j6p2lwuj", @@ -1572,13 +2054,17 @@ "mandatory" : false, "page" : "27", "positioning" : "HORIZONTAL", - "label" : "\"➡ 4. Which of the following means of transport were used by the hero and in which country?\"", + "label" : + { "value" : "\"➡ 4. Which of the following means of transport were used by the hero and in which country?\"", + "type" : "VTL|MD" }, "declarations" : [ { "id" : "j6p2lwuj-d10", "declarationType" : "INSTRUCTION", "position" : "AFTER_QUESTION_TEXT", - "label" : "\"Several answers possible: check off all the relevant boxes\"" } ], + "label" : + { "value" : "\"Several answers possible: check off all the relevant boxes\"", + "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -1587,11 +2073,15 @@ { "sequence" : { "id" : "j4nw88h2", "page" : "23", - "label" : "\"IV - General questions\"" }, + "label" : + { "value" : "\"IV - General questions\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "j6qeh91y", "page" : "27", - "label" : "\"Transport\"" } }, + "label" : + { "value" : "\"Transport\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "TRAVEL11", "TRAVEL12", @@ -1621,29 +2111,45 @@ [ [ { "headerCell" : true, - "label" : "" }, + "label" : + { "value" : "", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"Brazil\"" }, + "label" : + { "value" : "\"Brazil\"", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"Canada\"" }, + "label" : + { "value" : "\"Canada\"", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"Japan\"" }, + "label" : + { "value" : "\"Japan\"", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"France\"" }, + "label" : + { "value" : "\"France\"", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"Other country\"" }, + "label" : + { "value" : "\"Other country\"", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"Other planet\"" } ], + "label" : + { "value" : "\"Other planet\"", + "type" : "VTL|MD" } } ], [ { "value" : "1", - "label" : "\"Car\"" }, + "label" : + { "value" : "\"Car\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxBoolean", "id" : "j6p2lwuj-QOP-kewvm4qg", @@ -1689,7 +2195,9 @@ [ { "value" : "2", - "label" : "\"Bike\"" }, + "label" : + { "value" : "\"Bike\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxBoolean", "id" : "j6p2lwuj-QOP-kewvebem", @@ -1735,7 +2243,9 @@ [ { "value" : "3", - "label" : "\"Skateboard\"" }, + "label" : + { "value" : "\"Skateboard\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxBoolean", "id" : "j6p2lwuj-QOP-kewv62xx", @@ -1781,7 +2291,9 @@ [ { "value" : "4", - "label" : "\"Plane\"" }, + "label" : + { "value" : "\"Plane\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxBoolean", "id" : "j6p2lwuj-QOP-kewvjcck", @@ -1828,7 +2340,9 @@ { "id" : "j6qfx9qe", "componentType" : "Sequence", "page" : "28", - "label" : "\"V - Favourite characters (dynamic table)\"", + "label" : + { "value" : "\"V - Favourite characters (dynamic table)\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -1837,7 +2351,9 @@ { "sequence" : { "id" : "j6qfx9qe", "page" : "28", - "label" : "\"V - Favourite characters (dynamic table)\"" } }, + "label" : + { "value" : "\"V - Favourite characters (dynamic table)\"", + "type" : "VTL|MD" } } }, "components" : [ { "id" : "j6qg8rc6", @@ -1845,7 +2361,9 @@ "mandatory" : false, "page" : "29", "positioning" : "HORIZONTAL", - "label" : "\"➡ 1. Please, complete the following grid with your favourite characters\"", + "label" : + { "value" : "\"➡ 1. Please, complete the following grid with your favourite characters\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -1854,7 +2372,9 @@ { "sequence" : { "id" : "j6qfx9qe", "page" : "28", - "label" : "\"V - Favourite characters (dynamic table)\"" } }, + "label" : + { "value" : "\"V - Favourite characters (dynamic table)\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "FAVOURITE_CHAR1", "FAVOURITE_CHAR2", @@ -1896,13 +2416,19 @@ [ [ { "headerCell" : true, - "label" : "\"Name\"" }, + "label" : + { "value" : "\"Name\"", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"Age\"" }, + "label" : + { "value" : "\"Age\"", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"Member of the Simpsons family\"" } ], + "label" : + { "value" : "\"Member of the Simpsons family\"", + "type" : "VTL|MD" } } ], [ { "componentType" : "Textarea", @@ -1926,13 +2452,19 @@ "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FAVOURITE_CHAR3_1_3" }, "bindingDependencies" : @@ -1960,13 +2492,19 @@ "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FAVOURITE_CHAR3_2_3" }, "bindingDependencies" : @@ -1994,13 +2532,19 @@ "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FAVOURITE_CHAR3_3_3" }, "bindingDependencies" : @@ -2028,13 +2572,19 @@ "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FAVOURITE_CHAR3_4_3" }, "bindingDependencies" : @@ -2062,13 +2612,19 @@ "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FAVOURITE_CHAR3_5_3" }, "bindingDependencies" : @@ -2096,13 +2652,19 @@ "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FAVOURITE_CHAR3_6_3" }, "bindingDependencies" : @@ -2130,13 +2692,19 @@ "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FAVOURITE_CHAR3_7_3" }, "bindingDependencies" : @@ -2164,13 +2732,19 @@ "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FAVOURITE_CHAR3_8_3" }, "bindingDependencies" : @@ -2198,13 +2772,19 @@ "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FAVOURITE_CHAR3_9_3" }, "bindingDependencies" : @@ -2232,13 +2812,19 @@ "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"No\"" }, + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Other\"" } ], + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FAVOURITE_CHAR3_10_3" }, "bindingDependencies" : @@ -2249,7 +2835,9 @@ "mandatory" : false, "page" : "30", "positioning" : "HORIZONTAL", - "label" : "\"➡ 2. How has your feeling about the following characters evolved over time?\"", + "label" : + { "value" : "\"➡ 2. How has your feeling about the following characters evolved over time?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -2258,7 +2846,9 @@ { "sequence" : { "id" : "j6qfx9qe", "page" : "28", - "label" : "\"V - Favourite characters (dynamic table)\"" } }, + "label" : + { "value" : "\"V - Favourite characters (dynamic table)\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "FEELCHAREV1", "FEELCHAREV2", @@ -2268,20 +2858,28 @@ [ [ { "value" : "1", - "label" : "\"Jay\"" }, + "label" : + { "value" : "\"Jay\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "jvxux0mi-QOP-kiq76emy", "options" : [ { "value" : "1", - "label" : "\"Up\"" }, + "label" : + { "value" : "\"Up\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Down\"" }, + "label" : + { "value" : "\"Down\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Steady\"" } ], + "label" : + { "value" : "\"Steady\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FEELCHAREV1" }, "bindingDependencies" : @@ -2289,20 +2887,28 @@ [ { "value" : "2", - "label" : "\"Bart\"" }, + "label" : + { "value" : "\"Bart\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "jvxux0mi-QOP-kiq6zv60", "options" : [ { "value" : "1", - "label" : "\"Up\"" }, + "label" : + { "value" : "\"Up\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Down\"" }, + "label" : + { "value" : "\"Down\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Steady\"" } ], + "label" : + { "value" : "\"Steady\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FEELCHAREV2" }, "bindingDependencies" : @@ -2310,20 +2916,28 @@ [ { "value" : "3", - "label" : "\"Krusty the clown\"" }, + "label" : + { "value" : "\"Krusty the clown\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "jvxux0mi-QOP-kiq7bgk3", "options" : [ { "value" : "1", - "label" : "\"Up\"" }, + "label" : + { "value" : "\"Up\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Down\"" }, + "label" : + { "value" : "\"Down\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Steady\"" } ], + "label" : + { "value" : "\"Steady\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FEELCHAREV3" }, "bindingDependencies" : @@ -2331,20 +2945,28 @@ [ { "value" : "O", - "label" : "\"Other\"" }, + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } }, { "componentType" : "CheckboxOne", "id" : "jvxux0mi-QOP-kiq6ync3", "options" : [ { "value" : "1", - "label" : "\"Up\"" }, + "label" : + { "value" : "\"Up\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Down\"" }, + "label" : + { "value" : "\"Down\"", + "type" : "VTL|MD" } }, { "value" : "3", - "label" : "\"Steady\"" } ], + "label" : + { "value" : "\"Steady\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FEELCHAREV4" }, "bindingDependencies" : @@ -2355,7 +2977,9 @@ "mandatory" : false, "page" : "31", "positioning" : "HORIZONTAL", - "label" : "\"➡ 3. Can you tell how long Bart Simpson has been on leave for each type and whether there has been another type?\"", + "label" : + { "value" : "\"➡ 3. Can you tell how long Bart Simpson has been on leave for each type and whether there has been another type?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -2364,7 +2988,9 @@ { "sequence" : { "id" : "j6qfx9qe", "page" : "28", - "label" : "\"V - Favourite characters (dynamic table)\"" } }, + "label" : + { "value" : "\"V - Favourite characters (dynamic table)\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "LEAVDURATION11", "LEAVDURATION12", @@ -2380,17 +3006,25 @@ [ [ { "headerCell" : true, - "label" : "" }, + "label" : + { "value" : "", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"Days\"" }, + "label" : + { "value" : "\"Days\"", + "type" : "VTL|MD" } }, { "headerCell" : true, - "label" : "\"Unit\"" } ], + "label" : + { "value" : "\"Unit\"", + "type" : "VTL|MD" } } ], [ { "value" : "1", - "label" : "\"Leave with pay\"" }, + "label" : + { "value" : "\"Leave with pay\"", + "type" : "VTL|MD" } }, { "componentType" : "InputNumber", "min" : 0, @@ -2407,10 +3041,14 @@ "options" : [ { "value" : "1", - "label" : "\"Working Days\"" }, + "label" : + { "value" : "\"Working Days\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Calendar days\"" } ], + "label" : + { "value" : "\"Calendar days\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "LEAVDURATION12" }, "bindingDependencies" : @@ -2418,7 +3056,9 @@ [ { "value" : "2", - "label" : "\"Public holiday\"" }, + "label" : + { "value" : "\"Public holiday\"", + "type" : "VTL|MD" } }, { "componentType" : "InputNumber", "min" : 0, @@ -2435,10 +3075,14 @@ "options" : [ { "value" : "1", - "label" : "\"Working Days\"" }, + "label" : + { "value" : "\"Working Days\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Calendar days\"" } ], + "label" : + { "value" : "\"Calendar days\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "LEAVDURATION22" }, "bindingDependencies" : @@ -2446,7 +3090,9 @@ [ { "value" : "3", - "label" : "\"Sick leave\"" }, + "label" : + { "value" : "\"Sick leave\"", + "type" : "VTL|MD" } }, { "componentType" : "InputNumber", "min" : 0, @@ -2463,10 +3109,14 @@ "options" : [ { "value" : "1", - "label" : "\"Working Days\"" }, + "label" : + { "value" : "\"Working Days\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Calendar days\"" } ], + "label" : + { "value" : "\"Calendar days\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "LEAVDURATION32" }, "bindingDependencies" : @@ -2474,7 +3124,9 @@ [ { "value" : "4", - "label" : "\"Maternity\/paternity leave\"" }, + "label" : + { "value" : "\"Maternity\/paternity leave\"", + "type" : "VTL|MD" } }, { "componentType" : "InputNumber", "min" : 0, @@ -2491,10 +3143,14 @@ "options" : [ { "value" : "1", - "label" : "\"Working Days\"" }, + "label" : + { "value" : "\"Working Days\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Calendar days\"" } ], + "label" : + { "value" : "\"Calendar days\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "LEAVDURATION42" }, "bindingDependencies" : @@ -2502,7 +3158,9 @@ [ { "value" : "5", - "label" : "\"Other type\"" }, + "label" : + { "value" : "\"Other type\"", + "type" : "VTL|MD" } }, { "componentType" : "InputNumber", "min" : 0, @@ -2519,10 +3177,14 @@ "options" : [ { "value" : "1", - "label" : "\"Working Days\"" }, + "label" : + { "value" : "\"Working Days\"", + "type" : "VTL|MD" } }, { "value" : "2", - "label" : "\"Calendar days\"" } ], + "label" : + { "value" : "\"Calendar days\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "LEAVDURATION52" }, "bindingDependencies" : @@ -2531,7 +3193,9 @@ { "id" : "kiq5mr0b", "componentType" : "Sequence", "page" : "32", - "label" : "\"VI - Favourite characters (Loop)\"", + "label" : + { "value" : "\"VI - Favourite characters (Loop)\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -2540,7 +3204,9 @@ { "sequence" : { "id" : "kiq5mr0b", "page" : "32", - "label" : "\"VI - Favourite characters (Loop)\"" } }, + "label" : + { "value" : "\"VI - Favourite characters (Loop)\"", + "type" : "VTL|MD" } } }, "components" : [ { "id" : "kiq612ky", @@ -2550,7 +3216,9 @@ "min" : 0, "max" : 20, "decimals" : 0, - "label" : "\"➡ 1. How many characters from the Simpsons family could you precisely describe?\"", + "label" : + { "value" : "\"➡ 1. How many characters from the Simpsons family could you precisely describe?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -2559,7 +3227,9 @@ { "sequence" : { "id" : "kiq5mr0b", "page" : "32", - "label" : "\"VI - Favourite characters (Loop)\"" } }, + "label" : + { "value" : "\"VI - Favourite characters (Loop)\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "NB_CHAR" ], "response" : @@ -2569,7 +3239,9 @@ "componentType" : "Loop", "page" : "34", "paginatedLoop" : false, - "label" : "\"Add a character\"", + "label" : + { "value" : "\"Add a character\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -2578,7 +3250,9 @@ { "sequence" : { "id" : "kiq5mr0b", "page" : "32", - "label" : "\"VI - Favourite characters (Loop)\"" } }, + "label" : + { "value" : "\"VI - Favourite characters (Loop)\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "NAME_CHAR", "AGE_CHAR" ], @@ -2588,7 +3262,9 @@ "componentType" : "Subsequence", "page" : "34", "goToPage" : "34", - "label" : "\"Description of each character\"", + "label" : + { "value" : "\"Description of each character\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -2597,11 +3273,15 @@ { "sequence" : { "id" : "kiq5mr0b", "page" : "32", - "label" : "\"VI - Favourite characters (Loop)\"" }, + "label" : + { "value" : "\"VI - Favourite characters (Loop)\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "kiq5u8d5", "page" : "34", - "label" : "\"Description of each character\"" } }, + "label" : + { "value" : "\"Description of each character\"", + "type" : "VTL|MD" } } }, "components" : [ { "id" : "kiq66gtw", @@ -2609,7 +3289,9 @@ "mandatory" : false, "page" : "34", "maxLength" : 30, - "label" : "\"➡ 2. What is the first name of this character?\"", + "label" : + { "value" : "\"➡ 2. What is the first name of this character?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -2618,11 +3300,15 @@ { "sequence" : { "id" : "kiq5mr0b", "page" : "32", - "label" : "\"VI - Favourite characters (Loop)\"" }, + "label" : + { "value" : "\"VI - Favourite characters (Loop)\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "kiq5u8d5", "page" : "34", - "label" : "\"Description of each character\"" } }, + "label" : + { "value" : "\"Description of each character\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "NAME_CHAR" ], "response" : @@ -2635,7 +3321,9 @@ "min" : 0, "max" : 120, "decimals" : 0, - "label" : "\"➡ 3. How old is this character in the first episode of the Simpsons family?\"", + "label" : + { "value" : "\"➡ 3. How old is this character in the first episode of the Simpsons family?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -2644,11 +3332,15 @@ { "sequence" : { "id" : "kiq5mr0b", "page" : "32", - "label" : "\"VI - Favourite characters (Loop)\"" }, + "label" : + { "value" : "\"VI - Favourite characters (Loop)\"", + "type" : "VTL|MD" } }, "subSequence" : { "id" : "kiq5u8d5", "page" : "34", - "label" : "\"Description of each character\"" } }, + "label" : + { "value" : "\"Description of each character\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "AGE_CHAR" ], "response" : @@ -2677,7 +3369,9 @@ { "id" : "kiq5xw5p", "componentType" : "Sequence", "page" : "35.1", - "label" : "\"VII - Other details about character named \" || cast(cast(NAME_CHAR,string),string) || \" \"", + "label" : + { "value" : "\"VII - Other details about character named \" || cast(cast(NAME_CHAR,string),string) || \" \"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -2686,7 +3380,9 @@ { "sequence" : { "id" : "kiq5xw5p", "page" : "35.1", - "label" : "\"VII - Other details about character named \" || cast(cast(NAME_CHAR,string),string) || \" \"" } }, + "label" : + { "value" : "\"VII - Other details about character named \" || cast(cast(NAME_CHAR,string),string) || \" \"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "NAME_CHAR" ], "components" : @@ -2695,7 +3391,9 @@ "componentType" : "CheckboxOne", "mandatory" : false, "page" : "35.2", - "label" : "\"➡ 1. Is character named \" || cast(cast(NAME_CHAR,string),string) || \" your favourite one ? \"", + "label" : + { "value" : "\"➡ 1. Is character named \" || cast(cast(NAME_CHAR,string),string) || \" your favourite one ? \"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -2704,17 +3402,23 @@ { "sequence" : { "id" : "kiq5xw5p", "page" : "35.1", - "label" : "\"VII - Other details about character named \" || cast(cast(NAME_CHAR,string),string) || \" \"" } }, + "label" : + { "value" : "\"VII - Other details about character named \" || cast(cast(NAME_CHAR,string),string) || \" \"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "NAME_CHAR", "FAVCHAR" ], "options" : [ { "value" : "1", - "label" : "\"Yes\"" }, + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, { "value" : "0", - "label" : "\"No\"" } ], + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], "response" : { "name" : "FAVCHAR" } }, @@ -2723,7 +3427,9 @@ "mandatory" : false, "page" : "35.3", "maxLength" : 255, - "label" : "\"➡ 2. What is your best memory about character named \" || cast(cast(NAME_CHAR,string),string) || \" ? \"", + "label" : + { "value" : "\"➡ 2. What is your best memory about character named \" || cast(cast(NAME_CHAR,string),string) || \" ? \"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", "bindingDependencies" : @@ -2732,7 +3438,9 @@ { "sequence" : { "id" : "kiq5xw5p", "page" : "35.1", - "label" : "\"VII - Other details about character named \" || cast(cast(NAME_CHAR,string),string) || \" \"" } }, + "label" : + { "value" : "\"VII - Other details about character named \" || cast(cast(NAME_CHAR,string),string) || \" \"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "NAME_CHAR", "MEMORY_CHAR" ], @@ -2742,14 +3450,18 @@ { "id" : "j6z12s2d", "componentType" : "Sequence", "page" : "36", - "label" : "\"VIII - Comment\"", + "label" : + { "value" : "\"VIII - Comment\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "true" }, "hierarchy" : { "sequence" : { "id" : "j6z12s2d", "page" : "36", - "label" : "\"VIII - Comment\"" } }, + "label" : + { "value" : "\"VIII - Comment\"", + "type" : "VTL|MD" } } }, "components" : [ { "id" : "j6z0z3us", @@ -2757,14 +3469,18 @@ "mandatory" : false, "page" : "37", "maxLength" : 255, - "label" : "\"➡ 1. Do you have any comment about the survey?\"", + "label" : + { "value" : "\"➡ 1. Do you have any comment about the survey?\"", + "type" : "VTL|MD" }, "conditionFilter" : { "value" : "true" }, "hierarchy" : { "sequence" : { "id" : "j6z12s2d", "page" : "36", - "label" : "\"VIII - Comment\"" } }, + "label" : + { "value" : "\"VIII - Comment\"", + "type" : "VTL|MD" } } }, "bindingDependencies" : [ "SURVEY_COMMENT" ], "response" : diff --git a/src/test/resources/examples/xmlh-2-xmlf/out.xml b/src/test/resources/examples/xmlh-2-xmlf/out.xml index e8a79d90..0a1fec68 100644 --- a/src/test/resources/examples/xmlh-2-xmlf/out.xml +++ b/src/test/resources/examples/xmlh-2-xmlf/out.xml @@ -6,23 +6,35 @@ enoCoreVersion="2.2.8" pagination="question" maxPage="37"> - + - + - + true - + @@ -32,13 +44,19 @@ maxLength="500" mandatory="true" page="2"> - + true - + COMMENT @@ -49,18 +67,27 @@ id="j6p0np9q" mandatory="false" page="3"> - + - + true - + READY @@ -71,13 +98,19 @@ id="j6p6my1d" filterDescription="false" page="3"> - + true - + @@ -85,17 +118,26 @@ componentType="Subsequence" id="j6p0s7o5" goToPage="4"> - + (not(cast(READY,integer) <> 1)) READY - + - + @@ -105,17 +147,26 @@ maxLength="30" mandatory="false" page="4"> - + (not(cast(READY,integer) <> 1)) READY - + - + PRODUCER @@ -129,17 +180,26 @@ max="99" decimals="0" page="5"> - + (not(cast(READY,integer) <> 1)) READY - + - + SEASON_NUMBER @@ -152,11 +212,17 @@ min="1900-01-01" max="format-date(current-date(),'[Y0001]-[M01]-[D01]')" page="6"> - + - + (not(cast(READY,integer) <> 1)) @@ -164,10 +230,16 @@ - + - + DATEFIRST @@ -180,11 +252,17 @@ mandatory="false" min="1980-05" page="7"> - + - + (not(cast(READY,integer) <> 1)) @@ -192,10 +270,16 @@ - + - + DATEYYYYMM @@ -209,11 +293,17 @@ min="1900" max="year-from-date(current-date())" page="8"> - + - + (not(cast(READY,integer) <> 1)) @@ -221,10 +311,16 @@ - + - + DATEYYYY @@ -239,17 +335,26 @@ max="70.00" decimals="2" page="9"> - + (not(cast(READY,integer) <> 1)) READY - + - + DURATIONH @@ -264,17 +369,26 @@ max="366.0" decimals="1" page="10"> - + (not(cast(READY,integer) <> 1)) READY - + - + DURATIOND @@ -289,17 +403,26 @@ max="12" decimals="0" page="11"> - + (not(cast(READY,integer) <> 1)) READY - + - + DURATIONM @@ -314,17 +437,26 @@ max="100" decimals="0" page="12"> - + (not(cast(READY,integer) <> 1)) READY - + - + DURATIONY @@ -339,17 +471,26 @@ max="99.0" decimals="1" page="13"> - + (not(cast(READY,integer) <> 1)) READY - + - + AUDIENCE_SHARE @@ -360,11 +501,17 @@ componentType="Sequence" id="j3341528" page="14"> - + - + (not(cast(READY,integer) <> 1)) @@ -372,7 +519,10 @@ - + @@ -381,11 +531,17 @@ id="j3343clt" mandatory="true" page="15"> - + - + (not(cast(READY,integer) <> 1)) @@ -393,21 +549,33 @@ - + CITY 00001 - + 00002 - + 03 - + @@ -416,11 +584,17 @@ id="j6qdfhvw" mandatory="false" page="16"> - + - + (not(cast(READY,integer) <> 1)) @@ -428,25 +602,40 @@ - + MAYOR 1 - + 2 - + 3 - + OT - + @@ -455,68 +644,113 @@ id="j4nw5cqz" mandatory="false" page="17"> - + (not(cast(READY,integer) <> 1)) READY - + STATE 1 - + 2 - + 3 - + 4 - + 5 - + 6 - + 7 - + 8 - + 9 - + 10 - + 11 - + 12 - + 13 - + @@ -524,14 +758,20 @@ componentType="Sequence" id="j6qe0h9q" page="18"> - + (not(cast(READY,integer) <> 1)) READY - + @@ -539,11 +779,17 @@ componentType="CheckboxGroup" id="j334akov" page="19"> - + - + (not(cast(READY,integer) <> 1)) @@ -551,7 +797,10 @@ - + PET1 @@ -559,19 +808,31 @@ PET3 PET4 - + - + - + - + @@ -581,11 +842,17 @@ positioning="HORIZONTAL" mandatory="false" page="20"> - + - + (not(cast(READY,integer) <> 1)) @@ -593,7 +860,10 @@ - + ICE_FLAVOUR1 @@ -603,16 +873,25 @@ 1 - + 1 - + 0 - + ICE_FLAVOUR1 @@ -621,16 +900,25 @@ 2 - + 1 - + 0 - + ICE_FLAVOUR2 @@ -639,16 +927,25 @@ 3 - + 1 - + 0 - + ICE_FLAVOUR3 @@ -657,16 +954,25 @@ OT - + 1 - + 0 - + ICE_FLAVOUR4 @@ -679,14 +985,20 @@ positioning="HORIZONTAL" mandatory="false" page="21"> - + (not(cast(READY,integer) <> 1)) READY - + NUCLEAR_CHARACTER1 @@ -696,16 +1008,25 @@ 1 - + 1 - + 0 - + NUCLEAR_CHARACTER1 @@ -714,16 +1035,25 @@ 2 - + 1 - + 0 - + NUCLEAR_CHARACTER2 @@ -732,16 +1062,25 @@ 3 - + 1 - + 0 - + NUCLEAR_CHARACTER3 @@ -750,16 +1089,25 @@ 4 - + 1 - + 0 - + NUCLEAR_CHARACTER4 @@ -772,14 +1120,20 @@ positioning="HORIZONTAL" mandatory="false" page="22"> - + (not(cast(READY,integer) <> 1)) READY - + BIRTH_CHARACTER1 @@ -790,28 +1144,46 @@ 1 - + 1 - + 2 - + 3 - + 4 - + 5 - + BIRTH_CHARACTER1 @@ -820,28 +1192,46 @@ 2 - + 1 - + 2 - + 3 - + 4 - + 5 - + BIRTH_CHARACTER2 @@ -850,28 +1240,46 @@ 3 - + 1 - + 2 - + 3 - + 4 - + 5 - + BIRTH_CHARACTER3 @@ -880,28 +1288,46 @@ 4 - + 1 - + 2 - + 3 - + 4 - + 5 - + BIRTH_CHARACTER4 @@ -910,28 +1336,46 @@ 5 - + 1 - + 2 - + 3 - + 4 - + 5 - + BIRTH_CHARACTER5 @@ -942,14 +1386,20 @@ componentType="Sequence" id="j4nw88h2" page="23"> - + (not(cast(READY,integer) <> 1)) READY - + @@ -957,17 +1407,26 @@ componentType="Subsequence" id="j6qe237q" goToPage="24"> - + (not(cast(READY,integer) <> 1)) READY - + - + @@ -977,17 +1436,26 @@ positioning="HORIZONTAL" mandatory="false" page="24"> - + (not(cast(READY,integer) <> 1)) READY - + - + PERCENTAGE_EXPENSES11 @@ -999,20 +1467,32 @@ PERCENTAGE_EXPENSES71 - - + A - + A1 - + A2 - + B - + B1 - + B2 - + B3 - + C - + C1 - + D - + E - + @@ -1136,17 +1643,26 @@ positioning="HORIZONTAL" mandatory="false" page="25"> - + (not(cast(READY,integer) <> 1)) READY - + - + LAST_FOOD_SHOPPING11 @@ -1159,33 +1675,54 @@ LAST_FOOD_SHOPPING81 - - + A - + A1 - + 1 - + 2 - + 3 - + LAST_FOOD_SHOPPING11 @@ -1194,20 +1731,32 @@ A2 - + 1 - + 2 - + 3 - + LAST_FOOD_SHOPPING21 @@ -1216,24 +1765,39 @@ B - + B1 - + 1 - + 2 - + 3 - + LAST_FOOD_SHOPPING31 @@ -1242,20 +1806,32 @@ B2 - + 1 - + 2 - + 3 - + LAST_FOOD_SHOPPING41 @@ -1264,20 +1840,32 @@ B3 - + 1 - + 2 - + 3 - + LAST_FOOD_SHOPPING51 @@ -1286,24 +1874,39 @@ C - + C1 - + 1 - + 2 - + 3 - + LAST_FOOD_SHOPPING61 @@ -1312,20 +1915,32 @@ D - + 1 - + 2 - + 3 - + LAST_FOOD_SHOPPING71 @@ -1334,20 +1949,32 @@ E - + 1 - + 2 - + 3 - + LAST_FOOD_SHOPPING81 @@ -1358,17 +1985,26 @@ componentType="Subsequence" id="j6qejudb" goToPage="26"> - + (not(cast(READY,integer) <> 1)) READY - + - + @@ -1378,17 +2014,26 @@ positioning="HORIZONTAL" mandatory="false" page="26"> - + (not(cast(READY,integer) <> 1)) READY - + - + CLOWNING11 @@ -1401,36 +2046,60 @@ CLOWNING42 - - + - + 1 - + 1 - + 2 - + 3 - + O - + CLOWNING11 @@ -1443,24 +2112,39 @@ 2 - + 1 - + 2 - + 3 - + O - + CLOWNING21 @@ -1473,24 +2157,39 @@ 3 - + 1 - + 2 - + 3 - + O - + CLOWNING31 @@ -1503,24 +2202,39 @@ 4 - + 1 - + 2 - + 3 - + O - + CLOWNING41 @@ -1535,17 +2249,26 @@ componentType="Subsequence" id="j6qeh91y" goToPage="27"> - + (not(cast(READY,integer) <> 1)) READY - + - + @@ -1555,11 +2278,17 @@ positioning="HORIZONTAL" mandatory="false" page="27"> - + - + (not(cast(READY,integer) <> 1)) @@ -1567,10 +2296,16 @@ - + - + TRAVEL11 @@ -1599,31 +2334,55 @@ TRAVEL46 - - + - + - + - + - + - + 1 - + @@ -1653,7 +2412,10 @@ 2 - + @@ -1683,7 +2445,10 @@ 3 - + @@ -1713,7 +2478,10 @@ 4 - + @@ -1745,14 +2513,20 @@ componentType="Sequence" id="j6qfx9qe" page="28"> - + (not(cast(READY,integer) <> 1)) READY - + @@ -1762,14 +2536,20 @@ positioning="HORIZONTAL" mandatory="false" page="29"> - + (not(cast(READY,integer) <> 1)) READY - + FAVOURITE_CHAR1 @@ -1808,13 +2588,22 @@ - + - + - + @@ -1833,15 +2622,24 @@ 1 - + 2 - + 3 - + FAVOURITE_CHAR3_1_3 @@ -1863,15 +2661,24 @@ 1 - + 2 - + 3 - + FAVOURITE_CHAR3_2_3 @@ -1893,15 +2700,24 @@ 1 - + 2 - + 3 - + FAVOURITE_CHAR3_3_3 @@ -1923,15 +2739,24 @@ 1 - + 2 - + 3 - + FAVOURITE_CHAR3_4_3 @@ -1953,15 +2778,24 @@ 1 - + 2 - + 3 - + FAVOURITE_CHAR3_5_3 @@ -1983,15 +2817,24 @@ 1 - + 2 - + 3 - + FAVOURITE_CHAR3_6_3 @@ -2013,15 +2856,24 @@ 1 - + 2 - + 3 - + FAVOURITE_CHAR3_7_3 @@ -2043,15 +2895,24 @@ 1 - + 2 - + 3 - + FAVOURITE_CHAR3_8_3 @@ -2073,15 +2934,24 @@ 1 - + 2 - + 3 - + FAVOURITE_CHAR3_9_3 @@ -2103,15 +2973,24 @@ 1 - + 2 - + 3 - + FAVOURITE_CHAR3_10_3 @@ -2124,14 +3003,20 @@ positioning="HORIZONTAL" mandatory="false" page="30"> - + (not(cast(READY,integer) <> 1)) READY - + FEELCHAREV1 @@ -2141,20 +3026,32 @@ 1 - + 1 - + 2 - + 3 - + FEELCHAREV1 @@ -2163,20 +3060,32 @@ 2 - + 1 - + 2 - + 3 - + FEELCHAREV2 @@ -2185,20 +3094,32 @@ 3 - + 1 - + 2 - + 3 - + FEELCHAREV3 @@ -2207,20 +3128,32 @@ O - + 1 - + 2 - + 3 - + FEELCHAREV4 @@ -2233,14 +3166,20 @@ positioning="HORIZONTAL" mandatory="false" page="31"> - + (not(cast(READY,integer) <> 1)) READY - + LEAVDURATION11 @@ -2255,19 +3194,31 @@ LEAVDURATION52 - - + - + 1 - + 1 - + 2 - + LEAVDURATION12 @@ -2293,7 +3250,10 @@ 2 - + 1 - + 2 - + LEAVDURATION22 @@ -2319,7 +3285,10 @@ 3 - + 1 - + 2 - + LEAVDURATION32 @@ -2345,7 +3320,10 @@ 4 - + 1 - + 2 - + LEAVDURATION42 @@ -2371,7 +3355,10 @@ 5 - + 1 - + 2 - + LEAVDURATION52 @@ -2399,14 +3392,20 @@ componentType="Sequence" id="kiq5mr0b" page="32"> - + (not(cast(READY,integer) <> 1)) READY - + @@ -2418,14 +3417,20 @@ max="20" decimals="0" page="33"> - + (not(cast(READY,integer) <> 1)) READY - + NB_CHAR @@ -2436,14 +3441,20 @@ id="kiq7bjam" page="34" paginatedLoop="false"> - + (not(cast(READY,integer) <> 1)) READY - + NAME_CHAR @@ -2453,17 +3464,26 @@ id="kiq5u8d5" page="34" goToPage="34"> - + (not(cast(READY,integer) <> 1)) READY - + - + @@ -2473,17 +3493,26 @@ maxLength="30" mandatory="false" page="34"> - + (not(cast(READY,integer) <> 1)) READY - + - + NAME_CHAR @@ -2497,17 +3526,26 @@ max="120" decimals="0" page="34"> - + (not(cast(READY,integer) <> 1)) READY - + - + AGE_CHAR @@ -2535,14 +3573,20 @@ componentType="Sequence" id="kiq5xw5p" page="35.1"> - + (not(cast(READY,integer) <> 1)) READY - + NAME_CHAR @@ -2552,25 +3596,37 @@ id="kiq65x3c" mandatory="false" page="35.2"> - + (not(cast(READY,integer) <> 1)) READY - + NAME_CHAR FAVCHAR 1 - + 0 - + @@ -2580,14 +3636,20 @@ maxLength="255" mandatory="false" page="35.3"> - + (not(cast(READY,integer) <> 1)) READY - + NAME_CHAR @@ -2599,13 +3661,19 @@ componentType="Sequence" id="j6z12s2d" page="36"> - + true - + @@ -2615,13 +3683,19 @@ maxLength="255" mandatory="false" page="37"> - + true - + SURVEY_COMMENT From 7e3380b1a988caf930abe5df01b39afed0681bea Mon Sep 17 00:00:00 2001 From: Athemane Dahmouh Date: Tue, 15 Mar 2022 15:51:22 +0100 Subject: [PATCH 09/32] Adding value/type object format to other fields that can contain VTL (min/max of lines, iterations, conditionFilter, control/errorMessage of controls), some previously attributes need to become elements + changing almost all test files to fit with new format --- src/main/resources/xsd/LunaticModel.xsd | 35 +++++---- src/main/resources/xsd/LunaticModelFlat.xsd | 33 ++++---- src/main/resources/xslt/json-cleaner.xsl | 2 +- src/test/resources/dummy/form.xml | 64 +++++++++++++++- src/test/resources/dummy/form_flat.xml | 64 +++++++++++++++- .../resources/examples/xmlf-2-jsonf/out.json | 76 ++++++++++++++++--- .../resources/examples/xmlh-2-jsonf/out.json | 76 ++++++++++++++++--- .../resources/examples/xmlh-2-jsonh/out.json | 76 ++++++++++++++++--- .../resources/examples/xmlh-2-xmlf/out.xml | 64 +++++++++++++++- 9 files changed, 421 insertions(+), 69 deletions(-) diff --git a/src/main/resources/xsd/LunaticModel.xsd b/src/main/resources/xsd/LunaticModel.xsd index a63c7f8d..b91ae920 100644 --- a/src/main/resources/xsd/LunaticModel.xsd +++ b/src/main/resources/xsd/LunaticModel.xsd @@ -60,7 +60,7 @@ - + @@ -71,9 +71,9 @@ + - @@ -81,20 +81,23 @@ - - + + + + - + + - + @@ -111,7 +114,7 @@ - + @@ -127,7 +130,7 @@ - + @@ -461,7 +464,7 @@ - + @@ -481,13 +484,15 @@ - - + + + + - + @@ -495,7 +500,7 @@ - + @@ -524,8 +529,8 @@ - - + + diff --git a/src/main/resources/xsd/LunaticModelFlat.xsd b/src/main/resources/xsd/LunaticModelFlat.xsd index 4b549ea5..b014dc0f 100644 --- a/src/main/resources/xsd/LunaticModelFlat.xsd +++ b/src/main/resources/xsd/LunaticModelFlat.xsd @@ -53,7 +53,7 @@ - + @@ -64,9 +64,9 @@ + - @@ -74,20 +74,23 @@ - - + + + + + - + @@ -106,7 +109,7 @@ - + @@ -122,7 +125,7 @@ - + @@ -456,7 +459,7 @@ - + @@ -476,13 +479,15 @@ - - + + + + - + @@ -490,7 +495,7 @@ - + @@ -519,8 +524,8 @@ - - + + diff --git a/src/main/resources/xslt/json-cleaner.xsl b/src/main/resources/xslt/json-cleaner.xsl index 7491a471..d293792a 100644 --- a/src/main/resources/xslt/json-cleaner.xsl +++ b/src/main/resources/xslt/json-cleaner.xsl @@ -22,7 +22,7 @@ - + diff --git a/src/test/resources/dummy/form.xml b/src/test/resources/dummy/form.xml index 45406f42..910cbaa0 100644 --- a/src/test/resources/dummy/form.xml +++ b/src/test/resources/dummy/form.xml @@ -28,6 +28,7 @@ true + VTL|MD @@ -49,6 +50,7 @@ true + VTL|MD @@ -80,6 +82,7 @@ true + VTL|MD @@ -103,6 +106,7 @@ true + VTL|MD @@ -123,6 +127,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -151,6 +156,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -184,6 +190,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -224,6 +231,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -264,6 +272,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -305,6 +314,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -339,6 +349,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -373,6 +384,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -407,6 +419,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -441,6 +454,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -475,6 +489,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -515,6 +530,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -544,6 +560,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -597,6 +614,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -649,6 +667,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -764,6 +783,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -792,6 +812,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -855,6 +876,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -990,6 +1012,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -1125,6 +1148,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -1392,6 +1416,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -1412,6 +1437,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -1440,6 +1466,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -1647,6 +1674,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -1990,6 +2018,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -2018,6 +2047,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -2254,6 +2284,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -2290,6 +2321,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -2519,6 +2551,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -2541,6 +2574,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -2584,7 +2618,16 @@ FAVOURITE_CHAR1_10_1 FAVOURITE_CHAR2_10_2 FAVOURITE_CHAR3_10_3 - + + + 1 + VTL|MD + + + 10 + VTL|MD + + (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -3171,6 +3215,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -3398,6 +3443,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -3422,6 +3468,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -3446,6 +3493,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -3469,6 +3517,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -3497,6 +3546,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -3530,6 +3580,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -3556,12 +3607,16 @@ componentType="Loop" id="kiq7cbgo" depth="1" - iterations="count(NAME_CHAR)" page="35" maxPage="3" paginatedLoop="true"> + + count(NAME_CHAR) + VTL|MD + (not(cast(READY,integer) <> 1)) + VTL|MD READY NAME_CHAR @@ -3579,6 +3634,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -3601,6 +3657,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -3641,6 +3698,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -3667,6 +3725,7 @@ true + VTL|MD @@ -3688,6 +3747,7 @@ true + VTL|MD diff --git a/src/test/resources/dummy/form_flat.xml b/src/test/resources/dummy/form_flat.xml index de72f6f9..8b3b3627 100644 --- a/src/test/resources/dummy/form_flat.xml +++ b/src/test/resources/dummy/form_flat.xml @@ -28,6 +28,7 @@ true + VTL|MD @@ -50,6 +51,7 @@ true + VTL|MD @@ -81,6 +83,7 @@ true + VTL|MD @@ -104,6 +107,7 @@ true + VTL|MD @@ -124,6 +128,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -153,6 +158,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -186,6 +192,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -226,6 +233,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -266,6 +274,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -307,6 +316,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -341,6 +351,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -375,6 +386,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -409,6 +421,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -443,6 +456,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -477,6 +491,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -515,6 +530,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -545,6 +561,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -598,6 +615,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -650,6 +668,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -764,6 +783,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -793,6 +813,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -856,6 +877,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -991,6 +1013,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -1126,6 +1149,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -1392,6 +1416,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -1413,6 +1438,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -1442,6 +1468,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -1649,6 +1676,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -1991,6 +2019,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -2020,6 +2049,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -2255,6 +2285,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -2292,6 +2323,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -2519,6 +2551,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -2542,6 +2575,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -2585,7 +2619,16 @@ FAVOURITE_CHAR1_10_1 FAVOURITE_CHAR2_10_2 FAVOURITE_CHAR3_10_3 - + + + 1 + VTL|MD + + + 10 + VTL|MD + + (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -3172,6 +3216,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -3398,6 +3443,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -3423,6 +3469,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -3447,6 +3494,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -3470,6 +3518,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -3499,6 +3548,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -3532,6 +3582,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -3556,12 +3607,16 @@ componentType="Loop" id="kiq7cbgo" depth="1" - iterations="count(NAME_CHAR)" page="35" maxPage="3" paginatedLoop="true"> + + count(NAME_CHAR) + VTL|MD + (not(cast(READY,integer) <> 1)) + VTL|MD READY NAME_CHAR @@ -3579,6 +3634,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -3602,6 +3658,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -3642,6 +3699,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -3667,6 +3725,7 @@ true + VTL|MD @@ -3689,6 +3748,7 @@ true + VTL|MD diff --git a/src/test/resources/examples/xmlf-2-jsonf/out.json b/src/test/resources/examples/xmlf-2-jsonf/out.json index 06e87192..64244c67 100644 --- a/src/test/resources/examples/xmlf-2-jsonf/out.json +++ b/src/test/resources/examples/xmlf-2-jsonf/out.json @@ -3,7 +3,7 @@ "modele" : "SIMPSONS", "enoCoreVersion" : "2.2.8", "lunaticModelVersion" : "2.2.11", - "generatingDate" : "11-03-2022 14:52:01", + "generatingDate" : "15-03-2022 13:41:50", "pagination" : "question", "maxPage" : "37", "label" : @@ -26,7 +26,8 @@ { "value" : "\"We’re going to test your knowledge about the simpsons series.Welcome in the simpsons world!\"", "type" : "VTL|MD" } } ], "conditionFilter" : - { "value" : "true" }, + { "value" : "true", + "type" : "VTL|MD" }, "hierarchy" : { "sequence" : { "id" : "j6p0ti5h", @@ -44,7 +45,8 @@ { "value" : "\"➡ 1. Before starting, do you have any comments about the Simpsons family?\"", "type" : "VTL|MD" }, "conditionFilter" : - { "value" : "true" }, + { "value" : "true", + "type" : "VTL|MD" }, "hierarchy" : { "sequence" : { "id" : "j6p0ti5h", @@ -73,7 +75,8 @@ { "value" : "\"If not, this is unfortunately the end of this questionnaire.\"", "type" : "VTL|MD" } } ], "conditionFilter" : - { "value" : "true" }, + { "value" : "true", + "type" : "VTL|MD" }, "hierarchy" : { "sequence" : { "id" : "j6p0ti5h", @@ -94,7 +97,8 @@ { "value" : "\"If you are not ready, please go to the end of the questionnaire\"", "type" : "VTL|MD" }, "conditionFilter" : - { "value" : "true" }, + { "value" : "true", + "type" : "VTL|MD" }, "hierarchy" : { "sequence" : { "id" : "j6p0ti5h", @@ -111,6 +115,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -137,6 +142,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -169,6 +175,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -208,6 +215,7 @@ "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -247,6 +255,7 @@ "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -287,6 +296,7 @@ "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -320,6 +330,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -353,6 +364,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -386,6 +398,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -419,6 +432,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -452,6 +466,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -489,6 +504,7 @@ "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -516,6 +532,7 @@ "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -563,6 +580,7 @@ "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -607,6 +625,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -695,6 +714,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -721,6 +741,7 @@ "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -783,6 +804,7 @@ "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -905,6 +927,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -1027,6 +1050,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -1247,6 +1271,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -1265,6 +1290,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -1291,6 +1317,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -1484,6 +1511,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -1781,6 +1809,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -1807,6 +1836,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -2025,6 +2055,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -2059,6 +2090,7 @@ "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -2337,6 +2369,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -2357,6 +2390,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -2401,8 +2435,12 @@ "FAVOURITE_CHAR2_10_2", "FAVOURITE_CHAR3_10_3" ], "lines" : - { "min" : 1, - "max" : 10 }, + { "min" : + { "value" : "1", + "type" : "VTL|MD" }, + "max" : + { "value" : "10", + "type" : "VTL|MD" } }, "cells" : [ [ @@ -2831,6 +2869,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -2973,6 +3012,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -3189,6 +3229,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -3211,6 +3252,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -3234,6 +3276,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -3257,6 +3300,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -3283,6 +3327,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -3315,6 +3360,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -3339,11 +3385,11 @@ "componentType" : "Loop", "page" : "35", "maxPage" : "3", - "iterations" : "count(NAME_CHAR)", "depth" : 1, "paginatedLoop" : true, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "bindingDependencies" : @@ -3363,6 +3409,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -3384,6 +3431,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -3420,6 +3468,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -3433,7 +3482,10 @@ [ "NAME_CHAR", "MEMORY_CHAR" ], "response" : - { "name" : "MEMORY_CHAR" } } ] }, + { "name" : "MEMORY_CHAR" } } ], + "iterations" : + { "value" : "count(NAME_CHAR)", + "type" : "VTL|MD" } }, { "id" : "j6z12s2d", "componentType" : "Sequence", @@ -3442,7 +3494,8 @@ { "value" : "\"VIII - Comment\"", "type" : "VTL|MD" }, "conditionFilter" : - { "value" : "true" }, + { "value" : "true", + "type" : "VTL|MD" }, "hierarchy" : { "sequence" : { "id" : "j6z12s2d", @@ -3460,7 +3513,8 @@ { "value" : "\"➡ 1. Do you have any comment about the survey?\"", "type" : "VTL|MD" }, "conditionFilter" : - { "value" : "true" }, + { "value" : "true", + "type" : "VTL|MD" }, "hierarchy" : { "sequence" : { "id" : "j6z12s2d", diff --git a/src/test/resources/examples/xmlh-2-jsonf/out.json b/src/test/resources/examples/xmlh-2-jsonf/out.json index 2598a9be..64244c67 100644 --- a/src/test/resources/examples/xmlh-2-jsonf/out.json +++ b/src/test/resources/examples/xmlh-2-jsonf/out.json @@ -3,7 +3,7 @@ "modele" : "SIMPSONS", "enoCoreVersion" : "2.2.8", "lunaticModelVersion" : "2.2.11", - "generatingDate" : "11-03-2022 11:35:02", + "generatingDate" : "15-03-2022 13:41:50", "pagination" : "question", "maxPage" : "37", "label" : @@ -26,7 +26,8 @@ { "value" : "\"We’re going to test your knowledge about the simpsons series.Welcome in the simpsons world!\"", "type" : "VTL|MD" } } ], "conditionFilter" : - { "value" : "true" }, + { "value" : "true", + "type" : "VTL|MD" }, "hierarchy" : { "sequence" : { "id" : "j6p0ti5h", @@ -44,7 +45,8 @@ { "value" : "\"➡ 1. Before starting, do you have any comments about the Simpsons family?\"", "type" : "VTL|MD" }, "conditionFilter" : - { "value" : "true" }, + { "value" : "true", + "type" : "VTL|MD" }, "hierarchy" : { "sequence" : { "id" : "j6p0ti5h", @@ -73,7 +75,8 @@ { "value" : "\"If not, this is unfortunately the end of this questionnaire.\"", "type" : "VTL|MD" } } ], "conditionFilter" : - { "value" : "true" }, + { "value" : "true", + "type" : "VTL|MD" }, "hierarchy" : { "sequence" : { "id" : "j6p0ti5h", @@ -94,7 +97,8 @@ { "value" : "\"If you are not ready, please go to the end of the questionnaire\"", "type" : "VTL|MD" }, "conditionFilter" : - { "value" : "true" }, + { "value" : "true", + "type" : "VTL|MD" }, "hierarchy" : { "sequence" : { "id" : "j6p0ti5h", @@ -111,6 +115,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -137,6 +142,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -169,6 +175,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -208,6 +215,7 @@ "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -247,6 +255,7 @@ "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -287,6 +296,7 @@ "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -320,6 +330,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -353,6 +364,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -386,6 +398,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -419,6 +432,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -452,6 +466,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -489,6 +504,7 @@ "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -516,6 +532,7 @@ "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -563,6 +580,7 @@ "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -607,6 +625,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -695,6 +714,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -721,6 +741,7 @@ "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -783,6 +804,7 @@ "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -905,6 +927,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -1027,6 +1050,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -1247,6 +1271,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -1265,6 +1290,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -1291,6 +1317,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -1484,6 +1511,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -1781,6 +1809,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -1807,6 +1836,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -2025,6 +2055,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -2059,6 +2090,7 @@ "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -2337,6 +2369,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -2357,6 +2390,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -2401,8 +2435,12 @@ "FAVOURITE_CHAR2_10_2", "FAVOURITE_CHAR3_10_3" ], "lines" : - { "min" : 1, - "max" : 10 }, + { "min" : + { "value" : "1", + "type" : "VTL|MD" }, + "max" : + { "value" : "10", + "type" : "VTL|MD" } }, "cells" : [ [ @@ -2831,6 +2869,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -2973,6 +3012,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -3189,6 +3229,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -3211,6 +3252,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -3234,6 +3276,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -3257,6 +3300,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -3283,6 +3327,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -3315,6 +3360,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -3339,11 +3385,11 @@ "componentType" : "Loop", "page" : "35", "maxPage" : "3", - "iterations" : "count(NAME_CHAR)", "depth" : 1, "paginatedLoop" : true, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "bindingDependencies" : @@ -3363,6 +3409,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -3384,6 +3431,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -3420,6 +3468,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -3433,7 +3482,10 @@ [ "NAME_CHAR", "MEMORY_CHAR" ], "response" : - { "name" : "MEMORY_CHAR" } } ] }, + { "name" : "MEMORY_CHAR" } } ], + "iterations" : + { "value" : "count(NAME_CHAR)", + "type" : "VTL|MD" } }, { "id" : "j6z12s2d", "componentType" : "Sequence", @@ -3442,7 +3494,8 @@ { "value" : "\"VIII - Comment\"", "type" : "VTL|MD" }, "conditionFilter" : - { "value" : "true" }, + { "value" : "true", + "type" : "VTL|MD" }, "hierarchy" : { "sequence" : { "id" : "j6z12s2d", @@ -3460,7 +3513,8 @@ { "value" : "\"➡ 1. Do you have any comment about the survey?\"", "type" : "VTL|MD" }, "conditionFilter" : - { "value" : "true" }, + { "value" : "true", + "type" : "VTL|MD" }, "hierarchy" : { "sequence" : { "id" : "j6z12s2d", diff --git a/src/test/resources/examples/xmlh-2-jsonh/out.json b/src/test/resources/examples/xmlh-2-jsonh/out.json index 769a5a49..0038f112 100644 --- a/src/test/resources/examples/xmlh-2-jsonh/out.json +++ b/src/test/resources/examples/xmlh-2-jsonh/out.json @@ -3,7 +3,7 @@ "modele" : "SIMPSONS", "enoCoreVersion" : "2.2.8", "lunaticModelVersion" : "2.2.11", - "generatingDate" : "11-03-2022 11:39:17", + "generatingDate" : "15-03-2022 13:41:50", "pagination" : "question", "maxPage" : "37", "label" : @@ -26,7 +26,8 @@ { "value" : "\"We’re going to test your knowledge about the simpsons series.Welcome in the simpsons world!\"", "type" : "VTL|MD" } } ], "conditionFilter" : - { "value" : "true" }, + { "value" : "true", + "type" : "VTL|MD" }, "hierarchy" : { "sequence" : { "id" : "j6p0ti5h", @@ -45,7 +46,8 @@ { "value" : "\"➡ 1. Before starting, do you have any comments about the Simpsons family?\"", "type" : "VTL|MD" }, "conditionFilter" : - { "value" : "true" }, + { "value" : "true", + "type" : "VTL|MD" }, "hierarchy" : { "sequence" : { "id" : "j6p0ti5h", @@ -74,7 +76,8 @@ { "value" : "\"If not, this is unfortunately the end of this questionnaire.\"", "type" : "VTL|MD" } } ], "conditionFilter" : - { "value" : "true" }, + { "value" : "true", + "type" : "VTL|MD" }, "hierarchy" : { "sequence" : { "id" : "j6p0ti5h", @@ -95,7 +98,8 @@ { "value" : "\"If you are not ready, please go to the end of the questionnaire\"", "type" : "VTL|MD" }, "conditionFilter" : - { "value" : "true" }, + { "value" : "true", + "type" : "VTL|MD" }, "hierarchy" : { "sequence" : { "id" : "j6p0ti5h", @@ -112,6 +116,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -139,6 +144,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -171,6 +177,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -210,6 +217,7 @@ "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -249,6 +257,7 @@ "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -289,6 +298,7 @@ "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -322,6 +332,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -355,6 +366,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -388,6 +400,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -421,6 +434,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -454,6 +468,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -491,6 +506,7 @@ "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -519,6 +535,7 @@ "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -566,6 +583,7 @@ "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -610,6 +628,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -698,6 +717,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -725,6 +745,7 @@ "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -787,6 +808,7 @@ "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -909,6 +931,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -1031,6 +1054,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -1251,6 +1275,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -1270,6 +1295,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -1297,6 +1323,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -1490,6 +1517,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -1787,6 +1815,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -1814,6 +1843,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -2032,6 +2062,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -2067,6 +2098,7 @@ "type" : "VTL|MD" } } ], "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -2345,6 +2377,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -2366,6 +2399,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -2410,8 +2444,12 @@ "FAVOURITE_CHAR2_10_2", "FAVOURITE_CHAR3_10_3" ], "lines" : - { "min" : 1, - "max" : 10 }, + { "min" : + { "value" : "1", + "type" : "VTL|MD" }, + "max" : + { "value" : "10", + "type" : "VTL|MD" } }, "cells" : [ [ @@ -2840,6 +2878,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -2982,6 +3021,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -3198,6 +3238,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -3221,6 +3262,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -3244,6 +3286,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -3267,6 +3310,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -3294,6 +3338,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -3326,6 +3371,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -3350,11 +3396,11 @@ "componentType" : "Loop", "page" : "35", "maxPage" : "3", - "iterations" : "count(NAME_CHAR)", "depth" : 1, "paginatedLoop" : true, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "bindingDependencies" : @@ -3374,6 +3420,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -3396,6 +3443,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -3432,6 +3480,7 @@ "type" : "VTL|MD" }, "conditionFilter" : { "value" : "(not(cast(READY,integer) <> 1))", + "type" : "VTL|MD", "bindingDependencies" : [ "READY" ] }, "hierarchy" : @@ -3445,7 +3494,10 @@ [ "NAME_CHAR", "MEMORY_CHAR" ], "response" : - { "name" : "MEMORY_CHAR" } } ] } ] }, + { "name" : "MEMORY_CHAR" } } ] } ], + "iterations" : + { "value" : "count(NAME_CHAR)", + "type" : "VTL|MD" } }, { "id" : "j6z12s2d", "componentType" : "Sequence", @@ -3454,7 +3506,8 @@ { "value" : "\"VIII - Comment\"", "type" : "VTL|MD" }, "conditionFilter" : - { "value" : "true" }, + { "value" : "true", + "type" : "VTL|MD" }, "hierarchy" : { "sequence" : { "id" : "j6z12s2d", @@ -3473,7 +3526,8 @@ { "value" : "\"➡ 1. Do you have any comment about the survey?\"", "type" : "VTL|MD" }, "conditionFilter" : - { "value" : "true" }, + { "value" : "true", + "type" : "VTL|MD" }, "hierarchy" : { "sequence" : { "id" : "j6z12s2d", diff --git a/src/test/resources/examples/xmlh-2-xmlf/out.xml b/src/test/resources/examples/xmlh-2-xmlf/out.xml index 0a1fec68..c333704d 100644 --- a/src/test/resources/examples/xmlh-2-xmlf/out.xml +++ b/src/test/resources/examples/xmlh-2-xmlf/out.xml @@ -28,6 +28,7 @@ true + VTL|MD @@ -50,6 +51,7 @@ true + VTL|MD @@ -81,6 +83,7 @@ true + VTL|MD @@ -104,6 +107,7 @@ true + VTL|MD @@ -124,6 +128,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -153,6 +158,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -186,6 +192,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -226,6 +233,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -266,6 +274,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -307,6 +316,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -341,6 +351,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -375,6 +386,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -409,6 +421,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -443,6 +456,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -477,6 +491,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -515,6 +530,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -545,6 +561,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -598,6 +615,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -650,6 +668,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -764,6 +783,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -793,6 +813,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -856,6 +877,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -991,6 +1013,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -1126,6 +1149,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -1392,6 +1416,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -1413,6 +1438,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -1442,6 +1468,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -1649,6 +1676,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -1991,6 +2019,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -2020,6 +2049,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -2255,6 +2285,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -2292,6 +2323,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -2519,6 +2551,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -2542,6 +2575,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -2585,7 +2619,16 @@ FAVOURITE_CHAR1_10_1 FAVOURITE_CHAR2_10_2 FAVOURITE_CHAR3_10_3 - + + + 1 + VTL|MD + + + 10 + VTL|MD + + (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -3172,6 +3216,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -3398,6 +3443,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -3423,6 +3469,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -3447,6 +3494,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -3470,6 +3518,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -3499,6 +3548,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -3532,6 +3582,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -3556,12 +3607,16 @@ componentType="Loop" id="kiq7cbgo" depth="1" - iterations="count(NAME_CHAR)" page="35" maxPage="3" paginatedLoop="true"> + + count(NAME_CHAR) + VTL|MD + (not(cast(READY,integer) <> 1)) + VTL|MD READY NAME_CHAR @@ -3579,6 +3634,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -3602,6 +3658,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -3642,6 +3699,7 @@ (not(cast(READY,integer) <> 1)) + VTL|MD READY @@ -3667,6 +3725,7 @@ true + VTL|MD @@ -3689,6 +3748,7 @@ true + VTL|MD From f9a5093a49ee8fa35466b7463273c7c728002acc Mon Sep 17 00:00:00 2001 From: Athemane Dahmouh Date: Tue, 22 Mar 2022 10:57:51 +0100 Subject: [PATCH 10/32] Fixing test forms : iterations block need to be at the end of component as specified in xsd schemas. Tests are OK now --- src/test/resources/dummy/form.xml | 8 ++++---- src/test/resources/dummy/form_flat.xml | 8 ++++---- src/test/resources/examples/xmlh-2-xmlf/out.xml | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/test/resources/dummy/form.xml b/src/test/resources/dummy/form.xml index 910cbaa0..0e97fe23 100644 --- a/src/test/resources/dummy/form.xml +++ b/src/test/resources/dummy/form.xml @@ -3610,10 +3610,6 @@ page="35" maxPage="3" paginatedLoop="true"> - - count(NAME_CHAR) - VTL|MD - (not(cast(READY,integer) <> 1)) VTL|MD @@ -3714,6 +3710,10 @@ + + count(NAME_CHAR) + VTL|MD + - - count(NAME_CHAR) - VTL|MD - (not(cast(READY,integer) <> 1)) VTL|MD @@ -3714,6 +3710,10 @@ MEMORY_CHAR + + count(NAME_CHAR) + VTL|MD + - - count(NAME_CHAR) - VTL|MD - (not(cast(READY,integer) <> 1)) VTL|MD @@ -3714,6 +3710,10 @@ MEMORY_CHAR + + count(NAME_CHAR) + VTL|MD + Date: Tue, 22 Mar 2022 16:05:55 +0100 Subject: [PATCH 11/32] Modifying Lunatic Model xsd schemas (hierarchical and flat) to support header/body for tables instead of cells with attribute headerCell to specify if header --- src/main/resources/xsd/LunaticModel.xsd | 19 +++++++++++-------- src/main/resources/xsd/LunaticModelFlat.xsd | 20 ++++++++++++-------- 2 files changed, 23 insertions(+), 16 deletions(-) diff --git a/src/main/resources/xsd/LunaticModel.xsd b/src/main/resources/xsd/LunaticModel.xsd index b91ae920..a9ebf968 100644 --- a/src/main/resources/xsd/LunaticModel.xsd +++ b/src/main/resources/xsd/LunaticModel.xsd @@ -434,8 +434,8 @@ - - + + @@ -447,21 +447,25 @@ - + + - + - + + + - + + - + @@ -477,7 +481,6 @@ - diff --git a/src/main/resources/xsd/LunaticModelFlat.xsd b/src/main/resources/xsd/LunaticModelFlat.xsd index b014dc0f..3d11c875 100644 --- a/src/main/resources/xsd/LunaticModelFlat.xsd +++ b/src/main/resources/xsd/LunaticModelFlat.xsd @@ -429,8 +429,8 @@ - - + + @@ -442,21 +442,26 @@ - + + - + + - + + + - + + - + @@ -472,7 +477,6 @@ - From 9ea6b9cb2774c2bcd7afc3cd0e3d901eb60cad5f Mon Sep 17 00:00:00 2001 From: Athemane Dahmouh Date: Tue, 22 Mar 2022 16:06:53 +0100 Subject: [PATCH 12/32] Modifying test files to fit with new format for tables, using header/body --- src/test/resources/dummy/form.xml | 3812 ++++++++-------- src/test/resources/dummy/form_flat.xml | 3708 ++++++++-------- .../resources/examples/xmlf-2-jsonf/out.json | 3832 ++++++++--------- .../resources/examples/xmlh-2-jsonf/out.json | 3832 ++++++++--------- .../resources/examples/xmlh-2-jsonh/out.json | 3746 ++++++++-------- .../resources/examples/xmlh-2-xmlf/out.xml | 3812 ++++++++-------- 6 files changed, 11071 insertions(+), 11671 deletions(-) diff --git a/src/test/resources/dummy/form.xml b/src/test/resources/dummy/form.xml index 0e97fe23..005a6bf7 100644 --- a/src/test/resources/dummy/form.xml +++ b/src/test/resources/dummy/form.xml @@ -891,114 +891,106 @@ ICE_FLAVOUR2 ICE_FLAVOUR3 ICE_FLAVOUR4 - - + + 1 + + + + 1 - - - - 1 - - - - 0 - - - - ICE_FLAVOUR1 - - - - - 2 + + + 0 - - - - 1 - - - - 0 - - - - ICE_FLAVOUR2 - - - - - 3 + + + ICE_FLAVOUR1 + + + 2 + + + + + 1 - - - - 1 - - - - 0 - - - - ICE_FLAVOUR3 - - - - - OT + + + 0 - - - - 1 - - - - 0 - - - - ICE_FLAVOUR4 - - + + + ICE_FLAVOUR2 + + + 3 + + + + + 1 + + + + 0 + + + + ICE_FLAVOUR3 + + + OT + + + + + 1 + + + + 0 + + + + ICE_FLAVOUR4 + NUCLEAR_CHARACTER2 NUCLEAR_CHARACTER3 NUCLEAR_CHARACTER4 - - + + 1 + + + + 1 - - - - 1 - - - - 0 - - - - NUCLEAR_CHARACTER1 - - - - - 2 + + + 0 - - - - 1 - - - - 0 - - - - NUCLEAR_CHARACTER2 - - - - - 3 + + + NUCLEAR_CHARACTER1 + + + 2 + + + + + 1 - - - - 1 - - - - 0 - - - - NUCLEAR_CHARACTER3 - - - - - 4 + + + 0 - - - - 1 - - - - 0 - - - - NUCLEAR_CHARACTER4 - - + + + NUCLEAR_CHARACTER2 + + + 3 + + + + + 1 + + + + 0 + + + + NUCLEAR_CHARACTER3 + + + 4 + + + + + 1 + + + + 0 + + + + NUCLEAR_CHARACTER4 + BIRTH_CHARACTER3 BIRTH_CHARACTER4 BIRTH_CHARACTER5 - - + + 1 + + + + 1 - - - - 1 - - - - 2 - - - - 3 - - - - 4 - - - - 5 - - - - BIRTH_CHARACTER1 - - - - + + 2 - - - - 1 - - - - 2 - - - - 3 - - - - 4 - - - - 5 - - - - BIRTH_CHARACTER2 - - - - + + 3 - - - - 1 - - - - 2 - - - - 3 - - - - 4 - - - - 5 - - - - BIRTH_CHARACTER3 - - - - + + 4 - - - - 1 - - - - 2 - - - - 3 - - - - 4 - - - - 5 - - - - BIRTH_CHARACTER4 - - - - + + 5 - - - - 1 - - - - 2 - - - - 3 - - - - 4 - - - - 5 - - - - BIRTH_CHARACTER5 - - - - - - - - (not(cast(READY,integer) <> 1)) - VTL|MD - READY - - - + + + BIRTH_CHARACTER1 + + + 2 - - - - - - (not(cast(READY,integer) <> 1)) - VTL|MD - READY - - - + + + + 1 - - + + + 2 - - - + + + 3 + + + + 4 + + + + 5 + + + + BIRTH_CHARACTER2 + + + 3 - - (not(cast(READY,integer) <> 1)) + + + + 1 + + + + 2 + + + + 3 + + + + 4 + + + + 5 + + + + BIRTH_CHARACTER3 + + + 4 + - - - - - - - - - PERCENTAGE_EXPENSES11 - PERCENTAGE_EXPENSES21 - PERCENTAGE_EXPENSES31 - PERCENTAGE_EXPENSES41 - PERCENTAGE_EXPENSES51 - PERCENTAGE_EXPENSES61 - PERCENTAGE_EXPENSES71 - - - - - - - - - - - A - - - - A1 - - - - % - - PERCENTAGE_EXPENSES11 - - - - - A2 - - - - % - - PERCENTAGE_EXPENSES21 - - - - - B - - - - B1 - - - - % - - PERCENTAGE_EXPENSES31 - - - - - B2 - - - - % - - PERCENTAGE_EXPENSES41 - - - - - B3 - - - - % - - PERCENTAGE_EXPENSES51 - - - - - C - - - - C1 - - - - % - - PERCENTAGE_EXPENSES61 - - - - - D + + + + + 1 + + + + 2 + + + + 3 + + + + 4 + + + + 5 + + + + BIRTH_CHARACTER4 + + + 5 + + + + + 1 + + + + 2 + + + + 3 + + + + 4 + + + + 5 + + + + BIRTH_CHARACTER5 + + + + + + + (not(cast(READY,integer) <> 1)) + VTL|MD + READY + + + + + + + + + + (not(cast(READY,integer) <> 1)) + VTL|MD + READY + + + + + + + + + + + + + (not(cast(READY,integer) <> 1)) + VTL|MD + READY + + + - - - % - - PERCENTAGE_EXPENSES71 - - - - - E + + - - - + + + PERCENTAGE_EXPENSES11 + PERCENTAGE_EXPENSES21 + PERCENTAGE_EXPENSES31 + PERCENTAGE_EXPENSES41 + PERCENTAGE_EXPENSES51 + PERCENTAGE_EXPENSES61 + PERCENTAGE_EXPENSES71 +
+ +
+
+ +
+ + A + + + + A1 + + + + % + + PERCENTAGE_EXPENSES11 + + + A2 + + + + % + + PERCENTAGE_EXPENSES21 + + + B + + + + B1 + + + + % + + PERCENTAGE_EXPENSES31 + + + B2 + + + + % + + PERCENTAGE_EXPENSES41 + + + B3 + + + + % + + PERCENTAGE_EXPENSES51 + + + C + + + + C1 + + + + % + + PERCENTAGE_EXPENSES61 + + + D + + + + % + + PERCENTAGE_EXPENSES71 + + + E + + + LAST_FOOD_SHOPPING61 LAST_FOOD_SHOPPING71 LAST_FOOD_SHOPPING81 - - - - - +
+ +
+
+ +
+ + A + + + + A1 + + + + + 1 -
-
- - - A + + + 2 - - - A1 + + + 3 - - - - 1 - - - - 2 - - - - 3 - - - - LAST_FOOD_SHOPPING11 - - - - - A2 + + + LAST_FOOD_SHOPPING11 + + + A2 + + + + + 1 - - - - 1 - - - - 2 - - - - 3 - - - - LAST_FOOD_SHOPPING21 - - - - - B + + + 2 - - - B1 + + + 3 - - - - 1 - - - - 2 - - - - 3 - - - - LAST_FOOD_SHOPPING31 - - - - - B2 + + + LAST_FOOD_SHOPPING21 + + + B + + + + B1 + + + + + 1 - - - - 1 - - - - 2 - - - - 3 - - - - LAST_FOOD_SHOPPING41 - - - - - B3 + + + 2 - - - - 1 - - - - 2 - - - - 3 - - - - LAST_FOOD_SHOPPING51 - - - - - C + + + 3 - - - C1 + + + LAST_FOOD_SHOPPING31 + + + B2 + + + + + 1 - - - - 1 - - - - 2 - - - - 3 - - - - LAST_FOOD_SHOPPING61 - - - - - D + + + 2 + + + + 3 - - - - 1 - - - - 2 - - - - 3 - - - - LAST_FOOD_SHOPPING71 - - - - - E + + + LAST_FOOD_SHOPPING41 + + + B3 + + + + + 1 - - - - 1 - - - - 2 - - - - 3 - - - - LAST_FOOD_SHOPPING81 - - + + + 2 + + + + 3 + + + + LAST_FOOD_SHOPPING51 + + + C + + + + C1 + + + + + 1 + + + + 2 + + + + 3 + + + + LAST_FOOD_SHOPPING61 + + + D + + + + + 1 + + + + 2 + + + + 3 + + + + LAST_FOOD_SHOPPING71 + + + E + + + + + 1 + + + + 2 + + + + 3 + + + + LAST_FOOD_SHOPPING81 +
CLOWNING32 CLOWNING41 CLOWNING42 - - +
+ +
+
+ +
+
+ +
+ + 1 + + + + + 1 -
- + + + 2 + + + 3 + - - + + + O - -
- - + + + CLOWNING11 + + + + CLOWNING12 + + + 2 + + + + 1 - - - - 1 - - - - 2 - - - - 3 - - - - O - - - - CLOWNING11 - - - - CLOWNING12 - - - - + + 2 - - - - 1 - - - - 2 - - - - 3 - - - - O - - - - CLOWNING21 - - - - CLOWNING22 - - - - + + 3 - - - - 1 - - - - 2 - - - - 3 - - - - O - - - - CLOWNING31 - - - - CLOWNING32 - - - - - 4 + + + O - - - - 1 - - - - 2 - - - - 3 - - - - O - - - - CLOWNING41 - - - - CLOWNING42 - - + + + CLOWNING21 + + + + CLOWNING22 + + + 3 + + + + + 1 + + + + 2 + + + + 3 + + + + O + + + + CLOWNING31 + + + + CLOWNING32 + + + 4 + + + + + 1 + + + + 2 + + + + 3 + + + + O + + + + CLOWNING41 + + + + CLOWNING42 +
TRAVEL44 TRAVEL45 TRAVEL46 - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - TRAVEL11 - - - - TRAVEL12 - - - - TRAVEL13 - - - - TRAVEL14 - - - - TRAVEL15 - - - - TRAVEL16 - - - - - 2 - - - - - TRAVEL21 - - - - TRAVEL22 - - - - TRAVEL23 - - - - TRAVEL24 - - - - TRAVEL25 - - - - TRAVEL26 - - - - - 3 - - - - - TRAVEL31 - - - - TRAVEL32 - - - - TRAVEL33 - - - - TRAVEL34 - - - - TRAVEL35 - - - - TRAVEL36 - - - - - 4 - - - - - TRAVEL41 - - - - TRAVEL42 - - - - TRAVEL43 - - - - TRAVEL44 - - - - TRAVEL45 - - - - TRAVEL46 - - +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ + 1 + + + + + TRAVEL11 + + + + TRAVEL12 + + + + TRAVEL13 + + + + TRAVEL14 + + + + TRAVEL15 + + + + TRAVEL16 + + + 2 + + + + + TRAVEL21 + + + + TRAVEL22 + + + + TRAVEL23 + + + + TRAVEL24 + + + + TRAVEL25 + + + + TRAVEL26 + + + 3 + + + + + TRAVEL31 + + + + TRAVEL32 + + + + TRAVEL33 + + + + TRAVEL34 + + + + TRAVEL35 + + + + TRAVEL36 + + + 4 + + + + + TRAVEL41 + + + + TRAVEL42 + + + + TRAVEL43 + + + + TRAVEL44 + + + + TRAVEL45 + + + + TRAVEL46 +
@@ -2628,416 +2546,394 @@ VTL|MD
- - +
+ +
+
+ +
+
+ +
+ + + FAVOURITE_CHAR1_1_1 + + + + FAVOURITE_CHAR2_1_2 + + + + 1 -
- + + + 2 - - + + + 3 - -
- - - - FAVOURITE_CHAR1_1_1 - - - - FAVOURITE_CHAR2_1_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_1_3 - - - - - - FAVOURITE_CHAR1_2_1 - - - - FAVOURITE_CHAR2_2_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_2_3 - - - - - - FAVOURITE_CHAR1_3_1 - - - - FAVOURITE_CHAR2_3_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_3_3 - - - - - - FAVOURITE_CHAR1_4_1 - - - - FAVOURITE_CHAR2_4_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_4_3 - - - - - - FAVOURITE_CHAR1_5_1 - - - - FAVOURITE_CHAR2_5_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_5_3 - - - - - - FAVOURITE_CHAR1_6_1 - - - - FAVOURITE_CHAR2_6_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_6_3 - - - - - - FAVOURITE_CHAR1_7_1 - - - - FAVOURITE_CHAR2_7_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_7_3 - - - - - - FAVOURITE_CHAR1_8_1 - - - - FAVOURITE_CHAR2_8_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_8_3 - - - - - - FAVOURITE_CHAR1_9_1 - - - - FAVOURITE_CHAR2_9_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_9_3 - - - - - - FAVOURITE_CHAR1_10_1 - - - - FAVOURITE_CHAR2_10_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_10_3 - - + + + FAVOURITE_CHAR3_1_3 + + + + FAVOURITE_CHAR1_2_1 + + + + FAVOURITE_CHAR2_2_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_2_3 + + + + FAVOURITE_CHAR1_3_1 + + + + FAVOURITE_CHAR2_3_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_3_3 + + + + FAVOURITE_CHAR1_4_1 + + + + FAVOURITE_CHAR2_4_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_4_3 + + + + FAVOURITE_CHAR1_5_1 + + + + FAVOURITE_CHAR2_5_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_5_3 + + + + FAVOURITE_CHAR1_6_1 + + + + FAVOURITE_CHAR2_6_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_6_3 + + + + FAVOURITE_CHAR1_7_1 + + + + FAVOURITE_CHAR2_7_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_7_3 + + + + FAVOURITE_CHAR1_8_1 + + + + FAVOURITE_CHAR2_8_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_8_3 + + + + FAVOURITE_CHAR1_9_1 + + + + FAVOURITE_CHAR2_9_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_9_3 + + + + FAVOURITE_CHAR1_10_1 + + + + FAVOURITE_CHAR2_10_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_10_3 + + +
+ FEELCHAREV1 + FEELCHAREV2 + FEELCHAREV3 + FEELCHAREV4 + + 1 + + + + + 1 + + + + 2 + + + + 3 + + + + FEELCHAREV1 + + + 2 + + + + + 1 + -
-
- FEELCHAREV1 - FEELCHAREV2 - FEELCHAREV3 - FEELCHAREV4 - - + + + 2 + + + + 3 + + + + FEELCHAREV2 + + + 3 + + + + 1 - - - - 1 - - - - 2 - - - - 3 - - - - FEELCHAREV1 - - - - + + 2 - - - - 1 - - - - 2 - - - - 3 - - - - FEELCHAREV2 - - - - + + 3 - - - - 1 - - - - 2 - - - - 3 - - - - FEELCHAREV3 - - - - - O + + + FEELCHAREV3 + + + O + + + + + 1 - - - - 1 - - - - 2 - - - - 3 - - - - FEELCHAREV4 - - + + + 2 + + + + 3 + + + + FEELCHAREV4 + LEAVDURATION42 LEAVDURATION51 LEAVDURATION52 - - +
+ +
+
+ +
+
+ +
+ + 1 + + + + + LEAVDURATION11 + + + + 1 + + + 2 + -
- + + + LEAVDURATION12 + + + 2 + + + + + LEAVDURATION21 + + + + 1 - - + + + 2 - -
- - + + + LEAVDURATION22 + + + 3 + + + + + LEAVDURATION31 + + + 1 - - - - LEAVDURATION11 - - - - 1 - - - - 2 - - - - LEAVDURATION12 - - - - + + 2 - - - - LEAVDURATION21 - - - - 1 - - - - 2 - - - - LEAVDURATION22 - - - - - 3 + + + LEAVDURATION32 + + + 4 + + + + + LEAVDURATION41 + + + + 1 - - - - LEAVDURATION31 - - - - 1 - - - - 2 - - - - LEAVDURATION32 - - - - - 4 + + + 2 - - - - LEAVDURATION41 - - - - 1 - - - - 2 - - - - LEAVDURATION42 - - - - - 5 + + + LEAVDURATION42 + + + 5 + + + + + LEAVDURATION51 + + + + 1 - - - - LEAVDURATION51 - - - - 1 - - - - 2 - - - - LEAVDURATION52 - - + + + 2 + + + + LEAVDURATION52 +
ICE_FLAVOUR2 ICE_FLAVOUR3 ICE_FLAVOUR4 - - + + 1 + + + + 1 - - - - 1 - - - - 0 - - - - ICE_FLAVOUR1 - - - - - 2 + + + 0 - - - - 1 - - - - 0 - - - - ICE_FLAVOUR2 - - - - - 3 + + + ICE_FLAVOUR1 + + + 2 + + + + + 1 + + + + 0 - - - - 1 - - - - 0 - - - - ICE_FLAVOUR3 - - - - - OT - - - - - 1 - - - - 0 - - - - ICE_FLAVOUR4 - - + + + ICE_FLAVOUR2 + + + 3 + + + + + 1 + + + + 0 + + + + ICE_FLAVOUR3 + + + OT + + + + + 1 + + + + 0 + + + + ICE_FLAVOUR4 + NUCLEAR_CHARACTER2 NUCLEAR_CHARACTER3 NUCLEAR_CHARACTER4 - - + + 1 + + + + 1 - - - - 1 - - - - 0 - - - - NUCLEAR_CHARACTER1 - - - - - 2 + + + 0 - - - - 1 - - - - 0 - - - - NUCLEAR_CHARACTER2 - - - - - 3 + + + NUCLEAR_CHARACTER1 + + + 2 + + + + + 1 - - - - 1 - - - - 0 - - - - NUCLEAR_CHARACTER3 - - - - - 4 + + + 0 - - - - 1 - - - - 0 - - - - NUCLEAR_CHARACTER4 - - + + + NUCLEAR_CHARACTER2 + + + 3 + + + + + 1 + + + + 0 + + + + NUCLEAR_CHARACTER3 + + + 4 + + + + + 1 + + + + 0 + + + + NUCLEAR_CHARACTER4 + BIRTH_CHARACTER3 BIRTH_CHARACTER4 BIRTH_CHARACTER5 - - + + 1 + + + + 1 - - - - 1 - - - - 2 - - - - 3 - - - - 4 - - - - 5 - - - - BIRTH_CHARACTER1 - - - - + + 2 - - - - 1 - - - - 2 - - - - 3 - - - - 4 - - - - 5 - - - - BIRTH_CHARACTER2 - - - - + + 3 - - - - 1 - - - - 2 - - - - 3 - - - - 4 - - - - 5 - - - - BIRTH_CHARACTER3 - - - - + + 4 - - - - 1 - - - - 2 - - - - 3 - - - - 4 - - - - 5 - - - - BIRTH_CHARACTER4 - - - - + + 5 - - - - 1 - - - - 2 - - - - 3 - - - - 4 - - - - 5 - - - - BIRTH_CHARACTER5 - - + + + BIRTH_CHARACTER1 + + + 2 + + + + + 1 + + + + 2 + + + + 3 + + + + 4 + + + + 5 + + + + BIRTH_CHARACTER2 + + + 3 + + + + + 1 + + + + 2 + + + + 3 + + + + 4 + + + + 5 + + + + BIRTH_CHARACTER3 + + + 4 + + + + + 1 + + + + 2 + + + + 3 + + + + 4 + + + + 5 + + + + BIRTH_CHARACTER4 + + + 5 + + + + + 1 + + + + 2 + + + + 3 + + + + 4 + + + + 5 + + + + BIRTH_CHARACTER5 + PERCENTAGE_EXPENSES51 PERCENTAGE_EXPENSES61 PERCENTAGE_EXPENSES71 - - - - - - - - - - - A - - - - A1 - - - - % - - PERCENTAGE_EXPENSES11 - - - - - A2 - - - - % - - PERCENTAGE_EXPENSES21 - - - - - B - - - - B1 - - - - % - - PERCENTAGE_EXPENSES31 - - - - - B2 - - - - % - - PERCENTAGE_EXPENSES41 - - - - - B3 - - - - % - - PERCENTAGE_EXPENSES51 - - - - - C - - - - C1 - - - - % - - PERCENTAGE_EXPENSES61 - - - - - D - - - - % - - PERCENTAGE_EXPENSES71 - - - - - E - - - - +
+ +
+
+ +
+ + A + + + + A1 + + + + % + + PERCENTAGE_EXPENSES11 + + + A2 + + + + % + + PERCENTAGE_EXPENSES21 + + + B + + + + B1 + + + + % + + PERCENTAGE_EXPENSES31 + + + B2 + + + + % + + PERCENTAGE_EXPENSES41 + + + B3 + + + + % + + PERCENTAGE_EXPENSES51 + + + C + + + + C1 + + + + % + + PERCENTAGE_EXPENSES61 + + + D + + + + % + + PERCENTAGE_EXPENSES71 + + + E + + +
LAST_FOOD_SHOPPING61 LAST_FOOD_SHOPPING71 LAST_FOOD_SHOPPING81 - - +
+ +
+
+ +
+ + A + + + + A1 + + + + + 1 -
- + + + 2 - -
- - - A + + + 3 - - - A1 + + + LAST_FOOD_SHOPPING11 + + + A2 + + + + + 1 - - - - 1 - - - - 2 - - - - 3 - - - - LAST_FOOD_SHOPPING11 - - - - - A2 - - - - - 1 - - - - 2 - - - - 3 - - - - LAST_FOOD_SHOPPING21 - - - - - B + + + 2 - - - B1 + + + 3 - - - - 1 - - - - 2 - - - - 3 - - - - LAST_FOOD_SHOPPING31 - - - - - B2 - - - - - 1 - - - - 2 - - - - 3 - - - - LAST_FOOD_SHOPPING41 - - - - - B3 - - - - - 1 - - - - 2 - - - - 3 - - - - LAST_FOOD_SHOPPING51 - - - - - C + + + LAST_FOOD_SHOPPING21 + + + B + + + + B1 + + + + + 1 - - - C1 + + + 2 - - - - 1 - - - - 2 - - - - 3 - - - - LAST_FOOD_SHOPPING61 - - - - - D + + + 3 - - - - 1 - - - - 2 - - - - 3 - - - - LAST_FOOD_SHOPPING71 - - - - - E - - - - - 1 - - - - 2 - - - - 3 - - - - LAST_FOOD_SHOPPING81 - - + + + LAST_FOOD_SHOPPING31 + + + B2 + + + + + 1 + + + + 2 + + + + 3 + + + + LAST_FOOD_SHOPPING41 + + + B3 + + + + + 1 + + + + 2 + + + + 3 + + + + LAST_FOOD_SHOPPING51 + + + C + + + + C1 + + + + + 1 + + + + 2 + + + + 3 + + + + LAST_FOOD_SHOPPING61 + + + D + + + + + 1 + + + + 2 + + + + 3 + + + + LAST_FOOD_SHOPPING71 + + + E + + + + + 1 + + + + 2 + + + + 3 + + + + LAST_FOOD_SHOPPING81 +
CLOWNING32 CLOWNING41 CLOWNING42 - - +
+ +
+
+ +
+
+ +
+ + 1 + + + + + 1 -
- + + + 2 - - + + + 3 + + + + O - -
- - + + + CLOWNING11 + + + + CLOWNING12 + + + 2 + + + + 1 - - - - 1 - - - - 2 - - - - 3 - - - - O - - - - CLOWNING11 - - - - CLOWNING12 - - - - + + 2 - - - - 1 - - - - 2 - - - - 3 - - - - O - - - - CLOWNING21 - - - - CLOWNING22 - - - - + + 3 - - - - 1 - - - - 2 - - - - 3 - - - - O - - - - CLOWNING31 - - - - CLOWNING32 - - - - - 4 + + + O - - - - 1 - - - - 2 - - - - 3 - - - - O - - - - CLOWNING41 - - - - CLOWNING42 - - + + + CLOWNING21 + + + + CLOWNING22 + + + 3 + + + + + 1 + + + + 2 + + + + 3 + + + + O + + + + CLOWNING31 + + + + CLOWNING32 + + + 4 + + + + + 1 + + + + 2 + + + + 3 + + + + O + + + + CLOWNING41 + + + + CLOWNING42 +
TRAVEL44 TRAVEL45 TRAVEL46 - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - TRAVEL11 - - - - TRAVEL12 - - - - TRAVEL13 - - - - TRAVEL14 - - - - TRAVEL15 - - - - TRAVEL16 - - - - - 2 - - - - - TRAVEL21 - - - - TRAVEL22 - - - - TRAVEL23 - - - - TRAVEL24 - - - - TRAVEL25 - - - - TRAVEL26 - - - - - 3 - - - - - TRAVEL31 - - - - TRAVEL32 - - - - TRAVEL33 - - - - TRAVEL34 - - - - TRAVEL35 - - - - TRAVEL36 - - - - - 4 - - - - - TRAVEL41 - - - - TRAVEL42 - - - - TRAVEL43 - - - - TRAVEL44 - - - - TRAVEL45 - - - - TRAVEL46 - - +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ + 1 + + + + + TRAVEL11 + + + + TRAVEL12 + + + + TRAVEL13 + + + + TRAVEL14 + + + + TRAVEL15 + + + + TRAVEL16 + + + 2 + + + + + TRAVEL21 + + + + TRAVEL22 + + + + TRAVEL23 + + + + TRAVEL24 + + + + TRAVEL25 + + + + TRAVEL26 + + + 3 + + + + + TRAVEL31 + + + + TRAVEL32 + + + + TRAVEL33 + + + + TRAVEL34 + + + + TRAVEL35 + + + + TRAVEL36 + + + 4 + + + + + TRAVEL41 + + + + TRAVEL42 + + + + TRAVEL43 + + + + TRAVEL44 + + + + TRAVEL45 + + + + TRAVEL46 +
VTL|MD - - +
+ +
+
+ +
+
+ +
+ + + FAVOURITE_CHAR1_1_1 + + + + FAVOURITE_CHAR2_1_2 + + + + 1 -
- + + + 2 - - + + + 3 - -
- - - - FAVOURITE_CHAR1_1_1 - - - - FAVOURITE_CHAR2_1_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_1_3 - - - - - - FAVOURITE_CHAR1_2_1 - - - - FAVOURITE_CHAR2_2_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_2_3 - - - - - - FAVOURITE_CHAR1_3_1 - - - - FAVOURITE_CHAR2_3_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_3_3 - - - - - - FAVOURITE_CHAR1_4_1 - - - - FAVOURITE_CHAR2_4_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_4_3 - - - - - - FAVOURITE_CHAR1_5_1 - - - - FAVOURITE_CHAR2_5_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_5_3 - - - - - - FAVOURITE_CHAR1_6_1 - - - - FAVOURITE_CHAR2_6_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_6_3 - - - - - - FAVOURITE_CHAR1_7_1 - - - - FAVOURITE_CHAR2_7_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_7_3 - - - - - - FAVOURITE_CHAR1_8_1 - - - - FAVOURITE_CHAR2_8_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_8_3 - - - - - - FAVOURITE_CHAR1_9_1 - - - - FAVOURITE_CHAR2_9_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_9_3 - - - - - - FAVOURITE_CHAR1_10_1 - - - - FAVOURITE_CHAR2_10_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_10_3 - - + + + FAVOURITE_CHAR3_1_3 + + + + FAVOURITE_CHAR1_2_1 + + + + FAVOURITE_CHAR2_2_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_2_3 + + + + FAVOURITE_CHAR1_3_1 + + + + FAVOURITE_CHAR2_3_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_3_3 + + + + FAVOURITE_CHAR1_4_1 + + + + FAVOURITE_CHAR2_4_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_4_3 + + + + FAVOURITE_CHAR1_5_1 + + + + FAVOURITE_CHAR2_5_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_5_3 + + + + FAVOURITE_CHAR1_6_1 + + + + FAVOURITE_CHAR2_6_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_6_3 + + + + FAVOURITE_CHAR1_7_1 + + + + FAVOURITE_CHAR2_7_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_7_3 + + + + FAVOURITE_CHAR1_8_1 + + + + FAVOURITE_CHAR2_8_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_8_3 + + + + FAVOURITE_CHAR1_9_1 + + + + FAVOURITE_CHAR2_9_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_9_3 + + + + FAVOURITE_CHAR1_10_1 + + + + FAVOURITE_CHAR2_10_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_10_3 +
FEELCHAREV2 FEELCHAREV3 FEELCHAREV4 - - + + 1 + + + + 1 - - - - 1 - - - - 2 - - - - 3 - - - - FEELCHAREV1 - - - - + + 2 - - - - 1 - - - - 2 - - - - 3 - - - - FEELCHAREV2 - - - - + + 3 - - - - 1 - - - - 2 - - - - 3 - - - - FEELCHAREV3 - - - - - O + + + FEELCHAREV1 + + + 2 + + + + + 1 - - - - 1 - - - - 2 - - - - 3 - - - - FEELCHAREV4 - - + + + 2 + + + + 3 + + + + FEELCHAREV2 + + + 3 + + + + + 1 + + + + 2 + + + + 3 + + + + FEELCHAREV3 + + + O + + + + + 1 + + + + 2 + + + + 3 + + + + FEELCHAREV4 + LEAVDURATION42 LEAVDURATION51 LEAVDURATION52 - - +
+ +
+
+ +
+
+ +
+ + 1 + + + + + LEAVDURATION11 + + + + 1 -
- + + + 2 - - + + + LEAVDURATION12 + + + 2 + + + + + LEAVDURATION21 + + + + 1 - -
- - + + + 2 + + + + LEAVDURATION22 + + + 3 + + + + + LEAVDURATION31 + + + 1 - - - - LEAVDURATION11 - - - - 1 - - - - 2 - - - - LEAVDURATION12 - - - - + "Working Days" + VTL|MD + + + 2 - - - - LEAVDURATION21 - - - - 1 - - - - 2 - - - - LEAVDURATION22 - - - - - 3 + "Calendar days" + VTL|MD + + + + LEAVDURATION32 + + + 4 + + + + + LEAVDURATION41 + + + + 1 - - - - LEAVDURATION31 - - - - 1 - - - - 2 - - - - LEAVDURATION32 - - - - - 4 + "Working Days" + VTL|MD + + + + 2 - - - - LEAVDURATION41 - - - - 1 - - - - 2 - - - - LEAVDURATION42 - - - - - 5 + "Calendar days" + VTL|MD + + + + LEAVDURATION42 + + + 5 + + + + + LEAVDURATION51 + + + + 1 - - - - LEAVDURATION51 - - - - 1 - - - - 2 - - - - LEAVDURATION52 - - + "Working Days" + VTL|MD + + + + 2 + + + + LEAVDURATION52 +
ICE_FLAVOUR2 ICE_FLAVOUR3 ICE_FLAVOUR4 - - + + 1 + + + + 1 - - - - 1 - - - - 0 - - - - ICE_FLAVOUR1 - - - - - 2 + + + 0 - - - - 1 - - - - 0 - - - - ICE_FLAVOUR2 - - - - - 3 + + + ICE_FLAVOUR1 + + + 2 + + + + + 1 - - - - 1 - - - - 0 - - - - ICE_FLAVOUR3 - - - - - OT + + + 0 - - - - 1 - - - - 0 - - - - ICE_FLAVOUR4 - - + + + ICE_FLAVOUR2 + + + 3 + + + + + 1 + + + + 0 + + + + ICE_FLAVOUR3 + + + OT + + + + + 1 + + + + 0 + + + + ICE_FLAVOUR4 + NUCLEAR_CHARACTER2 NUCLEAR_CHARACTER3 NUCLEAR_CHARACTER4 - - + + 1 + + + + 1 - - - - 1 - - - - 0 - - - - NUCLEAR_CHARACTER1 - - - - - 2 + + + 0 - - - - 1 - - - - 0 - - - - NUCLEAR_CHARACTER2 - - - - - 3 + + + NUCLEAR_CHARACTER1 + + + 2 + + + + + 1 - - - - 1 - - - - 0 - - - - NUCLEAR_CHARACTER3 - - - - - 4 + + + 0 - - - - 1 - - - - 0 - - - - NUCLEAR_CHARACTER4 - - + + + NUCLEAR_CHARACTER2 + + + 3 + + + + + 1 + + + + 0 + + + + NUCLEAR_CHARACTER3 + + + 4 + + + + + 1 + + + + 0 + + + + NUCLEAR_CHARACTER4 + BIRTH_CHARACTER3 BIRTH_CHARACTER4 BIRTH_CHARACTER5 - - + + 1 + + + + 1 - - - - 1 - - - - 2 - - - - 3 - - - - 4 - - - - 5 - - - - BIRTH_CHARACTER1 - - - - + + 2 - - - - 1 - - - - 2 - - - - 3 - - - - 4 - - - - 5 - - - - BIRTH_CHARACTER2 - - - - + + 3 - - - - 1 - - - - 2 - - - - 3 - - - - 4 - - - - 5 - - - - BIRTH_CHARACTER3 - - - - + + 4 - - - - 1 - - - - 2 - - - - 3 - - - - 4 - - - - 5 - - - - BIRTH_CHARACTER4 - - - - + + 5 - - - - 1 - - - - 2 - - - - 3 - - - - 4 - - - - 5 - - - - BIRTH_CHARACTER5 - - - - - - - (not(cast(READY,integer) <> 1)) - VTL|MD - READY - - - + + + BIRTH_CHARACTER1 + + + 2 - - - - - - - (not(cast(READY,integer) <> 1)) - VTL|MD - READY - - - + + + + 1 - - + + + 2 - - - - + + + 3 + + + + 4 + + + + 5 + + + + BIRTH_CHARACTER2 + + + 3 - - (not(cast(READY,integer) <> 1)) + + + + 1 + + + + 2 + + + + 3 + + + + 4 + + + + 5 + + + + BIRTH_CHARACTER3 + + + 4 + - - - - - - - - - PERCENTAGE_EXPENSES11 - PERCENTAGE_EXPENSES21 - PERCENTAGE_EXPENSES31 - PERCENTAGE_EXPENSES41 - PERCENTAGE_EXPENSES51 - PERCENTAGE_EXPENSES61 - PERCENTAGE_EXPENSES71 - - - - - - - - - - - A - - - - A1 - - - - % - - PERCENTAGE_EXPENSES11 - - - - - A2 - - - - % - - PERCENTAGE_EXPENSES21 - - - - - B - - - - B1 - - - - % - - PERCENTAGE_EXPENSES31 - - - - - B2 - - - - % - - PERCENTAGE_EXPENSES41 - - - - - B3 - - - - % - - PERCENTAGE_EXPENSES51 - - - - - C - - - - C1 - - - - % - - PERCENTAGE_EXPENSES61 - - - - - D + + + + + 1 + + + + 2 + + + + 3 + + + + 4 + + + + 5 + + + + BIRTH_CHARACTER4 + + + 5 + + + + + 1 + + + + 2 + + + + 3 + + + + 4 + + + + 5 + + + + BIRTH_CHARACTER5 + + + + + + (not(cast(READY,integer) <> 1)) + VTL|MD + READY + + + + + + + + + + + (not(cast(READY,integer) <> 1)) + VTL|MD + READY + + + + + + + + + + + + + + (not(cast(READY,integer) <> 1)) + VTL|MD + READY + + + - - - % - - PERCENTAGE_EXPENSES71 - - - - - E + + - - - + + + PERCENTAGE_EXPENSES11 + PERCENTAGE_EXPENSES21 + PERCENTAGE_EXPENSES31 + PERCENTAGE_EXPENSES41 + PERCENTAGE_EXPENSES51 + PERCENTAGE_EXPENSES61 + PERCENTAGE_EXPENSES71 +
+ +
+
+ +
+ + A + + + + A1 + + + + % + + PERCENTAGE_EXPENSES11 + + + A2 + + + + % + + PERCENTAGE_EXPENSES21 + + + B + + + + B1 + + + + % + + PERCENTAGE_EXPENSES31 + + + B2 + + + + % + + PERCENTAGE_EXPENSES41 + + + B3 + + + + % + + PERCENTAGE_EXPENSES51 + + + C + + + + C1 + + + + % + + PERCENTAGE_EXPENSES61 + + + D + + + + % + + PERCENTAGE_EXPENSES71 + + + E + + +
LAST_FOOD_SHOPPING61 LAST_FOOD_SHOPPING71 LAST_FOOD_SHOPPING81 - - +
+ +
+
+ +
+ + A + + + + A1 + + + + + 1 -
- + + + 2 - -
- - - A + + + 3 - - - A1 + + + LAST_FOOD_SHOPPING11 + + + A2 + + + + + 1 - - - - 1 - - - - 2 - - - - 3 - - - - LAST_FOOD_SHOPPING11 - - - - - A2 + + + 2 - - - - 1 - - - - 2 - - - - 3 - - - - LAST_FOOD_SHOPPING21 - - - - - B + + + 3 - - - B1 + + + LAST_FOOD_SHOPPING21 + + + B + + + + B1 + + + + + 1 - - - - 1 - - - - 2 - - - - 3 - - - - LAST_FOOD_SHOPPING31 - - - - - B2 + + + 2 - - - - 1 - - - - 2 - - - - 3 - - - - LAST_FOOD_SHOPPING41 - - - - - B3 + + + 3 - - - - 1 - - - - 2 - - - - 3 - - - - LAST_FOOD_SHOPPING51 - - - - - C + + + LAST_FOOD_SHOPPING31 + + + B2 + + + + + 1 - - - C1 + + + 2 - - - - 1 - - - - 2 - - - - 3 - - - - LAST_FOOD_SHOPPING61 - - - - - D + + + 3 - - - - 1 - - - - 2 - - - - 3 - - - - LAST_FOOD_SHOPPING71 - - - - - E + + + LAST_FOOD_SHOPPING41 + + + B3 + + + + + 1 - - - - 1 - - - - 2 - - - - 3 - - - - LAST_FOOD_SHOPPING81 - - + + + 2 + + + + 3 + + + + LAST_FOOD_SHOPPING51 + + + C + + + + C1 + + + + + 1 + + + + 2 + + + + 3 + + + + LAST_FOOD_SHOPPING61 + + + D + + + + + 1 + + + + 2 + + + + 3 + + + + LAST_FOOD_SHOPPING71 + + + E + + + + + 1 + + + + 2 + + + + 3 + + + + LAST_FOOD_SHOPPING81 +
CLOWNING32 CLOWNING41 CLOWNING42 - - +
+ +
+
+ +
+
+ +
+ + 1 + + + + + 1 -
- + + + 2 - - + + + 3 - -
- - - 1 + + + O - - - - 1 - - - - 2 - - - - 3 - - - - O - - - - CLOWNING11 - - - - CLOWNING12 - - - - - 2 + + + CLOWNING11 + + + + CLOWNING12 + + + 2 + + + + + 1 - - - - 1 - - - - 2 - - - - 3 - - - - O - - - - CLOWNING21 - - - - CLOWNING22 - - - - + + + 2 + + + 3 - - - - 1 - - - - 2 - - - - 3 - - - - O - - - - CLOWNING31 - - - - CLOWNING32 - - - - - 4 + + + O - - - - 1 - - - - 2 - - - - 3 - - - - O - - - - CLOWNING41 - - - - CLOWNING42 - - + + + CLOWNING21 + + + + CLOWNING22 + + + 3 + + + + + 1 + + + + 2 + + + + 3 + + + + O + + + + CLOWNING31 + + + + CLOWNING32 + + + 4 + + + + + 1 + + + + 2 + + + + 3 + + + + O + + + + CLOWNING41 + + + + CLOWNING42 +
TRAVEL44 TRAVEL45 TRAVEL46 - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - TRAVEL11 - - - - TRAVEL12 - - - - TRAVEL13 - - - - TRAVEL14 - - - - TRAVEL15 - - - - TRAVEL16 - - - - - 2 - - - - - TRAVEL21 - - - - TRAVEL22 - - - - TRAVEL23 - - - - TRAVEL24 - - - - TRAVEL25 - - - - TRAVEL26 - - - - - 3 - - - - - TRAVEL31 - - - - TRAVEL32 - - - - TRAVEL33 - - - - TRAVEL34 - - - - TRAVEL35 - - - - TRAVEL36 - - - - - 4 - - - - - TRAVEL41 - - - - TRAVEL42 - - - - TRAVEL43 - - - - TRAVEL44 - - - - TRAVEL45 - - - - TRAVEL46 - - +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ + 1 + + + + + TRAVEL11 + + + + TRAVEL12 + + + + TRAVEL13 + + + + TRAVEL14 + + + + TRAVEL15 + + + + TRAVEL16 + + + 2 + + + + + TRAVEL21 + + + + TRAVEL22 + + + + TRAVEL23 + + + + TRAVEL24 + + + + TRAVEL25 + + + + TRAVEL26 + + + 3 + + + + + TRAVEL31 + + + + TRAVEL32 + + + + TRAVEL33 + + + + TRAVEL34 + + + + TRAVEL35 + + + + TRAVEL36 + + + 4 + + + + + TRAVEL41 + + + + TRAVEL42 + + + + TRAVEL43 + + + + TRAVEL44 + + + + TRAVEL45 + + + + TRAVEL46 +
VTL|MD - - +
+ +
+
+ +
+
+ +
+ + + FAVOURITE_CHAR1_1_1 + + + + FAVOURITE_CHAR2_1_2 + + + + 1 -
- + + + 2 - - + + + 3 - -
- - - - FAVOURITE_CHAR1_1_1 - - - - FAVOURITE_CHAR2_1_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_1_3 - - - - - - FAVOURITE_CHAR1_2_1 - - - - FAVOURITE_CHAR2_2_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_2_3 - - - - - - FAVOURITE_CHAR1_3_1 - - - - FAVOURITE_CHAR2_3_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_3_3 - - - - - - FAVOURITE_CHAR1_4_1 - - - - FAVOURITE_CHAR2_4_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_4_3 - - - - - - FAVOURITE_CHAR1_5_1 - - - - FAVOURITE_CHAR2_5_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_5_3 - - - - - - FAVOURITE_CHAR1_6_1 - - - - FAVOURITE_CHAR2_6_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_6_3 - - - - - - FAVOURITE_CHAR1_7_1 - - - - FAVOURITE_CHAR2_7_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_7_3 - - - - - - FAVOURITE_CHAR1_8_1 - - - - FAVOURITE_CHAR2_8_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_8_3 - - - - - - FAVOURITE_CHAR1_9_1 - - - - FAVOURITE_CHAR2_9_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_9_3 - - - - - - FAVOURITE_CHAR1_10_1 - - - - FAVOURITE_CHAR2_10_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_10_3 - - + + + FAVOURITE_CHAR3_1_3 + + + + FAVOURITE_CHAR1_2_1 + + + + FAVOURITE_CHAR2_2_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_2_3 + + + + FAVOURITE_CHAR1_3_1 + + + + FAVOURITE_CHAR2_3_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_3_3 + + + + FAVOURITE_CHAR1_4_1 + + + + FAVOURITE_CHAR2_4_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_4_3 + + + + FAVOURITE_CHAR1_5_1 + + + + FAVOURITE_CHAR2_5_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_5_3 + + + + FAVOURITE_CHAR1_6_1 + + + + FAVOURITE_CHAR2_6_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_6_3 + + + + FAVOURITE_CHAR1_7_1 + + + + FAVOURITE_CHAR2_7_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_7_3 + + + + FAVOURITE_CHAR1_8_1 + + + + FAVOURITE_CHAR2_8_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_8_3 + + + + FAVOURITE_CHAR1_9_1 + + + + FAVOURITE_CHAR2_9_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_9_3 + + + + FAVOURITE_CHAR1_10_1 + + + + FAVOURITE_CHAR2_10_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_10_3 +
+ +
+ FEELCHAREV1 + FEELCHAREV2 + FEELCHAREV3 + FEELCHAREV4 + + 1 + + + + + 1 + + + + 2 + + + + 3 + + + + FEELCHAREV1 + + + 2 + + + + + 1 + -
-
- FEELCHAREV1 - FEELCHAREV2 - FEELCHAREV3 - FEELCHAREV4 - - + + + 2 + + + + 3 + + + + FEELCHAREV2 + + + 3 + + + + 1 - - - - 1 - - - - 2 - - - - 3 - - - - FEELCHAREV1 - - - - + + 2 - - - - 1 - - - - 2 - - - - 3 - - - - FEELCHAREV2 - - - - + + 3 - - - - 1 - - - - 2 - - - - 3 - - - - FEELCHAREV3 - - - - - O + + + FEELCHAREV3 + + + O + + + + + 1 - - - - 1 - - - - 2 - - - - 3 - - - - FEELCHAREV4 - - + + + 2 + + + + 3 + + + + FEELCHAREV4 + LEAVDURATION42 LEAVDURATION51 LEAVDURATION52 - - +
+ +
+
+ +
+
+ +
+ + 1 + + + + + LEAVDURATION11 + + + + 1 + + + 2 + -
- + + + LEAVDURATION12 + + + 2 + + + + + LEAVDURATION21 + + + + 1 - - + + + 2 - -
- - + + + LEAVDURATION22 + + + 3 + + + + + LEAVDURATION31 + + + 1 - - - - LEAVDURATION11 - - - - 1 - - - - 2 - - - - LEAVDURATION12 - - - - + + 2 - - - - LEAVDURATION21 - - - - 1 - - - - 2 - - - - LEAVDURATION22 - - - - - 3 + + + LEAVDURATION32 + + + 4 + + + + + LEAVDURATION41 + + + + 1 - - - - LEAVDURATION31 - - - - 1 - - - - 2 - - - - LEAVDURATION32 - - - - - 4 + + + 2 - - - - LEAVDURATION41 - - - - 1 - - - - 2 - - - - LEAVDURATION42 - - - - - 5 + + + LEAVDURATION42 + + + 5 + + + + + LEAVDURATION51 + + + + 1 - - - - LEAVDURATION51 - - - - 1 - - - - 2 - - - - LEAVDURATION52 - - + + + 2 + + + + LEAVDURATION52 +
Date: Tue, 22 Mar 2022 19:03:19 +0100 Subject: [PATCH 13/32] New flat model to separate lines into further body elements, in order to have in json a final body array (will need further tweaking in json-cleaner) --- src/main/resources/xsd/LunaticModelFlat.xsd | 9 +- src/test/resources/dummy/form_flat.xml | 3288 ++++++++++--------- 2 files changed, 1707 insertions(+), 1590 deletions(-) diff --git a/src/main/resources/xsd/LunaticModelFlat.xsd b/src/main/resources/xsd/LunaticModelFlat.xsd index 3d11c875..fe293edf 100644 --- a/src/main/resources/xsd/LunaticModelFlat.xsd +++ b/src/main/resources/xsd/LunaticModelFlat.xsd @@ -430,7 +430,7 @@ - + @@ -450,6 +450,11 @@ + + + + + @@ -461,7 +466,7 @@ - + diff --git a/src/test/resources/dummy/form_flat.xml b/src/test/resources/dummy/form_flat.xml index 04144ded..04729a57 100644 --- a/src/test/resources/dummy/form_flat.xml +++ b/src/test/resources/dummy/form_flat.xml @@ -893,104 +893,112 @@ ICE_FLAVOUR3 ICE_FLAVOUR4 - 1 - - - - + 1 - - - 0 - - - - ICE_FLAVOUR1 + + + + 1 + + + + 0 + + + + ICE_FLAVOUR1 + - 2 - - - - - 1 - - - - 0 + + 2 - - - ICE_FLAVOUR2 + + + + 1 + + + + 0 + + + + ICE_FLAVOUR2 + - 3 - - - - - 1 - - - - 0 + + 3 - - - ICE_FLAVOUR3 + + + + 1 + + + + 0 + + + + ICE_FLAVOUR3 + - OT - - - - - 1 - - - - 0 + + OT - - - ICE_FLAVOUR4 + + + + 1 + + + + 0 + + + + ICE_FLAVOUR4 + NUCLEAR_CHARACTER3 NUCLEAR_CHARACTER4 - 1 - - - - + 1 - - - 0 - - - - NUCLEAR_CHARACTER1 + + + + 1 + + + + 0 + + + + NUCLEAR_CHARACTER1 + - 2 - - - - - 1 - - - - 0 + + 2 - - - NUCLEAR_CHARACTER2 + + + + 1 + + + + 0 + + + + NUCLEAR_CHARACTER2 + - 3 - - - - - 1 - - - - 0 + + 3 - - - NUCLEAR_CHARACTER3 + + + + 1 + + + + 0 + + + + NUCLEAR_CHARACTER3 + - 4 - - - - - 1 - - - - 0 + + 4 - - - NUCLEAR_CHARACTER4 + + + + 1 + + + + 0 + + + + NUCLEAR_CHARACTER4 + BIRTH_CHARACTER4 BIRTH_CHARACTER5 - 1 - - - - + 1 - - + + + + 1 + + + + 2 + + + + 3 + + + + 4 + + + + 5 + + + + BIRTH_CHARACTER1 + + + + 2 - - + + + + 1 + + + + 2 + + + + 3 + + + + 4 + + + + 5 + + + + BIRTH_CHARACTER2 + + + + 3 - - + + + + 1 + + + + 2 + + + + 3 + + + + 4 + + + + 5 + + + + BIRTH_CHARACTER3 + + + + 4 - - - 5 - - - - BIRTH_CHARACTER1 - - - 2 - - - - - 1 - - - - 2 - - - - 3 - - - - 4 - - - - 5 - - - - BIRTH_CHARACTER2 - - - 3 - - - - - 1 - - - - 2 - - - - 3 - - - - 4 - - - - 5 - - - - BIRTH_CHARACTER3 - - - 4 - - - - - 1 - - - - 2 - - - - 3 - - - - 4 - - - - 5 - - - - BIRTH_CHARACTER4 + + + + 1 + + + + 2 + + + + 3 + + + + 4 + + + + 5 + + + + BIRTH_CHARACTER4 + - 5 - - - - - 1 - - - - 2 - - - - 3 - - - - 4 - - - + 5 - - - BIRTH_CHARACTER5 + + + + 1 + + + + 2 + + + + 3 + + + + 4 + + + + 5 + + + + BIRTH_CHARACTER5 + VTL|MD - - A - - - A1 - - - - % - - PERCENTAGE_EXPENSES11 + + A + + + + A1 + + + + % + + PERCENTAGE_EXPENSES11 + - A2 - - - - % - - PERCENTAGE_EXPENSES21 - - - B - + + A2 + + + + % + + PERCENTAGE_EXPENSES21 + - B1 - - - - % - - PERCENTAGE_EXPENSES31 + + B + + + + B1 + + + + % + + PERCENTAGE_EXPENSES31 + - B2 - - - - % - - PERCENTAGE_EXPENSES41 + + B2 + + + + % + + PERCENTAGE_EXPENSES41 + - B3 - - - - % - - PERCENTAGE_EXPENSES51 + + B3 + + + + % + + PERCENTAGE_EXPENSES51 + - C - + + C + + + + C1 + + + + % + + PERCENTAGE_EXPENSES61 + - C1 - - - - % - - PERCENTAGE_EXPENSES61 - - - D - + + D + + + + % + + PERCENTAGE_EXPENSES71 + - - % - - PERCENTAGE_EXPENSES71 + + + E + + + - - E - - - VTL|MD - - A - - - A1 - - - - - 1 - - - - 2 + + A - - - 3 + + + A1 - - - LAST_FOOD_SHOPPING11 + + + + 1 + + + + 2 + + + + 3 + + + + LAST_FOOD_SHOPPING11 + - A2 - - - - - 1 - - - - 2 - - - - 3 + + A2 - - - LAST_FOOD_SHOPPING21 - - - B - + + + + 1 + + + + 2 + + + + 3 + + + + LAST_FOOD_SHOPPING21 + - B1 - - - - - 1 - - - - 2 + + B - - - 3 + + + B1 - - - LAST_FOOD_SHOPPING31 + + + + 1 + + + + 2 + + + + 3 + + + + LAST_FOOD_SHOPPING31 + - B2 - - - - - 1 - - - - 2 - - - - 3 + + B2 - - - LAST_FOOD_SHOPPING41 + + + + 1 + + + + 2 + + + + 3 + + + + LAST_FOOD_SHOPPING41 + - B3 - - - - - 1 - - - - 2 - - - - 3 + + B3 - - - LAST_FOOD_SHOPPING51 - - - C - + + + + 1 + + + + 2 + + + + 3 + + + + LAST_FOOD_SHOPPING51 + - C1 - - - - - 1 - - - - 2 + + C - - - 3 + + + C1 - - - LAST_FOOD_SHOPPING61 - - - D - + + + + 1 + + + + 2 + + + + 3 + + + + LAST_FOOD_SHOPPING61 + - - - 1 - - - - 2 - - - - 3 + + + D - - - LAST_FOOD_SHOPPING71 - - - E - + + + + 1 + + + + 2 + + + + 3 + + + + LAST_FOOD_SHOPPING71 + - - - 1 - - - - 2 - - - - 3 + + + E - - - LAST_FOOD_SHOPPING81 + + + + 1 + + + + 2 + + + + 3 + + + + LAST_FOOD_SHOPPING81 + - 1 - - - - + 1 - - - 2 - - - - 3 - - - - O - - - - CLOWNING11 - - - - CLOWNING12 + + + + 1 + + + + 2 + + + + 3 + + + + O + + + + CLOWNING11 + + + + CLOWNING12 + - 2 - - - - - 1 - - - + 2 - - - 3 - - - - O - - - - CLOWNING21 - - - - CLOWNING22 + + + + 1 + + + + 2 + + + + 3 + + + + O + + + + CLOWNING21 + + + + CLOWNING22 + - 3 - - - - - 1 - - - - 2 - - - + 3 - - - O - - - - CLOWNING31 - - - - CLOWNING32 + + + + 1 + + + + 2 + + + + 3 + + + + O + + + + CLOWNING31 + + + + CLOWNING32 + - 4 - - - - - 1 - - - - 2 - - - - 3 - - - - O + + 4 - - - CLOWNING41 - - - - CLOWNING42 + + + + 1 + + + + 2 + + + + 3 + + + + O + + + + CLOWNING41 + + + + CLOWNING42 + - 1 - - - - - TRAVEL11 - - - - TRAVEL12 - - - - TRAVEL13 - - - - TRAVEL14 - - - - TRAVEL15 - - - - TRAVEL16 + + 1 + + + + + TRAVEL11 + + + + TRAVEL12 + + + + TRAVEL13 + + + + TRAVEL14 + + + + TRAVEL15 + + + + TRAVEL16 + - 2 - - - - - TRAVEL21 - - - - TRAVEL22 - - - - TRAVEL23 - - - - TRAVEL24 - - - - TRAVEL25 - - - - TRAVEL26 + + 2 + + + + + TRAVEL21 + + + + TRAVEL22 + + + + TRAVEL23 + + + + TRAVEL24 + + + + TRAVEL25 + + + + TRAVEL26 + - 3 - - - - - TRAVEL31 - - - - TRAVEL32 - - - - TRAVEL33 - - - - TRAVEL34 - - - - TRAVEL35 - - - - TRAVEL36 + + 3 + + + + + TRAVEL31 + + + + TRAVEL32 + + + + TRAVEL33 + + + + TRAVEL34 + + + + TRAVEL35 + + + + TRAVEL36 + - 4 - - - - - TRAVEL41 - - - - TRAVEL42 - - - - TRAVEL43 - - - - TRAVEL44 - - - - TRAVEL45 - - - - TRAVEL46 + + 4 + + + + + TRAVEL41 + + + + TRAVEL42 + + + + TRAVEL43 + + + + TRAVEL44 + + + + TRAVEL45 + + + + TRAVEL46 + VTL|MD - - - FAVOURITE_CHAR1_1_1 + + + + FAVOURITE_CHAR1_1_1 + + + + FAVOURITE_CHAR2_1_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_1_3 + - - - FAVOURITE_CHAR2_1_2 + + + + FAVOURITE_CHAR1_2_1 + + + + FAVOURITE_CHAR2_2_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_2_3 + - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_1_3 - - - - FAVOURITE_CHAR1_2_1 - - - - FAVOURITE_CHAR2_2_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_2_3 - - - - FAVOURITE_CHAR1_3_1 - - - - FAVOURITE_CHAR2_3_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_3_3 - - - - FAVOURITE_CHAR1_4_1 - - - - FAVOURITE_CHAR2_4_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_4_3 - - - - FAVOURITE_CHAR1_5_1 - - - - FAVOURITE_CHAR2_5_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_5_3 - - - - FAVOURITE_CHAR1_6_1 - - - - FAVOURITE_CHAR2_6_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_6_3 - - - - FAVOURITE_CHAR1_7_1 - - - - FAVOURITE_CHAR2_7_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_7_3 - - - - FAVOURITE_CHAR1_8_1 - - - - FAVOURITE_CHAR2_8_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_8_3 + + + + FAVOURITE_CHAR1_3_1 + + + + FAVOURITE_CHAR2_3_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_3_3 + - - - FAVOURITE_CHAR1_9_1 + + + + FAVOURITE_CHAR1_4_1 + + + + FAVOURITE_CHAR2_4_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_4_3 + - - - FAVOURITE_CHAR2_9_2 + + + + FAVOURITE_CHAR1_5_1 + + + + FAVOURITE_CHAR2_5_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_5_3 + - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_9_3 + + + + FAVOURITE_CHAR1_6_1 + + + + FAVOURITE_CHAR2_6_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_6_3 + - - - FAVOURITE_CHAR1_10_1 + + + + FAVOURITE_CHAR1_7_1 + + + + FAVOURITE_CHAR2_7_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_7_3 + - - - FAVOURITE_CHAR2_10_2 + + + + FAVOURITE_CHAR1_8_1 + + + + FAVOURITE_CHAR2_8_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_8_3 + - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_10_3 + + + + FAVOURITE_CHAR1_9_1 + + + + FAVOURITE_CHAR2_9_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_9_3 + + + + + + FAVOURITE_CHAR1_10_1 + + + + FAVOURITE_CHAR2_10_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_10_3 + FEELCHAREV3 FEELCHAREV4 - 1 - - - - + 1 - - - 2 - - - - 3 - - - - FEELCHAREV1 + + + + 1 + + + + 2 + + + + 3 + + + + FEELCHAREV1 + - 2 - - - - - 1 - - - + 2 - - - 3 - - - - FEELCHAREV2 + + + + 1 + + + + 2 + + + + 3 + + + + FEELCHAREV2 + - 3 - - - - - 1 - - - - 2 - - - + 3 - - - FEELCHAREV3 + + + + 1 + + + + 2 + + + + 3 + + + + FEELCHAREV3 + - O - - - - - 1 - - - - 2 - - - - 3 + + O - - - FEELCHAREV4 + + + + 1 + + + + 2 + + + + 3 + + + + FEELCHAREV4 + - 1 - - - - - LEAVDURATION11 - - - + 1 - - - 2 - - - - LEAVDURATION12 + + + + LEAVDURATION11 + + + + 1 + + + + 2 + + + + LEAVDURATION12 + - 2 - - - - - LEAVDURATION21 - - - - 1 - - - + 2 - - - LEAVDURATION22 + + + + LEAVDURATION21 + + + + 1 + + + + 2 + + + + LEAVDURATION22 + - 3 - - - - - LEAVDURATION31 - - - - 1 - - - - 2 + + 3 - - - LEAVDURATION32 + + + + LEAVDURATION31 + + + + 1 + + + + 2 + + + + LEAVDURATION32 + - 4 - - - - - LEAVDURATION41 - - - - 1 - - - - 2 + + 4 - - - LEAVDURATION42 + + + + LEAVDURATION41 + + + + 1 + + + + 2 + + + + LEAVDURATION42 + - 5 - - - - - LEAVDURATION51 - - - - 1 - - - - 2 + + 5 - - - LEAVDURATION52 + + + + LEAVDURATION51 + + + + 1 + + + + 2 + + + + LEAVDURATION52 + Date: Wed, 23 Mar 2022 10:06:38 +0100 Subject: [PATCH 14/32] Changing the inner body into bodyLine for differentiating more easily with outer body --- src/main/resources/xsd/LunaticModelFlat.xsd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/xsd/LunaticModelFlat.xsd b/src/main/resources/xsd/LunaticModelFlat.xsd index fe293edf..4774912e 100644 --- a/src/main/resources/xsd/LunaticModelFlat.xsd +++ b/src/main/resources/xsd/LunaticModelFlat.xsd @@ -452,7 +452,7 @@ - + From 46130426e7270d6306bfce4b7f3da92f1f78e947 Mon Sep 17 00:00:00 2001 From: Athemane Dahmouh Date: Wed, 23 Mar 2022 11:07:00 +0100 Subject: [PATCH 15/32] Modif of form_flat to change inner body elements into bodyLine elements* --- src/test/resources/dummy/form_flat.xml | 802 ++++++++++++------------- 1 file changed, 401 insertions(+), 401 deletions(-) diff --git a/src/test/resources/dummy/form_flat.xml b/src/test/resources/dummy/form_flat.xml index 04729a57..ab7fd1a1 100644 --- a/src/test/resources/dummy/form_flat.xml +++ b/src/test/resources/dummy/form_flat.xml @@ -893,14 +893,14 @@ ICE_FLAVOUR3 ICE_FLAVOUR4 - + 1 - - + + 1 ICE_FLAVOUR1 - + - + 2 - - + + 1 ICE_FLAVOUR2 - + - + 3 - - + + 1 ICE_FLAVOUR3 - + - + OT - - + + 1 ICE_FLAVOUR4 - + NUCLEAR_CHARACTER3 NUCLEAR_CHARACTER4 - + 1 - - + + 1 NUCLEAR_CHARACTER1 - + - + 2 - - + + 1 NUCLEAR_CHARACTER2 - + - + 3 - - + + 1 NUCLEAR_CHARACTER3 - + - + 4 - - + + 1 NUCLEAR_CHARACTER4 - + BIRTH_CHARACTER4 BIRTH_CHARACTER5 - + 1 - - + + 1 BIRTH_CHARACTER1 - + - + 2 - - + + 1 BIRTH_CHARACTER2 - + - + 3 - - + + 1 BIRTH_CHARACTER3 - + - + 4 - - + + 1 BIRTH_CHARACTER4 - + - + 5 - - + + 1 BIRTH_CHARACTER5 - + - + A - - + + A1 - - + + % PERCENTAGE_EXPENSES11 - + - + A2 - - + + % PERCENTAGE_EXPENSES21 - + - + B - - + + B1 - - + + % PERCENTAGE_EXPENSES31 - + - + B2 - - + + % PERCENTAGE_EXPENSES41 - + - + B3 - - + + % PERCENTAGE_EXPENSES51 - + - + C - - + + C1 - - + + % PERCENTAGE_EXPENSES61 - + - + D - - + + % PERCENTAGE_EXPENSES71 - + - + E - - + + - + A - - + + A1 - - + + 1 LAST_FOOD_SHOPPING11 - + - + A2 - - + + 1 LAST_FOOD_SHOPPING21 - + - + B - - + + B1 - - + + 1 LAST_FOOD_SHOPPING31 - + - + B2 - - + + 1 LAST_FOOD_SHOPPING41 - + - + B3 - - + + 1 LAST_FOOD_SHOPPING51 - + - + C - - + + C1 - - + + 1 LAST_FOOD_SHOPPING61 - + - + D - - + + 1 LAST_FOOD_SHOPPING71 - + - + E - - + + 1 LAST_FOOD_SHOPPING81 - + - + 1 - - + + 1 CLOWNING11 - - + + CLOWNING12 - + - + 2 - - + + 1 CLOWNING21 - - + + CLOWNING22 - + - + 3 - - + + 1 CLOWNING31 - - + + CLOWNING32 - + - + 4 - - + + 1 CLOWNING41 - - + + CLOWNING42 - + - + 1 - - + + TRAVEL11 - - + + TRAVEL12 - - + + TRAVEL13 - - + + TRAVEL14 - - + + TRAVEL15 - - + + TRAVEL16 - + - + 2 - - + + TRAVEL21 - - + + TRAVEL22 - - + + TRAVEL23 - - + + TRAVEL24 - - + + TRAVEL25 - - + + TRAVEL26 - + - + 3 - - + + TRAVEL31 - - + + TRAVEL32 - - + + TRAVEL33 - - + + TRAVEL34 - - + + TRAVEL35 - - + + TRAVEL36 - + - + 4 - - + + TRAVEL41 - - + + TRAVEL42 - - + + TRAVEL43 - - + + TRAVEL44 - - + + TRAVEL45 - - + + TRAVEL46 - + - + FAVOURITE_CHAR1_1_1 - - + + FAVOURITE_CHAR2_1_2 - - + + 1 FAVOURITE_CHAR3_1_3 - + - + FAVOURITE_CHAR1_2_1 - - + + FAVOURITE_CHAR2_2_2 - - + + 1 FAVOURITE_CHAR3_2_3 - + - + FAVOURITE_CHAR1_3_1 - - + + FAVOURITE_CHAR2_3_2 - - + + 1 FAVOURITE_CHAR3_3_3 - + - + FAVOURITE_CHAR1_4_1 - - + + FAVOURITE_CHAR2_4_2 - - + + 1 FAVOURITE_CHAR3_4_3 - + - + FAVOURITE_CHAR1_5_1 - - + + FAVOURITE_CHAR2_5_2 - - + + 1 FAVOURITE_CHAR3_5_3 - + - + FAVOURITE_CHAR1_6_1 - - + + FAVOURITE_CHAR2_6_2 - - + + 1 FAVOURITE_CHAR3_6_3 - + - + FAVOURITE_CHAR1_7_1 - - + + FAVOURITE_CHAR2_7_2 - - + + 1 FAVOURITE_CHAR3_7_3 - + - + FAVOURITE_CHAR1_8_1 - - + + FAVOURITE_CHAR2_8_2 - - + + 1 FAVOURITE_CHAR3_8_3 - + - + FAVOURITE_CHAR1_9_1 - - + + FAVOURITE_CHAR2_9_2 - - + + 1 FAVOURITE_CHAR3_9_3 - + - + FAVOURITE_CHAR1_10_1 - - + + FAVOURITE_CHAR2_10_2 - - + + 1 FAVOURITE_CHAR3_10_3 - + FEELCHAREV3 FEELCHAREV4 - + 1 - - + + 1 FEELCHAREV1 - + - + 2 - - + + 1 FEELCHAREV2 - + - + 3 - - + + 1 FEELCHAREV3 - + - + O - - + + 1 FEELCHAREV4 - + - + 1 - - + + LEAVDURATION11 - - + + 1 LEAVDURATION12 - + - + 2 - - + + LEAVDURATION21 - - + + 1 LEAVDURATION22 - + - + 3 - - + + LEAVDURATION31 - - + + 1 LEAVDURATION32 - + - + 4 - - + + LEAVDURATION41 - - + + 1 LEAVDURATION42 - + - + 5 - - + + LEAVDURATION51 - - + + 1 LEAVDURATION52 - + Date: Wed, 23 Mar 2022 11:07:52 +0100 Subject: [PATCH 16/32] Modif of json-cleaner xsl stylesheet to clean the bodyLine elements and get in the end a body array of arrays (inner array being a line) --- src/main/resources/xslt/json-cleaner.xsl | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/main/resources/xslt/json-cleaner.xsl b/src/main/resources/xslt/json-cleaner.xsl index d293792a..6b93d81c 100644 --- a/src/main/resources/xslt/json-cleaner.xsl +++ b/src/main/resources/xslt/json-cleaner.xsl @@ -38,15 +38,15 @@
- - + + + + + + + - - - - - - + From ee064deab1807add1cd7ae08f349272c6edad5a4 Mon Sep 17 00:00:00 2001 From: Athemane Dahmouh Date: Wed, 23 Mar 2022 11:14:23 +0100 Subject: [PATCH 17/32] Also changing hierarchical xsd model to include a inner bodyLine element --- src/main/resources/xsd/LunaticModel.xsd | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/main/resources/xsd/LunaticModel.xsd b/src/main/resources/xsd/LunaticModel.xsd index a9ebf968..4c082611 100644 --- a/src/main/resources/xsd/LunaticModel.xsd +++ b/src/main/resources/xsd/LunaticModel.xsd @@ -435,7 +435,7 @@ - + @@ -455,6 +455,12 @@ + + + + + + @@ -465,7 +471,7 @@ - + From fb693e6f8d2f70e4daa1a5ff6261ab4ccd919907 Mon Sep 17 00:00:00 2001 From: Athemane Dahmouh Date: Wed, 23 Mar 2022 11:24:07 +0100 Subject: [PATCH 18/32] Modif of dummy test file input form.xml validating hierarchical model --- src/test/resources/dummy/form.xml | 3420 +++++++++++++++-------------- 1 file changed, 1766 insertions(+), 1654 deletions(-) diff --git a/src/test/resources/dummy/form.xml b/src/test/resources/dummy/form.xml index 005a6bf7..c913ad56 100644 --- a/src/test/resources/dummy/form.xml +++ b/src/test/resources/dummy/form.xml @@ -892,104 +892,112 @@ ICE_FLAVOUR3 ICE_FLAVOUR4 - 1 - - - - + 1 - - - 0 - - - - ICE_FLAVOUR1 + + + + 1 + + + + 0 + + + + ICE_FLAVOUR1 + - 2 - - - - - 1 - - - - 0 + + 2 - - - ICE_FLAVOUR2 + + + + 1 + + + + 0 + + + + ICE_FLAVOUR2 + - 3 - - - - - 1 - - - - 0 + + 3 - - - ICE_FLAVOUR3 + + + + 1 + + + + 0 + + + + ICE_FLAVOUR3 + - OT - - - - - 1 - - - - 0 + + OT - - - ICE_FLAVOUR4 + + + + 1 + + + + 0 + + + + ICE_FLAVOUR4 + NUCLEAR_CHARACTER3 NUCLEAR_CHARACTER4 - 1 - - - - + 1 - - - 0 - - - - NUCLEAR_CHARACTER1 + + + + 1 + + + + 0 + + + + NUCLEAR_CHARACTER1 + - 2 - - - - - 1 - - - - 0 + + 2 - - - NUCLEAR_CHARACTER2 + + + + 1 + + + + 0 + + + + NUCLEAR_CHARACTER2 + - 3 - - - - - 1 - - - - 0 + + 3 - - - NUCLEAR_CHARACTER3 + + + + 1 + + + + 0 + + + + NUCLEAR_CHARACTER3 + - 4 - - - - - 1 - - - - 0 + + 4 - - - NUCLEAR_CHARACTER4 + + + + 1 + + + + 0 + + + + NUCLEAR_CHARACTER4 + BIRTH_CHARACTER4 BIRTH_CHARACTER5 - 1 - - - - + 1 - - - 2 - - - - 3 - - - - 4 - - - - 5 - - - - BIRTH_CHARACTER1 + + + + 1 + + + + 2 + + + + 3 + + + + 4 + + + + 5 + + + + BIRTH_CHARACTER1 + - 2 - - - - - 1 - - - + 2 - - + + + + 1 + + + + 2 + + + + 3 + + + + 4 + + + + 5 + + + + BIRTH_CHARACTER2 + + + + 3 - - + + + + 1 + + + + 2 + + + + 3 + + + + 4 + + + + 5 + + + + BIRTH_CHARACTER3 + + + + 4 - - + + + + 1 + + + + 2 + + + + 3 + + + + 4 + + + + 5 + + + + BIRTH_CHARACTER4 + + + + 5 - - - BIRTH_CHARACTER2 + + + + 1 + + + + 2 + + + + 3 + + + + 4 + + + + 5 + + + + BIRTH_CHARACTER5 + - - 3 + + + + + + (not(cast(READY,integer) <> 1)) + VTL|MD + READY + + + - - - - 1 - - - - 2 - - - - 3 - - - - 4 + + + + + + (not(cast(READY,integer) <> 1)) + VTL|MD + READY + + + - - - 5 + + - - - BIRTH_CHARACTER3 - - - 4 + + + - - - - 1 - - - - 2 - - - - 3 - - - - 4 - - - - 5 - - - - BIRTH_CHARACTER4 - - - 5 - - - - - 1 - - - - 2 - - - - 3 - - - - 4 - - - - 5 - - - - BIRTH_CHARACTER5 - - - - - - - (not(cast(READY,integer) <> 1)) - VTL|MD - READY - - - - - - - - - - (not(cast(READY,integer) <> 1)) - VTL|MD - READY - - - - - - - - - - - @@ -1476,147 +1502,163 @@ VTL|MD - - A - - - A1 - - - - % - - PERCENTAGE_EXPENSES11 + + A + + + + A1 + + + + % + + PERCENTAGE_EXPENSES11 + - A2 - - - - % - - PERCENTAGE_EXPENSES21 - - - B - + + A2 + + + + % + + PERCENTAGE_EXPENSES21 + - B1 - - - - % - - PERCENTAGE_EXPENSES31 + + B + + + + B1 + + + + % + + PERCENTAGE_EXPENSES31 + - B2 - - - - % - - PERCENTAGE_EXPENSES41 + + B2 + + + + % + + PERCENTAGE_EXPENSES41 + - B3 - - - - % - - PERCENTAGE_EXPENSES51 + + B3 + + + + % + + PERCENTAGE_EXPENSES51 + - C - + + C + + + + C1 + + + + % + + PERCENTAGE_EXPENSES61 + - C1 - - - - % - - PERCENTAGE_EXPENSES61 - - - D - - - - % - - PERCENTAGE_EXPENSES71 + + D + + + + % + + PERCENTAGE_EXPENSES71 + - - E - + + + E + + + - VTL|MD - - A - - - A1 - - - - - 1 - - - - 2 + + A - - - 3 + + + A1 - - - LAST_FOOD_SHOPPING11 + + + + 1 + + + + 2 + + + + 3 + + + + LAST_FOOD_SHOPPING11 + - A2 - - - - - 1 + + A2 - - - 2 - - - - 3 - - - - LAST_FOOD_SHOPPING21 - - - B - + + + + 1 + + + + 2 + + + + 3 + + + + LAST_FOOD_SHOPPING21 + - B1 - - - - - 1 - - - - 2 + + B - - - 3 + + + B1 - - - LAST_FOOD_SHOPPING31 + + + + 1 + + + + 2 + + + + 3 + + + + LAST_FOOD_SHOPPING31 + - B2 - - - - - 1 - - - - 2 + + B2 - - - 3 - - - - LAST_FOOD_SHOPPING41 + + + + 1 + + + + 2 + + + + 3 + + + + LAST_FOOD_SHOPPING41 + - B3 - - - - - 1 - - - - 2 - - - - 3 + + B3 - - - LAST_FOOD_SHOPPING51 - - - C - + + + + 1 + + + + 2 + + + + 3 + + + + LAST_FOOD_SHOPPING51 + - C1 - - - - - 1 - - - - 2 + + C - - - 3 + + + C1 - - - LAST_FOOD_SHOPPING61 - - - D - + + + + 1 + + + + 2 + + + + 3 + + + + LAST_FOOD_SHOPPING61 + - - - 1 - - - - 2 - - - - 3 + + + D - - - LAST_FOOD_SHOPPING71 - - - E - + + + + 1 + + + + 2 + + + + 3 + + + + LAST_FOOD_SHOPPING71 + - - - 1 - - - - 2 - - - - 3 + + + E - - - LAST_FOOD_SHOPPING81 + + + + 1 + + + + 2 + + + + 3 + + + + LAST_FOOD_SHOPPING81 + @@ -2029,176 +2087,184 @@ - 1 - - - - + 1 - - + + + + 1 + + + + 2 + + + + 3 + + + + O + + + + CLOWNING11 + + + + CLOWNING12 + + + + 2 - - + + + + 1 + + + + 2 + + + + 3 + + + + O + + + + CLOWNING21 + + + + CLOWNING22 + + + + 3 - - - O - - - - CLOWNING11 - - - - CLOWNING12 - - - 2 - - - - - 1 - - - - 2 - - - - 3 - - - - O - - - - CLOWNING21 - - - - CLOWNING22 - - - 3 - - - - - 1 - - - - 2 - - - - 3 - - - - O - - - - CLOWNING31 - - - - CLOWNING32 + + + + 1 + + + + 2 + + + + 3 + + + + O + + + + CLOWNING31 + + + + CLOWNING32 + - 4 - - - - - 1 - - - - 2 - - - - 3 - - - - O + + 4 - - - CLOWNING41 - - - - CLOWNING42 + + + + 1 + + + + 2 + + + + 3 + + + + O + + + + CLOWNING41 + + + + CLOWNING42 + @@ -2333,128 +2399,136 @@ - 1 - - - - - TRAVEL11 - - - - TRAVEL12 - - - - TRAVEL13 - - - - TRAVEL14 - - - - TRAVEL15 - - - - TRAVEL16 + + 1 + + + + + TRAVEL11 + + + + TRAVEL12 + + + + TRAVEL13 + + + + TRAVEL14 + + + + TRAVEL15 + + + + TRAVEL16 + - 2 - - - - - TRAVEL21 - - - - TRAVEL22 - - - - TRAVEL23 - - - - TRAVEL24 - - - - TRAVEL25 - - - - TRAVEL26 + + 2 + + + + + TRAVEL21 + + + + TRAVEL22 + + + + TRAVEL23 + + + + TRAVEL24 + + + + TRAVEL25 + + + + TRAVEL26 + - 3 - - - - - TRAVEL31 - - - - TRAVEL32 - - - - TRAVEL33 - - - - TRAVEL34 - - - - TRAVEL35 - - - - TRAVEL36 + + 3 + + + + + TRAVEL31 + + + + TRAVEL32 + + + + TRAVEL33 + + + + TRAVEL34 + + + + TRAVEL35 + + + + TRAVEL36 + - 4 - - - - - TRAVEL41 - - - - TRAVEL42 - - - - TRAVEL43 - - - - TRAVEL44 - - - - TRAVEL45 - - - - TRAVEL46 + + 4 + + + + + TRAVEL41 + + + + TRAVEL42 + + + + TRAVEL43 + + + + TRAVEL44 + + + + TRAVEL45 + + + + TRAVEL46 + @@ -2564,375 +2638,395 @@ VTL|MD - - - FAVOURITE_CHAR1_1_1 - - - - FAVOURITE_CHAR2_1_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_1_3 - - - - FAVOURITE_CHAR1_2_1 + + + + FAVOURITE_CHAR1_1_1 + + + + FAVOURITE_CHAR2_1_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_1_3 + - - - FAVOURITE_CHAR2_2_2 + + + + FAVOURITE_CHAR1_2_1 + + + + FAVOURITE_CHAR2_2_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_2_3 + - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_2_3 - - - - FAVOURITE_CHAR1_3_1 - - - - FAVOURITE_CHAR2_3_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_3_3 - - - - FAVOURITE_CHAR1_4_1 - - - - FAVOURITE_CHAR2_4_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_4_3 - - - - FAVOURITE_CHAR1_5_1 - - - - FAVOURITE_CHAR2_5_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_5_3 - - - - FAVOURITE_CHAR1_6_1 - - - - FAVOURITE_CHAR2_6_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_6_3 - - - - FAVOURITE_CHAR1_7_1 - - - - FAVOURITE_CHAR2_7_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_7_3 - - - - FAVOURITE_CHAR1_8_1 - - - - FAVOURITE_CHAR2_8_2 + + + + FAVOURITE_CHAR1_3_1 + + + + FAVOURITE_CHAR2_3_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_3_3 + - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_8_3 + + + + FAVOURITE_CHAR1_4_1 + + + + FAVOURITE_CHAR2_4_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_4_3 + - - - FAVOURITE_CHAR1_9_1 + + + + FAVOURITE_CHAR1_5_1 + + + + FAVOURITE_CHAR2_5_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_5_3 + - - - FAVOURITE_CHAR2_9_2 + + + + FAVOURITE_CHAR1_6_1 + + + + FAVOURITE_CHAR2_6_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_6_3 + - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_9_3 + + + + FAVOURITE_CHAR1_7_1 + + + + FAVOURITE_CHAR2_7_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_7_3 + - - - FAVOURITE_CHAR1_10_1 + + + + FAVOURITE_CHAR1_8_1 + + + + FAVOURITE_CHAR2_8_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_8_3 + - - - FAVOURITE_CHAR2_10_2 + + + + FAVOURITE_CHAR1_9_1 + + + + FAVOURITE_CHAR2_9_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_9_3 + - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_10_3 + + + + FAVOURITE_CHAR1_10_1 + + + + FAVOURITE_CHAR2_10_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_10_3 + (not(cast(READY,integer) <> 1)) VTL|MD - READY - - - - - - - FEELCHAREV1 - FEELCHAREV2 - FEELCHAREV3 - FEELCHAREV4 - - 1 - - - - - 1 - - - - 2 - - - - 3 - - - - FEELCHAREV1 - - - 2 - - - - - 1 - - - - 2 - - - - 3 + READY + + + - - - FEELCHAREV2 - + + + FEELCHAREV1 + FEELCHAREV2 + FEELCHAREV3 + FEELCHAREV4 - 3 - - - - + 1 - - + + + + 1 + + + + 2 + + + + 3 + + + + FEELCHAREV1 + + + + 2 - - + + + + 1 + + + + 2 + + + + 3 + + + + FEELCHAREV2 + + + + 3 - - - FEELCHAREV3 + + + + 1 + + + + 2 + + + + 3 + + + + FEELCHAREV3 + - O - - - - - 1 - - - - 2 - - - - 3 + + O - - - FEELCHAREV4 + + + + 1 + + + + 2 + + + + 3 + + + + FEELCHAREV4 + - 1 - - - - - LEAVDURATION11 - - - + 1 - - - 2 - - - - LEAVDURATION12 + + + + LEAVDURATION11 + + + + 1 + + + + 2 + + + + LEAVDURATION12 + - 2 - - - - - LEAVDURATION21 - - - - 1 - - - + 2 - - - LEAVDURATION22 + + + + LEAVDURATION21 + + + + 1 + + + + 2 + + + + LEAVDURATION22 + - 3 - - - - - LEAVDURATION31 - - - - 1 - - - - 2 + + 3 - - - LEAVDURATION32 + + + + LEAVDURATION31 + + + + 1 + + + + 2 + + + + LEAVDURATION32 + - 4 - - - - - LEAVDURATION41 - - - - 1 - - - - 2 + + 4 - - - LEAVDURATION42 + + + + LEAVDURATION41 + + + + 1 + + + + 2 + + + + LEAVDURATION42 + - 5 - - - - - LEAVDURATION51 - - - - 1 - - - - 2 + + 5 - - - LEAVDURATION52 + + + + LEAVDURATION51 + + + + 1 + + + + 2 + + + + LEAVDURATION52 + From 99a644589ea80acb8a381f9cd79cd5b8b5011dc0 Mon Sep 17 00:00:00 2001 From: Athemane Dahmouh Date: Wed, 23 Mar 2022 11:37:07 +0100 Subject: [PATCH 19/32] Changing expected output test files to fit with new format --- .../resources/examples/xmlf-2-jsonf/out.json | 3704 +++++++++-------- .../resources/examples/xmlh-2-jsonf/out.json | 3704 +++++++++-------- .../resources/examples/xmlh-2-jsonh/out.json | 3574 ++++++++-------- .../resources/examples/xmlh-2-xmlf/out.xml | 3424 +++++++-------- 4 files changed, 7343 insertions(+), 7063 deletions(-) diff --git a/src/test/resources/examples/xmlf-2-jsonf/out.json b/src/test/resources/examples/xmlf-2-jsonf/out.json index 93f2ef5a..9c6c6ee4 100644 --- a/src/test/resources/examples/xmlf-2-jsonf/out.json +++ b/src/test/resources/examples/xmlf-2-jsonf/out.json @@ -3,7 +3,7 @@ "modele" : "SIMPSONS", "enoCoreVersion" : "2.2.8", "lunaticModelVersion" : "2.2.11", - "generatingDate" : "22-03-2022 15:37:32", + "generatingDate" : "23-03-2022 11:22:03", "pagination" : "question", "maxPage" : "37", "label" : @@ -821,97 +821,101 @@ "ICE_FLAVOUR4" ], "body" : [ - { "value" : "1", - "label" : - { "value" : "\"Vanilla\"", - "type" : "VTL|MD" } }, - - { "componentType" : "Radio", - "id" : "j6p29i81-QOP-kiq5w99y", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "0", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "ICE_FLAVOUR1" }, - "bindingDependencies" : - [ "ICE_FLAVOUR1" ] }, - - { "value" : "2", - "label" : - { "value" : "\"Strawberry\"", - "type" : "VTL|MD" } }, - - { "componentType" : "Radio", - "id" : "j6p29i81-QOP-kiq5ummf", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "0", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "ICE_FLAVOUR2" }, - "bindingDependencies" : - [ "ICE_FLAVOUR2" ] }, - - { "value" : "3", - "label" : - { "value" : "\"Apple\"", - "type" : "VTL|MD" } }, - - { "componentType" : "Radio", - "id" : "j6p29i81-QOP-kiq5mry5", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "0", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "ICE_FLAVOUR3" }, - "bindingDependencies" : - [ "ICE_FLAVOUR3" ] }, - - { "value" : "OT", - "label" : - { "value" : "\"Other flavour\"", - "type" : "VTL|MD" } }, - - { "componentType" : "Radio", - "id" : "j6p29i81-QOP-kiq5lkr8", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "0", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "ICE_FLAVOUR4" }, - "bindingDependencies" : - [ "ICE_FLAVOUR4" ] } ] }, + [ + { "value" : "1", + "label" : + { "value" : "\"Vanilla\"", + "type" : "VTL|MD" } }, + + { "componentType" : "Radio", + "id" : "j6p29i81-QOP-kiq5w99y", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "0", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "ICE_FLAVOUR1" }, + "bindingDependencies" : + [ "ICE_FLAVOUR1" ] } ], + + [ + { "value" : "2", + "label" : + { "value" : "\"Strawberry\"", + "type" : "VTL|MD" } }, + + { "componentType" : "Radio", + "id" : "j6p29i81-QOP-kiq5ummf", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "0", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "ICE_FLAVOUR2" }, + "bindingDependencies" : + [ "ICE_FLAVOUR2" ] } ], + + [ + { "value" : "3", + "label" : + { "value" : "\"Apple\"", + "type" : "VTL|MD" } }, + + { "componentType" : "Radio", + "id" : "j6p29i81-QOP-kiq5mry5", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "0", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "ICE_FLAVOUR3" }, + "bindingDependencies" : + [ "ICE_FLAVOUR3" ] } ], + + [ + { "value" : "OT", + "label" : + { "value" : "\"Other flavour\"", + "type" : "VTL|MD" } }, + + { "componentType" : "Radio", + "id" : "j6p29i81-QOP-kiq5lkr8", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "0", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "ICE_FLAVOUR4" }, + "bindingDependencies" : + [ "ICE_FLAVOUR4" ] } ] ] }, { "id" : "j6qefnga", "componentType" : "Table", @@ -940,97 +944,101 @@ "NUCLEAR_CHARACTER4" ], "body" : [ - { "value" : "1", - "label" : - { "value" : "\"Charles Montgomery Burns\"", - "type" : "VTL|MD" } }, - - { "componentType" : "Dropdown", - "id" : "j6qefnga-QOP-kewva8xg", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "0", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "NUCLEAR_CHARACTER1" }, - "bindingDependencies" : - [ "NUCLEAR_CHARACTER1" ] }, - - { "value" : "2", - "label" : - { "value" : "\"Carl Carlson\"", - "type" : "VTL|MD" } }, - - { "componentType" : "Dropdown", - "id" : "j6qefnga-QOP-kewvj0ad", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "0", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "NUCLEAR_CHARACTER2" }, - "bindingDependencies" : - [ "NUCLEAR_CHARACTER2" ] }, - - { "value" : "3", - "label" : - { "value" : "\"Otto Mann\"", - "type" : "VTL|MD" } }, - - { "componentType" : "Dropdown", - "id" : "j6qefnga-QOP-kewveltm", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "0", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "NUCLEAR_CHARACTER3" }, - "bindingDependencies" : - [ "NUCLEAR_CHARACTER3" ] }, - - { "value" : "4", - "label" : - { "value" : "\"Lenny Leonard\"", - "type" : "VTL|MD" } }, - - { "componentType" : "Dropdown", - "id" : "j6qefnga-QOP-kewvgax4", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "0", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "NUCLEAR_CHARACTER4" }, - "bindingDependencies" : - [ "NUCLEAR_CHARACTER4" ] } ] }, + [ + { "value" : "1", + "label" : + { "value" : "\"Charles Montgomery Burns\"", + "type" : "VTL|MD" } }, + + { "componentType" : "Dropdown", + "id" : "j6qefnga-QOP-kewva8xg", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "0", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "NUCLEAR_CHARACTER1" }, + "bindingDependencies" : + [ "NUCLEAR_CHARACTER1" ] } ], + + [ + { "value" : "2", + "label" : + { "value" : "\"Carl Carlson\"", + "type" : "VTL|MD" } }, + + { "componentType" : "Dropdown", + "id" : "j6qefnga-QOP-kewvj0ad", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "0", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "NUCLEAR_CHARACTER2" }, + "bindingDependencies" : + [ "NUCLEAR_CHARACTER2" ] } ], + + [ + { "value" : "3", + "label" : + { "value" : "\"Otto Mann\"", + "type" : "VTL|MD" } }, + + { "componentType" : "Dropdown", + "id" : "j6qefnga-QOP-kewveltm", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "0", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "NUCLEAR_CHARACTER3" }, + "bindingDependencies" : + [ "NUCLEAR_CHARACTER3" ] } ], + + [ + { "value" : "4", + "label" : + { "value" : "\"Lenny Leonard\"", + "type" : "VTL|MD" } }, + + { "componentType" : "Dropdown", + "id" : "j6qefnga-QOP-kewvgax4", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "0", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "NUCLEAR_CHARACTER4" }, + "bindingDependencies" : + [ "NUCLEAR_CHARACTER4" ] } ] ] }, { "id" : "j6yzoc6g", "componentType" : "Table", @@ -1050,205 +1058,210 @@ { "id" : "j6qe0h9q", "page" : "18", "label" : - { "value" : "\"III - Characters\"", - "type" : "VTL|MD" } } }, - "bindingDependencies" : - [ "BIRTH_CHARACTER1", - "BIRTH_CHARACTER2", - "BIRTH_CHARACTER3", - "BIRTH_CHARACTER4", - "BIRTH_CHARACTER5" ], - "body" : - [ - { "value" : "1", - "label" : - { "value" : "\"Selma Bouvier\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "j6yzoc6g-QOP-kewvjvcs", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Albuquerque\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Springfield\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Portland\"", - "type" : "VTL|MD" } }, - - { "value" : "4", - "label" : - { "value" : "\"Shelbyville\"", - "type" : "VTL|MD" } }, - - { "value" : "5", - "label" : - { "value" : "\"Dagstuhl\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "BIRTH_CHARACTER1" }, - "bindingDependencies" : - [ "BIRTH_CHARACTER1" ] }, - - { "value" : "2", - "label" : - { "value" : "\"Kent Brockman\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "j6yzoc6g-QOP-kewvhoda", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Albuquerque\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Springfield\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Portland\"", - "type" : "VTL|MD" } }, - - { "value" : "4", - "label" : - { "value" : "\"Shelbyville\"", - "type" : "VTL|MD" } }, - - { "value" : "5", - "label" : - { "value" : "\"Dagstuhl\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "BIRTH_CHARACTER2" }, - "bindingDependencies" : - [ "BIRTH_CHARACTER2" ] }, - - { "value" : "3", - "label" : - { "value" : "\"Milhouse Van Houten\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "j6yzoc6g-QOP-kewv64s5", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Albuquerque\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Springfield\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Portland\"", - "type" : "VTL|MD" } }, - - { "value" : "4", - "label" : - { "value" : "\"Shelbyville\"", - "type" : "VTL|MD" } }, - - { "value" : "5", - "label" : - { "value" : "\"Dagstuhl\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "BIRTH_CHARACTER3" }, - "bindingDependencies" : - [ "BIRTH_CHARACTER3" ] }, - - { "value" : "4", - "label" : - { "value" : "\"Nelson Muntz\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "j6yzoc6g-QOP-kewvj21j", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Albuquerque\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Springfield\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Portland\"", - "type" : "VTL|MD" } }, - - { "value" : "4", - "label" : - { "value" : "\"Shelbyville\"", - "type" : "VTL|MD" } }, - - { "value" : "5", - "label" : - { "value" : "\"Dagstuhl\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "BIRTH_CHARACTER4" }, - "bindingDependencies" : - [ "BIRTH_CHARACTER4" ] }, - - { "value" : "5", - "label" : - { "value" : "\"Crazy Cat Lady\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "j6yzoc6g-QOP-kewva5uf", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Albuquerque\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Springfield\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Portland\"", - "type" : "VTL|MD" } }, - - { "value" : "4", - "label" : - { "value" : "\"Shelbyville\"", - "type" : "VTL|MD" } }, - - { "value" : "5", - "label" : - { "value" : "\"Dagstuhl\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "BIRTH_CHARACTER5" }, - "bindingDependencies" : - [ "BIRTH_CHARACTER5" ] } ] }, + { "value" : "\"III - Characters\"", + "type" : "VTL|MD" } } }, + "bindingDependencies" : + [ "BIRTH_CHARACTER1", + "BIRTH_CHARACTER2", + "BIRTH_CHARACTER3", + "BIRTH_CHARACTER4", + "BIRTH_CHARACTER5" ], + "body" : + [ + [ + { "value" : "1", + "label" : + { "value" : "\"Selma Bouvier\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "j6yzoc6g-QOP-kewvjvcs", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Albuquerque\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Springfield\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Portland\"", + "type" : "VTL|MD" } }, + + { "value" : "4", + "label" : + { "value" : "\"Shelbyville\"", + "type" : "VTL|MD" } }, + + { "value" : "5", + "label" : + { "value" : "\"Dagstuhl\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "BIRTH_CHARACTER1" }, + "bindingDependencies" : + [ "BIRTH_CHARACTER1" ] } ], + + [ + { "value" : "2", + "label" : + { "value" : "\"Kent Brockman\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "j6yzoc6g-QOP-kewvhoda", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Albuquerque\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Springfield\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Portland\"", + "type" : "VTL|MD" } }, + + { "value" : "4", + "label" : + { "value" : "\"Shelbyville\"", + "type" : "VTL|MD" } }, + + { "value" : "5", + "label" : + { "value" : "\"Dagstuhl\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "BIRTH_CHARACTER2" }, + "bindingDependencies" : + [ "BIRTH_CHARACTER2" ] } ], + + [ + { "value" : "3", + "label" : + { "value" : "\"Milhouse Van Houten\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "j6yzoc6g-QOP-kewv64s5", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Albuquerque\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Springfield\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Portland\"", + "type" : "VTL|MD" } }, + + { "value" : "4", + "label" : + { "value" : "\"Shelbyville\"", + "type" : "VTL|MD" } }, + + { "value" : "5", + "label" : + { "value" : "\"Dagstuhl\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "BIRTH_CHARACTER3" }, + "bindingDependencies" : + [ "BIRTH_CHARACTER3" ] } ], + + [ + { "value" : "4", + "label" : + { "value" : "\"Nelson Muntz\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "j6yzoc6g-QOP-kewvj21j", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Albuquerque\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Springfield\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Portland\"", + "type" : "VTL|MD" } }, + + { "value" : "4", + "label" : + { "value" : "\"Shelbyville\"", + "type" : "VTL|MD" } }, + + { "value" : "5", + "label" : + { "value" : "\"Dagstuhl\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "BIRTH_CHARACTER4" }, + "bindingDependencies" : + [ "BIRTH_CHARACTER4" ] } ], + + [ + { "value" : "5", + "label" : + { "value" : "\"Crazy Cat Lady\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "j6yzoc6g-QOP-kewva5uf", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Albuquerque\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Springfield\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Portland\"", + "type" : "VTL|MD" } }, + + { "value" : "4", + "label" : + { "value" : "\"Shelbyville\"", + "type" : "VTL|MD" } }, + + { "value" : "5", + "label" : + { "value" : "\"Dagstuhl\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "BIRTH_CHARACTER5" }, + "bindingDependencies" : + [ "BIRTH_CHARACTER5" ] } ] ] }, { "id" : "j4nw88h2", "componentType" : "Sequence", @@ -1340,143 +1353,151 @@ "type" : "VTL|MD" } } ], "body" : [ - { "rowspan" : 2, - "value" : "A", - "label" : - { "value" : "\"Frozen products\"", - "type" : "VTL|MD" } }, - - { "value" : "A1", - "label" : - { "value" : "\"Ice creams\"", - "type" : "VTL|MD" } }, - - { "componentType" : "InputNumber", - "min" : 0, - "max" : 100, - "decimals" : 1, - "id" : "j4nwc63q-QOP-kewv2h3o", - "unit" : "%", - "response" : - { "name" : "PERCENTAGE_EXPENSES11" }, - "bindingDependencies" : - [ "PERCENTAGE_EXPENSES11" ] }, - - { "value" : "A2", - "label" : - { "value" : "\"Jasper Beardly\"", - "type" : "VTL|MD" } }, - - { "componentType" : "InputNumber", - "min" : 0, - "max" : 100, - "decimals" : 1, - "id" : "j4nwc63q-QOP-kewvka2j", - "unit" : "%", - "response" : - { "name" : "PERCENTAGE_EXPENSES21" }, - "bindingDependencies" : - [ "PERCENTAGE_EXPENSES21" ] }, - - { "rowspan" : 3, - "value" : "B", - "label" : - { "value" : "\"Meat\"", - "type" : "VTL|MD" } }, - - { "value" : "B1", - "label" : - { "value" : "\"Bacon\"", - "type" : "VTL|MD" } }, - - { "componentType" : "InputNumber", - "min" : 0, - "max" : 100, - "decimals" : 1, - "id" : "j4nwc63q-QOP-kewv1f2a", - "unit" : "%", - "response" : - { "name" : "PERCENTAGE_EXPENSES31" }, - "bindingDependencies" : - [ "PERCENTAGE_EXPENSES31" ] }, - - { "value" : "B2", - "label" : - { "value" : "\"Pork chop\"", - "type" : "VTL|MD" } }, - - { "componentType" : "InputNumber", - "min" : 0, - "max" : 100, - "decimals" : 1, - "id" : "j4nwc63q-QOP-kewvb2ql", - "unit" : "%", - "response" : - { "name" : "PERCENTAGE_EXPENSES41" }, - "bindingDependencies" : - [ "PERCENTAGE_EXPENSES41" ] }, - - { "value" : "B3", - "label" : - { "value" : "\"Chicken\"", - "type" : "VTL|MD" } }, - - { "componentType" : "InputNumber", - "min" : 0, - "max" : 100, - "decimals" : 1, - "id" : "j4nwc63q-QOP-kewvbxla", - "unit" : "%", - "response" : - { "name" : "PERCENTAGE_EXPENSES51" }, - "bindingDependencies" : - [ "PERCENTAGE_EXPENSES51" ] }, - - { "value" : "C", - "label" : - { "value" : "\"Compote\"", - "type" : "VTL|MD" } }, - - { "value" : "C1", - "label" : - { "value" : "\"Powersauce\"", - "type" : "VTL|MD" } }, - - { "componentType" : "InputNumber", - "min" : 0, - "max" : 100, - "decimals" : 1, - "id" : "j4nwc63q-QOP-kewvkjp0", - "unit" : "%", - "response" : - { "name" : "PERCENTAGE_EXPENSES61" }, - "bindingDependencies" : - [ "PERCENTAGE_EXPENSES61" ] }, - - { "colspan" : 2, - "value" : "D", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } }, - - { "componentType" : "InputNumber", - "min" : 0, - "max" : 100, - "decimals" : 1, - "id" : "j4nwc63q-QOP-kewv2cyx", - "unit" : "%", - "response" : - { "name" : "PERCENTAGE_EXPENSES71" }, - "bindingDependencies" : - [ "PERCENTAGE_EXPENSES71" ] }, - - { "colspan" : 2, - "value" : "E", - "label" : - { "value" : "\"Total\"", - "type" : "VTL|MD" } }, + [ + { "rowspan" : 2, + "value" : "A", + "label" : + { "value" : "\"Frozen products\"", + "type" : "VTL|MD" } }, + + { "value" : "A1", + "label" : + { "value" : "\"Ice creams\"", + "type" : "VTL|MD" } }, + + { "componentType" : "InputNumber", + "min" : 0, + "max" : 100, + "decimals" : 1, + "id" : "j4nwc63q-QOP-kewv2h3o", + "unit" : "%", + "response" : + { "name" : "PERCENTAGE_EXPENSES11" }, + "bindingDependencies" : + [ "PERCENTAGE_EXPENSES11" ] } ], + + [ + { "value" : "A2", + "label" : + { "value" : "\"Jasper Beardly\"", + "type" : "VTL|MD" } }, + + { "componentType" : "InputNumber", + "min" : 0, + "max" : 100, + "decimals" : 1, + "id" : "j4nwc63q-QOP-kewvka2j", + "unit" : "%", + "response" : + { "name" : "PERCENTAGE_EXPENSES21" }, + "bindingDependencies" : + [ "PERCENTAGE_EXPENSES21" ] } ], + + [ + { "rowspan" : 3, + "value" : "B", + "label" : + { "value" : "\"Meat\"", + "type" : "VTL|MD" } }, + + { "value" : "B1", + "label" : + { "value" : "\"Bacon\"", + "type" : "VTL|MD" } }, + + { "componentType" : "InputNumber", + "min" : 0, + "max" : 100, + "decimals" : 1, + "id" : "j4nwc63q-QOP-kewv1f2a", + "unit" : "%", + "response" : + { "name" : "PERCENTAGE_EXPENSES31" }, + "bindingDependencies" : + [ "PERCENTAGE_EXPENSES31" ] } ], + + [ + { "value" : "B2", + "label" : + { "value" : "\"Pork chop\"", + "type" : "VTL|MD" } }, + + { "componentType" : "InputNumber", + "min" : 0, + "max" : 100, + "decimals" : 1, + "id" : "j4nwc63q-QOP-kewvb2ql", + "unit" : "%", + "response" : + { "name" : "PERCENTAGE_EXPENSES41" }, + "bindingDependencies" : + [ "PERCENTAGE_EXPENSES41" ] } ], + + [ + { "value" : "B3", + "label" : + { "value" : "\"Chicken\"", + "type" : "VTL|MD" } }, + + { "componentType" : "InputNumber", + "min" : 0, + "max" : 100, + "decimals" : 1, + "id" : "j4nwc63q-QOP-kewvbxla", + "unit" : "%", + "response" : + { "name" : "PERCENTAGE_EXPENSES51" }, + "bindingDependencies" : + [ "PERCENTAGE_EXPENSES51" ] } ], + + [ + { "value" : "C", + "label" : + { "value" : "\"Compote\"", + "type" : "VTL|MD" } }, + + { "value" : "C1", + "label" : + { "value" : "\"Powersauce\"", + "type" : "VTL|MD" } }, + + { "componentType" : "InputNumber", + "min" : 0, + "max" : 100, + "decimals" : 1, + "id" : "j4nwc63q-QOP-kewvkjp0", + "unit" : "%", + "response" : + { "name" : "PERCENTAGE_EXPENSES61" }, + "bindingDependencies" : + [ "PERCENTAGE_EXPENSES61" ] } ], + + [ + { "colspan" : 2, + "value" : "D", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } }, + + { "componentType" : "InputNumber", + "min" : 0, + "max" : 100, + "decimals" : 1, + "id" : "j4nwc63q-QOP-kewv2cyx", + "unit" : "%", + "response" : + { "name" : "PERCENTAGE_EXPENSES71" }, + "bindingDependencies" : + [ "PERCENTAGE_EXPENSES71" ] } ], - { } ] }, + [ + { "colspan" : 2, + "value" : "E", + "label" : + { "value" : "\"Total\"", + "type" : "VTL|MD" } }, + + { } ] ] }, { "id" : "k9cg2q5t", "componentType" : "Table", @@ -1496,277 +1517,285 @@ { "id" : "j4nw88h2", "page" : "23", "label" : - { "value" : "\"IV - General questions\"", - "type" : "VTL|MD" } }, - "subSequence" : - { "id" : "j6qe237q", - "page" : "24", - "label" : - { "value" : "\"Kwik-E-Mart\"", - "type" : "VTL|MD" } } }, - "bindingDependencies" : - [ "LAST_FOOD_SHOPPING11", - "LAST_FOOD_SHOPPING21", - "LAST_FOOD_SHOPPING31", - "LAST_FOOD_SHOPPING41", - "LAST_FOOD_SHOPPING51", - "LAST_FOOD_SHOPPING61", - "LAST_FOOD_SHOPPING71", - "LAST_FOOD_SHOPPING81" ], - "header" : - [ - { "colspan" : 2, - "label" : - { "value" : "", - "type" : "VTL|MD" } }, - - { "label" : - { "value" : "\"In his last food shopping\"", - "type" : "VTL|MD" } } ], - "body" : - [ - { "rowspan" : 2, - "value" : "A", - "label" : - { "value" : "\"Frozen products\"", - "type" : "VTL|MD" } }, - - { "value" : "A1", - "label" : - { "value" : "\"Ice creams\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "k9cg2q5t-QOP-kiq6pljq", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "LAST_FOOD_SHOPPING11" }, - "bindingDependencies" : - [ "LAST_FOOD_SHOPPING11" ] }, - - { "value" : "A2", - "label" : - { "value" : "\"Jasper Beardly\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "k9cg2q5t-QOP-kiq6mgpv", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "LAST_FOOD_SHOPPING21" }, - "bindingDependencies" : - [ "LAST_FOOD_SHOPPING21" ] }, - - { "rowspan" : 3, - "value" : "B", - "label" : - { "value" : "\"Meat\"", - "type" : "VTL|MD" } }, - - { "value" : "B1", - "label" : - { "value" : "\"Bacon\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "k9cg2q5t-QOP-kiq6pmtz", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "LAST_FOOD_SHOPPING31" }, - "bindingDependencies" : - [ "LAST_FOOD_SHOPPING31" ] }, - - { "value" : "B2", - "label" : - { "value" : "\"Pork chop\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "k9cg2q5t-QOP-kiq6k4lf", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "LAST_FOOD_SHOPPING41" }, - "bindingDependencies" : - [ "LAST_FOOD_SHOPPING41" ] }, - - { "value" : "B3", - "label" : - { "value" : "\"Chicken\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "k9cg2q5t-QOP-kiq6p70n", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "LAST_FOOD_SHOPPING51" }, - "bindingDependencies" : - [ "LAST_FOOD_SHOPPING51" ] }, - - { "value" : "C", - "label" : - { "value" : "\"Compote\"", - "type" : "VTL|MD" } }, - - { "value" : "C1", - "label" : - { "value" : "\"Powersauce\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "k9cg2q5t-QOP-kiq6lh5v", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "LAST_FOOD_SHOPPING61" }, - "bindingDependencies" : - [ "LAST_FOOD_SHOPPING61" ] }, - - { "colspan" : 2, - "value" : "D", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "k9cg2q5t-QOP-kiq703te", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "LAST_FOOD_SHOPPING71" }, - "bindingDependencies" : - [ "LAST_FOOD_SHOPPING71" ] }, - + { "value" : "\"IV - General questions\"", + "type" : "VTL|MD" } }, + "subSequence" : + { "id" : "j6qe237q", + "page" : "24", + "label" : + { "value" : "\"Kwik-E-Mart\"", + "type" : "VTL|MD" } } }, + "bindingDependencies" : + [ "LAST_FOOD_SHOPPING11", + "LAST_FOOD_SHOPPING21", + "LAST_FOOD_SHOPPING31", + "LAST_FOOD_SHOPPING41", + "LAST_FOOD_SHOPPING51", + "LAST_FOOD_SHOPPING61", + "LAST_FOOD_SHOPPING71", + "LAST_FOOD_SHOPPING81" ], + "header" : + [ { "colspan" : 2, - "value" : "E", "label" : - { "value" : "\"Total\"", + { "value" : "", "type" : "VTL|MD" } }, - { "componentType" : "CheckboxOne", - "id" : "k9cg2q5t-QOP-kiq6zpd3", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "LAST_FOOD_SHOPPING81" }, - "bindingDependencies" : - [ "LAST_FOOD_SHOPPING81" ] } ] }, + { "label" : + { "value" : "\"In his last food shopping\"", + "type" : "VTL|MD" } } ], + "body" : + [ + [ + { "rowspan" : 2, + "value" : "A", + "label" : + { "value" : "\"Frozen products\"", + "type" : "VTL|MD" } }, + + { "value" : "A1", + "label" : + { "value" : "\"Ice creams\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "k9cg2q5t-QOP-kiq6pljq", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "LAST_FOOD_SHOPPING11" }, + "bindingDependencies" : + [ "LAST_FOOD_SHOPPING11" ] } ], + + [ + { "value" : "A2", + "label" : + { "value" : "\"Jasper Beardly\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "k9cg2q5t-QOP-kiq6mgpv", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "LAST_FOOD_SHOPPING21" }, + "bindingDependencies" : + [ "LAST_FOOD_SHOPPING21" ] } ], + + [ + { "rowspan" : 3, + "value" : "B", + "label" : + { "value" : "\"Meat\"", + "type" : "VTL|MD" } }, + + { "value" : "B1", + "label" : + { "value" : "\"Bacon\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "k9cg2q5t-QOP-kiq6pmtz", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "LAST_FOOD_SHOPPING31" }, + "bindingDependencies" : + [ "LAST_FOOD_SHOPPING31" ] } ], + + [ + { "value" : "B2", + "label" : + { "value" : "\"Pork chop\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "k9cg2q5t-QOP-kiq6k4lf", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "LAST_FOOD_SHOPPING41" }, + "bindingDependencies" : + [ "LAST_FOOD_SHOPPING41" ] } ], + + [ + { "value" : "B3", + "label" : + { "value" : "\"Chicken\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "k9cg2q5t-QOP-kiq6p70n", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "LAST_FOOD_SHOPPING51" }, + "bindingDependencies" : + [ "LAST_FOOD_SHOPPING51" ] } ], + + [ + { "value" : "C", + "label" : + { "value" : "\"Compote\"", + "type" : "VTL|MD" } }, + + { "value" : "C1", + "label" : + { "value" : "\"Powersauce\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "k9cg2q5t-QOP-kiq6lh5v", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "LAST_FOOD_SHOPPING61" }, + "bindingDependencies" : + [ "LAST_FOOD_SHOPPING61" ] } ], + + [ + { "colspan" : 2, + "value" : "D", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "k9cg2q5t-QOP-kiq703te", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "LAST_FOOD_SHOPPING71" }, + "bindingDependencies" : + [ "LAST_FOOD_SHOPPING71" ] } ], + + [ + { "colspan" : 2, + "value" : "E", + "label" : + { "value" : "\"Total\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "k9cg2q5t-QOP-kiq6zpd3", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "LAST_FOOD_SHOPPING81" }, + "bindingDependencies" : + [ "LAST_FOOD_SHOPPING81" ] } ] ] }, { "id" : "j6qejudb", "componentType" : "Subsequence", @@ -1843,169 +1872,173 @@ "type" : "VTL|MD" } } ], "body" : [ - { "value" : "1", - "label" : - { "value" : "\"Break the windows of the whole city\"", - "type" : "VTL|MD" } }, - - { "componentType" : "Dropdown", - "id" : "kbkjvgel-QOP-kiq6m5n0", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Jay\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Bart\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Krusty the clown\"", - "type" : "VTL|MD" } }, - - { "value" : "O", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "CLOWNING11" }, - "bindingDependencies" : - [ "CLOWNING11" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "kbkjvgel-QOP-kiq6qatu", - "response" : - { "name" : "CLOWNING12" }, - "bindingDependencies" : - [ "CLOWNING12" ] }, - - { "value" : "2", - "label" : - { "value" : "\"Loose the violin of his daughter playing poker\"", - "type" : "VTL|MD" } }, - - { "componentType" : "Dropdown", - "id" : "kbkjvgel-QOP-kiq6l29o", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Jay\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Bart\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Krusty the clown\"", - "type" : "VTL|MD" } }, - - { "value" : "O", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "CLOWNING21" }, - "bindingDependencies" : - [ "CLOWNING21" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "kbkjvgel-QOP-kiq6v4oe", - "response" : - { "name" : "CLOWNING22" }, - "bindingDependencies" : - [ "CLOWNING22" ] }, - - { "value" : "3", - "label" : - { "value" : "\"Kill Mr Burns\"", - "type" : "VTL|MD" } }, - - { "componentType" : "Dropdown", - "id" : "kbkjvgel-QOP-kiq72biw", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Jay\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Bart\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Krusty the clown\"", - "type" : "VTL|MD" } }, - - { "value" : "O", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "CLOWNING31" }, - "bindingDependencies" : - [ "CLOWNING31" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "kbkjvgel-QOP-kiq6q4zm", - "response" : - { "name" : "CLOWNING32" }, - "bindingDependencies" : - [ "CLOWNING32" ] }, - - { "value" : "4", - "label" : - { "value" : "\"Leaving a mechanical object to control the nuclear power plant\"", - "type" : "VTL|MD" } }, - - { "componentType" : "Dropdown", - "id" : "kbkjvgel-QOP-kiq6mlan", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Jay\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Bart\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Krusty the clown\"", - "type" : "VTL|MD" } }, - - { "value" : "O", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "CLOWNING41" }, - "bindingDependencies" : - [ "CLOWNING41" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "kbkjvgel-QOP-kiq6vtud", - "response" : - { "name" : "CLOWNING42" }, - "bindingDependencies" : - [ "CLOWNING42" ] } ] }, + [ + { "value" : "1", + "label" : + { "value" : "\"Break the windows of the whole city\"", + "type" : "VTL|MD" } }, + + { "componentType" : "Dropdown", + "id" : "kbkjvgel-QOP-kiq6m5n0", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Jay\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Bart\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Krusty the clown\"", + "type" : "VTL|MD" } }, + + { "value" : "O", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "CLOWNING11" }, + "bindingDependencies" : + [ "CLOWNING11" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "kbkjvgel-QOP-kiq6qatu", + "response" : + { "name" : "CLOWNING12" }, + "bindingDependencies" : + [ "CLOWNING12" ] } ], + + [ + { "value" : "2", + "label" : + { "value" : "\"Loose the violin of his daughter playing poker\"", + "type" : "VTL|MD" } }, + + { "componentType" : "Dropdown", + "id" : "kbkjvgel-QOP-kiq6l29o", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Jay\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Bart\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Krusty the clown\"", + "type" : "VTL|MD" } }, + + { "value" : "O", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "CLOWNING21" }, + "bindingDependencies" : + [ "CLOWNING21" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "kbkjvgel-QOP-kiq6v4oe", + "response" : + { "name" : "CLOWNING22" }, + "bindingDependencies" : + [ "CLOWNING22" ] } ], + + [ + { "value" : "3", + "label" : + { "value" : "\"Kill Mr Burns\"", + "type" : "VTL|MD" } }, + + { "componentType" : "Dropdown", + "id" : "kbkjvgel-QOP-kiq72biw", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Jay\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Bart\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Krusty the clown\"", + "type" : "VTL|MD" } }, + + { "value" : "O", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "CLOWNING31" }, + "bindingDependencies" : + [ "CLOWNING31" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "kbkjvgel-QOP-kiq6q4zm", + "response" : + { "name" : "CLOWNING32" }, + "bindingDependencies" : + [ "CLOWNING32" ] } ], + + [ + { "value" : "4", + "label" : + { "value" : "\"Leaving a mechanical object to control the nuclear power plant\"", + "type" : "VTL|MD" } }, + + { "componentType" : "Dropdown", + "id" : "kbkjvgel-QOP-kiq6mlan", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Jay\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Bart\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Krusty the clown\"", + "type" : "VTL|MD" } }, + + { "value" : "O", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "CLOWNING41" }, + "bindingDependencies" : + [ "CLOWNING41" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "kbkjvgel-QOP-kiq6vtud", + "response" : + { "name" : "CLOWNING42" }, + "bindingDependencies" : + [ "CLOWNING42" ] } ] ] }, { "id" : "j6qeh91y", "componentType" : "Subsequence", @@ -2122,193 +2155,197 @@ "type" : "VTL|MD" } } ], "body" : [ - { "value" : "1", - "label" : - { "value" : "\"Car\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvm4qg", - "response" : - { "name" : "TRAVEL11" }, - "bindingDependencies" : - [ "TRAVEL11" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewv8wxl", - "response" : - { "name" : "TRAVEL12" }, - "bindingDependencies" : - [ "TRAVEL12" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvcjrn", - "response" : - { "name" : "TRAVEL13" }, - "bindingDependencies" : - [ "TRAVEL13" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvdrv7", - "response" : - { "name" : "TRAVEL14" }, - "bindingDependencies" : - [ "TRAVEL14" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewv226h", - "response" : - { "name" : "TRAVEL15" }, - "bindingDependencies" : - [ "TRAVEL15" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvlchm", - "response" : - { "name" : "TRAVEL16" }, - "bindingDependencies" : - [ "TRAVEL16" ] }, - - { "value" : "2", - "label" : - { "value" : "\"Bike\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvebem", - "response" : - { "name" : "TRAVEL21" }, - "bindingDependencies" : - [ "TRAVEL21" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewv5u0v", - "response" : - { "name" : "TRAVEL22" }, - "bindingDependencies" : - [ "TRAVEL22" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvdarq", - "response" : - { "name" : "TRAVEL23" }, - "bindingDependencies" : - [ "TRAVEL23" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvc8ft", - "response" : - { "name" : "TRAVEL24" }, - "bindingDependencies" : - [ "TRAVEL24" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvc2li", - "response" : - { "name" : "TRAVEL25" }, - "bindingDependencies" : - [ "TRAVEL25" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvh5fm", - "response" : - { "name" : "TRAVEL26" }, - "bindingDependencies" : - [ "TRAVEL26" ] }, - - { "value" : "3", - "label" : - { "value" : "\"Skateboard\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewv62xx", - "response" : - { "name" : "TRAVEL31" }, - "bindingDependencies" : - [ "TRAVEL31" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvbiyv", - "response" : - { "name" : "TRAVEL32" }, - "bindingDependencies" : - [ "TRAVEL32" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvcmjn", - "response" : - { "name" : "TRAVEL33" }, - "bindingDependencies" : - [ "TRAVEL33" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvkci5", - "response" : - { "name" : "TRAVEL34" }, - "bindingDependencies" : - [ "TRAVEL34" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewveam7", - "response" : - { "name" : "TRAVEL35" }, - "bindingDependencies" : - [ "TRAVEL35" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewva2r8", - "response" : - { "name" : "TRAVEL36" }, - "bindingDependencies" : - [ "TRAVEL36" ] }, - - { "value" : "4", - "label" : - { "value" : "\"Plane\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvjcck", - "response" : - { "name" : "TRAVEL41" }, - "bindingDependencies" : - [ "TRAVEL41" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewv91bq", - "response" : - { "name" : "TRAVEL42" }, - "bindingDependencies" : - [ "TRAVEL42" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvf47u", - "response" : - { "name" : "TRAVEL43" }, - "bindingDependencies" : - [ "TRAVEL43" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewv5hsr", - "response" : - { "name" : "TRAVEL44" }, - "bindingDependencies" : - [ "TRAVEL44" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewva3p8", - "response" : - { "name" : "TRAVEL45" }, - "bindingDependencies" : - [ "TRAVEL45" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewve0rb", - "response" : - { "name" : "TRAVEL46" }, - "bindingDependencies" : - [ "TRAVEL46" ] } ] }, + [ + { "value" : "1", + "label" : + { "value" : "\"Car\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvm4qg", + "response" : + { "name" : "TRAVEL11" }, + "bindingDependencies" : + [ "TRAVEL11" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewv8wxl", + "response" : + { "name" : "TRAVEL12" }, + "bindingDependencies" : + [ "TRAVEL12" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvcjrn", + "response" : + { "name" : "TRAVEL13" }, + "bindingDependencies" : + [ "TRAVEL13" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvdrv7", + "response" : + { "name" : "TRAVEL14" }, + "bindingDependencies" : + [ "TRAVEL14" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewv226h", + "response" : + { "name" : "TRAVEL15" }, + "bindingDependencies" : + [ "TRAVEL15" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvlchm", + "response" : + { "name" : "TRAVEL16" }, + "bindingDependencies" : + [ "TRAVEL16" ] } ], + + [ + { "value" : "2", + "label" : + { "value" : "\"Bike\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvebem", + "response" : + { "name" : "TRAVEL21" }, + "bindingDependencies" : + [ "TRAVEL21" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewv5u0v", + "response" : + { "name" : "TRAVEL22" }, + "bindingDependencies" : + [ "TRAVEL22" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvdarq", + "response" : + { "name" : "TRAVEL23" }, + "bindingDependencies" : + [ "TRAVEL23" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvc8ft", + "response" : + { "name" : "TRAVEL24" }, + "bindingDependencies" : + [ "TRAVEL24" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvc2li", + "response" : + { "name" : "TRAVEL25" }, + "bindingDependencies" : + [ "TRAVEL25" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvh5fm", + "response" : + { "name" : "TRAVEL26" }, + "bindingDependencies" : + [ "TRAVEL26" ] } ], + + [ + { "value" : "3", + "label" : + { "value" : "\"Skateboard\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewv62xx", + "response" : + { "name" : "TRAVEL31" }, + "bindingDependencies" : + [ "TRAVEL31" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvbiyv", + "response" : + { "name" : "TRAVEL32" }, + "bindingDependencies" : + [ "TRAVEL32" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvcmjn", + "response" : + { "name" : "TRAVEL33" }, + "bindingDependencies" : + [ "TRAVEL33" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvkci5", + "response" : + { "name" : "TRAVEL34" }, + "bindingDependencies" : + [ "TRAVEL34" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewveam7", + "response" : + { "name" : "TRAVEL35" }, + "bindingDependencies" : + [ "TRAVEL35" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewva2r8", + "response" : + { "name" : "TRAVEL36" }, + "bindingDependencies" : + [ "TRAVEL36" ] } ], + + [ + { "value" : "4", + "label" : + { "value" : "\"Plane\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvjcck", + "response" : + { "name" : "TRAVEL41" }, + "bindingDependencies" : + [ "TRAVEL41" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewv91bq", + "response" : + { "name" : "TRAVEL42" }, + "bindingDependencies" : + [ "TRAVEL42" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvf47u", + "response" : + { "name" : "TRAVEL43" }, + "bindingDependencies" : + [ "TRAVEL43" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewv5hsr", + "response" : + { "name" : "TRAVEL44" }, + "bindingDependencies" : + [ "TRAVEL44" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewva3p8", + "response" : + { "name" : "TRAVEL45" }, + "bindingDependencies" : + [ "TRAVEL45" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewve0rb", + "response" : + { "name" : "TRAVEL46" }, + "bindingDependencies" : + [ "TRAVEL46" ] } ] ] }, { "id" : "j6qfx9qe", "componentType" : "Sequence", @@ -2378,422 +2415,432 @@ "FAVOURITE_CHAR2_8_2", "FAVOURITE_CHAR3_8_3", "FAVOURITE_CHAR1_9_1", - "FAVOURITE_CHAR2_9_2", - "FAVOURITE_CHAR3_9_3", - "FAVOURITE_CHAR1_10_1", - "FAVOURITE_CHAR2_10_2", - "FAVOURITE_CHAR3_10_3" ], - "lines" : - { "min" : - { "value" : "1", - "type" : "VTL|MD" }, - "max" : - { "value" : "10", - "type" : "VTL|MD" } }, - "header" : - [ - { "label" : - { "value" : "\"Name\"", - "type" : "VTL|MD" } }, - - { "label" : - { "value" : "\"Age\"", - "type" : "VTL|MD" } }, - - { "label" : - { "value" : "\"Member of the Simpsons family\"", - "type" : "VTL|MD" } } ], - "body" : - [ - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7p16z_1_1", - "response" : - { "name" : "FAVOURITE_CHAR1_1_1" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR1_1_1" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7kny3_1_2", - "response" : - { "name" : "FAVOURITE_CHAR2_1_2" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR2_1_2" ] }, - - { "componentType" : "CheckboxOne", - "id" : "j6qg8rc6-QOP-kiq7lffy_1_3", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FAVOURITE_CHAR3_1_3" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR3_1_3" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7p16z_2_1", - "response" : - { "name" : "FAVOURITE_CHAR1_2_1" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR1_2_1" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7kny3_2_2", - "response" : - { "name" : "FAVOURITE_CHAR2_2_2" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR2_2_2" ] }, - - { "componentType" : "CheckboxOne", - "id" : "j6qg8rc6-QOP-kiq7lffy_2_3", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FAVOURITE_CHAR3_2_3" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR3_2_3" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7p16z_3_1", - "response" : - { "name" : "FAVOURITE_CHAR1_3_1" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR1_3_1" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7kny3_3_2", - "response" : - { "name" : "FAVOURITE_CHAR2_3_2" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR2_3_2" ] }, - - { "componentType" : "CheckboxOne", - "id" : "j6qg8rc6-QOP-kiq7lffy_3_3", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FAVOURITE_CHAR3_3_3" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR3_3_3" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7p16z_4_1", - "response" : - { "name" : "FAVOURITE_CHAR1_4_1" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR1_4_1" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7kny3_4_2", - "response" : - { "name" : "FAVOURITE_CHAR2_4_2" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR2_4_2" ] }, - - { "componentType" : "CheckboxOne", - "id" : "j6qg8rc6-QOP-kiq7lffy_4_3", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FAVOURITE_CHAR3_4_3" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR3_4_3" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7p16z_5_1", - "response" : - { "name" : "FAVOURITE_CHAR1_5_1" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR1_5_1" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7kny3_5_2", - "response" : - { "name" : "FAVOURITE_CHAR2_5_2" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR2_5_2" ] }, - - { "componentType" : "CheckboxOne", - "id" : "j6qg8rc6-QOP-kiq7lffy_5_3", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FAVOURITE_CHAR3_5_3" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR3_5_3" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7p16z_6_1", - "response" : - { "name" : "FAVOURITE_CHAR1_6_1" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR1_6_1" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7kny3_6_2", - "response" : - { "name" : "FAVOURITE_CHAR2_6_2" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR2_6_2" ] }, - - { "componentType" : "CheckboxOne", - "id" : "j6qg8rc6-QOP-kiq7lffy_6_3", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FAVOURITE_CHAR3_6_3" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR3_6_3" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7p16z_7_1", - "response" : - { "name" : "FAVOURITE_CHAR1_7_1" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR1_7_1" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7kny3_7_2", - "response" : - { "name" : "FAVOURITE_CHAR2_7_2" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR2_7_2" ] }, - - { "componentType" : "CheckboxOne", - "id" : "j6qg8rc6-QOP-kiq7lffy_7_3", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FAVOURITE_CHAR3_7_3" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR3_7_3" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7p16z_8_1", - "response" : - { "name" : "FAVOURITE_CHAR1_8_1" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR1_8_1" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7kny3_8_2", - "response" : - { "name" : "FAVOURITE_CHAR2_8_2" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR2_8_2" ] }, - - { "componentType" : "CheckboxOne", - "id" : "j6qg8rc6-QOP-kiq7lffy_8_3", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FAVOURITE_CHAR3_8_3" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR3_8_3" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7p16z_9_1", - "response" : - { "name" : "FAVOURITE_CHAR1_9_1" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR1_9_1" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7kny3_9_2", - "response" : - { "name" : "FAVOURITE_CHAR2_9_2" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR2_9_2" ] }, - - { "componentType" : "CheckboxOne", - "id" : "j6qg8rc6-QOP-kiq7lffy_9_3", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FAVOURITE_CHAR3_9_3" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR3_9_3" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7p16z_10_1", - "response" : - { "name" : "FAVOURITE_CHAR1_10_1" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR1_10_1" ] }, + "FAVOURITE_CHAR2_9_2", + "FAVOURITE_CHAR3_9_3", + "FAVOURITE_CHAR1_10_1", + "FAVOURITE_CHAR2_10_2", + "FAVOURITE_CHAR3_10_3" ], + "lines" : + { "min" : + { "value" : "1", + "type" : "VTL|MD" }, + "max" : + { "value" : "10", + "type" : "VTL|MD" } }, + "header" : + [ + { "label" : + { "value" : "\"Name\"", + "type" : "VTL|MD" } }, - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7kny3_10_2", - "response" : - { "name" : "FAVOURITE_CHAR2_10_2" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR2_10_2" ] }, + { "label" : + { "value" : "\"Age\"", + "type" : "VTL|MD" } }, - { "componentType" : "CheckboxOne", - "id" : "j6qg8rc6-QOP-kiq7lffy_10_3", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FAVOURITE_CHAR3_10_3" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR3_10_3" ] } ] }, + { "label" : + { "value" : "\"Member of the Simpsons family\"", + "type" : "VTL|MD" } } ], + "body" : + [ + [ + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7p16z_1_1", + "response" : + { "name" : "FAVOURITE_CHAR1_1_1" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR1_1_1" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7kny3_1_2", + "response" : + { "name" : "FAVOURITE_CHAR2_1_2" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR2_1_2" ] }, + + { "componentType" : "CheckboxOne", + "id" : "j6qg8rc6-QOP-kiq7lffy_1_3", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FAVOURITE_CHAR3_1_3" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR3_1_3" ] } ], + + [ + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7p16z_2_1", + "response" : + { "name" : "FAVOURITE_CHAR1_2_1" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR1_2_1" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7kny3_2_2", + "response" : + { "name" : "FAVOURITE_CHAR2_2_2" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR2_2_2" ] }, + + { "componentType" : "CheckboxOne", + "id" : "j6qg8rc6-QOP-kiq7lffy_2_3", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FAVOURITE_CHAR3_2_3" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR3_2_3" ] } ], + + [ + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7p16z_3_1", + "response" : + { "name" : "FAVOURITE_CHAR1_3_1" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR1_3_1" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7kny3_3_2", + "response" : + { "name" : "FAVOURITE_CHAR2_3_2" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR2_3_2" ] }, + + { "componentType" : "CheckboxOne", + "id" : "j6qg8rc6-QOP-kiq7lffy_3_3", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FAVOURITE_CHAR3_3_3" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR3_3_3" ] } ], + + [ + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7p16z_4_1", + "response" : + { "name" : "FAVOURITE_CHAR1_4_1" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR1_4_1" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7kny3_4_2", + "response" : + { "name" : "FAVOURITE_CHAR2_4_2" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR2_4_2" ] }, + + { "componentType" : "CheckboxOne", + "id" : "j6qg8rc6-QOP-kiq7lffy_4_3", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FAVOURITE_CHAR3_4_3" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR3_4_3" ] } ], + + [ + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7p16z_5_1", + "response" : + { "name" : "FAVOURITE_CHAR1_5_1" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR1_5_1" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7kny3_5_2", + "response" : + { "name" : "FAVOURITE_CHAR2_5_2" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR2_5_2" ] }, + + { "componentType" : "CheckboxOne", + "id" : "j6qg8rc6-QOP-kiq7lffy_5_3", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FAVOURITE_CHAR3_5_3" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR3_5_3" ] } ], + + [ + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7p16z_6_1", + "response" : + { "name" : "FAVOURITE_CHAR1_6_1" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR1_6_1" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7kny3_6_2", + "response" : + { "name" : "FAVOURITE_CHAR2_6_2" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR2_6_2" ] }, + + { "componentType" : "CheckboxOne", + "id" : "j6qg8rc6-QOP-kiq7lffy_6_3", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FAVOURITE_CHAR3_6_3" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR3_6_3" ] } ], + + [ + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7p16z_7_1", + "response" : + { "name" : "FAVOURITE_CHAR1_7_1" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR1_7_1" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7kny3_7_2", + "response" : + { "name" : "FAVOURITE_CHAR2_7_2" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR2_7_2" ] }, + + { "componentType" : "CheckboxOne", + "id" : "j6qg8rc6-QOP-kiq7lffy_7_3", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FAVOURITE_CHAR3_7_3" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR3_7_3" ] } ], + + [ + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7p16z_8_1", + "response" : + { "name" : "FAVOURITE_CHAR1_8_1" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR1_8_1" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7kny3_8_2", + "response" : + { "name" : "FAVOURITE_CHAR2_8_2" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR2_8_2" ] }, + + { "componentType" : "CheckboxOne", + "id" : "j6qg8rc6-QOP-kiq7lffy_8_3", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FAVOURITE_CHAR3_8_3" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR3_8_3" ] } ], + + [ + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7p16z_9_1", + "response" : + { "name" : "FAVOURITE_CHAR1_9_1" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR1_9_1" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7kny3_9_2", + "response" : + { "name" : "FAVOURITE_CHAR2_9_2" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR2_9_2" ] }, + + { "componentType" : "CheckboxOne", + "id" : "j6qg8rc6-QOP-kiq7lffy_9_3", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FAVOURITE_CHAR3_9_3" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR3_9_3" ] } ], + + [ + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7p16z_10_1", + "response" : + { "name" : "FAVOURITE_CHAR1_10_1" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR1_10_1" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7kny3_10_2", + "response" : + { "name" : "FAVOURITE_CHAR2_10_2" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR2_10_2" ] }, + + { "componentType" : "CheckboxOne", + "id" : "j6qg8rc6-QOP-kiq7lffy_10_3", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FAVOURITE_CHAR3_10_3" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR3_10_3" ] } ] ] }, { "id" : "jvxux0mi", "componentType" : "Table", @@ -2822,117 +2869,121 @@ "FEELCHAREV4" ], "body" : [ - { "value" : "1", - "label" : - { "value" : "\"Jay\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "jvxux0mi-QOP-kiq76emy", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Up\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Down\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Steady\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FEELCHAREV1" }, - "bindingDependencies" : - [ "FEELCHAREV1" ] }, - - { "value" : "2", - "label" : - { "value" : "\"Bart\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "jvxux0mi-QOP-kiq6zv60", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Up\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Down\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Steady\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FEELCHAREV2" }, - "bindingDependencies" : - [ "FEELCHAREV2" ] }, - - { "value" : "3", - "label" : - { "value" : "\"Krusty the clown\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "jvxux0mi-QOP-kiq7bgk3", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Up\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Down\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Steady\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FEELCHAREV3" }, - "bindingDependencies" : - [ "FEELCHAREV3" ] }, - - { "value" : "O", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "jvxux0mi-QOP-kiq6ync3", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Up\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Down\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Steady\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FEELCHAREV4" }, - "bindingDependencies" : - [ "FEELCHAREV4" ] } ] }, + [ + { "value" : "1", + "label" : + { "value" : "\"Jay\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "jvxux0mi-QOP-kiq76emy", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Up\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Down\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Steady\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FEELCHAREV1" }, + "bindingDependencies" : + [ "FEELCHAREV1" ] } ], + + [ + { "value" : "2", + "label" : + { "value" : "\"Bart\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "jvxux0mi-QOP-kiq6zv60", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Up\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Down\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Steady\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FEELCHAREV2" }, + "bindingDependencies" : + [ "FEELCHAREV2" ] } ], + + [ + { "value" : "3", + "label" : + { "value" : "\"Krusty the clown\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "jvxux0mi-QOP-kiq7bgk3", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Up\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Down\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Steady\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FEELCHAREV3" }, + "bindingDependencies" : + [ "FEELCHAREV3" ] } ], + + [ + { "value" : "O", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "jvxux0mi-QOP-kiq6ync3", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Up\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Down\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Steady\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FEELCHAREV4" }, + "bindingDependencies" : + [ "FEELCHAREV4" ] } ] ] }, { "id" : "jvxwy68n", "componentType" : "Table", @@ -2980,170 +3031,175 @@ "type" : "VTL|MD" } } ], "body" : [ - { "value" : "1", - "label" : - { "value" : "\"Leave with pay\"", - "type" : "VTL|MD" } }, - - { "componentType" : "InputNumber", - "min" : 0, - "max" : 365, - "decimals" : 0, - "id" : "jvxwy68n-QOP-kewv511d", - "response" : - { "name" : "LEAVDURATION11" }, - "bindingDependencies" : - [ "LEAVDURATION11" ] }, - - { "componentType" : "Dropdown", - "id" : "jvxwy68n-QOP-kewv20qg", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Working Days\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Calendar days\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "LEAVDURATION12" }, - "bindingDependencies" : - [ "LEAVDURATION12" ] }, - - { "value" : "2", - "label" : - { "value" : "\"Public holiday\"", - "type" : "VTL|MD" } }, - - { "componentType" : "InputNumber", - "min" : 0, - "max" : 365, - "decimals" : 0, - "id" : "jvxwy68n-QOP-kewv67nj", - "response" : - { "name" : "LEAVDURATION21" }, - "bindingDependencies" : - [ "LEAVDURATION21" ] }, - - { "componentType" : "Dropdown", - "id" : "jvxwy68n-QOP-kewvizdm", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Working Days\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Calendar days\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "LEAVDURATION22" }, - "bindingDependencies" : - [ "LEAVDURATION22" ] }, - - { "value" : "3", - "label" : - { "value" : "\"Sick leave\"", - "type" : "VTL|MD" } }, - - { "componentType" : "InputNumber", - "min" : 0, - "max" : 365, - "decimals" : 0, - "id" : "jvxwy68n-QOP-kewv23wm", - "response" : - { "name" : "LEAVDURATION31" }, - "bindingDependencies" : - [ "LEAVDURATION31" ] }, - - { "componentType" : "Dropdown", - "id" : "jvxwy68n-QOP-kewv9jcl", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Working Days\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Calendar days\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "LEAVDURATION32" }, - "bindingDependencies" : - [ "LEAVDURATION32" ] }, - - { "value" : "4", - "label" : - { "value" : "\"Maternity\/paternity leave\"", - "type" : "VTL|MD" } }, - - { "componentType" : "InputNumber", - "min" : 0, - "max" : 365, - "decimals" : 0, - "id" : "jvxwy68n-QOP-kewv2jks", - "response" : - { "name" : "LEAVDURATION41" }, - "bindingDependencies" : - [ "LEAVDURATION41" ] }, - - { "componentType" : "Dropdown", - "id" : "jvxwy68n-QOP-kewvf0gf", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Working Days\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Calendar days\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "LEAVDURATION42" }, - "bindingDependencies" : - [ "LEAVDURATION42" ] }, - - { "value" : "5", - "label" : - { "value" : "\"Other type\"", - "type" : "VTL|MD" } }, - - { "componentType" : "InputNumber", - "min" : 0, - "max" : 365, - "decimals" : 0, - "id" : "jvxwy68n-QOP-kewvl896", - "response" : - { "name" : "LEAVDURATION51" }, - "bindingDependencies" : - [ "LEAVDURATION51" ] }, - - { "componentType" : "Dropdown", - "id" : "jvxwy68n-QOP-kewvalmd", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Working Days\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Calendar days\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "LEAVDURATION52" }, - "bindingDependencies" : - [ "LEAVDURATION52" ] } ] }, + [ + { "value" : "1", + "label" : + { "value" : "\"Leave with pay\"", + "type" : "VTL|MD" } }, + + { "componentType" : "InputNumber", + "min" : 0, + "max" : 365, + "decimals" : 0, + "id" : "jvxwy68n-QOP-kewv511d", + "response" : + { "name" : "LEAVDURATION11" }, + "bindingDependencies" : + [ "LEAVDURATION11" ] }, + + { "componentType" : "Dropdown", + "id" : "jvxwy68n-QOP-kewv20qg", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Working Days\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Calendar days\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "LEAVDURATION12" }, + "bindingDependencies" : + [ "LEAVDURATION12" ] } ], + + [ + { "value" : "2", + "label" : + { "value" : "\"Public holiday\"", + "type" : "VTL|MD" } }, + + { "componentType" : "InputNumber", + "min" : 0, + "max" : 365, + "decimals" : 0, + "id" : "jvxwy68n-QOP-kewv67nj", + "response" : + { "name" : "LEAVDURATION21" }, + "bindingDependencies" : + [ "LEAVDURATION21" ] }, + + { "componentType" : "Dropdown", + "id" : "jvxwy68n-QOP-kewvizdm", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Working Days\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Calendar days\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "LEAVDURATION22" }, + "bindingDependencies" : + [ "LEAVDURATION22" ] } ], + + [ + { "value" : "3", + "label" : + { "value" : "\"Sick leave\"", + "type" : "VTL|MD" } }, + + { "componentType" : "InputNumber", + "min" : 0, + "max" : 365, + "decimals" : 0, + "id" : "jvxwy68n-QOP-kewv23wm", + "response" : + { "name" : "LEAVDURATION31" }, + "bindingDependencies" : + [ "LEAVDURATION31" ] }, + + { "componentType" : "Dropdown", + "id" : "jvxwy68n-QOP-kewv9jcl", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Working Days\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Calendar days\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "LEAVDURATION32" }, + "bindingDependencies" : + [ "LEAVDURATION32" ] } ], + + [ + { "value" : "4", + "label" : + { "value" : "\"Maternity\/paternity leave\"", + "type" : "VTL|MD" } }, + + { "componentType" : "InputNumber", + "min" : 0, + "max" : 365, + "decimals" : 0, + "id" : "jvxwy68n-QOP-kewv2jks", + "response" : + { "name" : "LEAVDURATION41" }, + "bindingDependencies" : + [ "LEAVDURATION41" ] }, + + { "componentType" : "Dropdown", + "id" : "jvxwy68n-QOP-kewvf0gf", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Working Days\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Calendar days\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "LEAVDURATION42" }, + "bindingDependencies" : + [ "LEAVDURATION42" ] } ], + + [ + { "value" : "5", + "label" : + { "value" : "\"Other type\"", + "type" : "VTL|MD" } }, + + { "componentType" : "InputNumber", + "min" : 0, + "max" : 365, + "decimals" : 0, + "id" : "jvxwy68n-QOP-kewvl896", + "response" : + { "name" : "LEAVDURATION51" }, + "bindingDependencies" : + [ "LEAVDURATION51" ] }, + + { "componentType" : "Dropdown", + "id" : "jvxwy68n-QOP-kewvalmd", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Working Days\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Calendar days\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "LEAVDURATION52" }, + "bindingDependencies" : + [ "LEAVDURATION52" ] } ] ] }, { "id" : "kiq5mr0b", "componentType" : "Sequence", diff --git a/src/test/resources/examples/xmlh-2-jsonf/out.json b/src/test/resources/examples/xmlh-2-jsonf/out.json index 4cc9b068..253042f5 100644 --- a/src/test/resources/examples/xmlh-2-jsonf/out.json +++ b/src/test/resources/examples/xmlh-2-jsonf/out.json @@ -3,7 +3,7 @@ "modele" : "SIMPSONS", "enoCoreVersion" : "2.2.8", "lunaticModelVersion" : "2.2.11", - "generatingDate" : "22-03-2022 15:59:40", + "generatingDate" : "23-03-2022 11:22:02", "pagination" : "question", "maxPage" : "37", "label" : @@ -821,97 +821,101 @@ "ICE_FLAVOUR4" ], "body" : [ - { "value" : "1", - "label" : - { "value" : "\"Vanilla\"", - "type" : "VTL|MD" } }, - - { "componentType" : "Radio", - "id" : "j6p29i81-QOP-kiq5w99y", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "0", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "ICE_FLAVOUR1" }, - "bindingDependencies" : - [ "ICE_FLAVOUR1" ] }, - - { "value" : "2", - "label" : - { "value" : "\"Strawberry\"", - "type" : "VTL|MD" } }, - - { "componentType" : "Radio", - "id" : "j6p29i81-QOP-kiq5ummf", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "0", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "ICE_FLAVOUR2" }, - "bindingDependencies" : - [ "ICE_FLAVOUR2" ] }, - - { "value" : "3", - "label" : - { "value" : "\"Apple\"", - "type" : "VTL|MD" } }, - - { "componentType" : "Radio", - "id" : "j6p29i81-QOP-kiq5mry5", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "0", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "ICE_FLAVOUR3" }, - "bindingDependencies" : - [ "ICE_FLAVOUR3" ] }, - - { "value" : "OT", - "label" : - { "value" : "\"Other flavour\"", - "type" : "VTL|MD" } }, - - { "componentType" : "Radio", - "id" : "j6p29i81-QOP-kiq5lkr8", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "0", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "ICE_FLAVOUR4" }, - "bindingDependencies" : - [ "ICE_FLAVOUR4" ] } ] }, + [ + { "value" : "1", + "label" : + { "value" : "\"Vanilla\"", + "type" : "VTL|MD" } }, + + { "componentType" : "Radio", + "id" : "j6p29i81-QOP-kiq5w99y", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "0", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "ICE_FLAVOUR1" }, + "bindingDependencies" : + [ "ICE_FLAVOUR1" ] } ], + + [ + { "value" : "2", + "label" : + { "value" : "\"Strawberry\"", + "type" : "VTL|MD" } }, + + { "componentType" : "Radio", + "id" : "j6p29i81-QOP-kiq5ummf", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "0", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "ICE_FLAVOUR2" }, + "bindingDependencies" : + [ "ICE_FLAVOUR2" ] } ], + + [ + { "value" : "3", + "label" : + { "value" : "\"Apple\"", + "type" : "VTL|MD" } }, + + { "componentType" : "Radio", + "id" : "j6p29i81-QOP-kiq5mry5", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "0", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "ICE_FLAVOUR3" }, + "bindingDependencies" : + [ "ICE_FLAVOUR3" ] } ], + + [ + { "value" : "OT", + "label" : + { "value" : "\"Other flavour\"", + "type" : "VTL|MD" } }, + + { "componentType" : "Radio", + "id" : "j6p29i81-QOP-kiq5lkr8", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "0", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "ICE_FLAVOUR4" }, + "bindingDependencies" : + [ "ICE_FLAVOUR4" ] } ] ] }, { "id" : "j6qefnga", "componentType" : "Table", @@ -940,97 +944,101 @@ "NUCLEAR_CHARACTER4" ], "body" : [ - { "value" : "1", - "label" : - { "value" : "\"Charles Montgomery Burns\"", - "type" : "VTL|MD" } }, - - { "componentType" : "Dropdown", - "id" : "j6qefnga-QOP-kewva8xg", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "0", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "NUCLEAR_CHARACTER1" }, - "bindingDependencies" : - [ "NUCLEAR_CHARACTER1" ] }, - - { "value" : "2", - "label" : - { "value" : "\"Carl Carlson\"", - "type" : "VTL|MD" } }, - - { "componentType" : "Dropdown", - "id" : "j6qefnga-QOP-kewvj0ad", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "0", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "NUCLEAR_CHARACTER2" }, - "bindingDependencies" : - [ "NUCLEAR_CHARACTER2" ] }, - - { "value" : "3", - "label" : - { "value" : "\"Otto Mann\"", - "type" : "VTL|MD" } }, - - { "componentType" : "Dropdown", - "id" : "j6qefnga-QOP-kewveltm", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "0", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "NUCLEAR_CHARACTER3" }, - "bindingDependencies" : - [ "NUCLEAR_CHARACTER3" ] }, - - { "value" : "4", - "label" : - { "value" : "\"Lenny Leonard\"", - "type" : "VTL|MD" } }, - - { "componentType" : "Dropdown", - "id" : "j6qefnga-QOP-kewvgax4", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "0", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "NUCLEAR_CHARACTER4" }, - "bindingDependencies" : - [ "NUCLEAR_CHARACTER4" ] } ] }, + [ + { "value" : "1", + "label" : + { "value" : "\"Charles Montgomery Burns\"", + "type" : "VTL|MD" } }, + + { "componentType" : "Dropdown", + "id" : "j6qefnga-QOP-kewva8xg", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "0", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "NUCLEAR_CHARACTER1" }, + "bindingDependencies" : + [ "NUCLEAR_CHARACTER1" ] } ], + + [ + { "value" : "2", + "label" : + { "value" : "\"Carl Carlson\"", + "type" : "VTL|MD" } }, + + { "componentType" : "Dropdown", + "id" : "j6qefnga-QOP-kewvj0ad", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "0", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "NUCLEAR_CHARACTER2" }, + "bindingDependencies" : + [ "NUCLEAR_CHARACTER2" ] } ], + + [ + { "value" : "3", + "label" : + { "value" : "\"Otto Mann\"", + "type" : "VTL|MD" } }, + + { "componentType" : "Dropdown", + "id" : "j6qefnga-QOP-kewveltm", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "0", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "NUCLEAR_CHARACTER3" }, + "bindingDependencies" : + [ "NUCLEAR_CHARACTER3" ] } ], + + [ + { "value" : "4", + "label" : + { "value" : "\"Lenny Leonard\"", + "type" : "VTL|MD" } }, + + { "componentType" : "Dropdown", + "id" : "j6qefnga-QOP-kewvgax4", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "0", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "NUCLEAR_CHARACTER4" }, + "bindingDependencies" : + [ "NUCLEAR_CHARACTER4" ] } ] ] }, { "id" : "j6yzoc6g", "componentType" : "Table", @@ -1050,205 +1058,210 @@ { "id" : "j6qe0h9q", "page" : "18", "label" : - { "value" : "\"III - Characters\"", - "type" : "VTL|MD" } } }, - "bindingDependencies" : - [ "BIRTH_CHARACTER1", - "BIRTH_CHARACTER2", - "BIRTH_CHARACTER3", - "BIRTH_CHARACTER4", - "BIRTH_CHARACTER5" ], - "body" : - [ - { "value" : "1", - "label" : - { "value" : "\"Selma Bouvier\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "j6yzoc6g-QOP-kewvjvcs", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Albuquerque\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Springfield\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Portland\"", - "type" : "VTL|MD" } }, - - { "value" : "4", - "label" : - { "value" : "\"Shelbyville\"", - "type" : "VTL|MD" } }, - - { "value" : "5", - "label" : - { "value" : "\"Dagstuhl\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "BIRTH_CHARACTER1" }, - "bindingDependencies" : - [ "BIRTH_CHARACTER1" ] }, - - { "value" : "2", - "label" : - { "value" : "\"Kent Brockman\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "j6yzoc6g-QOP-kewvhoda", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Albuquerque\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Springfield\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Portland\"", - "type" : "VTL|MD" } }, - - { "value" : "4", - "label" : - { "value" : "\"Shelbyville\"", - "type" : "VTL|MD" } }, - - { "value" : "5", - "label" : - { "value" : "\"Dagstuhl\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "BIRTH_CHARACTER2" }, - "bindingDependencies" : - [ "BIRTH_CHARACTER2" ] }, - - { "value" : "3", - "label" : - { "value" : "\"Milhouse Van Houten\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "j6yzoc6g-QOP-kewv64s5", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Albuquerque\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Springfield\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Portland\"", - "type" : "VTL|MD" } }, - - { "value" : "4", - "label" : - { "value" : "\"Shelbyville\"", - "type" : "VTL|MD" } }, - - { "value" : "5", - "label" : - { "value" : "\"Dagstuhl\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "BIRTH_CHARACTER3" }, - "bindingDependencies" : - [ "BIRTH_CHARACTER3" ] }, - - { "value" : "4", - "label" : - { "value" : "\"Nelson Muntz\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "j6yzoc6g-QOP-kewvj21j", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Albuquerque\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Springfield\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Portland\"", - "type" : "VTL|MD" } }, - - { "value" : "4", - "label" : - { "value" : "\"Shelbyville\"", - "type" : "VTL|MD" } }, - - { "value" : "5", - "label" : - { "value" : "\"Dagstuhl\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "BIRTH_CHARACTER4" }, - "bindingDependencies" : - [ "BIRTH_CHARACTER4" ] }, - - { "value" : "5", - "label" : - { "value" : "\"Crazy Cat Lady\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "j6yzoc6g-QOP-kewva5uf", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Albuquerque\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Springfield\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Portland\"", - "type" : "VTL|MD" } }, - - { "value" : "4", - "label" : - { "value" : "\"Shelbyville\"", - "type" : "VTL|MD" } }, - - { "value" : "5", - "label" : - { "value" : "\"Dagstuhl\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "BIRTH_CHARACTER5" }, - "bindingDependencies" : - [ "BIRTH_CHARACTER5" ] } ] }, + { "value" : "\"III - Characters\"", + "type" : "VTL|MD" } } }, + "bindingDependencies" : + [ "BIRTH_CHARACTER1", + "BIRTH_CHARACTER2", + "BIRTH_CHARACTER3", + "BIRTH_CHARACTER4", + "BIRTH_CHARACTER5" ], + "body" : + [ + [ + { "value" : "1", + "label" : + { "value" : "\"Selma Bouvier\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "j6yzoc6g-QOP-kewvjvcs", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Albuquerque\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Springfield\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Portland\"", + "type" : "VTL|MD" } }, + + { "value" : "4", + "label" : + { "value" : "\"Shelbyville\"", + "type" : "VTL|MD" } }, + + { "value" : "5", + "label" : + { "value" : "\"Dagstuhl\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "BIRTH_CHARACTER1" }, + "bindingDependencies" : + [ "BIRTH_CHARACTER1" ] } ], + + [ + { "value" : "2", + "label" : + { "value" : "\"Kent Brockman\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "j6yzoc6g-QOP-kewvhoda", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Albuquerque\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Springfield\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Portland\"", + "type" : "VTL|MD" } }, + + { "value" : "4", + "label" : + { "value" : "\"Shelbyville\"", + "type" : "VTL|MD" } }, + + { "value" : "5", + "label" : + { "value" : "\"Dagstuhl\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "BIRTH_CHARACTER2" }, + "bindingDependencies" : + [ "BIRTH_CHARACTER2" ] } ], + + [ + { "value" : "3", + "label" : + { "value" : "\"Milhouse Van Houten\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "j6yzoc6g-QOP-kewv64s5", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Albuquerque\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Springfield\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Portland\"", + "type" : "VTL|MD" } }, + + { "value" : "4", + "label" : + { "value" : "\"Shelbyville\"", + "type" : "VTL|MD" } }, + + { "value" : "5", + "label" : + { "value" : "\"Dagstuhl\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "BIRTH_CHARACTER3" }, + "bindingDependencies" : + [ "BIRTH_CHARACTER3" ] } ], + + [ + { "value" : "4", + "label" : + { "value" : "\"Nelson Muntz\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "j6yzoc6g-QOP-kewvj21j", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Albuquerque\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Springfield\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Portland\"", + "type" : "VTL|MD" } }, + + { "value" : "4", + "label" : + { "value" : "\"Shelbyville\"", + "type" : "VTL|MD" } }, + + { "value" : "5", + "label" : + { "value" : "\"Dagstuhl\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "BIRTH_CHARACTER4" }, + "bindingDependencies" : + [ "BIRTH_CHARACTER4" ] } ], + + [ + { "value" : "5", + "label" : + { "value" : "\"Crazy Cat Lady\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "j6yzoc6g-QOP-kewva5uf", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Albuquerque\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Springfield\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Portland\"", + "type" : "VTL|MD" } }, + + { "value" : "4", + "label" : + { "value" : "\"Shelbyville\"", + "type" : "VTL|MD" } }, + + { "value" : "5", + "label" : + { "value" : "\"Dagstuhl\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "BIRTH_CHARACTER5" }, + "bindingDependencies" : + [ "BIRTH_CHARACTER5" ] } ] ] }, { "id" : "j4nw88h2", "componentType" : "Sequence", @@ -1340,143 +1353,151 @@ "type" : "VTL|MD" } } ], "body" : [ - { "rowspan" : 2, - "value" : "A", - "label" : - { "value" : "\"Frozen products\"", - "type" : "VTL|MD" } }, - - { "value" : "A1", - "label" : - { "value" : "\"Ice creams\"", - "type" : "VTL|MD" } }, - - { "componentType" : "InputNumber", - "min" : 0, - "max" : 100, - "decimals" : 1, - "id" : "j4nwc63q-QOP-kewv2h3o", - "unit" : "%", - "response" : - { "name" : "PERCENTAGE_EXPENSES11" }, - "bindingDependencies" : - [ "PERCENTAGE_EXPENSES11" ] }, - - { "value" : "A2", - "label" : - { "value" : "\"Jasper Beardly\"", - "type" : "VTL|MD" } }, - - { "componentType" : "InputNumber", - "min" : 0, - "max" : 100, - "decimals" : 1, - "id" : "j4nwc63q-QOP-kewvka2j", - "unit" : "%", - "response" : - { "name" : "PERCENTAGE_EXPENSES21" }, - "bindingDependencies" : - [ "PERCENTAGE_EXPENSES21" ] }, - - { "rowspan" : 3, - "value" : "B", - "label" : - { "value" : "\"Meat\"", - "type" : "VTL|MD" } }, - - { "value" : "B1", - "label" : - { "value" : "\"Bacon\"", - "type" : "VTL|MD" } }, - - { "componentType" : "InputNumber", - "min" : 0, - "max" : 100, - "decimals" : 1, - "id" : "j4nwc63q-QOP-kewv1f2a", - "unit" : "%", - "response" : - { "name" : "PERCENTAGE_EXPENSES31" }, - "bindingDependencies" : - [ "PERCENTAGE_EXPENSES31" ] }, - - { "value" : "B2", - "label" : - { "value" : "\"Pork chop\"", - "type" : "VTL|MD" } }, - - { "componentType" : "InputNumber", - "min" : 0, - "max" : 100, - "decimals" : 1, - "id" : "j4nwc63q-QOP-kewvb2ql", - "unit" : "%", - "response" : - { "name" : "PERCENTAGE_EXPENSES41" }, - "bindingDependencies" : - [ "PERCENTAGE_EXPENSES41" ] }, - - { "value" : "B3", - "label" : - { "value" : "\"Chicken\"", - "type" : "VTL|MD" } }, - - { "componentType" : "InputNumber", - "min" : 0, - "max" : 100, - "decimals" : 1, - "id" : "j4nwc63q-QOP-kewvbxla", - "unit" : "%", - "response" : - { "name" : "PERCENTAGE_EXPENSES51" }, - "bindingDependencies" : - [ "PERCENTAGE_EXPENSES51" ] }, - - { "value" : "C", - "label" : - { "value" : "\"Compote\"", - "type" : "VTL|MD" } }, - - { "value" : "C1", - "label" : - { "value" : "\"Powersauce\"", - "type" : "VTL|MD" } }, - - { "componentType" : "InputNumber", - "min" : 0, - "max" : 100, - "decimals" : 1, - "id" : "j4nwc63q-QOP-kewvkjp0", - "unit" : "%", - "response" : - { "name" : "PERCENTAGE_EXPENSES61" }, - "bindingDependencies" : - [ "PERCENTAGE_EXPENSES61" ] }, - - { "colspan" : 2, - "value" : "D", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } }, - - { "componentType" : "InputNumber", - "min" : 0, - "max" : 100, - "decimals" : 1, - "id" : "j4nwc63q-QOP-kewv2cyx", - "unit" : "%", - "response" : - { "name" : "PERCENTAGE_EXPENSES71" }, - "bindingDependencies" : - [ "PERCENTAGE_EXPENSES71" ] }, - - { "colspan" : 2, - "value" : "E", - "label" : - { "value" : "\"Total\"", - "type" : "VTL|MD" } }, + [ + { "rowspan" : 2, + "value" : "A", + "label" : + { "value" : "\"Frozen products\"", + "type" : "VTL|MD" } }, + + { "value" : "A1", + "label" : + { "value" : "\"Ice creams\"", + "type" : "VTL|MD" } }, + + { "componentType" : "InputNumber", + "min" : 0, + "max" : 100, + "decimals" : 1, + "id" : "j4nwc63q-QOP-kewv2h3o", + "unit" : "%", + "response" : + { "name" : "PERCENTAGE_EXPENSES11" }, + "bindingDependencies" : + [ "PERCENTAGE_EXPENSES11" ] } ], + + [ + { "value" : "A2", + "label" : + { "value" : "\"Jasper Beardly\"", + "type" : "VTL|MD" } }, + + { "componentType" : "InputNumber", + "min" : 0, + "max" : 100, + "decimals" : 1, + "id" : "j4nwc63q-QOP-kewvka2j", + "unit" : "%", + "response" : + { "name" : "PERCENTAGE_EXPENSES21" }, + "bindingDependencies" : + [ "PERCENTAGE_EXPENSES21" ] } ], + + [ + { "rowspan" : 3, + "value" : "B", + "label" : + { "value" : "\"Meat\"", + "type" : "VTL|MD" } }, + + { "value" : "B1", + "label" : + { "value" : "\"Bacon\"", + "type" : "VTL|MD" } }, + + { "componentType" : "InputNumber", + "min" : 0, + "max" : 100, + "decimals" : 1, + "id" : "j4nwc63q-QOP-kewv1f2a", + "unit" : "%", + "response" : + { "name" : "PERCENTAGE_EXPENSES31" }, + "bindingDependencies" : + [ "PERCENTAGE_EXPENSES31" ] } ], + + [ + { "value" : "B2", + "label" : + { "value" : "\"Pork chop\"", + "type" : "VTL|MD" } }, + + { "componentType" : "InputNumber", + "min" : 0, + "max" : 100, + "decimals" : 1, + "id" : "j4nwc63q-QOP-kewvb2ql", + "unit" : "%", + "response" : + { "name" : "PERCENTAGE_EXPENSES41" }, + "bindingDependencies" : + [ "PERCENTAGE_EXPENSES41" ] } ], + + [ + { "value" : "B3", + "label" : + { "value" : "\"Chicken\"", + "type" : "VTL|MD" } }, + + { "componentType" : "InputNumber", + "min" : 0, + "max" : 100, + "decimals" : 1, + "id" : "j4nwc63q-QOP-kewvbxla", + "unit" : "%", + "response" : + { "name" : "PERCENTAGE_EXPENSES51" }, + "bindingDependencies" : + [ "PERCENTAGE_EXPENSES51" ] } ], + + [ + { "value" : "C", + "label" : + { "value" : "\"Compote\"", + "type" : "VTL|MD" } }, + + { "value" : "C1", + "label" : + { "value" : "\"Powersauce\"", + "type" : "VTL|MD" } }, + + { "componentType" : "InputNumber", + "min" : 0, + "max" : 100, + "decimals" : 1, + "id" : "j4nwc63q-QOP-kewvkjp0", + "unit" : "%", + "response" : + { "name" : "PERCENTAGE_EXPENSES61" }, + "bindingDependencies" : + [ "PERCENTAGE_EXPENSES61" ] } ], + + [ + { "colspan" : 2, + "value" : "D", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } }, + + { "componentType" : "InputNumber", + "min" : 0, + "max" : 100, + "decimals" : 1, + "id" : "j4nwc63q-QOP-kewv2cyx", + "unit" : "%", + "response" : + { "name" : "PERCENTAGE_EXPENSES71" }, + "bindingDependencies" : + [ "PERCENTAGE_EXPENSES71" ] } ], - { } ] }, + [ + { "colspan" : 2, + "value" : "E", + "label" : + { "value" : "\"Total\"", + "type" : "VTL|MD" } }, + + { } ] ] }, { "id" : "k9cg2q5t", "componentType" : "Table", @@ -1496,277 +1517,285 @@ { "id" : "j4nw88h2", "page" : "23", "label" : - { "value" : "\"IV - General questions\"", - "type" : "VTL|MD" } }, - "subSequence" : - { "id" : "j6qe237q", - "page" : "24", - "label" : - { "value" : "\"Kwik-E-Mart\"", - "type" : "VTL|MD" } } }, - "bindingDependencies" : - [ "LAST_FOOD_SHOPPING11", - "LAST_FOOD_SHOPPING21", - "LAST_FOOD_SHOPPING31", - "LAST_FOOD_SHOPPING41", - "LAST_FOOD_SHOPPING51", - "LAST_FOOD_SHOPPING61", - "LAST_FOOD_SHOPPING71", - "LAST_FOOD_SHOPPING81" ], - "header" : - [ - { "colspan" : 2, - "label" : - { "value" : "", - "type" : "VTL|MD" } }, - - { "label" : - { "value" : "\"In his last food shopping\"", - "type" : "VTL|MD" } } ], - "body" : - [ - { "rowspan" : 2, - "value" : "A", - "label" : - { "value" : "\"Frozen products\"", - "type" : "VTL|MD" } }, - - { "value" : "A1", - "label" : - { "value" : "\"Ice creams\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "k9cg2q5t-QOP-kiq6pljq", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "LAST_FOOD_SHOPPING11" }, - "bindingDependencies" : - [ "LAST_FOOD_SHOPPING11" ] }, - - { "value" : "A2", - "label" : - { "value" : "\"Jasper Beardly\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "k9cg2q5t-QOP-kiq6mgpv", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "LAST_FOOD_SHOPPING21" }, - "bindingDependencies" : - [ "LAST_FOOD_SHOPPING21" ] }, - - { "rowspan" : 3, - "value" : "B", - "label" : - { "value" : "\"Meat\"", - "type" : "VTL|MD" } }, - - { "value" : "B1", - "label" : - { "value" : "\"Bacon\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "k9cg2q5t-QOP-kiq6pmtz", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "LAST_FOOD_SHOPPING31" }, - "bindingDependencies" : - [ "LAST_FOOD_SHOPPING31" ] }, - - { "value" : "B2", - "label" : - { "value" : "\"Pork chop\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "k9cg2q5t-QOP-kiq6k4lf", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "LAST_FOOD_SHOPPING41" }, - "bindingDependencies" : - [ "LAST_FOOD_SHOPPING41" ] }, - - { "value" : "B3", - "label" : - { "value" : "\"Chicken\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "k9cg2q5t-QOP-kiq6p70n", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "LAST_FOOD_SHOPPING51" }, - "bindingDependencies" : - [ "LAST_FOOD_SHOPPING51" ] }, - - { "value" : "C", - "label" : - { "value" : "\"Compote\"", - "type" : "VTL|MD" } }, - - { "value" : "C1", - "label" : - { "value" : "\"Powersauce\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "k9cg2q5t-QOP-kiq6lh5v", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "LAST_FOOD_SHOPPING61" }, - "bindingDependencies" : - [ "LAST_FOOD_SHOPPING61" ] }, - - { "colspan" : 2, - "value" : "D", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "k9cg2q5t-QOP-kiq703te", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "LAST_FOOD_SHOPPING71" }, - "bindingDependencies" : - [ "LAST_FOOD_SHOPPING71" ] }, - + { "value" : "\"IV - General questions\"", + "type" : "VTL|MD" } }, + "subSequence" : + { "id" : "j6qe237q", + "page" : "24", + "label" : + { "value" : "\"Kwik-E-Mart\"", + "type" : "VTL|MD" } } }, + "bindingDependencies" : + [ "LAST_FOOD_SHOPPING11", + "LAST_FOOD_SHOPPING21", + "LAST_FOOD_SHOPPING31", + "LAST_FOOD_SHOPPING41", + "LAST_FOOD_SHOPPING51", + "LAST_FOOD_SHOPPING61", + "LAST_FOOD_SHOPPING71", + "LAST_FOOD_SHOPPING81" ], + "header" : + [ { "colspan" : 2, - "value" : "E", "label" : - { "value" : "\"Total\"", + { "value" : "", "type" : "VTL|MD" } }, - { "componentType" : "CheckboxOne", - "id" : "k9cg2q5t-QOP-kiq6zpd3", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "LAST_FOOD_SHOPPING81" }, - "bindingDependencies" : - [ "LAST_FOOD_SHOPPING81" ] } ] }, + { "label" : + { "value" : "\"In his last food shopping\"", + "type" : "VTL|MD" } } ], + "body" : + [ + [ + { "rowspan" : 2, + "value" : "A", + "label" : + { "value" : "\"Frozen products\"", + "type" : "VTL|MD" } }, + + { "value" : "A1", + "label" : + { "value" : "\"Ice creams\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "k9cg2q5t-QOP-kiq6pljq", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "LAST_FOOD_SHOPPING11" }, + "bindingDependencies" : + [ "LAST_FOOD_SHOPPING11" ] } ], + + [ + { "value" : "A2", + "label" : + { "value" : "\"Jasper Beardly\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "k9cg2q5t-QOP-kiq6mgpv", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "LAST_FOOD_SHOPPING21" }, + "bindingDependencies" : + [ "LAST_FOOD_SHOPPING21" ] } ], + + [ + { "rowspan" : 3, + "value" : "B", + "label" : + { "value" : "\"Meat\"", + "type" : "VTL|MD" } }, + + { "value" : "B1", + "label" : + { "value" : "\"Bacon\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "k9cg2q5t-QOP-kiq6pmtz", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "LAST_FOOD_SHOPPING31" }, + "bindingDependencies" : + [ "LAST_FOOD_SHOPPING31" ] } ], + + [ + { "value" : "B2", + "label" : + { "value" : "\"Pork chop\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "k9cg2q5t-QOP-kiq6k4lf", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "LAST_FOOD_SHOPPING41" }, + "bindingDependencies" : + [ "LAST_FOOD_SHOPPING41" ] } ], + + [ + { "value" : "B3", + "label" : + { "value" : "\"Chicken\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "k9cg2q5t-QOP-kiq6p70n", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "LAST_FOOD_SHOPPING51" }, + "bindingDependencies" : + [ "LAST_FOOD_SHOPPING51" ] } ], + + [ + { "value" : "C", + "label" : + { "value" : "\"Compote\"", + "type" : "VTL|MD" } }, + + { "value" : "C1", + "label" : + { "value" : "\"Powersauce\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "k9cg2q5t-QOP-kiq6lh5v", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "LAST_FOOD_SHOPPING61" }, + "bindingDependencies" : + [ "LAST_FOOD_SHOPPING61" ] } ], + + [ + { "colspan" : 2, + "value" : "D", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "k9cg2q5t-QOP-kiq703te", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "LAST_FOOD_SHOPPING71" }, + "bindingDependencies" : + [ "LAST_FOOD_SHOPPING71" ] } ], + + [ + { "colspan" : 2, + "value" : "E", + "label" : + { "value" : "\"Total\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "k9cg2q5t-QOP-kiq6zpd3", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "LAST_FOOD_SHOPPING81" }, + "bindingDependencies" : + [ "LAST_FOOD_SHOPPING81" ] } ] ] }, { "id" : "j6qejudb", "componentType" : "Subsequence", @@ -1843,169 +1872,173 @@ "type" : "VTL|MD" } } ], "body" : [ - { "value" : "1", - "label" : - { "value" : "\"Break the windows of the whole city\"", - "type" : "VTL|MD" } }, - - { "componentType" : "Dropdown", - "id" : "kbkjvgel-QOP-kiq6m5n0", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Jay\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Bart\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Krusty the clown\"", - "type" : "VTL|MD" } }, - - { "value" : "O", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "CLOWNING11" }, - "bindingDependencies" : - [ "CLOWNING11" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "kbkjvgel-QOP-kiq6qatu", - "response" : - { "name" : "CLOWNING12" }, - "bindingDependencies" : - [ "CLOWNING12" ] }, - - { "value" : "2", - "label" : - { "value" : "\"Loose the violin of his daughter playing poker\"", - "type" : "VTL|MD" } }, - - { "componentType" : "Dropdown", - "id" : "kbkjvgel-QOP-kiq6l29o", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Jay\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Bart\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Krusty the clown\"", - "type" : "VTL|MD" } }, - - { "value" : "O", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "CLOWNING21" }, - "bindingDependencies" : - [ "CLOWNING21" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "kbkjvgel-QOP-kiq6v4oe", - "response" : - { "name" : "CLOWNING22" }, - "bindingDependencies" : - [ "CLOWNING22" ] }, - - { "value" : "3", - "label" : - { "value" : "\"Kill Mr Burns\"", - "type" : "VTL|MD" } }, - - { "componentType" : "Dropdown", - "id" : "kbkjvgel-QOP-kiq72biw", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Jay\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Bart\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Krusty the clown\"", - "type" : "VTL|MD" } }, - - { "value" : "O", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "CLOWNING31" }, - "bindingDependencies" : - [ "CLOWNING31" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "kbkjvgel-QOP-kiq6q4zm", - "response" : - { "name" : "CLOWNING32" }, - "bindingDependencies" : - [ "CLOWNING32" ] }, - - { "value" : "4", - "label" : - { "value" : "\"Leaving a mechanical object to control the nuclear power plant\"", - "type" : "VTL|MD" } }, - - { "componentType" : "Dropdown", - "id" : "kbkjvgel-QOP-kiq6mlan", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Jay\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Bart\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Krusty the clown\"", - "type" : "VTL|MD" } }, - - { "value" : "O", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "CLOWNING41" }, - "bindingDependencies" : - [ "CLOWNING41" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "kbkjvgel-QOP-kiq6vtud", - "response" : - { "name" : "CLOWNING42" }, - "bindingDependencies" : - [ "CLOWNING42" ] } ] }, + [ + { "value" : "1", + "label" : + { "value" : "\"Break the windows of the whole city\"", + "type" : "VTL|MD" } }, + + { "componentType" : "Dropdown", + "id" : "kbkjvgel-QOP-kiq6m5n0", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Jay\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Bart\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Krusty the clown\"", + "type" : "VTL|MD" } }, + + { "value" : "O", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "CLOWNING11" }, + "bindingDependencies" : + [ "CLOWNING11" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "kbkjvgel-QOP-kiq6qatu", + "response" : + { "name" : "CLOWNING12" }, + "bindingDependencies" : + [ "CLOWNING12" ] } ], + + [ + { "value" : "2", + "label" : + { "value" : "\"Loose the violin of his daughter playing poker\"", + "type" : "VTL|MD" } }, + + { "componentType" : "Dropdown", + "id" : "kbkjvgel-QOP-kiq6l29o", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Jay\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Bart\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Krusty the clown\"", + "type" : "VTL|MD" } }, + + { "value" : "O", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "CLOWNING21" }, + "bindingDependencies" : + [ "CLOWNING21" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "kbkjvgel-QOP-kiq6v4oe", + "response" : + { "name" : "CLOWNING22" }, + "bindingDependencies" : + [ "CLOWNING22" ] } ], + + [ + { "value" : "3", + "label" : + { "value" : "\"Kill Mr Burns\"", + "type" : "VTL|MD" } }, + + { "componentType" : "Dropdown", + "id" : "kbkjvgel-QOP-kiq72biw", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Jay\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Bart\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Krusty the clown\"", + "type" : "VTL|MD" } }, + + { "value" : "O", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "CLOWNING31" }, + "bindingDependencies" : + [ "CLOWNING31" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "kbkjvgel-QOP-kiq6q4zm", + "response" : + { "name" : "CLOWNING32" }, + "bindingDependencies" : + [ "CLOWNING32" ] } ], + + [ + { "value" : "4", + "label" : + { "value" : "\"Leaving a mechanical object to control the nuclear power plant\"", + "type" : "VTL|MD" } }, + + { "componentType" : "Dropdown", + "id" : "kbkjvgel-QOP-kiq6mlan", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Jay\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Bart\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Krusty the clown\"", + "type" : "VTL|MD" } }, + + { "value" : "O", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "CLOWNING41" }, + "bindingDependencies" : + [ "CLOWNING41" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "kbkjvgel-QOP-kiq6vtud", + "response" : + { "name" : "CLOWNING42" }, + "bindingDependencies" : + [ "CLOWNING42" ] } ] ] }, { "id" : "j6qeh91y", "componentType" : "Subsequence", @@ -2122,193 +2155,197 @@ "type" : "VTL|MD" } } ], "body" : [ - { "value" : "1", - "label" : - { "value" : "\"Car\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvm4qg", - "response" : - { "name" : "TRAVEL11" }, - "bindingDependencies" : - [ "TRAVEL11" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewv8wxl", - "response" : - { "name" : "TRAVEL12" }, - "bindingDependencies" : - [ "TRAVEL12" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvcjrn", - "response" : - { "name" : "TRAVEL13" }, - "bindingDependencies" : - [ "TRAVEL13" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvdrv7", - "response" : - { "name" : "TRAVEL14" }, - "bindingDependencies" : - [ "TRAVEL14" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewv226h", - "response" : - { "name" : "TRAVEL15" }, - "bindingDependencies" : - [ "TRAVEL15" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvlchm", - "response" : - { "name" : "TRAVEL16" }, - "bindingDependencies" : - [ "TRAVEL16" ] }, - - { "value" : "2", - "label" : - { "value" : "\"Bike\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvebem", - "response" : - { "name" : "TRAVEL21" }, - "bindingDependencies" : - [ "TRAVEL21" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewv5u0v", - "response" : - { "name" : "TRAVEL22" }, - "bindingDependencies" : - [ "TRAVEL22" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvdarq", - "response" : - { "name" : "TRAVEL23" }, - "bindingDependencies" : - [ "TRAVEL23" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvc8ft", - "response" : - { "name" : "TRAVEL24" }, - "bindingDependencies" : - [ "TRAVEL24" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvc2li", - "response" : - { "name" : "TRAVEL25" }, - "bindingDependencies" : - [ "TRAVEL25" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvh5fm", - "response" : - { "name" : "TRAVEL26" }, - "bindingDependencies" : - [ "TRAVEL26" ] }, - - { "value" : "3", - "label" : - { "value" : "\"Skateboard\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewv62xx", - "response" : - { "name" : "TRAVEL31" }, - "bindingDependencies" : - [ "TRAVEL31" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvbiyv", - "response" : - { "name" : "TRAVEL32" }, - "bindingDependencies" : - [ "TRAVEL32" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvcmjn", - "response" : - { "name" : "TRAVEL33" }, - "bindingDependencies" : - [ "TRAVEL33" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvkci5", - "response" : - { "name" : "TRAVEL34" }, - "bindingDependencies" : - [ "TRAVEL34" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewveam7", - "response" : - { "name" : "TRAVEL35" }, - "bindingDependencies" : - [ "TRAVEL35" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewva2r8", - "response" : - { "name" : "TRAVEL36" }, - "bindingDependencies" : - [ "TRAVEL36" ] }, - - { "value" : "4", - "label" : - { "value" : "\"Plane\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvjcck", - "response" : - { "name" : "TRAVEL41" }, - "bindingDependencies" : - [ "TRAVEL41" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewv91bq", - "response" : - { "name" : "TRAVEL42" }, - "bindingDependencies" : - [ "TRAVEL42" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvf47u", - "response" : - { "name" : "TRAVEL43" }, - "bindingDependencies" : - [ "TRAVEL43" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewv5hsr", - "response" : - { "name" : "TRAVEL44" }, - "bindingDependencies" : - [ "TRAVEL44" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewva3p8", - "response" : - { "name" : "TRAVEL45" }, - "bindingDependencies" : - [ "TRAVEL45" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewve0rb", - "response" : - { "name" : "TRAVEL46" }, - "bindingDependencies" : - [ "TRAVEL46" ] } ] }, + [ + { "value" : "1", + "label" : + { "value" : "\"Car\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvm4qg", + "response" : + { "name" : "TRAVEL11" }, + "bindingDependencies" : + [ "TRAVEL11" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewv8wxl", + "response" : + { "name" : "TRAVEL12" }, + "bindingDependencies" : + [ "TRAVEL12" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvcjrn", + "response" : + { "name" : "TRAVEL13" }, + "bindingDependencies" : + [ "TRAVEL13" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvdrv7", + "response" : + { "name" : "TRAVEL14" }, + "bindingDependencies" : + [ "TRAVEL14" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewv226h", + "response" : + { "name" : "TRAVEL15" }, + "bindingDependencies" : + [ "TRAVEL15" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvlchm", + "response" : + { "name" : "TRAVEL16" }, + "bindingDependencies" : + [ "TRAVEL16" ] } ], + + [ + { "value" : "2", + "label" : + { "value" : "\"Bike\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvebem", + "response" : + { "name" : "TRAVEL21" }, + "bindingDependencies" : + [ "TRAVEL21" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewv5u0v", + "response" : + { "name" : "TRAVEL22" }, + "bindingDependencies" : + [ "TRAVEL22" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvdarq", + "response" : + { "name" : "TRAVEL23" }, + "bindingDependencies" : + [ "TRAVEL23" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvc8ft", + "response" : + { "name" : "TRAVEL24" }, + "bindingDependencies" : + [ "TRAVEL24" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvc2li", + "response" : + { "name" : "TRAVEL25" }, + "bindingDependencies" : + [ "TRAVEL25" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvh5fm", + "response" : + { "name" : "TRAVEL26" }, + "bindingDependencies" : + [ "TRAVEL26" ] } ], + + [ + { "value" : "3", + "label" : + { "value" : "\"Skateboard\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewv62xx", + "response" : + { "name" : "TRAVEL31" }, + "bindingDependencies" : + [ "TRAVEL31" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvbiyv", + "response" : + { "name" : "TRAVEL32" }, + "bindingDependencies" : + [ "TRAVEL32" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvcmjn", + "response" : + { "name" : "TRAVEL33" }, + "bindingDependencies" : + [ "TRAVEL33" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvkci5", + "response" : + { "name" : "TRAVEL34" }, + "bindingDependencies" : + [ "TRAVEL34" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewveam7", + "response" : + { "name" : "TRAVEL35" }, + "bindingDependencies" : + [ "TRAVEL35" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewva2r8", + "response" : + { "name" : "TRAVEL36" }, + "bindingDependencies" : + [ "TRAVEL36" ] } ], + + [ + { "value" : "4", + "label" : + { "value" : "\"Plane\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvjcck", + "response" : + { "name" : "TRAVEL41" }, + "bindingDependencies" : + [ "TRAVEL41" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewv91bq", + "response" : + { "name" : "TRAVEL42" }, + "bindingDependencies" : + [ "TRAVEL42" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvf47u", + "response" : + { "name" : "TRAVEL43" }, + "bindingDependencies" : + [ "TRAVEL43" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewv5hsr", + "response" : + { "name" : "TRAVEL44" }, + "bindingDependencies" : + [ "TRAVEL44" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewva3p8", + "response" : + { "name" : "TRAVEL45" }, + "bindingDependencies" : + [ "TRAVEL45" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewve0rb", + "response" : + { "name" : "TRAVEL46" }, + "bindingDependencies" : + [ "TRAVEL46" ] } ] ] }, { "id" : "j6qfx9qe", "componentType" : "Sequence", @@ -2378,422 +2415,432 @@ "FAVOURITE_CHAR2_8_2", "FAVOURITE_CHAR3_8_3", "FAVOURITE_CHAR1_9_1", - "FAVOURITE_CHAR2_9_2", - "FAVOURITE_CHAR3_9_3", - "FAVOURITE_CHAR1_10_1", - "FAVOURITE_CHAR2_10_2", - "FAVOURITE_CHAR3_10_3" ], - "lines" : - { "min" : - { "value" : "1", - "type" : "VTL|MD" }, - "max" : - { "value" : "10", - "type" : "VTL|MD" } }, - "header" : - [ - { "label" : - { "value" : "\"Name\"", - "type" : "VTL|MD" } }, - - { "label" : - { "value" : "\"Age\"", - "type" : "VTL|MD" } }, - - { "label" : - { "value" : "\"Member of the Simpsons family\"", - "type" : "VTL|MD" } } ], - "body" : - [ - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7p16z_1_1", - "response" : - { "name" : "FAVOURITE_CHAR1_1_1" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR1_1_1" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7kny3_1_2", - "response" : - { "name" : "FAVOURITE_CHAR2_1_2" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR2_1_2" ] }, - - { "componentType" : "CheckboxOne", - "id" : "j6qg8rc6-QOP-kiq7lffy_1_3", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FAVOURITE_CHAR3_1_3" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR3_1_3" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7p16z_2_1", - "response" : - { "name" : "FAVOURITE_CHAR1_2_1" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR1_2_1" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7kny3_2_2", - "response" : - { "name" : "FAVOURITE_CHAR2_2_2" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR2_2_2" ] }, - - { "componentType" : "CheckboxOne", - "id" : "j6qg8rc6-QOP-kiq7lffy_2_3", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FAVOURITE_CHAR3_2_3" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR3_2_3" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7p16z_3_1", - "response" : - { "name" : "FAVOURITE_CHAR1_3_1" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR1_3_1" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7kny3_3_2", - "response" : - { "name" : "FAVOURITE_CHAR2_3_2" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR2_3_2" ] }, - - { "componentType" : "CheckboxOne", - "id" : "j6qg8rc6-QOP-kiq7lffy_3_3", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FAVOURITE_CHAR3_3_3" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR3_3_3" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7p16z_4_1", - "response" : - { "name" : "FAVOURITE_CHAR1_4_1" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR1_4_1" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7kny3_4_2", - "response" : - { "name" : "FAVOURITE_CHAR2_4_2" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR2_4_2" ] }, - - { "componentType" : "CheckboxOne", - "id" : "j6qg8rc6-QOP-kiq7lffy_4_3", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FAVOURITE_CHAR3_4_3" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR3_4_3" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7p16z_5_1", - "response" : - { "name" : "FAVOURITE_CHAR1_5_1" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR1_5_1" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7kny3_5_2", - "response" : - { "name" : "FAVOURITE_CHAR2_5_2" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR2_5_2" ] }, - - { "componentType" : "CheckboxOne", - "id" : "j6qg8rc6-QOP-kiq7lffy_5_3", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FAVOURITE_CHAR3_5_3" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR3_5_3" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7p16z_6_1", - "response" : - { "name" : "FAVOURITE_CHAR1_6_1" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR1_6_1" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7kny3_6_2", - "response" : - { "name" : "FAVOURITE_CHAR2_6_2" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR2_6_2" ] }, - - { "componentType" : "CheckboxOne", - "id" : "j6qg8rc6-QOP-kiq7lffy_6_3", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FAVOURITE_CHAR3_6_3" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR3_6_3" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7p16z_7_1", - "response" : - { "name" : "FAVOURITE_CHAR1_7_1" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR1_7_1" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7kny3_7_2", - "response" : - { "name" : "FAVOURITE_CHAR2_7_2" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR2_7_2" ] }, - - { "componentType" : "CheckboxOne", - "id" : "j6qg8rc6-QOP-kiq7lffy_7_3", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FAVOURITE_CHAR3_7_3" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR3_7_3" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7p16z_8_1", - "response" : - { "name" : "FAVOURITE_CHAR1_8_1" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR1_8_1" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7kny3_8_2", - "response" : - { "name" : "FAVOURITE_CHAR2_8_2" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR2_8_2" ] }, - - { "componentType" : "CheckboxOne", - "id" : "j6qg8rc6-QOP-kiq7lffy_8_3", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FAVOURITE_CHAR3_8_3" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR3_8_3" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7p16z_9_1", - "response" : - { "name" : "FAVOURITE_CHAR1_9_1" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR1_9_1" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7kny3_9_2", - "response" : - { "name" : "FAVOURITE_CHAR2_9_2" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR2_9_2" ] }, - - { "componentType" : "CheckboxOne", - "id" : "j6qg8rc6-QOP-kiq7lffy_9_3", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FAVOURITE_CHAR3_9_3" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR3_9_3" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7p16z_10_1", - "response" : - { "name" : "FAVOURITE_CHAR1_10_1" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR1_10_1" ] }, + "FAVOURITE_CHAR2_9_2", + "FAVOURITE_CHAR3_9_3", + "FAVOURITE_CHAR1_10_1", + "FAVOURITE_CHAR2_10_2", + "FAVOURITE_CHAR3_10_3" ], + "lines" : + { "min" : + { "value" : "1", + "type" : "VTL|MD" }, + "max" : + { "value" : "10", + "type" : "VTL|MD" } }, + "header" : + [ + { "label" : + { "value" : "\"Name\"", + "type" : "VTL|MD" } }, - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7kny3_10_2", - "response" : - { "name" : "FAVOURITE_CHAR2_10_2" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR2_10_2" ] }, + { "label" : + { "value" : "\"Age\"", + "type" : "VTL|MD" } }, - { "componentType" : "CheckboxOne", - "id" : "j6qg8rc6-QOP-kiq7lffy_10_3", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FAVOURITE_CHAR3_10_3" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR3_10_3" ] } ] }, + { "label" : + { "value" : "\"Member of the Simpsons family\"", + "type" : "VTL|MD" } } ], + "body" : + [ + [ + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7p16z_1_1", + "response" : + { "name" : "FAVOURITE_CHAR1_1_1" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR1_1_1" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7kny3_1_2", + "response" : + { "name" : "FAVOURITE_CHAR2_1_2" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR2_1_2" ] }, + + { "componentType" : "CheckboxOne", + "id" : "j6qg8rc6-QOP-kiq7lffy_1_3", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FAVOURITE_CHAR3_1_3" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR3_1_3" ] } ], + + [ + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7p16z_2_1", + "response" : + { "name" : "FAVOURITE_CHAR1_2_1" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR1_2_1" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7kny3_2_2", + "response" : + { "name" : "FAVOURITE_CHAR2_2_2" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR2_2_2" ] }, + + { "componentType" : "CheckboxOne", + "id" : "j6qg8rc6-QOP-kiq7lffy_2_3", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FAVOURITE_CHAR3_2_3" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR3_2_3" ] } ], + + [ + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7p16z_3_1", + "response" : + { "name" : "FAVOURITE_CHAR1_3_1" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR1_3_1" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7kny3_3_2", + "response" : + { "name" : "FAVOURITE_CHAR2_3_2" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR2_3_2" ] }, + + { "componentType" : "CheckboxOne", + "id" : "j6qg8rc6-QOP-kiq7lffy_3_3", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FAVOURITE_CHAR3_3_3" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR3_3_3" ] } ], + + [ + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7p16z_4_1", + "response" : + { "name" : "FAVOURITE_CHAR1_4_1" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR1_4_1" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7kny3_4_2", + "response" : + { "name" : "FAVOURITE_CHAR2_4_2" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR2_4_2" ] }, + + { "componentType" : "CheckboxOne", + "id" : "j6qg8rc6-QOP-kiq7lffy_4_3", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FAVOURITE_CHAR3_4_3" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR3_4_3" ] } ], + + [ + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7p16z_5_1", + "response" : + { "name" : "FAVOURITE_CHAR1_5_1" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR1_5_1" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7kny3_5_2", + "response" : + { "name" : "FAVOURITE_CHAR2_5_2" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR2_5_2" ] }, + + { "componentType" : "CheckboxOne", + "id" : "j6qg8rc6-QOP-kiq7lffy_5_3", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FAVOURITE_CHAR3_5_3" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR3_5_3" ] } ], + + [ + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7p16z_6_1", + "response" : + { "name" : "FAVOURITE_CHAR1_6_1" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR1_6_1" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7kny3_6_2", + "response" : + { "name" : "FAVOURITE_CHAR2_6_2" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR2_6_2" ] }, + + { "componentType" : "CheckboxOne", + "id" : "j6qg8rc6-QOP-kiq7lffy_6_3", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FAVOURITE_CHAR3_6_3" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR3_6_3" ] } ], + + [ + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7p16z_7_1", + "response" : + { "name" : "FAVOURITE_CHAR1_7_1" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR1_7_1" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7kny3_7_2", + "response" : + { "name" : "FAVOURITE_CHAR2_7_2" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR2_7_2" ] }, + + { "componentType" : "CheckboxOne", + "id" : "j6qg8rc6-QOP-kiq7lffy_7_3", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FAVOURITE_CHAR3_7_3" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR3_7_3" ] } ], + + [ + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7p16z_8_1", + "response" : + { "name" : "FAVOURITE_CHAR1_8_1" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR1_8_1" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7kny3_8_2", + "response" : + { "name" : "FAVOURITE_CHAR2_8_2" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR2_8_2" ] }, + + { "componentType" : "CheckboxOne", + "id" : "j6qg8rc6-QOP-kiq7lffy_8_3", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FAVOURITE_CHAR3_8_3" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR3_8_3" ] } ], + + [ + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7p16z_9_1", + "response" : + { "name" : "FAVOURITE_CHAR1_9_1" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR1_9_1" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7kny3_9_2", + "response" : + { "name" : "FAVOURITE_CHAR2_9_2" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR2_9_2" ] }, + + { "componentType" : "CheckboxOne", + "id" : "j6qg8rc6-QOP-kiq7lffy_9_3", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FAVOURITE_CHAR3_9_3" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR3_9_3" ] } ], + + [ + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7p16z_10_1", + "response" : + { "name" : "FAVOURITE_CHAR1_10_1" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR1_10_1" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7kny3_10_2", + "response" : + { "name" : "FAVOURITE_CHAR2_10_2" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR2_10_2" ] }, + + { "componentType" : "CheckboxOne", + "id" : "j6qg8rc6-QOP-kiq7lffy_10_3", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FAVOURITE_CHAR3_10_3" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR3_10_3" ] } ] ] }, { "id" : "jvxux0mi", "componentType" : "Table", @@ -2822,117 +2869,121 @@ "FEELCHAREV4" ], "body" : [ - { "value" : "1", - "label" : - { "value" : "\"Jay\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "jvxux0mi-QOP-kiq76emy", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Up\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Down\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Steady\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FEELCHAREV1" }, - "bindingDependencies" : - [ "FEELCHAREV1" ] }, - - { "value" : "2", - "label" : - { "value" : "\"Bart\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "jvxux0mi-QOP-kiq6zv60", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Up\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Down\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Steady\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FEELCHAREV2" }, - "bindingDependencies" : - [ "FEELCHAREV2" ] }, - - { "value" : "3", - "label" : - { "value" : "\"Krusty the clown\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "jvxux0mi-QOP-kiq7bgk3", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Up\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Down\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Steady\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FEELCHAREV3" }, - "bindingDependencies" : - [ "FEELCHAREV3" ] }, - - { "value" : "O", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "jvxux0mi-QOP-kiq6ync3", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Up\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Down\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Steady\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FEELCHAREV4" }, - "bindingDependencies" : - [ "FEELCHAREV4" ] } ] }, + [ + { "value" : "1", + "label" : + { "value" : "\"Jay\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "jvxux0mi-QOP-kiq76emy", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Up\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Down\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Steady\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FEELCHAREV1" }, + "bindingDependencies" : + [ "FEELCHAREV1" ] } ], + + [ + { "value" : "2", + "label" : + { "value" : "\"Bart\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "jvxux0mi-QOP-kiq6zv60", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Up\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Down\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Steady\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FEELCHAREV2" }, + "bindingDependencies" : + [ "FEELCHAREV2" ] } ], + + [ + { "value" : "3", + "label" : + { "value" : "\"Krusty the clown\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "jvxux0mi-QOP-kiq7bgk3", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Up\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Down\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Steady\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FEELCHAREV3" }, + "bindingDependencies" : + [ "FEELCHAREV3" ] } ], + + [ + { "value" : "O", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "jvxux0mi-QOP-kiq6ync3", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Up\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Down\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Steady\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FEELCHAREV4" }, + "bindingDependencies" : + [ "FEELCHAREV4" ] } ] ] }, { "id" : "jvxwy68n", "componentType" : "Table", @@ -2980,170 +3031,175 @@ "type" : "VTL|MD" } } ], "body" : [ - { "value" : "1", - "label" : - { "value" : "\"Leave with pay\"", - "type" : "VTL|MD" } }, - - { "componentType" : "InputNumber", - "min" : 0, - "max" : 365, - "decimals" : 0, - "id" : "jvxwy68n-QOP-kewv511d", - "response" : - { "name" : "LEAVDURATION11" }, - "bindingDependencies" : - [ "LEAVDURATION11" ] }, - - { "componentType" : "Dropdown", - "id" : "jvxwy68n-QOP-kewv20qg", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Working Days\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Calendar days\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "LEAVDURATION12" }, - "bindingDependencies" : - [ "LEAVDURATION12" ] }, - - { "value" : "2", - "label" : - { "value" : "\"Public holiday\"", - "type" : "VTL|MD" } }, - - { "componentType" : "InputNumber", - "min" : 0, - "max" : 365, - "decimals" : 0, - "id" : "jvxwy68n-QOP-kewv67nj", - "response" : - { "name" : "LEAVDURATION21" }, - "bindingDependencies" : - [ "LEAVDURATION21" ] }, - - { "componentType" : "Dropdown", - "id" : "jvxwy68n-QOP-kewvizdm", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Working Days\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Calendar days\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "LEAVDURATION22" }, - "bindingDependencies" : - [ "LEAVDURATION22" ] }, - - { "value" : "3", - "label" : - { "value" : "\"Sick leave\"", - "type" : "VTL|MD" } }, - - { "componentType" : "InputNumber", - "min" : 0, - "max" : 365, - "decimals" : 0, - "id" : "jvxwy68n-QOP-kewv23wm", - "response" : - { "name" : "LEAVDURATION31" }, - "bindingDependencies" : - [ "LEAVDURATION31" ] }, - - { "componentType" : "Dropdown", - "id" : "jvxwy68n-QOP-kewv9jcl", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Working Days\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Calendar days\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "LEAVDURATION32" }, - "bindingDependencies" : - [ "LEAVDURATION32" ] }, - - { "value" : "4", - "label" : - { "value" : "\"Maternity\/paternity leave\"", - "type" : "VTL|MD" } }, - - { "componentType" : "InputNumber", - "min" : 0, - "max" : 365, - "decimals" : 0, - "id" : "jvxwy68n-QOP-kewv2jks", - "response" : - { "name" : "LEAVDURATION41" }, - "bindingDependencies" : - [ "LEAVDURATION41" ] }, - - { "componentType" : "Dropdown", - "id" : "jvxwy68n-QOP-kewvf0gf", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Working Days\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Calendar days\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "LEAVDURATION42" }, - "bindingDependencies" : - [ "LEAVDURATION42" ] }, - - { "value" : "5", - "label" : - { "value" : "\"Other type\"", - "type" : "VTL|MD" } }, - - { "componentType" : "InputNumber", - "min" : 0, - "max" : 365, - "decimals" : 0, - "id" : "jvxwy68n-QOP-kewvl896", - "response" : - { "name" : "LEAVDURATION51" }, - "bindingDependencies" : - [ "LEAVDURATION51" ] }, - - { "componentType" : "Dropdown", - "id" : "jvxwy68n-QOP-kewvalmd", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Working Days\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Calendar days\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "LEAVDURATION52" }, - "bindingDependencies" : - [ "LEAVDURATION52" ] } ] }, + [ + { "value" : "1", + "label" : + { "value" : "\"Leave with pay\"", + "type" : "VTL|MD" } }, + + { "componentType" : "InputNumber", + "min" : 0, + "max" : 365, + "decimals" : 0, + "id" : "jvxwy68n-QOP-kewv511d", + "response" : + { "name" : "LEAVDURATION11" }, + "bindingDependencies" : + [ "LEAVDURATION11" ] }, + + { "componentType" : "Dropdown", + "id" : "jvxwy68n-QOP-kewv20qg", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Working Days\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Calendar days\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "LEAVDURATION12" }, + "bindingDependencies" : + [ "LEAVDURATION12" ] } ], + + [ + { "value" : "2", + "label" : + { "value" : "\"Public holiday\"", + "type" : "VTL|MD" } }, + + { "componentType" : "InputNumber", + "min" : 0, + "max" : 365, + "decimals" : 0, + "id" : "jvxwy68n-QOP-kewv67nj", + "response" : + { "name" : "LEAVDURATION21" }, + "bindingDependencies" : + [ "LEAVDURATION21" ] }, + + { "componentType" : "Dropdown", + "id" : "jvxwy68n-QOP-kewvizdm", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Working Days\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Calendar days\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "LEAVDURATION22" }, + "bindingDependencies" : + [ "LEAVDURATION22" ] } ], + + [ + { "value" : "3", + "label" : + { "value" : "\"Sick leave\"", + "type" : "VTL|MD" } }, + + { "componentType" : "InputNumber", + "min" : 0, + "max" : 365, + "decimals" : 0, + "id" : "jvxwy68n-QOP-kewv23wm", + "response" : + { "name" : "LEAVDURATION31" }, + "bindingDependencies" : + [ "LEAVDURATION31" ] }, + + { "componentType" : "Dropdown", + "id" : "jvxwy68n-QOP-kewv9jcl", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Working Days\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Calendar days\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "LEAVDURATION32" }, + "bindingDependencies" : + [ "LEAVDURATION32" ] } ], + + [ + { "value" : "4", + "label" : + { "value" : "\"Maternity\/paternity leave\"", + "type" : "VTL|MD" } }, + + { "componentType" : "InputNumber", + "min" : 0, + "max" : 365, + "decimals" : 0, + "id" : "jvxwy68n-QOP-kewv2jks", + "response" : + { "name" : "LEAVDURATION41" }, + "bindingDependencies" : + [ "LEAVDURATION41" ] }, + + { "componentType" : "Dropdown", + "id" : "jvxwy68n-QOP-kewvf0gf", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Working Days\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Calendar days\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "LEAVDURATION42" }, + "bindingDependencies" : + [ "LEAVDURATION42" ] } ], + + [ + { "value" : "5", + "label" : + { "value" : "\"Other type\"", + "type" : "VTL|MD" } }, + + { "componentType" : "InputNumber", + "min" : 0, + "max" : 365, + "decimals" : 0, + "id" : "jvxwy68n-QOP-kewvl896", + "response" : + { "name" : "LEAVDURATION51" }, + "bindingDependencies" : + [ "LEAVDURATION51" ] }, + + { "componentType" : "Dropdown", + "id" : "jvxwy68n-QOP-kewvalmd", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Working Days\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Calendar days\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "LEAVDURATION52" }, + "bindingDependencies" : + [ "LEAVDURATION52" ] } ] ] }, { "id" : "kiq5mr0b", "componentType" : "Sequence", diff --git a/src/test/resources/examples/xmlh-2-jsonh/out.json b/src/test/resources/examples/xmlh-2-jsonh/out.json index 59eb5c61..a77e73cc 100644 --- a/src/test/resources/examples/xmlh-2-jsonh/out.json +++ b/src/test/resources/examples/xmlh-2-jsonh/out.json @@ -3,7 +3,7 @@ "modele" : "SIMPSONS", "enoCoreVersion" : "2.2.8", "lunaticModelVersion" : "2.2.11", - "generatingDate" : "22-03-2022 16:01:56", + "generatingDate" : "23-03-2022 11:22:02", "pagination" : "question", "maxPage" : "37", "label" : @@ -825,97 +825,101 @@ "ICE_FLAVOUR4" ], "body" : [ - { "value" : "1", - "label" : - { "value" : "\"Vanilla\"", - "type" : "VTL|MD" } }, - - { "componentType" : "Radio", - "id" : "j6p29i81-QOP-kiq5w99y", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "0", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "ICE_FLAVOUR1" }, - "bindingDependencies" : - [ "ICE_FLAVOUR1" ] }, - - { "value" : "2", - "label" : - { "value" : "\"Strawberry\"", - "type" : "VTL|MD" } }, - - { "componentType" : "Radio", - "id" : "j6p29i81-QOP-kiq5ummf", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "0", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "ICE_FLAVOUR2" }, - "bindingDependencies" : - [ "ICE_FLAVOUR2" ] }, - - { "value" : "3", - "label" : - { "value" : "\"Apple\"", - "type" : "VTL|MD" } }, + [ + { "value" : "1", + "label" : + { "value" : "\"Vanilla\"", + "type" : "VTL|MD" } }, + + { "componentType" : "Radio", + "id" : "j6p29i81-QOP-kiq5w99y", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "0", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "ICE_FLAVOUR1" }, + "bindingDependencies" : + [ "ICE_FLAVOUR1" ] } ], - { "componentType" : "Radio", - "id" : "j6p29i81-QOP-kiq5mry5", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "0", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "ICE_FLAVOUR3" }, - "bindingDependencies" : - [ "ICE_FLAVOUR3" ] }, + [ + { "value" : "2", + "label" : + { "value" : "\"Strawberry\"", + "type" : "VTL|MD" } }, + + { "componentType" : "Radio", + "id" : "j6p29i81-QOP-kiq5ummf", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "0", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "ICE_FLAVOUR2" }, + "bindingDependencies" : + [ "ICE_FLAVOUR2" ] } ], - { "value" : "OT", - "label" : - { "value" : "\"Other flavour\"", - "type" : "VTL|MD" } }, + [ + { "value" : "3", + "label" : + { "value" : "\"Apple\"", + "type" : "VTL|MD" } }, + + { "componentType" : "Radio", + "id" : "j6p29i81-QOP-kiq5mry5", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "0", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "ICE_FLAVOUR3" }, + "bindingDependencies" : + [ "ICE_FLAVOUR3" ] } ], - { "componentType" : "Radio", - "id" : "j6p29i81-QOP-kiq5lkr8", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "0", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "ICE_FLAVOUR4" }, - "bindingDependencies" : - [ "ICE_FLAVOUR4" ] } ] }, + [ + { "value" : "OT", + "label" : + { "value" : "\"Other flavour\"", + "type" : "VTL|MD" } }, + + { "componentType" : "Radio", + "id" : "j6p29i81-QOP-kiq5lkr8", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "0", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "ICE_FLAVOUR4" }, + "bindingDependencies" : + [ "ICE_FLAVOUR4" ] } ] ] }, { "id" : "j6qefnga", "componentType" : "Table", @@ -944,97 +948,101 @@ "NUCLEAR_CHARACTER4" ], "body" : [ - { "value" : "1", - "label" : - { "value" : "\"Charles Montgomery Burns\"", - "type" : "VTL|MD" } }, - - { "componentType" : "Dropdown", - "id" : "j6qefnga-QOP-kewva8xg", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "0", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "NUCLEAR_CHARACTER1" }, - "bindingDependencies" : - [ "NUCLEAR_CHARACTER1" ] }, - - { "value" : "2", - "label" : - { "value" : "\"Carl Carlson\"", - "type" : "VTL|MD" } }, - - { "componentType" : "Dropdown", - "id" : "j6qefnga-QOP-kewvj0ad", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "0", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "NUCLEAR_CHARACTER2" }, - "bindingDependencies" : - [ "NUCLEAR_CHARACTER2" ] }, - - { "value" : "3", - "label" : - { "value" : "\"Otto Mann\"", - "type" : "VTL|MD" } }, + [ + { "value" : "1", + "label" : + { "value" : "\"Charles Montgomery Burns\"", + "type" : "VTL|MD" } }, + + { "componentType" : "Dropdown", + "id" : "j6qefnga-QOP-kewva8xg", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "0", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "NUCLEAR_CHARACTER1" }, + "bindingDependencies" : + [ "NUCLEAR_CHARACTER1" ] } ], - { "componentType" : "Dropdown", - "id" : "j6qefnga-QOP-kewveltm", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "0", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "NUCLEAR_CHARACTER3" }, - "bindingDependencies" : - [ "NUCLEAR_CHARACTER3" ] }, + [ + { "value" : "2", + "label" : + { "value" : "\"Carl Carlson\"", + "type" : "VTL|MD" } }, + + { "componentType" : "Dropdown", + "id" : "j6qefnga-QOP-kewvj0ad", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "0", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "NUCLEAR_CHARACTER2" }, + "bindingDependencies" : + [ "NUCLEAR_CHARACTER2" ] } ], - { "value" : "4", - "label" : - { "value" : "\"Lenny Leonard\"", - "type" : "VTL|MD" } }, + [ + { "value" : "3", + "label" : + { "value" : "\"Otto Mann\"", + "type" : "VTL|MD" } }, + + { "componentType" : "Dropdown", + "id" : "j6qefnga-QOP-kewveltm", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "0", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "NUCLEAR_CHARACTER3" }, + "bindingDependencies" : + [ "NUCLEAR_CHARACTER3" ] } ], - { "componentType" : "Dropdown", - "id" : "j6qefnga-QOP-kewvgax4", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "0", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "NUCLEAR_CHARACTER4" }, - "bindingDependencies" : - [ "NUCLEAR_CHARACTER4" ] } ] }, + [ + { "value" : "4", + "label" : + { "value" : "\"Lenny Leonard\"", + "type" : "VTL|MD" } }, + + { "componentType" : "Dropdown", + "id" : "j6qefnga-QOP-kewvgax4", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "0", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "NUCLEAR_CHARACTER4" }, + "bindingDependencies" : + [ "NUCLEAR_CHARACTER4" ] } ] ] }, { "id" : "j6yzoc6g", "componentType" : "Table", @@ -1064,195 +1072,200 @@ "BIRTH_CHARACTER5" ], "body" : [ - { "value" : "1", - "label" : - { "value" : "\"Selma Bouvier\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "j6yzoc6g-QOP-kewvjvcs", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Albuquerque\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Springfield\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Portland\"", - "type" : "VTL|MD" } }, - - { "value" : "4", - "label" : - { "value" : "\"Shelbyville\"", - "type" : "VTL|MD" } }, - - { "value" : "5", - "label" : - { "value" : "\"Dagstuhl\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "BIRTH_CHARACTER1" }, - "bindingDependencies" : - [ "BIRTH_CHARACTER1" ] }, - - { "value" : "2", - "label" : - { "value" : "\"Kent Brockman\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "j6yzoc6g-QOP-kewvhoda", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Albuquerque\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Springfield\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Portland\"", - "type" : "VTL|MD" } }, - - { "value" : "4", - "label" : - { "value" : "\"Shelbyville\"", - "type" : "VTL|MD" } }, - - { "value" : "5", - "label" : - { "value" : "\"Dagstuhl\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "BIRTH_CHARACTER2" }, - "bindingDependencies" : - [ "BIRTH_CHARACTER2" ] }, - - { "value" : "3", - "label" : - { "value" : "\"Milhouse Van Houten\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "j6yzoc6g-QOP-kewv64s5", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Albuquerque\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Springfield\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Portland\"", - "type" : "VTL|MD" } }, - - { "value" : "4", - "label" : - { "value" : "\"Shelbyville\"", - "type" : "VTL|MD" } }, - - { "value" : "5", - "label" : - { "value" : "\"Dagstuhl\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "BIRTH_CHARACTER3" }, - "bindingDependencies" : - [ "BIRTH_CHARACTER3" ] }, + [ + { "value" : "1", + "label" : + { "value" : "\"Selma Bouvier\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "j6yzoc6g-QOP-kewvjvcs", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Albuquerque\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Springfield\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Portland\"", + "type" : "VTL|MD" } }, + + { "value" : "4", + "label" : + { "value" : "\"Shelbyville\"", + "type" : "VTL|MD" } }, + + { "value" : "5", + "label" : + { "value" : "\"Dagstuhl\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "BIRTH_CHARACTER1" }, + "bindingDependencies" : + [ "BIRTH_CHARACTER1" ] } ], - { "value" : "4", - "label" : - { "value" : "\"Nelson Muntz\"", - "type" : "VTL|MD" } }, + [ + { "value" : "2", + "label" : + { "value" : "\"Kent Brockman\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "j6yzoc6g-QOP-kewvhoda", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Albuquerque\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Springfield\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Portland\"", + "type" : "VTL|MD" } }, + + { "value" : "4", + "label" : + { "value" : "\"Shelbyville\"", + "type" : "VTL|MD" } }, + + { "value" : "5", + "label" : + { "value" : "\"Dagstuhl\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "BIRTH_CHARACTER2" }, + "bindingDependencies" : + [ "BIRTH_CHARACTER2" ] } ], - { "componentType" : "CheckboxOne", - "id" : "j6yzoc6g-QOP-kewvj21j", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Albuquerque\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Springfield\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Portland\"", - "type" : "VTL|MD" } }, - - { "value" : "4", - "label" : - { "value" : "\"Shelbyville\"", - "type" : "VTL|MD" } }, - - { "value" : "5", - "label" : - { "value" : "\"Dagstuhl\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "BIRTH_CHARACTER4" }, - "bindingDependencies" : - [ "BIRTH_CHARACTER4" ] }, + [ + { "value" : "3", + "label" : + { "value" : "\"Milhouse Van Houten\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "j6yzoc6g-QOP-kewv64s5", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Albuquerque\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Springfield\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Portland\"", + "type" : "VTL|MD" } }, + + { "value" : "4", + "label" : + { "value" : "\"Shelbyville\"", + "type" : "VTL|MD" } }, + + { "value" : "5", + "label" : + { "value" : "\"Dagstuhl\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "BIRTH_CHARACTER3" }, + "bindingDependencies" : + [ "BIRTH_CHARACTER3" ] } ], - { "value" : "5", - "label" : - { "value" : "\"Crazy Cat Lady\"", - "type" : "VTL|MD" } }, + [ + { "value" : "4", + "label" : + { "value" : "\"Nelson Muntz\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "j6yzoc6g-QOP-kewvj21j", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Albuquerque\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Springfield\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Portland\"", + "type" : "VTL|MD" } }, + + { "value" : "4", + "label" : + { "value" : "\"Shelbyville\"", + "type" : "VTL|MD" } }, + + { "value" : "5", + "label" : + { "value" : "\"Dagstuhl\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "BIRTH_CHARACTER4" }, + "bindingDependencies" : + [ "BIRTH_CHARACTER4" ] } ], - { "componentType" : "CheckboxOne", - "id" : "j6yzoc6g-QOP-kewva5uf", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Albuquerque\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Springfield\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Portland\"", - "type" : "VTL|MD" } }, - - { "value" : "4", - "label" : - { "value" : "\"Shelbyville\"", - "type" : "VTL|MD" } }, - - { "value" : "5", - "label" : - { "value" : "\"Dagstuhl\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "BIRTH_CHARACTER5" }, - "bindingDependencies" : - [ "BIRTH_CHARACTER5" ] } ] } ] }, + [ + { "value" : "5", + "label" : + { "value" : "\"Crazy Cat Lady\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "j6yzoc6g-QOP-kewva5uf", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Albuquerque\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Springfield\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Portland\"", + "type" : "VTL|MD" } }, + + { "value" : "4", + "label" : + { "value" : "\"Shelbyville\"", + "type" : "VTL|MD" } }, + + { "value" : "5", + "label" : + { "value" : "\"Dagstuhl\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "BIRTH_CHARACTER5" }, + "bindingDependencies" : + [ "BIRTH_CHARACTER5" ] } ] ] } ] }, { "id" : "j4nw88h2", "componentType" : "Sequence", @@ -1346,143 +1359,151 @@ "type" : "VTL|MD" } } ], "body" : [ - { "rowspan" : 2, - "value" : "A", - "label" : - { "value" : "\"Frozen products\"", - "type" : "VTL|MD" } }, - - { "value" : "A1", - "label" : - { "value" : "\"Ice creams\"", - "type" : "VTL|MD" } }, - - { "componentType" : "InputNumber", - "min" : 0, - "max" : 100, - "decimals" : 1, - "id" : "j4nwc63q-QOP-kewv2h3o", - "unit" : "%", - "response" : - { "name" : "PERCENTAGE_EXPENSES11" }, - "bindingDependencies" : - [ "PERCENTAGE_EXPENSES11" ] }, - - { "value" : "A2", - "label" : - { "value" : "\"Jasper Beardly\"", - "type" : "VTL|MD" } }, - - { "componentType" : "InputNumber", - "min" : 0, - "max" : 100, - "decimals" : 1, - "id" : "j4nwc63q-QOP-kewvka2j", - "unit" : "%", - "response" : - { "name" : "PERCENTAGE_EXPENSES21" }, - "bindingDependencies" : - [ "PERCENTAGE_EXPENSES21" ] }, - - { "rowspan" : 3, - "value" : "B", - "label" : - { "value" : "\"Meat\"", - "type" : "VTL|MD" } }, - - { "value" : "B1", - "label" : - { "value" : "\"Bacon\"", - "type" : "VTL|MD" } }, - - { "componentType" : "InputNumber", - "min" : 0, - "max" : 100, - "decimals" : 1, - "id" : "j4nwc63q-QOP-kewv1f2a", - "unit" : "%", - "response" : - { "name" : "PERCENTAGE_EXPENSES31" }, - "bindingDependencies" : - [ "PERCENTAGE_EXPENSES31" ] }, - - { "value" : "B2", - "label" : - { "value" : "\"Pork chop\"", - "type" : "VTL|MD" } }, - - { "componentType" : "InputNumber", - "min" : 0, - "max" : 100, - "decimals" : 1, - "id" : "j4nwc63q-QOP-kewvb2ql", - "unit" : "%", - "response" : - { "name" : "PERCENTAGE_EXPENSES41" }, - "bindingDependencies" : - [ "PERCENTAGE_EXPENSES41" ] }, - - { "value" : "B3", - "label" : - { "value" : "\"Chicken\"", - "type" : "VTL|MD" } }, - - { "componentType" : "InputNumber", - "min" : 0, - "max" : 100, - "decimals" : 1, - "id" : "j4nwc63q-QOP-kewvbxla", - "unit" : "%", - "response" : - { "name" : "PERCENTAGE_EXPENSES51" }, - "bindingDependencies" : - [ "PERCENTAGE_EXPENSES51" ] }, - - { "value" : "C", - "label" : - { "value" : "\"Compote\"", - "type" : "VTL|MD" } }, - - { "value" : "C1", - "label" : - { "value" : "\"Powersauce\"", - "type" : "VTL|MD" } }, - - { "componentType" : "InputNumber", - "min" : 0, - "max" : 100, - "decimals" : 1, - "id" : "j4nwc63q-QOP-kewvkjp0", - "unit" : "%", - "response" : - { "name" : "PERCENTAGE_EXPENSES61" }, - "bindingDependencies" : - [ "PERCENTAGE_EXPENSES61" ] }, - - { "colspan" : 2, - "value" : "D", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } }, - - { "componentType" : "InputNumber", - "min" : 0, - "max" : 100, - "decimals" : 1, - "id" : "j4nwc63q-QOP-kewv2cyx", - "unit" : "%", - "response" : - { "name" : "PERCENTAGE_EXPENSES71" }, - "bindingDependencies" : - [ "PERCENTAGE_EXPENSES71" ] }, - - { "colspan" : 2, - "value" : "E", - "label" : - { "value" : "\"Total\"", - "type" : "VTL|MD" } }, - - { } ] }, + [ + { "rowspan" : 2, + "value" : "A", + "label" : + { "value" : "\"Frozen products\"", + "type" : "VTL|MD" } }, + + { "value" : "A1", + "label" : + { "value" : "\"Ice creams\"", + "type" : "VTL|MD" } }, + + { "componentType" : "InputNumber", + "min" : 0, + "max" : 100, + "decimals" : 1, + "id" : "j4nwc63q-QOP-kewv2h3o", + "unit" : "%", + "response" : + { "name" : "PERCENTAGE_EXPENSES11" }, + "bindingDependencies" : + [ "PERCENTAGE_EXPENSES11" ] } ], + + [ + { "value" : "A2", + "label" : + { "value" : "\"Jasper Beardly\"", + "type" : "VTL|MD" } }, + + { "componentType" : "InputNumber", + "min" : 0, + "max" : 100, + "decimals" : 1, + "id" : "j4nwc63q-QOP-kewvka2j", + "unit" : "%", + "response" : + { "name" : "PERCENTAGE_EXPENSES21" }, + "bindingDependencies" : + [ "PERCENTAGE_EXPENSES21" ] } ], + + [ + { "rowspan" : 3, + "value" : "B", + "label" : + { "value" : "\"Meat\"", + "type" : "VTL|MD" } }, + + { "value" : "B1", + "label" : + { "value" : "\"Bacon\"", + "type" : "VTL|MD" } }, + + { "componentType" : "InputNumber", + "min" : 0, + "max" : 100, + "decimals" : 1, + "id" : "j4nwc63q-QOP-kewv1f2a", + "unit" : "%", + "response" : + { "name" : "PERCENTAGE_EXPENSES31" }, + "bindingDependencies" : + [ "PERCENTAGE_EXPENSES31" ] } ], + + [ + { "value" : "B2", + "label" : + { "value" : "\"Pork chop\"", + "type" : "VTL|MD" } }, + + { "componentType" : "InputNumber", + "min" : 0, + "max" : 100, + "decimals" : 1, + "id" : "j4nwc63q-QOP-kewvb2ql", + "unit" : "%", + "response" : + { "name" : "PERCENTAGE_EXPENSES41" }, + "bindingDependencies" : + [ "PERCENTAGE_EXPENSES41" ] } ], + + [ + { "value" : "B3", + "label" : + { "value" : "\"Chicken\"", + "type" : "VTL|MD" } }, + + { "componentType" : "InputNumber", + "min" : 0, + "max" : 100, + "decimals" : 1, + "id" : "j4nwc63q-QOP-kewvbxla", + "unit" : "%", + "response" : + { "name" : "PERCENTAGE_EXPENSES51" }, + "bindingDependencies" : + [ "PERCENTAGE_EXPENSES51" ] } ], + + [ + { "value" : "C", + "label" : + { "value" : "\"Compote\"", + "type" : "VTL|MD" } }, + + { "value" : "C1", + "label" : + { "value" : "\"Powersauce\"", + "type" : "VTL|MD" } }, + + { "componentType" : "InputNumber", + "min" : 0, + "max" : 100, + "decimals" : 1, + "id" : "j4nwc63q-QOP-kewvkjp0", + "unit" : "%", + "response" : + { "name" : "PERCENTAGE_EXPENSES61" }, + "bindingDependencies" : + [ "PERCENTAGE_EXPENSES61" ] } ], + + [ + { "colspan" : 2, + "value" : "D", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } }, + + { "componentType" : "InputNumber", + "min" : 0, + "max" : 100, + "decimals" : 1, + "id" : "j4nwc63q-QOP-kewv2cyx", + "unit" : "%", + "response" : + { "name" : "PERCENTAGE_EXPENSES71" }, + "bindingDependencies" : + [ "PERCENTAGE_EXPENSES71" ] } ], + + [ + { "colspan" : 2, + "value" : "E", + "label" : + { "value" : "\"Total\"", + "type" : "VTL|MD" } }, + + { } ] ] }, { "id" : "k9cg2q5t", "componentType" : "Table", @@ -1531,248 +1552,256 @@ "type" : "VTL|MD" } } ], "body" : [ - { "rowspan" : 2, - "value" : "A", - "label" : - { "value" : "\"Frozen products\"", - "type" : "VTL|MD" } }, - - { "value" : "A1", - "label" : - { "value" : "\"Ice creams\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "k9cg2q5t-QOP-kiq6pljq", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "LAST_FOOD_SHOPPING11" }, - "bindingDependencies" : - [ "LAST_FOOD_SHOPPING11" ] }, - - { "value" : "A2", - "label" : - { "value" : "\"Jasper Beardly\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "k9cg2q5t-QOP-kiq6mgpv", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "LAST_FOOD_SHOPPING21" }, - "bindingDependencies" : - [ "LAST_FOOD_SHOPPING21" ] }, - - { "rowspan" : 3, - "value" : "B", - "label" : - { "value" : "\"Meat\"", - "type" : "VTL|MD" } }, - - { "value" : "B1", - "label" : - { "value" : "\"Bacon\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "k9cg2q5t-QOP-kiq6pmtz", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "LAST_FOOD_SHOPPING31" }, - "bindingDependencies" : - [ "LAST_FOOD_SHOPPING31" ] }, - - { "value" : "B2", - "label" : - { "value" : "\"Pork chop\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "k9cg2q5t-QOP-kiq6k4lf", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "LAST_FOOD_SHOPPING41" }, - "bindingDependencies" : - [ "LAST_FOOD_SHOPPING41" ] }, - - { "value" : "B3", - "label" : - { "value" : "\"Chicken\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "k9cg2q5t-QOP-kiq6p70n", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "LAST_FOOD_SHOPPING51" }, - "bindingDependencies" : - [ "LAST_FOOD_SHOPPING51" ] }, - - { "value" : "C", - "label" : - { "value" : "\"Compote\"", - "type" : "VTL|MD" } }, - - { "value" : "C1", - "label" : - { "value" : "\"Powersauce\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "k9cg2q5t-QOP-kiq6lh5v", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "LAST_FOOD_SHOPPING61" }, - "bindingDependencies" : - [ "LAST_FOOD_SHOPPING61" ] }, - - { "colspan" : 2, - "value" : "D", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "k9cg2q5t-QOP-kiq703te", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "LAST_FOOD_SHOPPING71" }, - "bindingDependencies" : - [ "LAST_FOOD_SHOPPING71" ] }, - - { "colspan" : 2, - "value" : "E", - "label" : - { "value" : "\"Total\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "k9cg2q5t-QOP-kiq6zpd3", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "LAST_FOOD_SHOPPING81" }, - "bindingDependencies" : - [ "LAST_FOOD_SHOPPING81" ] } ] } ] }, + [ + { "rowspan" : 2, + "value" : "A", + "label" : + { "value" : "\"Frozen products\"", + "type" : "VTL|MD" } }, + + { "value" : "A1", + "label" : + { "value" : "\"Ice creams\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "k9cg2q5t-QOP-kiq6pljq", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "LAST_FOOD_SHOPPING11" }, + "bindingDependencies" : + [ "LAST_FOOD_SHOPPING11" ] } ], + + [ + { "value" : "A2", + "label" : + { "value" : "\"Jasper Beardly\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "k9cg2q5t-QOP-kiq6mgpv", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "LAST_FOOD_SHOPPING21" }, + "bindingDependencies" : + [ "LAST_FOOD_SHOPPING21" ] } ], + + [ + { "rowspan" : 3, + "value" : "B", + "label" : + { "value" : "\"Meat\"", + "type" : "VTL|MD" } }, + + { "value" : "B1", + "label" : + { "value" : "\"Bacon\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "k9cg2q5t-QOP-kiq6pmtz", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "LAST_FOOD_SHOPPING31" }, + "bindingDependencies" : + [ "LAST_FOOD_SHOPPING31" ] } ], + + [ + { "value" : "B2", + "label" : + { "value" : "\"Pork chop\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "k9cg2q5t-QOP-kiq6k4lf", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "LAST_FOOD_SHOPPING41" }, + "bindingDependencies" : + [ "LAST_FOOD_SHOPPING41" ] } ], + + [ + { "value" : "B3", + "label" : + { "value" : "\"Chicken\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "k9cg2q5t-QOP-kiq6p70n", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "LAST_FOOD_SHOPPING51" }, + "bindingDependencies" : + [ "LAST_FOOD_SHOPPING51" ] } ], + + [ + { "value" : "C", + "label" : + { "value" : "\"Compote\"", + "type" : "VTL|MD" } }, + + { "value" : "C1", + "label" : + { "value" : "\"Powersauce\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "k9cg2q5t-QOP-kiq6lh5v", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "LAST_FOOD_SHOPPING61" }, + "bindingDependencies" : + [ "LAST_FOOD_SHOPPING61" ] } ], + + [ + { "colspan" : 2, + "value" : "D", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "k9cg2q5t-QOP-kiq703te", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "LAST_FOOD_SHOPPING71" }, + "bindingDependencies" : + [ "LAST_FOOD_SHOPPING71" ] } ], + + [ + { "colspan" : 2, + "value" : "E", + "label" : + { "value" : "\"Total\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "k9cg2q5t-QOP-kiq6zpd3", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "LAST_FOOD_SHOPPING81" }, + "bindingDependencies" : + [ "LAST_FOOD_SHOPPING81" ] } ] ] } ] }, { "id" : "j6qejudb", "componentType" : "Subsequence", @@ -1850,169 +1879,173 @@ "type" : "VTL|MD" } } ], "body" : [ - { "value" : "1", - "label" : - { "value" : "\"Break the windows of the whole city\"", - "type" : "VTL|MD" } }, - - { "componentType" : "Dropdown", - "id" : "kbkjvgel-QOP-kiq6m5n0", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Jay\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Bart\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Krusty the clown\"", - "type" : "VTL|MD" } }, - - { "value" : "O", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "CLOWNING11" }, - "bindingDependencies" : - [ "CLOWNING11" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "kbkjvgel-QOP-kiq6qatu", - "response" : - { "name" : "CLOWNING12" }, - "bindingDependencies" : - [ "CLOWNING12" ] }, - - { "value" : "2", - "label" : - { "value" : "\"Loose the violin of his daughter playing poker\"", - "type" : "VTL|MD" } }, - - { "componentType" : "Dropdown", - "id" : "kbkjvgel-QOP-kiq6l29o", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Jay\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Bart\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Krusty the clown\"", - "type" : "VTL|MD" } }, - - { "value" : "O", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "CLOWNING21" }, - "bindingDependencies" : - [ "CLOWNING21" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "kbkjvgel-QOP-kiq6v4oe", - "response" : - { "name" : "CLOWNING22" }, - "bindingDependencies" : - [ "CLOWNING22" ] }, - - { "value" : "3", - "label" : - { "value" : "\"Kill Mr Burns\"", - "type" : "VTL|MD" } }, - - { "componentType" : "Dropdown", - "id" : "kbkjvgel-QOP-kiq72biw", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Jay\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Bart\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Krusty the clown\"", - "type" : "VTL|MD" } }, - - { "value" : "O", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "CLOWNING31" }, - "bindingDependencies" : - [ "CLOWNING31" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "kbkjvgel-QOP-kiq6q4zm", - "response" : - { "name" : "CLOWNING32" }, - "bindingDependencies" : - [ "CLOWNING32" ] }, - - { "value" : "4", - "label" : - { "value" : "\"Leaving a mechanical object to control the nuclear power plant\"", - "type" : "VTL|MD" } }, - - { "componentType" : "Dropdown", - "id" : "kbkjvgel-QOP-kiq6mlan", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Jay\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Bart\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Krusty the clown\"", - "type" : "VTL|MD" } }, - - { "value" : "O", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "CLOWNING41" }, - "bindingDependencies" : - [ "CLOWNING41" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "kbkjvgel-QOP-kiq6vtud", - "response" : - { "name" : "CLOWNING42" }, - "bindingDependencies" : - [ "CLOWNING42" ] } ] } ] }, + [ + { "value" : "1", + "label" : + { "value" : "\"Break the windows of the whole city\"", + "type" : "VTL|MD" } }, + + { "componentType" : "Dropdown", + "id" : "kbkjvgel-QOP-kiq6m5n0", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Jay\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Bart\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Krusty the clown\"", + "type" : "VTL|MD" } }, + + { "value" : "O", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "CLOWNING11" }, + "bindingDependencies" : + [ "CLOWNING11" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "kbkjvgel-QOP-kiq6qatu", + "response" : + { "name" : "CLOWNING12" }, + "bindingDependencies" : + [ "CLOWNING12" ] } ], + + [ + { "value" : "2", + "label" : + { "value" : "\"Loose the violin of his daughter playing poker\"", + "type" : "VTL|MD" } }, + + { "componentType" : "Dropdown", + "id" : "kbkjvgel-QOP-kiq6l29o", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Jay\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Bart\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Krusty the clown\"", + "type" : "VTL|MD" } }, + + { "value" : "O", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "CLOWNING21" }, + "bindingDependencies" : + [ "CLOWNING21" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "kbkjvgel-QOP-kiq6v4oe", + "response" : + { "name" : "CLOWNING22" }, + "bindingDependencies" : + [ "CLOWNING22" ] } ], + + [ + { "value" : "3", + "label" : + { "value" : "\"Kill Mr Burns\"", + "type" : "VTL|MD" } }, + + { "componentType" : "Dropdown", + "id" : "kbkjvgel-QOP-kiq72biw", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Jay\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Bart\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Krusty the clown\"", + "type" : "VTL|MD" } }, + + { "value" : "O", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "CLOWNING31" }, + "bindingDependencies" : + [ "CLOWNING31" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "kbkjvgel-QOP-kiq6q4zm", + "response" : + { "name" : "CLOWNING32" }, + "bindingDependencies" : + [ "CLOWNING32" ] } ], + + [ + { "value" : "4", + "label" : + { "value" : "\"Leaving a mechanical object to control the nuclear power plant\"", + "type" : "VTL|MD" } }, + + { "componentType" : "Dropdown", + "id" : "kbkjvgel-QOP-kiq6mlan", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Jay\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Bart\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Krusty the clown\"", + "type" : "VTL|MD" } }, + + { "value" : "O", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "CLOWNING41" }, + "bindingDependencies" : + [ "CLOWNING41" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "kbkjvgel-QOP-kiq6vtud", + "response" : + { "name" : "CLOWNING42" }, + "bindingDependencies" : + [ "CLOWNING42" ] } ] ] } ] }, { "id" : "j6qeh91y", "componentType" : "Subsequence", @@ -2102,221 +2135,225 @@ "header" : [ { "label" : - { "value" : "", - "type" : "VTL|MD" } }, - - { "label" : - { "value" : "\"Brazil\"", - "type" : "VTL|MD" } }, - - { "label" : - { "value" : "\"Canada\"", - "type" : "VTL|MD" } }, - - { "label" : - { "value" : "\"Japan\"", - "type" : "VTL|MD" } }, - - { "label" : - { "value" : "\"France\"", - "type" : "VTL|MD" } }, - - { "label" : - { "value" : "\"Other country\"", - "type" : "VTL|MD" } }, - - { "label" : - { "value" : "\"Other planet\"", - "type" : "VTL|MD" } } ], - "body" : - [ - { "value" : "1", - "label" : - { "value" : "\"Car\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvm4qg", - "response" : - { "name" : "TRAVEL11" }, - "bindingDependencies" : - [ "TRAVEL11" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewv8wxl", - "response" : - { "name" : "TRAVEL12" }, - "bindingDependencies" : - [ "TRAVEL12" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvcjrn", - "response" : - { "name" : "TRAVEL13" }, - "bindingDependencies" : - [ "TRAVEL13" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvdrv7", - "response" : - { "name" : "TRAVEL14" }, - "bindingDependencies" : - [ "TRAVEL14" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewv226h", - "response" : - { "name" : "TRAVEL15" }, - "bindingDependencies" : - [ "TRAVEL15" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvlchm", - "response" : - { "name" : "TRAVEL16" }, - "bindingDependencies" : - [ "TRAVEL16" ] }, - - { "value" : "2", - "label" : - { "value" : "\"Bike\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvebem", - "response" : - { "name" : "TRAVEL21" }, - "bindingDependencies" : - [ "TRAVEL21" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewv5u0v", - "response" : - { "name" : "TRAVEL22" }, - "bindingDependencies" : - [ "TRAVEL22" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvdarq", - "response" : - { "name" : "TRAVEL23" }, - "bindingDependencies" : - [ "TRAVEL23" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvc8ft", - "response" : - { "name" : "TRAVEL24" }, - "bindingDependencies" : - [ "TRAVEL24" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvc2li", - "response" : - { "name" : "TRAVEL25" }, - "bindingDependencies" : - [ "TRAVEL25" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvh5fm", - "response" : - { "name" : "TRAVEL26" }, - "bindingDependencies" : - [ "TRAVEL26" ] }, - - { "value" : "3", - "label" : - { "value" : "\"Skateboard\"", + { "value" : "", "type" : "VTL|MD" } }, - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewv62xx", - "response" : - { "name" : "TRAVEL31" }, - "bindingDependencies" : - [ "TRAVEL31" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvbiyv", - "response" : - { "name" : "TRAVEL32" }, - "bindingDependencies" : - [ "TRAVEL32" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvcmjn", - "response" : - { "name" : "TRAVEL33" }, - "bindingDependencies" : - [ "TRAVEL33" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvkci5", - "response" : - { "name" : "TRAVEL34" }, - "bindingDependencies" : - [ "TRAVEL34" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewveam7", - "response" : - { "name" : "TRAVEL35" }, - "bindingDependencies" : - [ "TRAVEL35" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewva2r8", - "response" : - { "name" : "TRAVEL36" }, - "bindingDependencies" : - [ "TRAVEL36" ] }, - - { "value" : "4", - "label" : - { "value" : "\"Plane\"", + { "label" : + { "value" : "\"Brazil\"", "type" : "VTL|MD" } }, - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvjcck", - "response" : - { "name" : "TRAVEL41" }, - "bindingDependencies" : - [ "TRAVEL41" ] }, - - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewv91bq", - "response" : - { "name" : "TRAVEL42" }, - "bindingDependencies" : - [ "TRAVEL42" ] }, + { "label" : + { "value" : "\"Canada\"", + "type" : "VTL|MD" } }, - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewvf47u", - "response" : - { "name" : "TRAVEL43" }, - "bindingDependencies" : - [ "TRAVEL43" ] }, + { "label" : + { "value" : "\"Japan\"", + "type" : "VTL|MD" } }, - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewv5hsr", - "response" : - { "name" : "TRAVEL44" }, - "bindingDependencies" : - [ "TRAVEL44" ] }, + { "label" : + { "value" : "\"France\"", + "type" : "VTL|MD" } }, - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewva3p8", - "response" : - { "name" : "TRAVEL45" }, - "bindingDependencies" : - [ "TRAVEL45" ] }, + { "label" : + { "value" : "\"Other country\"", + "type" : "VTL|MD" } }, - { "componentType" : "CheckboxBoolean", - "id" : "j6p2lwuj-QOP-kewve0rb", - "response" : - { "name" : "TRAVEL46" }, - "bindingDependencies" : - [ "TRAVEL46" ] } ] } ] } ] }, + { "label" : + { "value" : "\"Other planet\"", + "type" : "VTL|MD" } } ], + "body" : + [ + [ + { "value" : "1", + "label" : + { "value" : "\"Car\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvm4qg", + "response" : + { "name" : "TRAVEL11" }, + "bindingDependencies" : + [ "TRAVEL11" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewv8wxl", + "response" : + { "name" : "TRAVEL12" }, + "bindingDependencies" : + [ "TRAVEL12" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvcjrn", + "response" : + { "name" : "TRAVEL13" }, + "bindingDependencies" : + [ "TRAVEL13" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvdrv7", + "response" : + { "name" : "TRAVEL14" }, + "bindingDependencies" : + [ "TRAVEL14" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewv226h", + "response" : + { "name" : "TRAVEL15" }, + "bindingDependencies" : + [ "TRAVEL15" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvlchm", + "response" : + { "name" : "TRAVEL16" }, + "bindingDependencies" : + [ "TRAVEL16" ] } ], + + [ + { "value" : "2", + "label" : + { "value" : "\"Bike\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvebem", + "response" : + { "name" : "TRAVEL21" }, + "bindingDependencies" : + [ "TRAVEL21" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewv5u0v", + "response" : + { "name" : "TRAVEL22" }, + "bindingDependencies" : + [ "TRAVEL22" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvdarq", + "response" : + { "name" : "TRAVEL23" }, + "bindingDependencies" : + [ "TRAVEL23" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvc8ft", + "response" : + { "name" : "TRAVEL24" }, + "bindingDependencies" : + [ "TRAVEL24" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvc2li", + "response" : + { "name" : "TRAVEL25" }, + "bindingDependencies" : + [ "TRAVEL25" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvh5fm", + "response" : + { "name" : "TRAVEL26" }, + "bindingDependencies" : + [ "TRAVEL26" ] } ], + + [ + { "value" : "3", + "label" : + { "value" : "\"Skateboard\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewv62xx", + "response" : + { "name" : "TRAVEL31" }, + "bindingDependencies" : + [ "TRAVEL31" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvbiyv", + "response" : + { "name" : "TRAVEL32" }, + "bindingDependencies" : + [ "TRAVEL32" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvcmjn", + "response" : + { "name" : "TRAVEL33" }, + "bindingDependencies" : + [ "TRAVEL33" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvkci5", + "response" : + { "name" : "TRAVEL34" }, + "bindingDependencies" : + [ "TRAVEL34" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewveam7", + "response" : + { "name" : "TRAVEL35" }, + "bindingDependencies" : + [ "TRAVEL35" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewva2r8", + "response" : + { "name" : "TRAVEL36" }, + "bindingDependencies" : + [ "TRAVEL36" ] } ], + + [ + { "value" : "4", + "label" : + { "value" : "\"Plane\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvjcck", + "response" : + { "name" : "TRAVEL41" }, + "bindingDependencies" : + [ "TRAVEL41" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewv91bq", + "response" : + { "name" : "TRAVEL42" }, + "bindingDependencies" : + [ "TRAVEL42" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewvf47u", + "response" : + { "name" : "TRAVEL43" }, + "bindingDependencies" : + [ "TRAVEL43" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewv5hsr", + "response" : + { "name" : "TRAVEL44" }, + "bindingDependencies" : + [ "TRAVEL44" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewva3p8", + "response" : + { "name" : "TRAVEL45" }, + "bindingDependencies" : + [ "TRAVEL45" ] }, + + { "componentType" : "CheckboxBoolean", + "id" : "j6p2lwuj-QOP-kewve0rb", + "response" : + { "name" : "TRAVEL46" }, + "bindingDependencies" : + [ "TRAVEL46" ] } ] ] } ] } ] }, { "id" : "j6qfx9qe", "componentType" : "Sequence", @@ -2414,395 +2451,405 @@ "type" : "VTL|MD" } } ], "body" : [ - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7p16z_1_1", - "response" : - { "name" : "FAVOURITE_CHAR1_1_1" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR1_1_1" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7kny3_1_2", - "response" : - { "name" : "FAVOURITE_CHAR2_1_2" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR2_1_2" ] }, - - { "componentType" : "CheckboxOne", - "id" : "j6qg8rc6-QOP-kiq7lffy_1_3", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FAVOURITE_CHAR3_1_3" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR3_1_3" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7p16z_2_1", - "response" : - { "name" : "FAVOURITE_CHAR1_2_1" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR1_2_1" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7kny3_2_2", - "response" : - { "name" : "FAVOURITE_CHAR2_2_2" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR2_2_2" ] }, - - { "componentType" : "CheckboxOne", - "id" : "j6qg8rc6-QOP-kiq7lffy_2_3", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FAVOURITE_CHAR3_2_3" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR3_2_3" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7p16z_3_1", - "response" : - { "name" : "FAVOURITE_CHAR1_3_1" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR1_3_1" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7kny3_3_2", - "response" : - { "name" : "FAVOURITE_CHAR2_3_2" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR2_3_2" ] }, - - { "componentType" : "CheckboxOne", - "id" : "j6qg8rc6-QOP-kiq7lffy_3_3", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FAVOURITE_CHAR3_3_3" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR3_3_3" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7p16z_4_1", - "response" : - { "name" : "FAVOURITE_CHAR1_4_1" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR1_4_1" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7kny3_4_2", - "response" : - { "name" : "FAVOURITE_CHAR2_4_2" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR2_4_2" ] }, - - { "componentType" : "CheckboxOne", - "id" : "j6qg8rc6-QOP-kiq7lffy_4_3", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FAVOURITE_CHAR3_4_3" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR3_4_3" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7p16z_5_1", - "response" : - { "name" : "FAVOURITE_CHAR1_5_1" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR1_5_1" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7kny3_5_2", - "response" : - { "name" : "FAVOURITE_CHAR2_5_2" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR2_5_2" ] }, - - { "componentType" : "CheckboxOne", - "id" : "j6qg8rc6-QOP-kiq7lffy_5_3", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FAVOURITE_CHAR3_5_3" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR3_5_3" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7p16z_6_1", - "response" : - { "name" : "FAVOURITE_CHAR1_6_1" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR1_6_1" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7kny3_6_2", - "response" : - { "name" : "FAVOURITE_CHAR2_6_2" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR2_6_2" ] }, - - { "componentType" : "CheckboxOne", - "id" : "j6qg8rc6-QOP-kiq7lffy_6_3", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FAVOURITE_CHAR3_6_3" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR3_6_3" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7p16z_7_1", - "response" : - { "name" : "FAVOURITE_CHAR1_7_1" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR1_7_1" ] }, - - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7kny3_7_2", - "response" : - { "name" : "FAVOURITE_CHAR2_7_2" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR2_7_2" ] }, - - { "componentType" : "CheckboxOne", - "id" : "j6qg8rc6-QOP-kiq7lffy_7_3", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FAVOURITE_CHAR3_7_3" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR3_7_3" ] }, + [ + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7p16z_1_1", + "response" : + { "name" : "FAVOURITE_CHAR1_1_1" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR1_1_1" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7kny3_1_2", + "response" : + { "name" : "FAVOURITE_CHAR2_1_2" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR2_1_2" ] }, + + { "componentType" : "CheckboxOne", + "id" : "j6qg8rc6-QOP-kiq7lffy_1_3", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FAVOURITE_CHAR3_1_3" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR3_1_3" ] } ], - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7p16z_8_1", - "response" : - { "name" : "FAVOURITE_CHAR1_8_1" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR1_8_1" ] }, + [ + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7p16z_2_1", + "response" : + { "name" : "FAVOURITE_CHAR1_2_1" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR1_2_1" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7kny3_2_2", + "response" : + { "name" : "FAVOURITE_CHAR2_2_2" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR2_2_2" ] }, + + { "componentType" : "CheckboxOne", + "id" : "j6qg8rc6-QOP-kiq7lffy_2_3", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FAVOURITE_CHAR3_2_3" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR3_2_3" ] } ], - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7kny3_8_2", - "response" : - { "name" : "FAVOURITE_CHAR2_8_2" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR2_8_2" ] }, + [ + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7p16z_3_1", + "response" : + { "name" : "FAVOURITE_CHAR1_3_1" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR1_3_1" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7kny3_3_2", + "response" : + { "name" : "FAVOURITE_CHAR2_3_2" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR2_3_2" ] }, + + { "componentType" : "CheckboxOne", + "id" : "j6qg8rc6-QOP-kiq7lffy_3_3", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FAVOURITE_CHAR3_3_3" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR3_3_3" ] } ], - { "componentType" : "CheckboxOne", - "id" : "j6qg8rc6-QOP-kiq7lffy_8_3", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FAVOURITE_CHAR3_8_3" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR3_8_3" ] }, + [ + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7p16z_4_1", + "response" : + { "name" : "FAVOURITE_CHAR1_4_1" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR1_4_1" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7kny3_4_2", + "response" : + { "name" : "FAVOURITE_CHAR2_4_2" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR2_4_2" ] }, + + { "componentType" : "CheckboxOne", + "id" : "j6qg8rc6-QOP-kiq7lffy_4_3", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FAVOURITE_CHAR3_4_3" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR3_4_3" ] } ], - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7p16z_9_1", - "response" : - { "name" : "FAVOURITE_CHAR1_9_1" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR1_9_1" ] }, + [ + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7p16z_5_1", + "response" : + { "name" : "FAVOURITE_CHAR1_5_1" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR1_5_1" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7kny3_5_2", + "response" : + { "name" : "FAVOURITE_CHAR2_5_2" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR2_5_2" ] }, + + { "componentType" : "CheckboxOne", + "id" : "j6qg8rc6-QOP-kiq7lffy_5_3", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FAVOURITE_CHAR3_5_3" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR3_5_3" ] } ], - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7kny3_9_2", - "response" : - { "name" : "FAVOURITE_CHAR2_9_2" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR2_9_2" ] }, + [ + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7p16z_6_1", + "response" : + { "name" : "FAVOURITE_CHAR1_6_1" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR1_6_1" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7kny3_6_2", + "response" : + { "name" : "FAVOURITE_CHAR2_6_2" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR2_6_2" ] }, + + { "componentType" : "CheckboxOne", + "id" : "j6qg8rc6-QOP-kiq7lffy_6_3", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FAVOURITE_CHAR3_6_3" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR3_6_3" ] } ], - { "componentType" : "CheckboxOne", - "id" : "j6qg8rc6-QOP-kiq7lffy_9_3", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FAVOURITE_CHAR3_9_3" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR3_9_3" ] }, + [ + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7p16z_7_1", + "response" : + { "name" : "FAVOURITE_CHAR1_7_1" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR1_7_1" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7kny3_7_2", + "response" : + { "name" : "FAVOURITE_CHAR2_7_2" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR2_7_2" ] }, + + { "componentType" : "CheckboxOne", + "id" : "j6qg8rc6-QOP-kiq7lffy_7_3", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FAVOURITE_CHAR3_7_3" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR3_7_3" ] } ], - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7p16z_10_1", - "response" : - { "name" : "FAVOURITE_CHAR1_10_1" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR1_10_1" ] }, + [ + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7p16z_8_1", + "response" : + { "name" : "FAVOURITE_CHAR1_8_1" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR1_8_1" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7kny3_8_2", + "response" : + { "name" : "FAVOURITE_CHAR2_8_2" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR2_8_2" ] }, + + { "componentType" : "CheckboxOne", + "id" : "j6qg8rc6-QOP-kiq7lffy_8_3", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FAVOURITE_CHAR3_8_3" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR3_8_3" ] } ], - { "componentType" : "Textarea", - "maxLength" : 255, - "id" : "j6qg8rc6-QOP-kiq7kny3_10_2", - "response" : - { "name" : "FAVOURITE_CHAR2_10_2" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR2_10_2" ] }, + [ + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7p16z_9_1", + "response" : + { "name" : "FAVOURITE_CHAR1_9_1" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR1_9_1" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7kny3_9_2", + "response" : + { "name" : "FAVOURITE_CHAR2_9_2" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR2_9_2" ] }, + + { "componentType" : "CheckboxOne", + "id" : "j6qg8rc6-QOP-kiq7lffy_9_3", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FAVOURITE_CHAR3_9_3" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR3_9_3" ] } ], - { "componentType" : "CheckboxOne", - "id" : "j6qg8rc6-QOP-kiq7lffy_10_3", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Yes\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"No\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FAVOURITE_CHAR3_10_3" }, - "bindingDependencies" : - [ "FAVOURITE_CHAR3_10_3" ] } ] }, + [ + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7p16z_10_1", + "response" : + { "name" : "FAVOURITE_CHAR1_10_1" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR1_10_1" ] }, + + { "componentType" : "Textarea", + "maxLength" : 255, + "id" : "j6qg8rc6-QOP-kiq7kny3_10_2", + "response" : + { "name" : "FAVOURITE_CHAR2_10_2" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR2_10_2" ] }, + + { "componentType" : "CheckboxOne", + "id" : "j6qg8rc6-QOP-kiq7lffy_10_3", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Yes\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"No\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FAVOURITE_CHAR3_10_3" }, + "bindingDependencies" : + [ "FAVOURITE_CHAR3_10_3" ] } ] ] }, { "id" : "jvxux0mi", "componentType" : "Table", @@ -2831,117 +2878,121 @@ "FEELCHAREV4" ], "body" : [ - { "value" : "1", - "label" : - { "value" : "\"Jay\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "jvxux0mi-QOP-kiq76emy", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Up\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Down\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Steady\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FEELCHAREV1" }, - "bindingDependencies" : - [ "FEELCHAREV1" ] }, - - { "value" : "2", - "label" : - { "value" : "\"Bart\"", - "type" : "VTL|MD" } }, - - { "componentType" : "CheckboxOne", - "id" : "jvxux0mi-QOP-kiq6zv60", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Up\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Down\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Steady\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FEELCHAREV2" }, - "bindingDependencies" : - [ "FEELCHAREV2" ] }, - - { "value" : "3", - "label" : - { "value" : "\"Krusty the clown\"", - "type" : "VTL|MD" } }, + [ + { "value" : "1", + "label" : + { "value" : "\"Jay\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "jvxux0mi-QOP-kiq76emy", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Up\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Down\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Steady\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FEELCHAREV1" }, + "bindingDependencies" : + [ "FEELCHAREV1" ] } ], - { "componentType" : "CheckboxOne", - "id" : "jvxux0mi-QOP-kiq7bgk3", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Up\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Down\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Steady\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FEELCHAREV3" }, - "bindingDependencies" : - [ "FEELCHAREV3" ] }, + [ + { "value" : "2", + "label" : + { "value" : "\"Bart\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "jvxux0mi-QOP-kiq6zv60", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Up\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Down\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Steady\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FEELCHAREV2" }, + "bindingDependencies" : + [ "FEELCHAREV2" ] } ], - { "value" : "O", - "label" : - { "value" : "\"Other\"", - "type" : "VTL|MD" } }, + [ + { "value" : "3", + "label" : + { "value" : "\"Krusty the clown\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "jvxux0mi-QOP-kiq7bgk3", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Up\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Down\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Steady\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FEELCHAREV3" }, + "bindingDependencies" : + [ "FEELCHAREV3" ] } ], - { "componentType" : "CheckboxOne", - "id" : "jvxux0mi-QOP-kiq6ync3", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Up\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Down\"", - "type" : "VTL|MD" } }, - - { "value" : "3", - "label" : - { "value" : "\"Steady\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "FEELCHAREV4" }, - "bindingDependencies" : - [ "FEELCHAREV4" ] } ] }, + [ + { "value" : "O", + "label" : + { "value" : "\"Other\"", + "type" : "VTL|MD" } }, + + { "componentType" : "CheckboxOne", + "id" : "jvxux0mi-QOP-kiq6ync3", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Up\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Down\"", + "type" : "VTL|MD" } }, + + { "value" : "3", + "label" : + { "value" : "\"Steady\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "FEELCHAREV4" }, + "bindingDependencies" : + [ "FEELCHAREV4" ] } ] ] }, { "id" : "jvxwy68n", "componentType" : "Table", @@ -2989,170 +3040,175 @@ "type" : "VTL|MD" } } ], "body" : [ - { "value" : "1", - "label" : - { "value" : "\"Leave with pay\"", - "type" : "VTL|MD" } }, - - { "componentType" : "InputNumber", - "min" : 0, - "max" : 365, - "decimals" : 0, - "id" : "jvxwy68n-QOP-kewv511d", - "response" : - { "name" : "LEAVDURATION11" }, - "bindingDependencies" : - [ "LEAVDURATION11" ] }, - - { "componentType" : "Dropdown", - "id" : "jvxwy68n-QOP-kewv20qg", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Working Days\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Calendar days\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "LEAVDURATION12" }, - "bindingDependencies" : - [ "LEAVDURATION12" ] }, - - { "value" : "2", - "label" : - { "value" : "\"Public holiday\"", - "type" : "VTL|MD" } }, - - { "componentType" : "InputNumber", - "min" : 0, - "max" : 365, - "decimals" : 0, - "id" : "jvxwy68n-QOP-kewv67nj", - "response" : - { "name" : "LEAVDURATION21" }, - "bindingDependencies" : - [ "LEAVDURATION21" ] }, - - { "componentType" : "Dropdown", - "id" : "jvxwy68n-QOP-kewvizdm", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Working Days\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Calendar days\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "LEAVDURATION22" }, - "bindingDependencies" : - [ "LEAVDURATION22" ] }, - - { "value" : "3", - "label" : - { "value" : "\"Sick leave\"", - "type" : "VTL|MD" } }, - - { "componentType" : "InputNumber", - "min" : 0, - "max" : 365, - "decimals" : 0, - "id" : "jvxwy68n-QOP-kewv23wm", - "response" : - { "name" : "LEAVDURATION31" }, - "bindingDependencies" : - [ "LEAVDURATION31" ] }, - - { "componentType" : "Dropdown", - "id" : "jvxwy68n-QOP-kewv9jcl", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Working Days\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Calendar days\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "LEAVDURATION32" }, - "bindingDependencies" : - [ "LEAVDURATION32" ] }, - - { "value" : "4", - "label" : - { "value" : "\"Maternity\/paternity leave\"", - "type" : "VTL|MD" } }, - - { "componentType" : "InputNumber", - "min" : 0, - "max" : 365, - "decimals" : 0, - "id" : "jvxwy68n-QOP-kewv2jks", - "response" : - { "name" : "LEAVDURATION41" }, - "bindingDependencies" : - [ "LEAVDURATION41" ] }, + [ + { "value" : "1", + "label" : + { "value" : "\"Leave with pay\"", + "type" : "VTL|MD" } }, + + { "componentType" : "InputNumber", + "min" : 0, + "max" : 365, + "decimals" : 0, + "id" : "jvxwy68n-QOP-kewv511d", + "response" : + { "name" : "LEAVDURATION11" }, + "bindingDependencies" : + [ "LEAVDURATION11" ] }, + + { "componentType" : "Dropdown", + "id" : "jvxwy68n-QOP-kewv20qg", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Working Days\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Calendar days\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "LEAVDURATION12" }, + "bindingDependencies" : + [ "LEAVDURATION12" ] } ], - { "componentType" : "Dropdown", - "id" : "jvxwy68n-QOP-kewvf0gf", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Working Days\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Calendar days\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "LEAVDURATION42" }, - "bindingDependencies" : - [ "LEAVDURATION42" ] }, + [ + { "value" : "2", + "label" : + { "value" : "\"Public holiday\"", + "type" : "VTL|MD" } }, + + { "componentType" : "InputNumber", + "min" : 0, + "max" : 365, + "decimals" : 0, + "id" : "jvxwy68n-QOP-kewv67nj", + "response" : + { "name" : "LEAVDURATION21" }, + "bindingDependencies" : + [ "LEAVDURATION21" ] }, + + { "componentType" : "Dropdown", + "id" : "jvxwy68n-QOP-kewvizdm", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Working Days\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Calendar days\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "LEAVDURATION22" }, + "bindingDependencies" : + [ "LEAVDURATION22" ] } ], - { "value" : "5", - "label" : - { "value" : "\"Other type\"", - "type" : "VTL|MD" } }, + [ + { "value" : "3", + "label" : + { "value" : "\"Sick leave\"", + "type" : "VTL|MD" } }, + + { "componentType" : "InputNumber", + "min" : 0, + "max" : 365, + "decimals" : 0, + "id" : "jvxwy68n-QOP-kewv23wm", + "response" : + { "name" : "LEAVDURATION31" }, + "bindingDependencies" : + [ "LEAVDURATION31" ] }, + + { "componentType" : "Dropdown", + "id" : "jvxwy68n-QOP-kewv9jcl", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Working Days\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Calendar days\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "LEAVDURATION32" }, + "bindingDependencies" : + [ "LEAVDURATION32" ] } ], - { "componentType" : "InputNumber", - "min" : 0, - "max" : 365, - "decimals" : 0, - "id" : "jvxwy68n-QOP-kewvl896", - "response" : - { "name" : "LEAVDURATION51" }, - "bindingDependencies" : - [ "LEAVDURATION51" ] }, + [ + { "value" : "4", + "label" : + { "value" : "\"Maternity\/paternity leave\"", + "type" : "VTL|MD" } }, + + { "componentType" : "InputNumber", + "min" : 0, + "max" : 365, + "decimals" : 0, + "id" : "jvxwy68n-QOP-kewv2jks", + "response" : + { "name" : "LEAVDURATION41" }, + "bindingDependencies" : + [ "LEAVDURATION41" ] }, + + { "componentType" : "Dropdown", + "id" : "jvxwy68n-QOP-kewvf0gf", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Working Days\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Calendar days\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "LEAVDURATION42" }, + "bindingDependencies" : + [ "LEAVDURATION42" ] } ], - { "componentType" : "Dropdown", - "id" : "jvxwy68n-QOP-kewvalmd", - "options" : - [ - { "value" : "1", - "label" : - { "value" : "\"Working Days\"", - "type" : "VTL|MD" } }, - - { "value" : "2", - "label" : - { "value" : "\"Calendar days\"", - "type" : "VTL|MD" } } ], - "response" : - { "name" : "LEAVDURATION52" }, - "bindingDependencies" : - [ "LEAVDURATION52" ] } ] } ] }, + [ + { "value" : "5", + "label" : + { "value" : "\"Other type\"", + "type" : "VTL|MD" } }, + + { "componentType" : "InputNumber", + "min" : 0, + "max" : 365, + "decimals" : 0, + "id" : "jvxwy68n-QOP-kewvl896", + "response" : + { "name" : "LEAVDURATION51" }, + "bindingDependencies" : + [ "LEAVDURATION51" ] }, + + { "componentType" : "Dropdown", + "id" : "jvxwy68n-QOP-kewvalmd", + "options" : + [ + { "value" : "1", + "label" : + { "value" : "\"Working Days\"", + "type" : "VTL|MD" } }, + + { "value" : "2", + "label" : + { "value" : "\"Calendar days\"", + "type" : "VTL|MD" } } ], + "response" : + { "name" : "LEAVDURATION52" }, + "bindingDependencies" : + [ "LEAVDURATION52" ] } ] ] } ] }, { "id" : "kiq5mr0b", "componentType" : "Sequence", diff --git a/src/test/resources/examples/xmlh-2-xmlf/out.xml b/src/test/resources/examples/xmlh-2-xmlf/out.xml index 2b1548e7..235c4b37 100644 --- a/src/test/resources/examples/xmlh-2-xmlf/out.xml +++ b/src/test/resources/examples/xmlh-2-xmlf/out.xml @@ -893,104 +893,112 @@ ICE_FLAVOUR3 ICE_FLAVOUR4 - 1 - - - - + 1 - - - 0 - - - - ICE_FLAVOUR1 + + + + 1 + + + + 0 + + + + ICE_FLAVOUR1 + - 2 - - - - - 1 - - - - 0 + + 2 - - - ICE_FLAVOUR2 + + + + 1 + + + + 0 + + + + ICE_FLAVOUR2 + - 3 - - - - - 1 - - - - 0 + + 3 - - - ICE_FLAVOUR3 + + + + 1 + + + + 0 + + + + ICE_FLAVOUR3 + - OT - - - - - 1 - - - - 0 + + OT - - - ICE_FLAVOUR4 + + + + 1 + + + + 0 + + + + ICE_FLAVOUR4 + NUCLEAR_CHARACTER3 NUCLEAR_CHARACTER4 - 1 - - - - + 1 - - - 0 - - - - NUCLEAR_CHARACTER1 + + + + 1 + + + + 0 + + + + NUCLEAR_CHARACTER1 + - 2 - - - - - 1 - - - - 0 + + 2 - - - NUCLEAR_CHARACTER2 + + + + 1 + + + + 0 + + + + NUCLEAR_CHARACTER2 + - 3 - - - - - 1 - - - - 0 + + 3 - - - NUCLEAR_CHARACTER3 + + + + 1 + + + + 0 + + + + NUCLEAR_CHARACTER3 + - 4 - - - - - 1 - - - - 0 + + 4 - - - NUCLEAR_CHARACTER4 + + + + 1 + + + + 0 + + + + NUCLEAR_CHARACTER4 + BIRTH_CHARACTER4 BIRTH_CHARACTER5 - 1 - - - - + 1 - - - 2 - - - - 3 - - - - 4 - - - - 5 - - - - BIRTH_CHARACTER1 + + + + 1 + + + + 2 + + + + 3 + + + + 4 + + + + 5 + + + + BIRTH_CHARACTER1 + - 2 - - - - - 1 - - - + 2 - - + + + + 1 + + + + 2 + + + + 3 + + + + 4 + + + + 5 + + + + BIRTH_CHARACTER2 + + + + 3 - - + + + + 1 + + + + 2 + + + + 3 + + + + 4 + + + + 5 + + + + BIRTH_CHARACTER3 + + + + 4 - - + + + + 1 + + + + 2 + + + + 3 + + + + 4 + + + + 5 + + + + BIRTH_CHARACTER4 + + + + 5 - - - BIRTH_CHARACTER2 + + + + 1 + + + + 2 + + + + 3 + + + + 4 + + + + 5 + + + + BIRTH_CHARACTER5 + - - 3 + + + + + (not(cast(READY,integer) <> 1)) + VTL|MD + READY + + + - - - - 1 - - - - 2 - - - - 3 - - - - 4 + + + + + + + (not(cast(READY,integer) <> 1)) + VTL|MD + READY + + + - - - 5 + + - - - BIRTH_CHARACTER3 - - - 4 + + + + - - - - 1 - - - - 2 - - - - 3 - - - - 4 - - - - 5 - - - - BIRTH_CHARACTER4 - - - 5 - - - - - 1 - - - - 2 - - - - 3 - - - - 4 - - - - 5 - - - - BIRTH_CHARACTER5 - - - - - - (not(cast(READY,integer) <> 1)) - VTL|MD - READY - - - - - - - - - - - (not(cast(READY,integer) <> 1)) - VTL|MD - READY - - - - - - - - - - - - @@ -1478,147 +1504,163 @@ VTL|MD - - A - - - A1 - - - - % - - PERCENTAGE_EXPENSES11 + + A + + + + A1 + + + + % + + PERCENTAGE_EXPENSES11 + - A2 - - - - % - - PERCENTAGE_EXPENSES21 - - - B - + + A2 + + + + % + + PERCENTAGE_EXPENSES21 + - B1 - - - - % - - PERCENTAGE_EXPENSES31 + + B + + + + B1 + + + + % + + PERCENTAGE_EXPENSES31 + - B2 - - - - % - - PERCENTAGE_EXPENSES41 + + B2 + + + + % + + PERCENTAGE_EXPENSES41 + - B3 - - - - % - - PERCENTAGE_EXPENSES51 + + B3 + + + + % + + PERCENTAGE_EXPENSES51 + - C - + + C + + + + C1 + + + + % + + PERCENTAGE_EXPENSES61 + - C1 - - - - % - - PERCENTAGE_EXPENSES61 - - - D - - - - % - - PERCENTAGE_EXPENSES71 + + D + + + + % + + PERCENTAGE_EXPENSES71 + - - E - + + + E + + + - VTL|MD - - A - - - A1 - - - - - 1 + + A - - - 2 + + + A1 - - - 3 + + + + 1 + + + + 2 + + + + 3 + + + + LAST_FOOD_SHOPPING11 + + + + + A2 - - - LAST_FOOD_SHOPPING11 + + + + 1 + + + + 2 + + + + 3 + + + + LAST_FOOD_SHOPPING21 + - A2 - - - - - 1 + + B - - - 2 - - - - 3 + + + B1 - - - LAST_FOOD_SHOPPING21 - - - B - + + + + 1 + + + + 2 + + + + 3 + + + + LAST_FOOD_SHOPPING31 + - B1 - - - - - 1 - - - - 2 - - - - 3 + + B2 - - - LAST_FOOD_SHOPPING31 + + + + 1 + + + + 2 + + + + 3 + + + + LAST_FOOD_SHOPPING41 + - B2 - - - - - 1 - - - - 2 - - - - 3 + + B3 - - - LAST_FOOD_SHOPPING41 + + + + 1 + + + + 2 + + + + 3 + + + + LAST_FOOD_SHOPPING51 + - B3 - - - - - 1 - - - - 2 + + C - - - 3 + + + C1 - - - LAST_FOOD_SHOPPING51 - - - C - + + + + 1 + + + + 2 + + + + 3 + + + + LAST_FOOD_SHOPPING61 + - C1 - - - - - 1 - - - - 2 - - - - 3 - - - - LAST_FOOD_SHOPPING61 - - - D - - - - - 1 - - - - 2 - - - - 3 + + D - - - LAST_FOOD_SHOPPING71 - - - E - + + + + 1 + + + + 2 + + + + 3 + + + + LAST_FOOD_SHOPPING71 + - - - 1 - - - - 2 - - - - 3 + + + E - - - LAST_FOOD_SHOPPING81 + + + + 1 + + + + 2 + + + + 3 + + + + LAST_FOOD_SHOPPING81 + - 1 - - - - + 1 - - + + + + 1 + + + + 2 + + + + 3 + + + + O + + + + CLOWNING11 + + + + CLOWNING12 + + + + 2 - - + + + + 1 + + + + 2 + + + + 3 + + + + O + + + + CLOWNING21 + + + + CLOWNING22 + + + + 3 - - - O - - - - CLOWNING11 - - - - CLOWNING12 - - - 2 - - - - - 1 - - - - 2 - - - - 3 - - - - O - - - - CLOWNING21 - - - - CLOWNING22 - - - 3 - - - - - 1 - - - - 2 - - - - 3 - - - - O - - - - CLOWNING31 - - - - CLOWNING32 + + + + 1 + + + + 2 + + + + 3 + + + + O + + + + CLOWNING31 + + + + CLOWNING32 + - 4 - - - - - 1 - - - - 2 - - - - 3 - - - - O + + 4 - - - CLOWNING41 - - - - CLOWNING42 + + + + 1 + + + + 2 + + + + 3 + + + + O + + + + CLOWNING41 + + + + CLOWNING42 + - 1 - - - - - TRAVEL11 - - - - TRAVEL12 - - - - TRAVEL13 - - - - TRAVEL14 - - - - TRAVEL15 - - - - TRAVEL16 + + 1 + + + + + TRAVEL11 + + + + TRAVEL12 + + + + TRAVEL13 + + + + TRAVEL14 + + + + TRAVEL15 + + + + TRAVEL16 + - 2 - - - - - TRAVEL21 - - - - TRAVEL22 - - - - TRAVEL23 - - - - TRAVEL24 - - - - TRAVEL25 - - - - TRAVEL26 + + 2 + + + + + TRAVEL21 + + + + TRAVEL22 + + + + TRAVEL23 + + + + TRAVEL24 + + + + TRAVEL25 + + + + TRAVEL26 + - 3 - - - - - TRAVEL31 - - - - TRAVEL32 - - - - TRAVEL33 - - - - TRAVEL34 - - - - TRAVEL35 - - - - TRAVEL36 + + 3 + + + + + TRAVEL31 + + + + TRAVEL32 + + + + TRAVEL33 + + + + TRAVEL34 + + + + TRAVEL35 + + + + TRAVEL36 + - 4 - - - - - TRAVEL41 - - - - TRAVEL42 - - - - TRAVEL43 - - - - TRAVEL44 - - - - TRAVEL45 - - - - TRAVEL46 + + 4 + + + + + TRAVEL41 + + + + TRAVEL42 + + + + TRAVEL43 + + + + TRAVEL44 + + + + TRAVEL45 + + + + TRAVEL46 + VTL|MD - - - FAVOURITE_CHAR1_1_1 - - - - FAVOURITE_CHAR2_1_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_1_3 + + + + FAVOURITE_CHAR1_1_1 + + + + FAVOURITE_CHAR2_1_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_1_3 + - - - FAVOURITE_CHAR1_2_1 + + + + FAVOURITE_CHAR1_2_1 + + + + FAVOURITE_CHAR2_2_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_2_3 + - - - FAVOURITE_CHAR2_2_2 + + + + FAVOURITE_CHAR1_3_1 + + + + FAVOURITE_CHAR2_3_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_3_3 + - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_2_3 - - - - FAVOURITE_CHAR1_3_1 - - - - FAVOURITE_CHAR2_3_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_3_3 - - - - FAVOURITE_CHAR1_4_1 - - - - FAVOURITE_CHAR2_4_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_4_3 - - - - FAVOURITE_CHAR1_5_1 - - - - FAVOURITE_CHAR2_5_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_5_3 - - - - FAVOURITE_CHAR1_6_1 - - - - FAVOURITE_CHAR2_6_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_6_3 - - - - FAVOURITE_CHAR1_7_1 - - - - FAVOURITE_CHAR2_7_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_7_3 - - - - FAVOURITE_CHAR1_8_1 - - - - FAVOURITE_CHAR2_8_2 - - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_8_3 + + + + FAVOURITE_CHAR1_4_1 + + + + FAVOURITE_CHAR2_4_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_4_3 + - - - FAVOURITE_CHAR1_9_1 + + + + FAVOURITE_CHAR1_5_1 + + + + FAVOURITE_CHAR2_5_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_5_3 + - - - FAVOURITE_CHAR2_9_2 + + + + FAVOURITE_CHAR1_6_1 + + + + FAVOURITE_CHAR2_6_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_6_3 + - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_9_3 + + + + FAVOURITE_CHAR1_7_1 + + + + FAVOURITE_CHAR2_7_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_7_3 + - - - FAVOURITE_CHAR1_10_1 + + + + FAVOURITE_CHAR1_8_1 + + + + FAVOURITE_CHAR2_8_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_8_3 + - - - FAVOURITE_CHAR2_10_2 + + + + FAVOURITE_CHAR1_9_1 + + + + FAVOURITE_CHAR2_9_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_9_3 + - - - 1 - - - - 2 - - - - 3 - - - - FAVOURITE_CHAR3_10_3 + + + + FAVOURITE_CHAR1_10_1 + + + + FAVOURITE_CHAR2_10_2 + + + + 1 + + + + 2 + + + + 3 + + + + FAVOURITE_CHAR3_10_3 + (not(cast(READY,integer) <> 1)) VTL|MD - READY - - - - - - - FEELCHAREV1 - FEELCHAREV2 - FEELCHAREV3 - FEELCHAREV4 - - 1 - - - - - 1 - - - - 2 - - - - 3 - - - - FEELCHAREV1 - - - 2 - - - - - 1 - - - - 2 - - - - 3 + READY + + + - - - FEELCHAREV2 - + + + FEELCHAREV1 + FEELCHAREV2 + FEELCHAREV3 + FEELCHAREV4 - 3 - - - - + 1 - - + + + + 1 + + + + 2 + + + + 3 + + + + FEELCHAREV1 + + + + 2 - - + + + + 1 + + + + 2 + + + + 3 + + + + FEELCHAREV2 + + + + 3 - - - FEELCHAREV3 + + + + 1 + + + + 2 + + + + 3 + + + + FEELCHAREV3 + - O - - - - - 1 - - - - 2 - - - - 3 + + O - - - FEELCHAREV4 + + + + 1 + + + + 2 + + + + 3 + + + + FEELCHAREV4 + - 1 - - - - - LEAVDURATION11 - - - + 1 - - - 2 - - - - LEAVDURATION12 + + + + LEAVDURATION11 + + + + 1 + + + + 2 + + + + LEAVDURATION12 + - 2 - - - - - LEAVDURATION21 - - - - 1 - - - + 2 - - - LEAVDURATION22 + + + + LEAVDURATION21 + + + + 1 + + + + 2 + + + + LEAVDURATION22 + - 3 - - - - - LEAVDURATION31 - - - - 1 - - - - 2 + + 3 - - - LEAVDURATION32 + + + + LEAVDURATION31 + + + + 1 + + + + 2 + + + + LEAVDURATION32 + - 4 - - - - - LEAVDURATION41 - - - - 1 - - - - 2 + + 4 - - - LEAVDURATION42 + + + + LEAVDURATION41 + + + + 1 + + + + 2 + + + + LEAVDURATION42 + - 5 - - - - - LEAVDURATION51 - - - - 1 - - - - 2 + + 5 - - - LEAVDURATION52 + + + + LEAVDURATION51 + + + + 1 + + + + 2 + + + + LEAVDURATION52 + Date: Wed, 23 Mar 2022 11:38:25 +0100 Subject: [PATCH 20/32] Bumping Lunatic Model version in pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a836d9cd..51a96231 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ fr.insee.lunatic lunatic-model jar - 2.2.11 + 2.2.12 Lunatic Model Classes and converters for the Lunatic model http://www.insee.fr From 822c0181eebe097cab7d0ccb178b65ab67fbadb4 Mon Sep 17 00:00:00 2001 From: Athemane Dahmouh Date: Thu, 28 Apr 2022 18:16:13 +0200 Subject: [PATCH 21/32] Adding missingBlock to xsd models (with lax behaviour like cleaning). The missingBlock will be used as mapping between a variable 'missing' and the variables it relates to --- src/main/resources/xsd/LunaticModel.xsd | 7 +++++++ src/main/resources/xsd/LunaticModelFlat.xsd | 7 +++++++ 2 files changed, 14 insertions(+) diff --git a/src/main/resources/xsd/LunaticModel.xsd b/src/main/resources/xsd/LunaticModel.xsd index 4c082611..c969df77 100644 --- a/src/main/resources/xsd/LunaticModel.xsd +++ b/src/main/resources/xsd/LunaticModel.xsd @@ -31,6 +31,7 @@ + @@ -558,5 +559,11 @@ + + + + + + diff --git a/src/main/resources/xsd/LunaticModelFlat.xsd b/src/main/resources/xsd/LunaticModelFlat.xsd index 4774912e..f22f649b 100644 --- a/src/main/resources/xsd/LunaticModelFlat.xsd +++ b/src/main/resources/xsd/LunaticModelFlat.xsd @@ -31,6 +31,7 @@ + @@ -554,5 +555,11 @@ + + + + + + From 99f3ba04a05617f31efb867b84f1e7177c03ebb7 Mon Sep 17 00:00:00 2001 From: Athemane Dahmouh Date: Tue, 3 May 2022 10:38:12 +0200 Subject: [PATCH 22/32] Adding block resizing to xsd models (with lax behaviour like cleaning and missingBlock). The resizing will be used as mapping between a loop variable that defines size of subsequent vectors and the variables it impacts --- src/main/resources/xsd/LunaticModel.xsd | 7 +++++++ src/main/resources/xsd/LunaticModelFlat.xsd | 6 ++++++ 2 files changed, 13 insertions(+) diff --git a/src/main/resources/xsd/LunaticModel.xsd b/src/main/resources/xsd/LunaticModel.xsd index c969df77..a41f3095 100644 --- a/src/main/resources/xsd/LunaticModel.xsd +++ b/src/main/resources/xsd/LunaticModel.xsd @@ -32,6 +32,7 @@ + @@ -566,4 +567,10 @@ + + + + + + diff --git a/src/main/resources/xsd/LunaticModelFlat.xsd b/src/main/resources/xsd/LunaticModelFlat.xsd index f22f649b..5f622c53 100644 --- a/src/main/resources/xsd/LunaticModelFlat.xsd +++ b/src/main/resources/xsd/LunaticModelFlat.xsd @@ -32,6 +32,7 @@ + @@ -561,5 +562,10 @@ + + + + + From 78d3b7b8c479441eba4b6c228b3812d892d14a2d Mon Sep 17 00:00:00 2001 From: Athemane Dahmouh Date: Tue, 3 May 2022 14:40:17 +0200 Subject: [PATCH 23/32] Json cleaner : as was the case for cleaning, some tidying needs to be done to the JSON produced : eliminating array under the resizing variable name, and creating an array for the 'variables' items that are only keys (and cause a crash without the fix) --- src/main/resources/xslt/json-cleaner.xsl | 33 +++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/src/main/resources/xslt/json-cleaner.xsl b/src/main/resources/xslt/json-cleaner.xsl index 6b93d81c..8170e048 100644 --- a/src/main/resources/xslt/json-cleaner.xsl +++ b/src/main/resources/xslt/json-cleaner.xsl @@ -2,6 +2,7 @@ @@ -59,7 +60,7 @@ - + @@ -74,6 +75,36 @@ since we do not have a proper schema model for the cleaning part...--> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From 5276c809270c6e5cd86c6cd2a2a4c128e9f041ad Mon Sep 17 00:00:00 2001 From: Athemane Dahmouh Date: Wed, 4 May 2022 09:31:03 +0200 Subject: [PATCH 24/32] Bumping Lunatic-model version to 2.2.13 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 51a96231..97ff1bcd 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ fr.insee.lunatic lunatic-model jar - 2.2.12 + 2.2.13 Lunatic Model Classes and converters for the Lunatic model http://www.insee.fr From 8da733ef741b8ae5cfb72aa1a961d3a97f05198f Mon Sep 17 00:00:00 2001 From: Athemane Dahmouh Date: Mon, 27 Jun 2022 11:04:07 +0200 Subject: [PATCH 25/32] In json-cleaner : in template allowing type tag, adding errorMessage and control, for value/type label --- src/main/resources/xslt/json-cleaner.xsl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/xslt/json-cleaner.xsl b/src/main/resources/xslt/json-cleaner.xsl index 8170e048..a893d8c6 100644 --- a/src/main/resources/xslt/json-cleaner.xsl +++ b/src/main/resources/xslt/json-cleaner.xsl @@ -23,7 +23,7 @@ - + From 5fa86bae1a96fbb556d330cc397b2581d121e058 Mon Sep 17 00:00:00 2001 From: Athemane Dahmouh Date: Wed, 6 Jul 2022 15:46:35 +0200 Subject: [PATCH 26/32] Changing Lunatic models to make calculated variables expression an object with value/type (same as labels) --- src/main/resources/xsd/LunaticModel.xsd | 2 +- src/main/resources/xsd/LunaticModelFlat.xsd | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/xsd/LunaticModel.xsd b/src/main/resources/xsd/LunaticModel.xsd index a41f3095..af327c00 100644 --- a/src/main/resources/xsd/LunaticModel.xsd +++ b/src/main/resources/xsd/LunaticModel.xsd @@ -235,7 +235,7 @@ - + diff --git a/src/main/resources/xsd/LunaticModelFlat.xsd b/src/main/resources/xsd/LunaticModelFlat.xsd index 5f622c53..6cbeac98 100644 --- a/src/main/resources/xsd/LunaticModelFlat.xsd +++ b/src/main/resources/xsd/LunaticModelFlat.xsd @@ -230,7 +230,7 @@ - + From 6a292feeed6b5145e67efe1d6c1d32fb0f34950e Mon Sep 17 00:00:00 2001 From: Athemane Dahmouh Date: Wed, 6 Jul 2022 15:47:12 +0200 Subject: [PATCH 27/32] Modif of json-cleaner to exclude the type attribute from cleaning if it is under an expression key --- src/main/resources/xslt/json-cleaner.xsl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/xslt/json-cleaner.xsl b/src/main/resources/xslt/json-cleaner.xsl index a893d8c6..acddd0ce 100644 --- a/src/main/resources/xslt/json-cleaner.xsl +++ b/src/main/resources/xslt/json-cleaner.xsl @@ -23,7 +23,7 @@ - + From cded9a992c0f7c3bb5f07c3b823b386061d2c852 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oph=C3=A9lie=20Rogel?= Date: Tue, 6 Sep 2022 10:54:41 +0200 Subject: [PATCH 28/32] adding typeOfControl attribute into control --- pom.xml | 2 +- src/main/resources/xsd/LunaticModel.xsd | 8 +++++++- src/main/resources/xsd/LunaticModelFlat.xsd | 7 +++++++ 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 97ff1bcd..e95dcdce 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ fr.insee.lunatic lunatic-model jar - 2.2.13 + 2.2.14-rc Lunatic Model Classes and converters for the Lunatic model http://www.insee.fr diff --git a/src/main/resources/xsd/LunaticModel.xsd b/src/main/resources/xsd/LunaticModel.xsd index af327c00..7a63ac51 100644 --- a/src/main/resources/xsd/LunaticModel.xsd +++ b/src/main/resources/xsd/LunaticModel.xsd @@ -537,7 +537,6 @@ - @@ -545,6 +544,7 @@ + @@ -554,6 +554,12 @@ + + + + + + diff --git a/src/main/resources/xsd/LunaticModelFlat.xsd b/src/main/resources/xsd/LunaticModelFlat.xsd index 6cbeac98..49e51237 100644 --- a/src/main/resources/xsd/LunaticModelFlat.xsd +++ b/src/main/resources/xsd/LunaticModelFlat.xsd @@ -540,6 +540,7 @@ + @@ -549,6 +550,12 @@ + + + + + + From 3597683fc23661ee00f9c692817d10ce1aaabbc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oph=C3=A9lie=20Rogel?= Date: Tue, 6 Sep 2022 11:08:04 +0200 Subject: [PATCH 29/32] renaming typeOfControl : COHERENCE -> CONSISTENCY --- src/main/resources/xsd/LunaticModel.xsd | 2 +- src/main/resources/xsd/LunaticModelFlat.xsd | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/xsd/LunaticModel.xsd b/src/main/resources/xsd/LunaticModel.xsd index 7a63ac51..5b4da2b6 100644 --- a/src/main/resources/xsd/LunaticModel.xsd +++ b/src/main/resources/xsd/LunaticModel.xsd @@ -557,7 +557,7 @@ - + diff --git a/src/main/resources/xsd/LunaticModelFlat.xsd b/src/main/resources/xsd/LunaticModelFlat.xsd index 49e51237..a490618a 100644 --- a/src/main/resources/xsd/LunaticModelFlat.xsd +++ b/src/main/resources/xsd/LunaticModelFlat.xsd @@ -553,7 +553,7 @@ - + From 34cf4ed374b2fb4017eca569642f19b7819593d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oph=C3=A9lie=20Bibonne?= <59668260+ORogel@users.noreply.github.com> Date: Wed, 19 Oct 2022 11:07:41 +0200 Subject: [PATCH 30/32] upgrading version --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 97ff1bcd..49b8c9c8 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ fr.insee.lunatic lunatic-model jar - 2.2.13 + 2.3.0 Lunatic Model Classes and converters for the Lunatic model http://www.insee.fr From 6d8b1b93a1e5527125842b48fbf91c40e31b9e8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oph=C3=A9lie=20Bibonne?= <59668260+ORogel@users.noreply.github.com> Date: Wed, 19 Oct 2022 12:36:20 +0200 Subject: [PATCH 31/32] upgrade version --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e95dcdce..49b8c9c8 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ fr.insee.lunatic lunatic-model jar - 2.2.14-rc + 2.3.0 Lunatic Model Classes and converters for the Lunatic model http://www.insee.fr From afd0f1b420eb2953b3bcfb350019bcf5463872bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oph=C3=A9lie=20Bibonne?= <59668260+ORogel@users.noreply.github.com> Date: Wed, 19 Oct 2022 12:57:23 +0200 Subject: [PATCH 32/32] upgrading version --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 49b8c9c8..188ace79 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ fr.insee.lunatic lunatic-model jar - 2.3.0 + 2.3.1 Lunatic Model Classes and converters for the Lunatic model http://www.insee.fr