diff --git a/.github/workflows/gandalf.yml b/.github/workflows/gandalf.yml index 43a25c4b0..aa639b382 100644 --- a/.github/workflows/gandalf.yml +++ b/.github/workflows/gandalf.yml @@ -1,16 +1,16 @@ name: Eno V3 test -on: - pull_request: - branches: - - 'v3-main' - - 'v3-next' - types: [opened, synchronize, reopened, ready_for_review] - paths-ignore: ['docs/**', 'logo/**', 'Dockerfile', 'README**.md'] +on: workflow_dispatch # replaced by sonar workflow +# pull_request: +# branches: +# - 'v3-main' +# - 'v3-next' +# types: [opened, synchronize, reopened, ready_for_review] +# paths-ignore: ['docs/**', 'logo/**', 'Dockerfile', 'README**.md'] jobs: test: - if: ${{ (github.event.pull_request.draft == false) && !contains(github.event.pull_request.labels.*.name, 'deploy-snapshot') }} + # if: ${{ (github.event.pull_request.draft == false) && !contains(github.event.pull_request.labels.*.name, 'deploy-snapshot') }} runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml new file mode 100644 index 000000000..57a2eb20f --- /dev/null +++ b/.github/workflows/sonar.yml @@ -0,0 +1,43 @@ +name: Test and Sonar Analysis + +on: + pull_request: + branches: + - 'v3-main' + - 'v3-next' + types: [opened, synchronize, reopened, ready_for_review] + paths-ignore: ['docs/**', 'logo/**', 'Dockerfile', 'README**.md'] + +jobs: + build: + if: ${{ (github.event.pull_request.draft == false) && !contains(github.event.pull_request.labels.*.name, 'deploy-snapshot') }} + name: Build and analyze + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis + - name: Set up JDK 17 + uses: actions/setup-java@v3 + with: + java-version: 17 + distribution: 'temurin' + - name: Cache SonarCloud packages + uses: actions/cache@v3 + with: + path: ~/.sonar/cache + key: ${{ runner.os }}-sonar + restore-keys: ${{ runner.os }}-sonar + - name: Cache Gradle packages + uses: actions/cache@v3 + with: + path: ~/.gradle/caches + key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} + restore-keys: ${{ runner.os }}-gradle + - name: Setup Gradle + uses: gradle/gradle-build-action@v2 + - name: Build and analyze + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + run: ./gradlew clean build test codeCoverageReport diff --git a/build.gradle b/build.gradle index f916736e9..27735550f 100644 --- a/build.gradle +++ b/build.gradle @@ -2,16 +2,29 @@ plugins { id 'net.saliman.properties' version '1.5.2' id 'java' id 'org.springframework.boot' version '3.1.5' apply false - id 'io.spring.dependency-management' version '1.1.3' apply false + id 'io.spring.dependency-management' version '1.1.4' apply false + id 'jacoco' + id "org.sonarqube" version "4.4.1.3373" } allprojects { group = 'fr.insee.eno' - version = '3.12.0' + version = '3.12.4' sourceCompatibility = '17' } subprojects { + apply plugin: 'org.sonarqube' + sonar { + properties { + property 'sonar.coverage.jacoco.xmlReportPaths', "$projectDir.parentFile.path/build/reports/jacoco/codeCoverageReport/codeCoverageReport.xml" + } + } + + tasks.withType(Test).configureEach { + useJUnitPlatform() + } + compileJava { options.release = 17 } @@ -22,6 +35,47 @@ subprojects { } } +apply from: "$project.rootDir/sonar.gradle" + +// See here for more info: https://docs.gradle.org/6.4-rc-1/samples/sample_jvm_multi_project_with_code_coverage.html +// +// task to gather code coverage from multiple subprojects +// NOTE: the `JacocoReport` tasks do *not* depend on the `test` task by default. Meaning you have to ensure +// that `test` (or other tasks generating code coverage) run before generating the report. +// You can achieve this by calling the `test` lifecycle task manually +// $ ./gradlew test codeCoverageReport +tasks.register("codeCoverageReport", JacocoReport) { + // If a subproject applies the 'jacoco' plugin, add the result it to the report + subprojects { subproject -> + subproject.plugins.withType(JacocoPlugin).configureEach { + subproject.tasks.matching({ t -> t.extensions.findByType(JacocoTaskExtension) }).configureEach { testTask -> + //the jacoco extension may be disabled for some projects + if (testTask.extensions.getByType(JacocoTaskExtension).isEnabled()) { + sourceSets subproject.sourceSets.main + executionData(testTask) + } else { + logger.warn('Jacoco extension is disabled for test task \'{}\' in project \'{}\'. this test task will be excluded from jacoco report.',testTask.getName(),subproject.getName()) + } + } + + // To automatically run `test` every time `./gradlew codeCoverageReport` is called, + // you may want to set up a task dependency between them as shown below. + // Note that this requires the `test` tasks to be resolved eagerly (see `forEach`) which + // may have a negative effect on the configuration time of your build. + subproject.tasks.matching({ t -> t.extensions.findByType(JacocoTaskExtension) }).forEach { + rootProject.tasks.codeCoverageReport.dependsOn(it) + } + } + } + + // enable the different report types (html, xml, csv) + reports { + xml.required = true + html.required = true + html.outputLocation = layout.buildDirectory.dir('jacocoHtml') + } +} + tasks.register('printVersion') { doLast { println project.version diff --git a/ddi-beans/build.gradle b/ddi-beans/build.gradle index ccb1dfc5e..737a93a3f 100644 --- a/ddi-beans/build.gradle +++ b/ddi-beans/build.gradle @@ -15,7 +15,7 @@ jar { description = 'ddi-beans' dependencies { - api 'org.apache.xmlbeans:xmlbeans:5.1.1' + api 'org.apache.xmlbeans:xmlbeans:5.2.0' implementation 'org.apache.logging.log4j:log4j-core' } diff --git a/eno-core/build.gradle b/eno-core/build.gradle index 373e5d5a2..17029d8d8 100644 --- a/eno-core/build.gradle +++ b/eno-core/build.gradle @@ -3,6 +3,7 @@ plugins { id 'io.spring.dependency-management' id 'java-library' id 'maven-publish' + id 'jacoco' } // https://stackoverflow.com/a/61671513/13425151 diff --git a/eno-core/src/main/java/fr/insee/eno/core/parameter/EnoParameters.java b/eno-core/src/main/java/fr/insee/eno/core/parameter/EnoParameters.java index f7f7b1aaf..e146dfce1 100644 --- a/eno-core/src/main/java/fr/insee/eno/core/parameter/EnoParameters.java +++ b/eno-core/src/main/java/fr/insee/eno/core/parameter/EnoParameters.java @@ -22,7 +22,6 @@ public enum Context {HOUSEHOLD, BUSINESS, DEFAULT} public enum ModeParameter {CAPI, CATI, CAWI, PAPI, PROCESS} public enum Language {FR, EN, IT, ES, DE} public enum QuestionNumberingMode {NONE, SEQUENCE, ALL} - public enum LunaticPaginationMode {NONE, SEQUENCE, QUESTION} public static final String DEFAULT_CAMPAIGN_NAME = "test-2020-x00"; diff --git a/eno-core/src/main/java/fr/insee/eno/core/parameter/LunaticParameters.java b/eno-core/src/main/java/fr/insee/eno/core/parameter/LunaticParameters.java index c395f6bba..ec4480466 100644 --- a/eno-core/src/main/java/fr/insee/eno/core/parameter/LunaticParameters.java +++ b/eno-core/src/main/java/fr/insee/eno/core/parameter/LunaticParameters.java @@ -7,12 +7,14 @@ @Setter public class LunaticParameters { + public enum LunaticPaginationMode {NONE, SEQUENCE, QUESTION} + private boolean controls; private boolean toolTip; // Not implemented yet in Lunatic private boolean missingVariables; private boolean filterResult; private boolean filterDescription; - private EnoParameters.LunaticPaginationMode lunaticPaginationMode; + private LunaticPaginationMode lunaticPaginationMode; private LunaticParameters() {} @@ -41,8 +43,8 @@ private void lunaticValues(EnoParameters.Context context, EnoParameters.ModePara this.setMissingVariables(isInterview); this.setLunaticPaginationMode( EnoParameters.Context.BUSINESS.equals(context) ? - EnoParameters.LunaticPaginationMode.SEQUENCE : - EnoParameters.LunaticPaginationMode.QUESTION); + LunaticPaginationMode.SEQUENCE : + LunaticPaginationMode.QUESTION); } } diff --git a/eno-core/src/main/java/fr/insee/eno/core/processing/out/steps/lunatic/LunaticLoopResolution.java b/eno-core/src/main/java/fr/insee/eno/core/processing/out/steps/lunatic/LunaticLoopResolution.java index a2d7012e5..e45f085cb 100644 --- a/eno-core/src/main/java/fr/insee/eno/core/processing/out/steps/lunatic/LunaticLoopResolution.java +++ b/eno-core/src/main/java/fr/insee/eno/core/processing/out/steps/lunatic/LunaticLoopResolution.java @@ -96,8 +96,11 @@ private int insertSequenceInLoop( private void insertComponentsInLoop( Questionnaire lunaticQuestionnaire, Loop lunaticLoop, String sequenceReference) { AbstractSequence enoSequence = (AbstractSequence) enoIndex.get(sequenceReference); - enoSequence.getSequenceStructure().forEach(structureItemReference -> - relocateComponent(lunaticQuestionnaire, lunaticLoop, structureItemReference.getId())); + enoSequence.getSequenceStructure().forEach(structureItemReference -> { + relocateComponent(lunaticQuestionnaire, lunaticLoop, structureItemReference.getId()); + if (StructureItemType.SUBSEQUENCE.equals(structureItemReference.getType())) + insertComponentsInLoop(lunaticQuestionnaire, lunaticLoop, structureItemReference.getId()); + }); } /** Relocate the component with given reference (id) from the questionnaire's components diff --git a/eno-core/src/main/java/fr/insee/eno/core/processing/out/steps/lunatic/pagination/LunaticAddPageNumbers.java b/eno-core/src/main/java/fr/insee/eno/core/processing/out/steps/lunatic/pagination/LunaticAddPageNumbers.java index 91480409c..14e250887 100644 --- a/eno-core/src/main/java/fr/insee/eno/core/processing/out/steps/lunatic/pagination/LunaticAddPageNumbers.java +++ b/eno-core/src/main/java/fr/insee/eno/core/processing/out/steps/lunatic/pagination/LunaticAddPageNumbers.java @@ -1,6 +1,6 @@ package fr.insee.eno.core.processing.out.steps.lunatic.pagination; -import fr.insee.eno.core.parameter.EnoParameters; +import fr.insee.eno.core.parameter.LunaticParameters; import fr.insee.eno.core.processing.ProcessingStep; import fr.insee.lunatic.model.flat.Questionnaire; import lombok.extern.slf4j.Slf4j; @@ -8,9 +8,9 @@ @Slf4j public class LunaticAddPageNumbers implements ProcessingStep { - private final EnoParameters.LunaticPaginationMode mode; + private final LunaticParameters.LunaticPaginationMode mode; - public LunaticAddPageNumbers(EnoParameters.LunaticPaginationMode mode) { + public LunaticAddPageNumbers(LunaticParameters.LunaticPaginationMode mode) { this.mode = mode; } @@ -37,7 +37,7 @@ public void apply(Questionnaire lunaticQuestionnaire) { } // TODO: enum in Lunatic-Model for this... - public static String lunaticNumberingMode(EnoParameters.LunaticPaginationMode paginationMode) { + public static String lunaticNumberingMode(LunaticParameters.LunaticPaginationMode paginationMode) { return switch (paginationMode) { case NONE -> "none"; case SEQUENCE -> "sequence"; diff --git a/eno-core/src/main/java/fr/insee/eno/core/processing/out/steps/lunatic/pagination/LunaticAddPageNumbersAllModes.java b/eno-core/src/main/java/fr/insee/eno/core/processing/out/steps/lunatic/pagination/LunaticAddPageNumbersAllModes.java index 5a02a69c3..a11558df2 100644 --- a/eno-core/src/main/java/fr/insee/eno/core/processing/out/steps/lunatic/pagination/LunaticAddPageNumbersAllModes.java +++ b/eno-core/src/main/java/fr/insee/eno/core/processing/out/steps/lunatic/pagination/LunaticAddPageNumbersAllModes.java @@ -115,7 +115,7 @@ public void applyNumPageOnLoop(Loop loop, String numPagePrefix, int pageCount) { .count(); loop.setMaxPage(Long.toString(maxPage)); - } + } // Note: shouldn't be max page equal to "1" if non paginated loop? } /** diff --git a/eno-core/src/main/java/fr/insee/eno/core/serialize/LunaticSerializer.java b/eno-core/src/main/java/fr/insee/eno/core/serialize/LunaticSerializer.java index 11159c7cd..146b64b1e 100644 --- a/eno-core/src/main/java/fr/insee/eno/core/serialize/LunaticSerializer.java +++ b/eno-core/src/main/java/fr/insee/eno/core/serialize/LunaticSerializer.java @@ -52,7 +52,7 @@ private static String rawSerialization(Questionnaire lunaticQuestionnaire) { * @return json string of the questionnaire with resize included * @throws LunaticSerializationException serialization exception */ - public static String extendedSerialization(String lunaticJson, Questionnaire lunaticQuestionnaire) + private static String extendedSerialization(String lunaticJson, Questionnaire lunaticQuestionnaire) throws LunaticSerializationException { ObjectMapper mapper = new ObjectMapper(); try { diff --git a/eno-core/src/test/java/fr/insee/eno/core/parameter/EnoParameterTest.java b/eno-core/src/test/java/fr/insee/eno/core/parameter/EnoParameterTest.java index 72f008802..eb63b6445 100644 --- a/eno-core/src/test/java/fr/insee/eno/core/parameter/EnoParameterTest.java +++ b/eno-core/src/test/java/fr/insee/eno/core/parameter/EnoParameterTest.java @@ -18,7 +18,7 @@ void lunaticParameters_DefaultCAWILunatic_testLunaticValues() { assertFalse(lunaticParameters.isFilterDescription()); assertTrue(lunaticParameters.isFilterResult()); assertFalse(lunaticParameters.isMissingVariables()); - assertEquals(EnoParameters.LunaticPaginationMode.QUESTION, lunaticParameters.getLunaticPaginationMode()); + assertEquals(LunaticParameters.LunaticPaginationMode.QUESTION, lunaticParameters.getLunaticPaginationMode()); } @Test @@ -65,7 +65,7 @@ void parameters_BusinessCAPILunatic_lunaticPagination() { EnoParameters.Context.BUSINESS, EnoParameters.ModeParameter.CAPI, Format.LUNATIC); // LunaticParameters lunaticParameters = enoParameters.getLunaticParameters(); - assertEquals(EnoParameters.LunaticPaginationMode.SEQUENCE, lunaticParameters.getLunaticPaginationMode()); + assertEquals(LunaticParameters.LunaticPaginationMode.SEQUENCE, lunaticParameters.getLunaticPaginationMode()); } } diff --git a/eno-core/src/test/java/fr/insee/eno/core/processing/out/steps/lunatic/LunaticResponseTimeQuestionPaginationTest.java b/eno-core/src/test/java/fr/insee/eno/core/processing/out/steps/lunatic/LunaticResponseTimeQuestionPaginationTest.java index 03bcb02ee..25d45e47a 100644 --- a/eno-core/src/test/java/fr/insee/eno/core/processing/out/steps/lunatic/LunaticResponseTimeQuestionPaginationTest.java +++ b/eno-core/src/test/java/fr/insee/eno/core/processing/out/steps/lunatic/LunaticResponseTimeQuestionPaginationTest.java @@ -3,6 +3,7 @@ import fr.insee.eno.core.mappers.LunaticMapper; import fr.insee.eno.core.model.EnoQuestionnaire; import fr.insee.eno.core.parameter.EnoParameters; +import fr.insee.eno.core.parameter.LunaticParameters; import fr.insee.eno.core.processing.common.steps.EnoAddPrefixInQuestionLabels; import fr.insee.eno.core.processing.common.steps.EnoAddResponseTimeSection; import fr.insee.eno.core.processing.out.steps.lunatic.pagination.LunaticAddPageNumbers; @@ -31,7 +32,7 @@ void questionPaginationMode_hoursAndMinutesQuestionShouldHaveTheSameNumber() { LunaticMapper lunaticMapper = new LunaticMapper(); lunaticMapper.mapQuestionnaire(enoQuestionnaire, lunaticQuestionnaire); // - new LunaticAddPageNumbers(EnoParameters.LunaticPaginationMode.QUESTION).apply(lunaticQuestionnaire); + new LunaticAddPageNumbers(LunaticParameters.LunaticPaginationMode.QUESTION).apply(lunaticQuestionnaire); // When new LunaticResponseTimeQuestionPagination().apply(lunaticQuestionnaire); diff --git a/eno-core/src/test/java/fr/insee/eno/core/processing/out/steps/lunatic/pagination/LunaticAddPageNumbersQuestionModeTest.java b/eno-core/src/test/java/fr/insee/eno/core/processing/out/steps/lunatic/pagination/LunaticAddPageNumbersQuestionModeTest.java index 7172bdfdc..5e7781141 100644 --- a/eno-core/src/test/java/fr/insee/eno/core/processing/out/steps/lunatic/pagination/LunaticAddPageNumbersQuestionModeTest.java +++ b/eno-core/src/test/java/fr/insee/eno/core/processing/out/steps/lunatic/pagination/LunaticAddPageNumbersQuestionModeTest.java @@ -101,10 +101,7 @@ void init() { questionnaire.getComponents().addAll(components); - //JSONSerializer jsonSerializer = new JSONSerializer(); - //System.out.println(jsonSerializer.serialize2(questionnaire)); processing.apply(questionnaire); - //System.out.println(jsonSerializer.serialize2(questionnaire)); } @Test @@ -139,7 +136,7 @@ void shouldComponentsInPairwiseLinksToHaveSamePage() { } @Test - void shouldComponentsInPaginatedLoopToHaveDifferentsPage() { + void shouldComponentsInPaginatedLoopToHaveDifferentPage() { // l7 is paginated loop so we'll increment subcomponents assertTrue(l7.getPaginatedLoop()); assertEquals("7", l7.getPage()); diff --git a/eno-core/src/test/java/fr/insee/eno/core/processing/out/steps/lunatic/pagination/LunaticPaginationFunctionalTests.java b/eno-core/src/test/java/fr/insee/eno/core/processing/out/steps/lunatic/pagination/LunaticPaginationFunctionalTests.java new file mode 100644 index 000000000..08eef08b9 --- /dev/null +++ b/eno-core/src/test/java/fr/insee/eno/core/processing/out/steps/lunatic/pagination/LunaticPaginationFunctionalTests.java @@ -0,0 +1,91 @@ +package fr.insee.eno.core.processing.out.steps.lunatic.pagination; + +import fr.insee.eno.core.DDIToEno; +import fr.insee.eno.core.exceptions.business.DDIParsingException; +import fr.insee.eno.core.mappers.LunaticMapper; +import fr.insee.eno.core.model.EnoQuestionnaire; +import fr.insee.eno.core.parameter.EnoParameters; +import fr.insee.eno.core.parameter.Format; +import fr.insee.eno.core.processing.out.steps.lunatic.LunaticAddHierarchy; +import fr.insee.eno.core.processing.out.steps.lunatic.LunaticLoopResolution; +import fr.insee.eno.core.processing.out.steps.lunatic.LunaticSortComponents; +import fr.insee.eno.core.processing.out.steps.lunatic.table.LunaticTableProcessing; +import fr.insee.lunatic.model.flat.ComponentTypeEnum; +import fr.insee.lunatic.model.flat.Loop; +import fr.insee.lunatic.model.flat.Questionnaire; +import fr.insee.lunatic.model.flat.Subsequence; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.*; + +class LunaticPaginationFunctionalTests { + + private Questionnaire mapDDIAndApplyPagination(String id) throws DDIParsingException { + // Given + EnoParameters enoParameters = EnoParameters.of(EnoParameters.Context.HOUSEHOLD, EnoParameters.ModeParameter.CAWI, Format.LUNATIC); + EnoQuestionnaire enoQuestionnaire = DDIToEno.transform( + LunaticPaginationFunctionalTests.class.getClassLoader().getResourceAsStream( + "functional/ddi/pagination/ddi-"+id+".xml"), + enoParameters); + Questionnaire lunaticQuestionnaire = new Questionnaire(); + LunaticMapper lunaticMapper = new LunaticMapper(); + lunaticMapper.mapEnoObject(enoQuestionnaire, lunaticQuestionnaire); + new LunaticSortComponents(enoQuestionnaire).apply(lunaticQuestionnaire); + new LunaticLoopResolution(enoQuestionnaire).apply(lunaticQuestionnaire); + new LunaticTableProcessing(enoQuestionnaire).apply(lunaticQuestionnaire); + new LunaticAddHierarchy().apply(lunaticQuestionnaire); + + // When + new LunaticAddPageNumbers(enoParameters.getLunaticParameters().getLunaticPaginationMode()) + .apply(lunaticQuestionnaire); + + return lunaticQuestionnaire; + } + + @Test + void functionalTest1() throws DDIParsingException { + Questionnaire lunaticQuestionnaire = mapDDIAndApplyPagination("llxh9g6g"); + + // Then + assertNotNull(lunaticQuestionnaire.getMaxPage()); + // ... + } + + @Test + void functionalTest2() throws DDIParsingException { + Questionnaire lunaticQuestionnaire = mapDDIAndApplyPagination("lnycjn6n"); + + // Then + assertEquals("3", lunaticQuestionnaire.getMaxPage()); + + // + assertEquals(ComponentTypeEnum.LOOP, lunaticQuestionnaire.getComponents().get(0).getComponentType()); + Loop loop1 = (Loop) lunaticQuestionnaire.getComponents().get(0); + assertEquals("1", loop1.getPage()); + assertNull(loop1.getMaxPage()); + assertEquals(2, loop1.getComponents().size()); + loop1.getComponents().forEach(component -> + assertEquals("1", component.getPage())); + + // + assertEquals(ComponentTypeEnum.LOOP, lunaticQuestionnaire.getComponents().get(1).getComponentType()); + Loop loop2 = (Loop) lunaticQuestionnaire.getComponents().get(1); + assertEquals("2", loop2.getPage()); + assertEquals("492", loop2.getMaxPage()); + assertEquals("2.1", loop2.getComponents().get(0).getPage()); + assertEquals("2.2", loop2.getComponents().get(1).getPage()); + assertEquals("2.3", loop2.getComponents().get(2).getPage()); + // ... + assertEquals("2.7", loop2.getComponents().get(6).getPage()); + assertEquals(ComponentTypeEnum.SUBSEQUENCE, loop2.getComponents().get(7).getComponentType()); + assertEquals("2.8", loop2.getComponents().get(7).getPage()); + assertEquals("2.8", ((Subsequence) loop2.getComponents().get(7)).getGoToPage()); + assertEquals("2.9", loop2.getComponents().get(8).getPage()); + // ... + + // + assertEquals(ComponentTypeEnum.SEQUENCE, lunaticQuestionnaire.getComponents().get(2).getComponentType()); + assertEquals("3", lunaticQuestionnaire.getComponents().get(2).getPage()); + } + +} diff --git a/eno-core/src/test/java/fr/insee/eno/core/processing/out/steps/lunatic/pagination/LunaticPaginationTest.java b/eno-core/src/test/java/fr/insee/eno/core/processing/out/steps/lunatic/pagination/LunaticPaginationTest.java new file mode 100644 index 000000000..1c0a3dad9 --- /dev/null +++ b/eno-core/src/test/java/fr/insee/eno/core/processing/out/steps/lunatic/pagination/LunaticPaginationTest.java @@ -0,0 +1,146 @@ +package fr.insee.eno.core.processing.out.steps.lunatic.pagination; + +import fr.insee.eno.core.parameter.LunaticParameters; +import fr.insee.lunatic.model.flat.*; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Nested; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.*; + +/** + * Other tests on the Lunatic pagination. + */ +class LunaticPaginationTest { + + @Nested + class LoopOnSequence { + + private Questionnaire questionnaire; + + @BeforeEach + void createLoopWithSequence() { + questionnaire = new Questionnaire(); + Sequence sequence = new Sequence(); + sequence.setComponentType(ComponentTypeEnum.SEQUENCE); + Input input1 = new Input(); + input1.setComponentType(ComponentTypeEnum.INPUT); + Input input2 = new Input(); + input2.setComponentType(ComponentTypeEnum.INPUT); + Loop loop = new Loop(); + loop.setComponentType(ComponentTypeEnum.LOOP); + loop.setLines(new LinesLoop()); + loop.getComponents().add(sequence); + loop.getComponents().add(input1); + loop.getComponents().add(input2); + questionnaire.getComponents().add(loop); + } + + @Test + void questionMode() { + // + new LunaticAddPageNumbers(LunaticParameters.LunaticPaginationMode.QUESTION).apply(questionnaire); + // + assertEquals("question", questionnaire.getPagination()); + assertEquals("1", questionnaire.getMaxPage()); + Loop loop = (Loop) questionnaire.getComponents().get(0); + assertFalse(loop.getPaginatedLoop()); + // Non paginated loops don't have a "max page" property + assertNull(loop.getMaxPage()); + // Non paginated loops don't use "dotted" numbering + loop.getComponents().forEach(loopComponent -> + assertEquals("1", loopComponent.getPage())); + } + + @Test + void sequenceMode() { + // + new LunaticAddPageNumbers(LunaticParameters.LunaticPaginationMode.SEQUENCE).apply(questionnaire); + // + assertEquals("sequence", questionnaire.getPagination()); + assertEquals("1", questionnaire.getMaxPage()); + Loop loop = (Loop) questionnaire.getComponents().get(0); + assertTrue(loop.getPaginatedLoop()); + // Paginated loops have a "max page" + assertEquals("1", loop.getMaxPage()); + // Sequence mode: each component of the sequence is on the same page + loop.getComponents().forEach(loopComponent -> + assertEquals("1.1", loopComponent.getPage())); + } + } + + @Nested + class LoopOnTwoSequences { + + private Questionnaire questionnaire; + + @BeforeEach + void createLoopWithTwoSequences() { + questionnaire = new Questionnaire(); + Sequence sequence1 = new Sequence(); + sequence1.setComponentType(ComponentTypeEnum.SEQUENCE); + Input input1 = new Input(); + input1.setComponentType(ComponentTypeEnum.INPUT); + Sequence sequence2 = new Sequence(); + sequence2.setComponentType(ComponentTypeEnum.SEQUENCE); + Input input2 = new Input(); + input2.setComponentType(ComponentTypeEnum.INPUT); + Loop loop = new Loop(); + loop.setComponentType(ComponentTypeEnum.LOOP); + loop.setLines(new LinesLoop()); + loop.getComponents().add(sequence1); + loop.getComponents().add(input1); + loop.getComponents().add(sequence2); + loop.getComponents().add(input2); + questionnaire.getComponents().add(loop); + } + + @Test + void questionMode() { + // + new LunaticAddPageNumbers(LunaticParameters.LunaticPaginationMode.QUESTION).apply(questionnaire); + // + assertEquals("question", questionnaire.getPagination()); + assertEquals("1", questionnaire.getMaxPage()); + Loop loop = (Loop) questionnaire.getComponents().get(0); + assertFalse(loop.getPaginatedLoop()); + // Non paginated loops don't have a "max page" property + assertNull(loop.getMaxPage()); + // Non paginated loops don't use "dotted" numbering + loop.getComponents().forEach(loopComponent -> + assertEquals("1", loopComponent.getPage())); + } + + @Test + void sequenceMode() { + // + new LunaticAddPageNumbers(LunaticParameters.LunaticPaginationMode.SEQUENCE).apply(questionnaire); + // + assertEquals("sequence", questionnaire.getPagination()); + assertEquals("1", questionnaire.getMaxPage()); + Loop loop = (Loop) questionnaire.getComponents().get(0); + assertTrue(loop.getPaginatedLoop()); + // Paginated loops have a "max page" + assertEquals("2", loop.getMaxPage()); + // Sequence mode: each component of the sequence is on the same page + assertEquals("1.1", loop.getComponents().get(0).getPage()); + assertEquals("1.1", loop.getComponents().get(1).getPage()); + assertEquals("1.2", loop.getComponents().get(2).getPage()); + assertEquals("1.2", loop.getComponents().get(3).getPage()); + } + } + + @Nested + class LoopOnSubsequence { + private Questionnaire questionnaire; + @BeforeEach + void createLoopWithSubsequence() { + questionnaire = new Questionnaire(); + } + @Test + void questionMode() { + assertNotNull(questionnaire); + } + } + +} diff --git a/eno-core/src/test/resources/functional/ddi/pagination/ddi-llxh9g6g.xml b/eno-core/src/test/resources/functional/ddi/pagination/ddi-llxh9g6g.xml new file mode 100644 index 000000000..c94707bd4 --- /dev/null +++ b/eno-core/src/test/resources/functional/ddi/pagination/ddi-llxh9g6g.xml @@ -0,0 +1,78040 @@ + + + fr.insee + INSEE-llxh9g6g + 1 + + + VraiQuest - Enquête Logement - Séquence 1 (ENL en 2023 sur Internet) + + + + fr.insee + RessourcePackage-llxh9g6g + 1 + + fr.insee + InterviewerInstructionScheme-llxh9g6g + 1 + + A définir + + + fr.insee + krnoclfe + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + Interview.Telephone.CATI + + + + "Nous allons vous interroger sur le logement situé à l'adresse suivante : " || ¤kcoks7di-GOP¤ + + + + fr.insee + kcoks7di-GOP + 1 + OutParameter + + + + + + fr.insee + kwgg3npw + 1 + + instruction + + + SelfAdministeredQuestionnaire.WebBased + + + + Appuyer sur "Continuer" pour passer à la page suivante. + + + + + fr.insee + kb9hlpdc-CI-0-II-0 + 1 + + warning + + + + Votre réponse est importante pour le bon déroulement du questionnaire. Merci de répondre à cette question. + + + + + fr.insee + kbal5fzg + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + En précisant bis, ter si besoin. Par exemple : 12 bis. + + + + + fr.insee + kbalg7ww + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Saisissez le type et le nom de la voie. Par exemple : rue des Plantes. + + + + + fr.insee + kbal4bzb-CI-0-II-0 + 1 + + warning + + + + Vous n’avez pas renseigné votre voie. Merci de renseigner votre adresse complète. + + + + + fr.insee + kbalm3fl + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Précisez un bâtiment, un lieu-dit… + + + + + fr.insee + kbal97f4 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Pour PARIS, LYON et MARSEILLE, précisez l’arrondissement. Par exemple : 75012. + + + + + fr.insee + kbal8crw-CI-0-II-0 + 1 + + warning + + + + Vous n’avez pas renseigné votre code postal. Merci de renseigner votre adresse complète. + + + + + fr.insee + kbal9dwk-CI-0-II-0 + 1 + + warning + + + + Vous n’avez pas renseigné votre commune. Merci de renseigner votre adresse complète. + + + + + fr.insee + kr0e4p61 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Ne pas mettre d'espace, de "/", de "-" ni de "." entre les numéros. Ex. : 0147200001 + + + + + fr.insee + kqhuxnyt + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Nous allons commencer par décrire rapidement les personnes qui vivent habituellement dans ce logement, même si elles sont temporairement absentes. + + + + + fr.insee + kwgh1n9c + 1 + + instruction + + + SelfAdministeredQuestionnaire.WebBased + + + + Appuyer sur "Continuer" pour passer à la page suivante. + + + + + fr.insee + kbc1gah1 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Inclure les enfants habitant aussi ailleurs pour leurs études, les conjoints éloignés pour leur travail, les enfants en résidence alternée, les employés de maison ou jeunes au pair habitant dans le logement, les personnes âgées vivant partiellement en maison de retraite ou en institution… + + + + + fr.insee + kqhv3glr + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Exclure les personnes ayant l'intention de résider moins de 12 mois en France. + + + + + fr.insee + kbc1b4k2-CI-0-II-0 + 1 + + warning + + + + Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le nombre d'habitants du logement. + + + + + fr.insee + kbc1b4k2-CI-1-II-1 + 1 + + warning + + + + Merci de ne pas renseigner de chiffre après la virgule. + + + + + fr.insee + kr0tdccr + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + ¤kq9m5zgb-GOP¤ + + + + fr.insee + kq9m5zgb-GOP + 1 + OutParameter + + + + + + fr.insee + kr0syent + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + ¤kq9lw5x7-GOP¤ + + + + fr.insee + kq9lw5x7-GOP + 1 + OutParameter + + + + + + fr.insee + kwggla1b + 1 + + instruction + + + SelfAdministeredQuestionnaire.WebBased + + + + Appuyer sur "Continuer" pour passer à la page suivante. + + + + + fr.insee + kmno1n7m-CI-0-II-0 + 1 + + warning + + + + Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre prénom (ou vos initiales, ou autre) pour pouvoir poursuivre le questionnaire. + + + + + fr.insee + kmno1n7m-CI-1-II-1 + 1 + + warning + + + + Merci d'indiquer l'ensemble des prénoms (initiales ou autre) afin de pouvoir vous repérer dans la suite du questionnaire lorsque les questions porteront sur une personne en particulier. + + + + + fr.insee + kmoouamz-CI-0-II-0 + 1 + + warning + + + + Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre date de naissance. + + + + + fr.insee + kmoouamz-CI-1-II-1 + 1 + + warning + + + + Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer une date de naissance. + + + + + fr.insee + lo8om6yc + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + cast(¤krd6p7hy-GOP¤,string) + + + + fr.insee + krd6p7hy-GOP + 1 + OutParameter + + + + + + fr.insee + lo8onkqg + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + cast(¤krd6rkdl-GOP¤,string) + + + + fr.insee + krd6rkdl-GOP + 1 + OutParameter + + + + + + fr.insee + kwzak25x + 1 + + instruction + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Saisir le code ou les premières lettres du département afin de le sélectionner dans la liste proposée + + + + + fr.insee + kwyzaj0t + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Prendre en compte les frontières actuelles. + + + + + fr.insee + kwzasuub + 1 + + instruction + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Saisir les premières lettres du pays afin de le sélectionner dans la liste proposée + + + + + fr.insee + kmorxjxc + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Plusieurs réponses possibles + + + + + fr.insee + kmort6x9-CI-0-II-0 + 1 + + warning + + + + Ces réponses sont incompatibles. Merci de corriger votre réponse. + + + + + fr.insee + kwzb4byw + 1 + + instruction + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Saisir les premières lettres de la nationalité afin de la sélectionner dans la liste proposée + + + + + fr.insee + kvl9opds + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + " « Ce logement » désigne le logement situé à cette adresse : " || ¤kcolhi30-GOP¤ || "." + + + + fr.insee + kcolhi30-GOP + 1 + OutParameter + + + + + + fr.insee + kvlaj6p8 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + " « Ce logement » désigne le logement situé à cette adresse : " || ¤kcolhi30-GOP¤ || "." + + + + fr.insee + kcolhi30-GOP + 1 + OutParameter + + + + + + fr.insee + kvm8n3pp + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + "Autre logement que celui situé à l’adresse : " || ¤kcolhi30-GOP¤ + + + + fr.insee + kcolhi30-GOP + 1 + OutParameter + + + + + + fr.insee + kvm8xhsc + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Si vous vivez dans plusieurs autres logements, décrivez l'autre logement dans lequel vous passez le plus de temps." else "Si "|| ¤kq7uo7yd-GOP¤ || " vit dans plusieurs autres logements, décrivez l'autre logement dans lequel "|| ¤kmx8i16l-GOP¤ || " passe le plus de temps." + + + + fr.insee + kmx8i16l-GOP + 1 + OutParameter + + + + + fr.insee + kpauiid9-GOP + 1 + OutParameter + + + + + fr.insee + kq7uo7yd-GOP + 1 + OutParameter + + + + + + fr.insee + kn7jf1jt + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Si vous avez dormi chez un(e) ami(e), indiquez le logement où vous deviez normalement dormir." else "Si " || ¤kq7uo7yd-GOP¤ || " a dormi chez un(e) ami(e), indiquez le logement où " || ¤kmx8i16l-GOP¤ || " devait normalement dormir." + + + + fr.insee + kmx8i16l-GOP + 1 + OutParameter + + + + + fr.insee + kpauiid9-GOP + 1 + OutParameter + + + + + fr.insee + kq7uo7yd-GOP + 1 + OutParameter + + + + + + fr.insee + kvm8hkmj + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + "Autre logement que celui situé à l’adresse : " || ¤kcolhi30-GOP¤ + + + + fr.insee + kcolhi30-GOP + 1 + OutParameter + + + + + + fr.insee + kvm8t64a + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + "Structure collective de l'autre logement que celui situé à l’adresse : " || ¤kcolhi30-GOP¤ + + + + fr.insee + kcolhi30-GOP + 1 + OutParameter + + + + + + fr.insee + krd9g6bh + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Si vous hésitez entre plusieurs situations, choisissez celle qui vous décrit le mieux, ou celle qui vous prend le plus de temps." else "Si vous hésitez entre plusieurs situations, choisissez celle qui décrit le mieux " || ¤kq7uo7yd-GOP¤ || ", ou celle qui lui prend le plus de temps." + + + + fr.insee + kpauiid9-GOP + 1 + OutParameter + + + + + fr.insee + kq7uo7yd-GOP + 1 + OutParameter + + + + + + fr.insee + kmxfqrb1-CI-0-II-0 + 1 + + warning + + + + Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer une situation principale. + + + + + fr.insee + kqi7dwk7 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + "Inclure : petit boulot, apprentissage, stage rémunéré, personne en congé " || (if (isnull(¤kmoo2fiy-QOP-kmoon375¤)) then "paternité, maternité" else (if (cast(¤kmoo2fiy-QOP-kmoon375¤,string) = "2") then "maternité" else "paternité")) || " ou parental, en congé maladie ou en chômage partiel, personne travaillant sans être rémunérée avec un membre de sa famille, élu." + + + + fr.insee + kmoo2fiy-QOP-kmoon375 + 1 + OutParameter + + + + + + fr.insee + kqi7omwd + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Exclure le bénévolat. + + + + + fr.insee + kqi89yfr + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Indiquez le niveau de diplôme au moment où vous l'avez obtenu, pas votre niveau actuel." else "Indiquez le niveau de diplôme au moment où " || ¤kq7uo7yd-GOP¤ || " l'a obtenu, pas son niveau actuel." + + + + fr.insee + kpauiid9-GOP + 1 + OutParameter + + + + + fr.insee + kq7uo7yd-GOP + 1 + OutParameter + + + + + + fr.insee + kqi81ih3 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Exclure : CQP, CACES, BAFA, permis de conduire, TOEIC ou autre test de langue, habilitations électriques ou de type équivalent. + + + + + fr.insee + lepxuxk2 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Télétravail : une forme d'organisation du travail dans laquelle un travail qui aurait également pu être exécuté dans les locaux de l'employeur est effectué par un salarié hors de ces locaux de façon volontaire + + + + + fr.insee + lo8pde7a + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + cast(¤lftfquwn-GOP¤,string) + + + + fr.insee + lftfquwn-GOP + 1 + OutParameter + + + + + + fr.insee + lgmd7uor + 1 + + instruction + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Indiquez le prénom du principal apporteur de ressources du ménage. + + + + + fr.insee + kd8qd4ou-CI-0-II-0 + 1 + + warning + + + + Votre réponse est importante pour le bon déroulement du questionnaire. Merci de choisir le type de logement qui correspond à votre logement. + + + + + fr.insee + l7kato20 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Une maison avec un étage comporte deux niveaux : le rez-de-chaussée et l’étage. + + + + + fr.insee + lhiyps86 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Prendre en compte uniquement les niveaux avec des pièces habitables (ne pas compter le sous-sol, cave...) + + + + + fr.insee + kbgi5n3g-CI-0-II-0 + 1 + + warning + + + + Votre réponse est importante pour le bon déroulement du questionnaire. Merci de répondre à cette question. + + + + + fr.insee + kbgim4v3-CI-0-II-0 + 1 + + warning + + + + Votre réponse est importante pour le bon déroulement du questionnaire. Merci de répondre à cette question. + + + + + fr.insee + kbgigafp-CI-0-II-0 + 1 + + warning + + + + Merci de ne pas renseigner de chiffres après la virgule. + + + + + fr.insee + kbghz7mp-CI-0-II-0 + 1 + + warning + + + + Merci d'indiquer une année comprise entre 2006 et 2024. + + + + + fr.insee + kvseiv6v + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + "Nous allons vous interroger sur " || ¤kw0tn1tp-GOP¤ || " et la date d'installation dans le logement." + + + + fr.insee + kw0tn1tp-GOP + 1 + OutParameter + + + + + + fr.insee + kwggrhk0 + 1 + + instruction + + + SelfAdministeredQuestionnaire.WebBased + + + + Appuyer sur "Continuer" pour passer à la page suivante. + + + + + fr.insee + jn0d8za4 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + "On désigne ici le ménage comme étant l'ensemble des occupants du logement. " || ¤knomuvz7-GOP¤ + + + + fr.insee + knomuvz7-GOP + 1 + OutParameter + + + + + + fr.insee + jn0cttir-CI-0-II-0 + 1 + + warning + + + + Votre réponse est importante pour le bon déroulement de la suite du questionnaire. Merci de choisir le statut d'occupation correspondant à la situation de votre ménage. + + + + + fr.insee + knrah5ep + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Y compris en indivision + + + + + fr.insee + kp5nuwqt + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Y compris usufruitier + + + + + fr.insee + ko9tiu0f-CI-0-II-0 + 1 + + warning + + + + Votre réponse est importante pour le bon déroulement de la suite du questionnaire. Merci de répondre à cette question.  + + + + + fr.insee + ko9r0alc-CI-0-II-0 + 1 + + warning + + + + Votre réponse est importante pour le bon déroulement de la suite du questionnaire. Merci de répondre à cette question. + + + + + fr.insee + ko9t45t9-CI-0-II-0 + 1 + + warning + + + + Votre réponse est importante pour le bon déroulement de la suite du questionnaire. Merci de répondre à cette question. + + + + + fr.insee + kqv2lwqk + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Y compris pour un logement en colocation. + + + + + fr.insee + joh97u9u + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Cumuler les périodes le cas échéant. + + + + + fr.insee + kqigjlze + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Plusieurs réponses possibles + + + + + fr.insee + kqigai4x + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Plusieurs réponses possibles + + + + + fr.insee + jojtbo85-CI-0-II-0 + 1 + + warning + + + + Merci d'indiquer l'année de votre arrivée dans ce logement. Si vous n'avez jamais déménagé de votre vie, merci d'indiquer votre année de naissance. + + + + + fr.insee + jojtbo85-CI-1-II-1 + 1 + + warning + + + + Merci d'indiquer une année comprise entre 1900 et 2024. + + + + + fr.insee + jojt16mt-CI-0-II-0 + 1 + + warning + + + + Votre réponse est importante pour le bon déroulement du questionnaire. Merci de répondre à cette question. + + + + + fr.insee + jojtnq9z-CI-0-II-0 + 1 + + warning + + + + Merci d'indiquer une année comprise entre 1900 et 2024. + + + + + fr.insee + jojtutyy-CI-0-II-0 + 1 + + warning + + + + Si cette personne habitait déjà le logement à votre arrivée, la date d'installation de cette personne doit être antérieure à la vôtre, merci de corriger l'une de vos réponses. + + + + + fr.insee + jojtutyy-CI-1-II-1 + 1 + + warning + + + + Merci d'indiquer une année comprise entre 1900 et 2024. + + + + + fr.insee + jojurgz6 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Nous allons maintenant passer à la description de votre logement. + + + + + fr.insee + kwgh620s + 1 + + instruction + + + SelfAdministeredQuestionnaire.WebBased + + + + Appuyer sur "Continuer" pour passer à la page suivante. + + + + + fr.insee + l3ioieyl + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + 10 correspond à la meilleure note, 0 à la plus mauvaise. + + + + + fr.insee + kkpmu4ui + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Ne pas tenir compte des pièces dédiées au télétravail. + + + + + fr.insee + klv3gkq8 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Ne pas tenir compte des pièces dédiées au télétravail. + + + + + fr.insee + jojv1e5e-CI-0-II-0 + 1 + + warning + + + + Merci de ne pas renseigner de chiffres après la virgule. + + + + + fr.insee + jrj0gbrz + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Ne pas compter les pièces qui n'ont pas un usage d'habitation : débarras, buanderies, garages... + + + + + fr.insee + jojv3ha7-CI-0-II-0 + 1 + + warning + + + + Merci de ne pas renseigner de chiffres après la virgule. + + + + + fr.insee + kmcdfb60 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Plusieurs réponses possibles + + + + + fr.insee + jojuzbus-CI-0-II-0 + 1 + + warning + + + + Merci de ne pas renseigner de chiffres après la virgule. + + + + + fr.insee + klv4iusu-CI-0-II-0 + 1 + + warning + + + + Merci de ne pas renseigner de chiffres après la virgule. + + + + + fr.insee + kd5qr5s5 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + "Ne pas compter : " || ¤kd5x03yf-GOP¤ || " " || " " || ¤kd5wsv3n-GOP¤ || " " || ¤kd5x12n1-GOP¤ || "entrée, couloir, salle de bains, W-C, véranda..." + + + + fr.insee + kd5x12n1-GOP + 1 + OutParameter + + + + + fr.insee + kd5wsv3n-GOP + 1 + OutParameter + + + + + fr.insee + kd5x03yf-GOP + 1 + OutParameter + + + + + + fr.insee + kmdb0cfn + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + ¤kmdb0l68-GOP¤ + + + + fr.insee + kmdb0l68-GOP + 1 + OutParameter + + + + + + fr.insee + jojvgfei-CI-0-II-0 + 1 + + warning + + + + Êtes-vous certain(e) que votre logement comporte ce nombre de pièces d'habitation ? Il s'agit du nombre de pièces (hors cuisine séparée, salle de bain, entrée, véranda etc.) Pouvez-vous vérifier votre réponse ? + + + + + fr.insee + jojvgfei-CI-1-II-1 + 1 + + warning + + + + Votre réponse est essentielle pour la description de votre logement, pouvez-vous indiquer le nombre de pièces habitables de votre logement ? + + + + + fr.insee + jojvgfei-CI-2-II-2 + 1 + + warning + + + + Merci de ne pas renseigner de chiffres après la virgule. + + + + + fr.insee + js0hn6b6 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Ne pas compter les pièces ayant un usage mixte (exemple : salon le jour, chambre la nuit). Compter cependant les chambres également utilisées comme bureau. + + + + + fr.insee + jojv4yqe-CI-0-II-0 + 1 + + warning + + + + Vous avez indiqué avoir plus de chambres que de pièces d'habitation. Pouvez-vous corriger l'une de vos réponses ? + + + + + fr.insee + jojv4yqe-CI-1-II-1 + 1 + + warning + + + + Vous avez indiqué avoir le même nombre de pièces d'habitation que de chambres. Pouvez-vous corriger l'une de vos réponses si votre logement ne comporte pas que des chambres ? + + + + + fr.insee + jojv4yqe-CI-2-II-2 + 1 + + warning + + + + Merci de ne pas renseigner de chiffres après la virgule. + + + + + fr.insee + kd5v90t1 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Inclure la surface des couloirs, pièces de service, cuisine... + + + + + fr.insee + kd5vkr8v + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Ne pas inclure la surface des balcons, loggias, vérandas, terrasses, garages, caves, combles non aménagés. + + + + + fr.insee + jojvc0vt-CI-0-II-0 + 1 + + warning + + + + Votre réponse est essentielle pour la description de votre logement, pouvez-vous indiquer la surface habitable de votre logement ? + + + + + fr.insee + jojvc0vt-CI-1-II-1 + 1 + + warning + + + + Êtes-vous certain(e) que votre logement mesure cette surface et comporte une seule pièce ? + + + + + fr.insee + jojvc0vt-CI-2-II-2 + 1 + + warning + + + + Êtes-vous certain(e) que votre logement mesure cette surface et comporte ce nombre de pièces d'habitation ? + + + + + fr.insee + ljny78kx + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Lorsque la pièce principale est située sous des combles, la hauteur sous plafond varie. Choisir la réponse correspondant à la partie la plus haute de la pièce. + + + + + fr.insee + jrupk9tg + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Local habitable tout au long de l'année (entièrement clos et couvert) et pouvant être chauffé. + + + + + fr.insee + js06xqg5 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Inclure la surface de la maison sur le terrain&#xd;​ + + + + + fr.insee + kmdhsqjj + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + "Prendre en compte le terrain sur lequel est construite la maison et réservé à l'usage personnel " || ¤kmdjrrtc-GOP¤ || "y compris les parcelles séparées." + + + + fr.insee + kmdjrrtc-GOP + 1 + OutParameter + + + + + + fr.insee + jruq8x6e-CI-0-II-0 + 1 + + warning + + + + La surface de votre terrain n'a pas pu être enregistrée, merci de ne pas renseigner d'espaces dans votre réponse. + + + + + fr.insee + jruq9370 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + "Inclure la surface du garage" || ¤kmdiz1lc-GOP¤ || "." + + + + fr.insee + kmdiz1lc-GOP + 1 + OutParameter + + + + + + fr.insee + kd8v214t + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Exclure les abris de jardin, les piscines, ... + + + + + fr.insee + lex5yu47 + 1 + + help + + + + L’emprise au sol est la surface totale qu’occupe votre maison sur le terrain + + + + + fr.insee + jruq4was-CI-0-II-0 + 1 + + warning + + + + Votre réponse ne semble pas compatible avec la surface totale du terrain (maison comprise). Pouvez-vous corriger l’une ou l’autre de vos réponses ? + + + + + fr.insee + jruse4ew + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Exclure les emplacements de stationnement, les voies de circulation et les espaces utilisés uniquement à des fins professionnelles. + + + + + fr.insee + l3is5o9g + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Ne pas compter les voitures ou les fourgonnettes à usage exclusivement professionnel. + + + + + fr.insee + kd8yemf2 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Plusieurs réponses possibles. + + + + + fr.insee + kmdk73lg + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Inclure les emplacements que vous utilisez pour votre usage personnel ou que vous mettez en location. + + + + + fr.insee + jrusjpqy-CI-0-II-0 + 1 + + warning + + + + La réponse "Non, ni garage, ni box, ni parking" n'en permet pas d'autre. Pouvez-vous corriger votre réponse ? + + + + + fr.insee + jrut167a + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Plusieurs réponses possibles. + + + + + fr.insee + kmdk288d + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Inclure les emplacements que vous utilisez pour votre usage personnel ou que vous mettez en location. + + + + + fr.insee + jrut4vl7-CI-0-II-0 + 1 + + warning + + + + La réponse "Non, ni garage, ni box, ni parking" n'en permet pas d'autre, pouvez-vous corriger votre réponse ? + + + + + fr.insee + jrusw7aw + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Prendre en compte les sous-sols utilisés comme garage. + + + + + fr.insee + kmdk6e4h + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Hors cave ou local privatif. + + + + + fr.insee + jruu3t31 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Exclure les piscines démontables et les piscines hors-sol. + + + + + fr.insee + kmeu61l4-CI-0-II-0 + 1 + + warning + + + + Vous avez indiqué posséder des W-C à l'intérieur de votre logement. Pouvez-vous indiquer combien ? + + + + + fr.insee + lh5x9lsb + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + On exclut ici les W-C situés dans une autre pièce comme une salle de bain par exemple. + + + + + fr.insee + lfjehv20 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + On exclut ici les W-C situés dans une autre pièce comme une salle de bain par exemple. + + + + + fr.insee + kksgd6fv-CI-0-II-0 + 1 + + warning + + + + Vous avez indiqué posséder au moins une salle d'eau ou de bain. Pouvez-vous indiquer leur nombre ? + + + + + fr.insee + joiciihu + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Nous allons nous intéresser maintenant à votre opinion sur vos conditions de logement. + + + + + fr.insee + kwggtqx5 + 1 + + instruction + + + SelfAdministeredQuestionnaire.WebBased + + + + Appuyer sur "Continuer" pour passer à la page suivante. + + + + + fr.insee + kc21oley + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + "10 correspond à la meilleure note, 1 à la plus mauvaise." + + + + + fr.insee + joiccm1l-CI-0-II-0 + 1 + + warning + + + + Merci de ne pas renseigner de chiffres après la virgule. + + + + + fr.insee + kculau3o + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + "10 correspond à la meilleure note, 1 à la plus mauvaise." + + + + + fr.insee + joidpl4s-CI-0-II-0 + 1 + + warning + + + + Merci de ne pas renseigner de chiffres après la virgule. + + + + + fr.insee + kq819sio + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Nous allons nous intéresser aux éventuels problèmes de logement qu'ont pu connaître les membres de votre ménage dans le passé, dans des périodes particulièrement difficiles de l’existence : difficultés financières, professionnelles, personnelles… + + + + + fr.insee + kwglf1ui + 1 + + instruction + + + SelfAdministeredQuestionnaire.WebBased + + + + Appuyer sur "Continuer" pour passer à la page suivante. + + + + + fr.insee + jsx8ktt3 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Plusieurs réponses possibles + + + + + fr.insee + ksj7s0h1 + 1 + + help + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Indiquez si oui ou non vous avez connu les situations suivantes : " else "Indiquez si oui ou non " || ¤kq7uo7yd-GOP¤ || " a connu les situations suivantes : " + + + + fr.insee + kpauiid9-GOP + 1 + OutParameter + + + + + fr.insee + kq7uo7yd-GOP + 1 + OutParameter + + + + + + fr.insee + ksj79ywf + 1 + + instruction + + + SelfAdministeredQuestionnaire.WebBased + + + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Cochez les situations que vous avez connues. " else "Cochez les situations que " || ¤kq7uo7yd-GOP¤ || " a connues. " + + + + fr.insee + kpauiid9-GOP + 1 + OutParameter + + + + + fr.insee + kq7uo7yd-GOP + 1 + OutParameter + + + + + + fr.insee + joinz4wo-CI-0-II-0 + 1 + + warning + + + + La réponse "aucune de ces situations" n’en permet pas d’autre. Merci de corriger votre réponse. + + + + + fr.insee + joo0yx5k-CI-0-II-0 + 1 + + warning + + + + Merci d'indiquer une année comprise entre 1900 et 2024. + + + + + fr.insee + kudvxpft-CI-0-II-0 + 1 + + warning + + + + Merci d'indiquer une année comprise entre 1900 et 2024. + + + + + fr.insee + kv87umqk + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + "Nous allons maintenant vous poser quelques questions sur les changements de situation survenus dans votre ménage depuis le 1er " || ¤ko9vg9v8-GOP¤ || " " || cast(¤kocm65ii-GOP¤,string) || "." + + + + fr.insee + ko9vg9v8-GOP + 1 + OutParameter + + + + + fr.insee + kocm65ii-GOP + 1 + OutParameter + + + + + + fr.insee + kv886tad + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + "On désigne ici le ménage comme étant l'ensemble des occupants du logement. " || ¤knomuvz7-GOP¤ + + + + fr.insee + knomuvz7-GOP + 1 + OutParameter + + + + + + fr.insee + kwgligyr + 1 + + instruction + + + SelfAdministeredQuestionnaire.WebBased + + + + Appuyer sur "Continuer" pour passer à la page suivante. + + + + + fr.insee + jopta1p5 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Plusieurs réponses possibles + + + + + fr.insee + joo1h434-CI-0-II-0 + 1 + + warning + + + + La réponse « Aucune modification » n’en permet pas d’autre. Merci de corriger votre réponse. + + + + + fr.insee + joptatl0 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Plusieurs réponses possibles + + + + + fr.insee + joo22fbd-CI-0-II-0 + 1 + + warning + + + + La réponse « Aucune modification » n’en permet pas d’autre. Merci de corriger votre réponse. + + + + + fr.insee + koe0u2zg-CI-0-II-0 + 1 + + warning + + + + La réponse « Aucune modification » n’en permet pas d’autre. Merci de corriger votre réponse. + + + + + fr.insee + kpbd40p7 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Que ce soit une résidence principale, secondaire, un logement vacant ou loué, etc. + + + + + fr.insee + jslhsfkf + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + ¤koea9dru-GOP¤ + + + + fr.insee + koea9dru-GOP + 1 + OutParameter + + + + + + fr.insee + kwzauu2j + 1 + + instruction + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Saisir les premières lettres de la commune afin de la sélectionner dans la liste proposée + + + + + fr.insee + joplaxge + 1 + + instruction + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Saisir le code ou les premières lettres du département afin de le sélectionner dans la liste proposée + + + + + fr.insee + kwzbrdy1 + 1 + + instruction + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Saisir les premières lettres du pays afin de le sélectionner dans la liste proposée + + + + + fr.insee + kpbfr1bb + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Loyer hors charges. + + + + + fr.insee + joprsm9u-CI-0-II-0 + 1 + + warning + + + + Merci de ne pas renseigner de chiffres après la virgule. + + + + + fr.insee + joprsm9u-CI-1-II-1 + 1 + + warning + + + + Le montant du loyer n'a pas pu être enregistré, merci de ne pas renseigner d'espaces dans votre réponse. + + + + + fr.insee + joprp441-CI-0-II-0 + 1 + + warning + + + + Merci de ne pas renseigner de chiffres après la virgule. + + + + + fr.insee + jopshrd0 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Compter la surface habitable y compris les pièces annexes utilisées pour un usage personnel. + + + + + fr.insee + kpbnmqra + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Exclure les pièces annexes louées, sous-louées ou prêtées et les pièces professionnelles. + + + + + fr.insee + jops3ast + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Compter la cuisine si elle avait plus de 12 m² et les pièces annexes utilisées pour usage personnel. + +​ + + + + + fr.insee + kpbnwlcz + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Exclure l'entrée, les couloirs, la salle de bains, les W-C, les vérandas, les pièces annexes louées, sous-louées ou prêtées et les pièces à usage professionnel. + + + + + fr.insee + jops4c0x-CI-0-II-0 + 1 + + warning + + + + Merci de ne pas renseigner de chiffres après la virgule. + + + + + fr.insee + jopsrdb3-CI-0-II-0 + 1 + + warning + + + + Merci de ne pas renseigner de chiffres après la virgule. + + + + + fr.insee + kovh3bgb + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Compter la surface habitable y compris les pièces annexes utilisées pour un usage personnel. + + + + + fr.insee + kovh0e18 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Exclure les pièces annexes louées, sous-louées ou prêtées et les pièces professionnelles. + + + + + fr.insee + jrw9jmbu + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Compter la cuisine si elle avait plus de 12 m² et les pièces annexes utilisées pour usage personnel. + + + + + fr.insee + kpbq0xkh + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Exclure l'entrée, les couloirs, la salle de bain, les W-C, les vérandas, les pièces annexes louées, sous-louées ou prêtées et les pièces à usage professionnel. + + + + + fr.insee + joputbjc-CI-0-II-0 + 1 + + warning + + + + Merci de ne pas renseigner de chiffres après la virgule. + + + + + fr.insee + kovj894p + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Plusieurs réponses possibles + + + + + fr.insee + kovj0a8h-CI-0-II-0 + 1 + + warning + + + + La modalité "Non, aucune de ces situations" ne permet pas d'en sélectionner d'autres. Merci de bien vouloir corriger votre réponse. + + + + + fr.insee + kovj7ehq + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Plusieurs réponses possibles + + + + + fr.insee + kovirkvq-CI-0-II-0 + 1 + + warning + + + + La modalité "Non, aucune de ces situations" ne permet pas d'en sélectionner d'autres. Merci de bien vouloir corriger votre réponse. + + + + + fr.insee + kovjfgo3 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Plusieurs réponses possibles + + + + + fr.insee + kovj5q33-CI-0-II-0 + 1 + + warning + + + + La modalité "Non, aucune de ces situations" ne permet pas d'en sélectionner d'autres. Merci de bien vouloir corriger votre réponse. + + + + + fr.insee + lgns2wkv + 1 + + instruction + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Indiquez la raison principale. + + + + + fr.insee + kw0t9gwz + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + Interview.Telephone.CATI + + + + Pour conclure, nous allons vous poser les dernières questions portant sur votre utilisation du téléphone et d’Internet. Ces réponses seront utiles pour la suite de nos travaux d'analyse des données de l'enquête. Nous souhaiterions également recueillir vos informations de contact. + + + + + fr.insee + kwjf9zen + 1 + + instruction + + + SelfAdministeredQuestionnaire.WebBased + + + + Appuyer sur "Continuer" pour passer à la page suivante. + + + + + fr.insee + kp5apvf3-CI-0-II-0 + 1 + + warning + + + + Cette information est importante pour établir des données représentatives, il est important que vous y répondiez, merci par avance. + + + + + fr.insee + kp5au0iu-CI-0-II-0 + 1 + + warning + + + + Cette information est importante pour établir des données représentatives, il est important que vous y répondiez, merci par avance. + + + + + fr.insee + kp5bt2q8 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Quel que soit le lieu (domicile, travail) et le type de support (ordinateur, smartphone...) + + + + + fr.insee + kp5bjbzg-CI-0-II-0 + 1 + + warning + + + + Cette information est importante pour établir des données représentatives, il est important que vous y répondiez, merci par avance. + + + + + fr.insee + kksdc5ct + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Vos coordonnées seront éventuellement utilisées dans les semaines à venir dans le cadre de cette enquête. Elles ne seront ni conservées, ni transmises à un tiers. + + + + + fr.insee + kkscy2qd + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Ne pas mettre d'espace, de "/", de "-" ni de "." entre les numéros. Ex. : 0147200001 + + + + + fr.insee + kpo8brbj + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + ¤kpo88v55-GOP¤ + + + + fr.insee + kpo88v55-GOP + 1 + OutParameter + + + + + + fr.insee + kpo803df + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + ¤kpo8i6mz-GOP¤ + + + + fr.insee + kpo8i6mz-GOP + 1 + OutParameter + + + + + + fr.insee + kpo7wfgt + 1 + + instruction + + + SelfAdministeredQuestionnaire.WebBased + + + + "Merci de cliquer sur -Continuer- pour passer à la page suivante, puis sur -Envoyer- " || ¤kpo86epq-GOP¤ + + + + fr.insee + kpo86epq-GOP + 1 + OutParameter + + + + + + + fr.insee + ControlConstructScheme-llxh9g6g + 1 + + fr.insee + Sequence-llxh9g6g + 1 + + VraiQuest - Enquête Logement - Séquence 1 (ENL en 2023 sur Internet) + + template + + fr.insee + kb9hi4j0 + 1 + Sequence + + + fr.insee + kkzirf74 + 1 + IfThenElse + + + fr.insee + kp6svrg1 + 1 + Sequence + + + + fr.insee + kb9hi4j0 + 1 + + T1 + + + Adresse + + + fr.insee + krnoclfe + 1 + Instruction + + + fr.insee + kwgg3npw + 1 + Instruction + + module + + fr.insee + kb9hlpdc-QC + 1 + QuestionConstruct + + + fr.insee + kb9hlpdc-CI-0 + 1 + ComputationItem + + + fr.insee + kks6bbzr + 1 + IfThenElse + + + fr.insee + kqwehqob + 1 + IfThenElse + + + + fr.insee + kqwen63d + 1 + + NEWOCC + + + Nouveaux occupants + + submodule + + fr.insee + kqweh61i-QC + 1 + QuestionConstruct + + + fr.insee + kqwhfgbp + 1 + IfThenElse + + + + fr.insee + jruq5os5 + 1 + + LISTEHAB + + + Description des habitants du logement + + + fr.insee + kqhuxnyt + 1 + Instruction + + + fr.insee + kwgh1n9c + 1 + Instruction + + module + + fr.insee + kbc1b4k2-QC + 1 + QuestionConstruct + + + fr.insee + kbc1b4k2-CI-0 + 1 + ComputationItem + + + fr.insee + kbc1b4k2-CI-1 + 1 + ComputationItem + + + + fr.insee + kmnnjaf1 + 1 + + THL + + + Présentation des habitants du logement + + + fr.insee + kr0tdccr + 1 + Instruction + + + fr.insee + kr0syent + 1 + Instruction + + + fr.insee + kwggla1b + 1 + Instruction + + module + + fr.insee + kmnolkxb + 1 + Loop + + + fr.insee + kmooeas1 + 1 + Loop + + + fr.insee + kmw4iq4w + 1 + Loop + + + fr.insee + kmx8gebp + 1 + Loop + + + fr.insee + kug1deqa + 1 + IfThenElse + + + fr.insee + lg58gb8d + 1 + IfThenElse + + + fr.insee + kvqoffs5 + 1 + Sequence + + + + fr.insee + kmnnxf2w + 1 + + PRENOMS + + + if (isnull(¤kpauiid9-GOP¤) or ¤kmno1n7m-QOP-kmno8tbs¤=¤kpauiid9-GOP¤) then "Prénoms des habitants du logement" else "" + + submodule + + fr.insee + kmno1n7m-QC + 1 + QuestionConstruct + + + fr.insee + kmno1n7m-CI-0 + 1 + ComputationItem + + + fr.insee + kmno1n7m-CI-1 + 1 + ComputationItem + + + + fr.insee + kmnoigj8 + 1 + + ETATCIVAUT + + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Votre état civil" else "État civil de " || ¤kq7uo7yd-GOP¤ + + submodule + + fr.insee + kmoo2fiy-QC + 1 + QuestionConstruct + + + fr.insee + kmoouamz-QC + 1 + QuestionConstruct + + + fr.insee + kmoouamz-CI-0 + 1 + ComputationItem + + + fr.insee + kmoouamz-CI-1 + 1 + ComputationItem + + + fr.insee + kqijz2uj + 1 + IfThenElse + + + fr.insee + kmookacu-QC + 1 + QuestionConstruct + + + fr.insee + kmor8e7k + 1 + IfThenElse + + + fr.insee + kmorem6m + 1 + IfThenElse + + + fr.insee + kmort6x9-QC + 1 + QuestionConstruct + + + fr.insee + kmort6x9-CI-0 + 1 + ComputationItem + + + fr.insee + kmosdpt9 + 1 + IfThenElse + + + + fr.insee + kmw3dz2a + 1 + + SITUFAMAUT + + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Votre situation familiale" else "Situation familiale de " || ¤kq7uo7yd-GOP¤ + + submodule + + fr.insee + kpaux49o + 1 + IfThenElse + + + fr.insee + kvl70bp3 + 1 + IfThenElse + + + + fr.insee + kmukkury + 1 + + LIEUXAUT + + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Vos lieux de vie" else "Lieux de vie de " || ¤kq7uo7yd-GOP¤ + + submodule + + fr.insee + kmx8sgeu-QC + 1 + QuestionConstruct + + + fr.insee + kqi5v895 + 1 + IfThenElse + + + + fr.insee + kmxa5rqb + 1 + + ACTDIPAUT + + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Activité et formation" else "Activité et formation de " || ¤kq7uo7yd-GOP¤ + + submodule + + fr.insee + kmxfqrb1-QC + 1 + QuestionConstruct + + + fr.insee + kmxfqrb1-CI-0 + 1 + ComputationItem + + + fr.insee + kmxfxjv6 + 1 + IfThenElse + + + fr.insee + kmxgftfs-QC + 1 + QuestionConstruct + + + fr.insee + kqi8ilmm + 1 + IfThenElse + + + fr.insee + kqi8jm91 + 1 + IfThenElse + + + fr.insee + kpboq7j6 + 1 + IfThenElse + + + + fr.insee + ley4go4m + 1 + + RESSOURCESMEN + + + Ressources du ménage + + + fr.insee + lo8pde7a + 1 + Instruction + + submodule + + fr.insee + lgmc7929-QC + 1 + QuestionConstruct + + + + fr.insee + kvqoffs5 + 1 + + TYPLOG_ + + + Type de logement + + submodule + + fr.insee + kwf3y6nj-SI + 1 + StatementItem + + + fr.insee + kd8qd4ou-QC + 1 + QuestionConstruct + + + fr.insee + kd8qd4ou-CI-0 + 1 + ComputationItem + + + fr.insee + l7kasgkd + 1 + IfThenElse + + + fr.insee + kp4bwxlx + 1 + IfThenElse + + + fr.insee + kks6ik7e + 1 + IfThenElse + + + fr.insee + kks71hik + 1 + IfThenElse + + + fr.insee + kks70xeh + 1 + IfThenElse + + + fr.insee + kbghszh6-QC + 1 + QuestionConstruct + + + fr.insee + kp4d9yw7 + 1 + IfThenElse + + + + fr.insee + jn0cmg7j + 1 + + M3T0 + + + Statut d'occupation et date d'installation + + + fr.insee + kvseiv6v + 1 + Instruction + + + fr.insee + kwggrhk0 + 1 + Instruction + + module + + fr.insee + jn0ccyw1 + 1 + Sequence + + + fr.insee + kl9hjrhm + 1 + IfThenElse + + + fr.insee + kw3tyol0 + 1 + IfThenElse + + + fr.insee + kus69gmm + 1 + IfThenElse + + + fr.insee + kvsdwoef + 1 + Sequence + + + + fr.insee + jn0ccyw1 + 1 + + M3T1 + + + Statut d'occupation du ménage + + submodule + + fr.insee + jn0cttir-QC + 1 + QuestionConstruct + + + fr.insee + jn0cttir-CI-0 + 1 + ComputationItem + + + fr.insee + klut1j4k + 1 + IfThenElse + + + fr.insee + l7j3tfwj + 1 + IfThenElse + + + fr.insee + l95f2ihe + 1 + IfThenElse + + + fr.insee + kl9c0p6t + 1 + IfThenElse + + + + fr.insee + jo776s4d + 1 + + M3T2 + + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Votre statut d'occupation individuel" else "Statut d'occupation individuel de " || ¤kq7uo7yd-GOP¤ + + submodule + + fr.insee + ko9tvubd + 1 + IfThenElse + + + fr.insee + ko9thgnw + 1 + IfThenElse + + + fr.insee + ko9u0wlk + 1 + IfThenElse + + + fr.insee + kp5qydnb + 1 + IfThenElse + + + + fr.insee + joh85k5c + 1 + + M3T3 + + + "Situation de " || ¤kq7uo7yd-GOP¤ + + submodule + + fr.insee + joh8lowu-QC + 1 + QuestionConstruct + + + fr.insee + knora43u + 1 + IfThenElse + + + fr.insee + kp5wj6we + 1 + IfThenElse + + + + fr.insee + jsygk7m7 + 1 + + M3T4 + + + Hébergement + + submodule + + fr.insee + joisq6l3-QC + 1 + QuestionConstruct + + + fr.insee + knpolbu3-QC + 1 + QuestionConstruct + + + fr.insee + kpppw3yo + 1 + IfThenElse + + + + fr.insee + kvsdwoef + 1 + + M4T1 + + + Date d'installation dans le logement + + submodule + + fr.insee + jojtbo85-QC + 1 + QuestionConstruct + + + fr.insee + jojtbo85-CI-0 + 1 + ComputationItem + + + fr.insee + jojtbo85-CI-1 + 1 + ComputationItem + + + fr.insee + kp6j9dpu + 1 + IfThenElse + + + fr.insee + kl9j48pi + 1 + IfThenElse + + + fr.insee + kue52fg6 + 1 + IfThenElse + + + fr.insee + kue5m4qp + 1 + IfThenElse + + + fr.insee + l3ykh3ck + 1 + IfThenElse + + + + fr.insee + jojuy3c4 + 1 + + M5T0 + + + Description du logement + + + fr.insee + jojurgz6 + 1 + Instruction + + + fr.insee + kwgh620s + 1 + Instruction + + module + + fr.insee + kp6n3avl + 1 + Sequence + + + fr.insee + kue3m6gs + 1 + IfThenElse + + + fr.insee + kp6ni06e + 1 + Sequence + + + fr.insee + kp6ns6ar + 1 + Sequence + + + fr.insee + kp6nfjxe + 1 + Sequence + + + fr.insee + kv852xbl + 1 + Sequence + + + fr.insee + kv857tu4 + 1 + Sequence + + + + fr.insee + kp6n3avl + 1 + + M5T1 + + + Description du logement - Cuisine + + submodule + + fr.insee + jojuueml-QC + 1 + QuestionConstruct + + + fr.insee + kkplqyr3 + 1 + IfThenElse + + + + fr.insee + kp6n8gha + 1 + + M5T2 + + + Description du logement - Conditions de télétravail + + submodule + + fr.insee + klv34du0-QC + 1 + QuestionConstruct + + + fr.insee + l3io7e8f-QC + 1 + QuestionConstruct + + + + fr.insee + kp6ni06e + 1 + + M5T3 + + + Description du logement - Pièces à usage exclusivement professionnel + + submodule + + fr.insee + kkpnqrqh-SI + 1 + StatementItem + + + fr.insee + jojuwst2-QC + 1 + QuestionConstruct + + + fr.insee + kkpmvugt + 1 + IfThenElse + + + + fr.insee + kp6ns6ar + 1 + + M5T4 + + + Description du logement - Pièces annexes à usage d'habitation + + submodule + + fr.insee + jojv79ut-QC + 1 + QuestionConstruct + + + fr.insee + kkpnsz8f + 1 + IfThenElse + + + + fr.insee + kp6nfjxe + 1 + + M5T5 + + + Description du logement - Taille + + submodule + + fr.insee + jojvgfei-QC + 1 + QuestionConstruct + + + fr.insee + jojvgfei-CI-0 + 1 + ComputationItem + + + fr.insee + jojvgfei-CI-1 + 1 + ComputationItem + + + fr.insee + jojvgfei-CI-2 + 1 + ComputationItem + + + fr.insee + kmdbk7p4 + 1 + IfThenElse + + + fr.insee + jojvc0vt-QC + 1 + QuestionConstruct + + + fr.insee + jojvc0vt-CI-0 + 1 + ComputationItem + + + fr.insee + jojvc0vt-CI-1 + 1 + ComputationItem + + + fr.insee + jojvc0vt-CI-2 + 1 + ComputationItem + + + fr.insee + jojv1ux1-QC + 1 + QuestionConstruct + + + fr.insee + kv29cjdq-QC + 1 + QuestionConstruct + + + + fr.insee + kv852xbl + 1 + + M6_T1 + + + Dépendances du logement + + submodule + + fr.insee + kq7nq067-SI + 1 + StatementItem + + + fr.insee + jrupq1i5-QC + 1 + QuestionConstruct + + + fr.insee + kmdhaodv + 1 + IfThenElse + + + fr.insee + jrupzl7m-QC + 1 + QuestionConstruct + + + fr.insee + kmdhk927 + 1 + IfThenElse + + + fr.insee + jruq98v2-QC + 1 + QuestionConstruct + + + fr.insee + kmdi97hw + 1 + IfThenElse + + + fr.insee + kmdifmw4 + 1 + IfThenElse + + + fr.insee + kmdjxq9q + 1 + IfThenElse + + + fr.insee + l3irva5g-QC + 1 + QuestionConstruct + + + fr.insee + jrusjpqy-QC + 1 + QuestionConstruct + + + fr.insee + jrusjpqy-CI-0 + 1 + ComputationItem + + + fr.insee + jrut4vl7-QC + 1 + QuestionConstruct + + + fr.insee + jrut4vl7-CI-0 + 1 + ComputationItem + + + fr.insee + jrut0i0j-QC + 1 + QuestionConstruct + + + fr.insee + kmdkqyyp + 1 + IfThenElse + + + fr.insee + jrutj5co-QC + 1 + QuestionConstruct + + + fr.insee + kq7od344 + 1 + IfThenElse + + + fr.insee + kmdkmmoz + 1 + IfThenElse + + + + fr.insee + kv857tu4 + 1 + + M7T1 + + + Équipement sanitaire + + submodule + + fr.insee + jruuncm0-QC + 1 + QuestionConstruct + + + fr.insee + jruv1cla-QC + 1 + QuestionConstruct + + + fr.insee + kmeugwlw + 1 + IfThenElse + + + fr.insee + kmf3fema + 1 + IfThenElse + + + + fr.insee + joicksrx + 1 + + M14T0 + + + Opinion sur le logement actuel + + + fr.insee + joiciihu + 1 + Instruction + + + fr.insee + kwggtqx5 + 1 + Instruction + + module + + fr.insee + joicolgp-QC + 1 + QuestionConstruct + + + fr.insee + joiccm1l-QC + 1 + QuestionConstruct + + + fr.insee + joiccm1l-CI-0 + 1 + ComputationItem + + + fr.insee + knio1w9d-QC + 1 + QuestionConstruct + + + fr.insee + l7j20adt + 1 + IfThenElse + + + fr.insee + l7j29yuq + 1 + IfThenElse + + + fr.insee + kninrf3p-QC + 1 + QuestionConstruct + + + fr.insee + knioggcs-QC + 1 + QuestionConstruct + + + fr.insee + l3ylv9q8 + 1 + IfThenElse + + + fr.insee + kniwyjy0-QC + 1 + QuestionConstruct + + + fr.insee + joidpl4s-QC + 1 + QuestionConstruct + + + fr.insee + joidpl4s-CI-0 + 1 + ComputationItem + + + + fr.insee + joinv857 + 1 + + M15T0 + + + Expériences éventuelles de situations difficiles de logement + + + fr.insee + kq819sio + 1 + Instruction + + + fr.insee + kwglf1ui + 1 + Instruction + + module + + fr.insee + kkcc8cqi + 1 + Loop + + + + fr.insee + joio33nc + 1 + + M15T1 + + + "Situations difficiles de logement dans le passé concernant " || ¤kq7uo7yd-GOP¤ + + submodule + + fr.insee + joinz4wo-QC + 1 + QuestionConstruct + + + fr.insee + joinz4wo-CI-0 + 1 + ComputationItem + + + fr.insee + kqru8csa + 1 + IfThenElse + + + fr.insee + kqrudlfb + 1 + IfThenElse + + + fr.insee + kpb8n3ho + 1 + IfThenElse + + + + fr.insee + kv86jli3 + 1 + + M15_suite + + + Situations passées et logements précédents + + + fr.insee + kv87umqk + 1 + Instruction + + + fr.insee + kv886tad + 1 + Instruction + + + fr.insee + kwgligyr + 1 + Instruction + + module + + fr.insee + joo1spv3 + 1 + Sequence + + + fr.insee + jophfbfc + 1 + Sequence + + + fr.insee + koeetx88 + 1 + IfThenElse + + + fr.insee + kovfldqd + 1 + Sequence + + + fr.insee + kpbp18d4 + 1 + IfThenElse + + + fr.insee + kv6pvp4x + 1 + IfThenElse + + + fr.insee + kovjcuwj + 1 + IfThenElse + + + + fr.insee + joo1spv3 + 1 + + M15T2 + + + Changement dans la situation du ménage depuis 4 ans + + submodule + + fr.insee + joo1h434-QC + 1 + QuestionConstruct + + + fr.insee + joo1h434-CI-0 + 1 + ComputationItem + + + fr.insee + joo22fbd-QC + 1 + QuestionConstruct + + + fr.insee + joo22fbd-CI-0 + 1 + ComputationItem + + + fr.insee + koe0u2zg-QC + 1 + QuestionConstruct + + + fr.insee + koe0u2zg-CI-0 + 1 + ComputationItem + + + fr.insee + jopgtrq1-QC + 1 + QuestionConstruct + + + fr.insee + koea7z4s + 1 + IfThenElse + + + fr.insee + koeabibm-QC + 1 + QuestionConstruct + + + fr.insee + koeb4sq1 + 1 + IfThenElse + + + + fr.insee + jophfbfc + 1 + + M15T3 + + + Mobilité depuis 4 ans + + submodule + + fr.insee + koec5lwv + 1 + IfThenElse + + + fr.insee + joplorns-QC + 1 + QuestionConstruct + + + fr.insee + koecxjbu + 1 + IfThenElse + + + fr.insee + kpbh29zw + 1 + IfThenElse + + + fr.insee + kpbh1cku + 1 + IfThenElse + + + + fr.insee + joprv8x6 + 1 + + M15T4 + + + "Caractéristiques du logement occupé au 1er " || ¤ko9vg9v8-GOP¤ || " " || cast(¤kocm65ii-GOP¤,string) + + submodule + + fr.insee + jopruzlo-QC + 1 + QuestionConstruct + + + fr.insee + jopsc29x-QC + 1 + QuestionConstruct + + + fr.insee + jops4c0x-QC + 1 + QuestionConstruct + + + fr.insee + jops4c0x-CI-0 + 1 + ComputationItem + + + fr.insee + jopsjl1n-QC + 1 + QuestionConstruct + + + + fr.insee + kovfldqd + 1 + + M15T5 + + + "Situation professionnelle au 1er " || ¤ko9vg9v8-GOP¤ || " " || cast(¤kocm65ii-GOP¤,string) + + submodule + + fr.insee + jopsiigq-QC + 1 + QuestionConstruct + + + + fr.insee + jopsqquo + 1 + + M15T6 + + + "Mobilité depuis le 1er " || ¤ko9vg9v8-GOP¤ || " " || cast(¤kocm65ii-GOP¤,string) + + submodule + + fr.insee + jopsrdb3-QC + 1 + QuestionConstruct + + + fr.insee + jopsrdb3-CI-0 + 1 + ComputationItem + + + fr.insee + kovg4u51 + 1 + IfThenElse + + + + fr.insee + kovgtboa + 1 + + M15T7 + + + Caractéristiques du précédent logement occupé + + submodule + + fr.insee + jopuhzbr-QC + 1 + QuestionConstruct + + + fr.insee + jopukm75-QC + 1 + QuestionConstruct + + + fr.insee + joputbjc-QC + 1 + QuestionConstruct + + + fr.insee + joputbjc-CI-0 + 1 + ComputationItem + + + + fr.insee + kovjkvfn + 1 + + M15T8 + + + Raison du dernier déménagement + + submodule + + fr.insee + jopvzl28-QC + 1 + QuestionConstruct + + + fr.insee + kovj0a8h-QC + 1 + QuestionConstruct + + + fr.insee + kovj0a8h-CI-0 + 1 + ComputationItem + + + fr.insee + kovirkvq-QC + 1 + QuestionConstruct + + + fr.insee + kovirkvq-CI-0 + 1 + ComputationItem + + + fr.insee + kovj5q33-QC + 1 + QuestionConstruct + + + fr.insee + kovj5q33-CI-0 + 1 + ComputationItem + + + fr.insee + lgnrcxzr + 1 + IfThenElse + + + + fr.insee + kqa0lqp4 + 1 + + CORRESP + + + Utilisation d'Internet, du téléphone et informations de contact + + + fr.insee + kw0t9gwz + 1 + Instruction + + + fr.insee + kwjf9zen + 1 + Instruction + + module + + fr.insee + kp5apvf3-QC + 1 + QuestionConstruct + + + fr.insee + kp5apvf3-CI-0 + 1 + ComputationItem + + + fr.insee + kp5au0iu-QC + 1 + QuestionConstruct + + + fr.insee + kp5au0iu-CI-0 + 1 + ComputationItem + + + fr.insee + kp5bjbzg-QC + 1 + QuestionConstruct + + + fr.insee + kp5bjbzg-CI-0 + 1 + ComputationItem + + + fr.insee + kqwjjak7 + 1 + Sequence + + + fr.insee + kqwjuv1h + 1 + Sequence + + + + fr.insee + kqwjjak7 + 1 + + COURRIERS + + + Destinataires des courriers + + submodule + + fr.insee + kbamkrlv-QC + 1 + QuestionConstruct + + + fr.insee + kksctbwg + 1 + IfThenElse + + + + fr.insee + kqwjuv1h + 1 + + NTELCOLL + + + Numéro de téléphone + + submodule + + fr.insee + kbay0xfi-QC + 1 + QuestionConstruct + + + + fr.insee + kp6svrg1 + 1 + + FIN_S1 + + + Fin du questionnaire + + + fr.insee + kpo8brbj + 1 + Instruction + + + fr.insee + kpo803df + 1 + Instruction + + + fr.insee + kpo7wfgt + 1 + Instruction + + module + + + fr.insee + kmnolkxb + 1 + + BOUCLE_PRENOMS + + + Personne suivante + + + + vtl + + fr.insee + kmnolkxb-MIN-IP-1 + 1 + + NHAB + + + + + fr.insee + koegmz7o-GOP + 1 + OutParameter + + + fr.insee + kmnolkxb-MIN-IP-1 + 1 + InParameter + + + cast(kmnolkxb-MIN-IP-1,integer) + + + + + vtl + + fr.insee + kmnolkxb-IP-1 + 1 + + NHAB + + + + + fr.insee + koegmz7o-GOP + 1 + OutParameter + + + fr.insee + kmnolkxb-IP-1 + 1 + InParameter + + + cast(kmnolkxb-IP-1,integer) + + + + + vtl + 1 + + + + fr.insee + kmnolkxb-SEQ + 1 + Sequence + + + + fr.insee + kmnolkxb-SEQ + 1 + + fr.insee + kmnnxf2w + 1 + Sequence + + + + fr.insee + kmooeas1 + 1 + + BOUCLE_THL + + + fr.insee + kmooeas1-SEQ + 1 + Sequence + + + + fr.insee + kmooeas1-SEQ + 1 + + fr.insee + kmnoigj8 + 1 + Sequence + + + + fr.insee + kmw4iq4w + 1 + + BOUCLE_SITUFAM + + + fr.insee + kmw4iq4w-SEQ + 1 + Sequence + + + + fr.insee + kmw4iq4w-SEQ + 1 + + fr.insee + kmw3dz2a + 1 + Sequence + + + + fr.insee + kmx8gebp + 1 + + BOUCLE_LIEUX + + + fr.insee + kmx8gebp-SEQ + 1 + Sequence + + + + fr.insee + kmx8gebp-SEQ + 1 + + fr.insee + kmukkury + 1 + Sequence + + + + fr.insee + kmx9wphw + 1 + + BOUCLE_ACTDIP + + + fr.insee + kmx9wphw-ITE + 1 + IfThenElse + + + + fr.insee + kl809dku + 1 + + BOUCLE_STATUTOCCIND + + + fr.insee + kl809dku-ITE + 1 + IfThenElse + + + + fr.insee + koka314y + 1 + + BOUCLE_HEB_ENFANT + + + fr.insee + koka314y-ITE + 1 + IfThenElse + + + + fr.insee + koka0f5v + 1 + + BOUCLEHEBERGEMENT + + + fr.insee + koka0f5v-ITE + 1 + IfThenElse + + + + fr.insee + kkcc8cqi + 1 + + BOUCLE_SDL + + + fr.insee + kkcc8cqi-ITE + 1 + IfThenElse + + + + fr.insee + kmx9wphw-ITE + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + kmx9wphw-ITE-IP-1 + 1 + + persplus18TR + + + + fr.insee + kmx9wphw-ITE-IP-2 + 1 + + persplus18AGE + + + + + fr.insee + krd6p7hy-GOP + 1 + OutParameter + + + fr.insee + kmx9wphw-ITE-IP-1 + 1 + InParameter + + + + + fr.insee + krd6rkdl-GOP + 1 + OutParameter + + + fr.insee + kmx9wphw-ITE-IP-2 + 1 + InParameter + + + not((kmx9wphw-ITE-IP-1="0" and kmx9wphw-ITE-IP-2="0")) + + + + fr.insee + kmx9wphw-ITE-THEN + 1 + Sequence + + + + fr.insee + kmx9wphw-ITE-THEN + 1 + + + + + fr.insee + kmxa5rqb + 1 + Sequence + + + + fr.insee + kl809dku-ITE + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + kl809dku-ITE-IP-1 + 1 + + persplus18TR + + + + fr.insee + kl809dku-ITE-IP-2 + 1 + + persplus18AGE + + + + + fr.insee + krd6p7hy-GOP + 1 + OutParameter + + + fr.insee + kl809dku-ITE-IP-1 + 1 + InParameter + + + + + fr.insee + krd6rkdl-GOP + 1 + OutParameter + + + fr.insee + kl809dku-ITE-IP-2 + 1 + InParameter + + + not((kl809dku-ITE-IP-1="0" and kl809dku-ITE-IP-2="0")) + + + + fr.insee + kl809dku-ITE-THEN + 1 + Sequence + + + + fr.insee + kl809dku-ITE-THEN + 1 + + + + + fr.insee + jo776s4d + 1 + Sequence + + + + fr.insee + koka314y-ITE + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + koka314y-ITE-IP-1 + 1 + + STOCA + + + + fr.insee + koka314y-ITE-IP-2 + 1 + + persplus25TR + + + + fr.insee + koka314y-ITE-IP-3 + 1 + + persplus25AGE + + + + fr.insee + koka314y-ITE-IP-4 + 1 + + LIEN + + + + fr.insee + koka314y-ITE-IP-5 + 1 + + DURLOG + + + + fr.insee + koka314y-ITE-IP-6 + 1 + + LOGENQ + + + + fr.insee + koka314y-ITE-IP-7 + 1 + + LOGAUT + + + + + fr.insee + kp5n3jf8-GOP + 1 + OutParameter + + + fr.insee + koka314y-ITE-IP-1 + 1 + InParameter + + + + + fr.insee + kp5skfkj-GOP + 1 + OutParameter + + + fr.insee + koka314y-ITE-IP-2 + 1 + InParameter + + + + + fr.insee + kqqit5hr-GOP + 1 + OutParameter + + + fr.insee + koka314y-ITE-IP-3 + 1 + InParameter + + + + + fr.insee + kmw4revw-QOP-kmw5mxph + 1 + OutParameter + + + fr.insee + koka314y-ITE-IP-4 + 1 + InParameter + + + + + fr.insee + kmx97ttc-QOP-kmx93bw6 + 1 + OutParameter + + + fr.insee + koka314y-ITE-IP-5 + 1 + InParameter + + + + + fr.insee + kmx97tz1-QOP-kmx95xeo + 1 + OutParameter + + + fr.insee + koka314y-ITE-IP-6 + 1 + InParameter + + + + + fr.insee + kmx93med-QOP-kmx9mse6 + 1 + OutParameter + + + fr.insee + koka314y-ITE-IP-7 + 1 + InParameter + + + not((isnull(koka314y-ITE-IP-1) or koka314y-ITE-IP-1="1") or (isnull(koka314y-ITE-IP-4) or koka314y-ITE-IP-4="1" or koka314y-ITE-IP-4="2" or koka314y-ITE-IP-4="4" or koka314y-ITE-IP-4="6" or koka314y-ITE-IP-4="7" or LIEN="8") or (koka314y-ITE-IP-6="5" and not(isnull(koka314y-ITE-IP-6)) ) or (koka314y-ITE-IP-7="1" and not(isnull(koka314y-ITE-IP-7)) ) or (koka314y-ITE-IP-5="3" and not(isnull(koka314y-ITE-IP-5)) ) or (koka314y-ITE-IP-2="0" and koka314y-ITE-IP-3="0")) + + + + fr.insee + koka314y-ITE-THEN + 1 + Sequence + + + + fr.insee + koka314y-ITE-THEN + 1 + + + + + fr.insee + joh85k5c + 1 + Sequence + + + + fr.insee + koka0f5v-ITE + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + koka0f5v-ITE-IP-1 + 1 + + STOCA + + + + fr.insee + koka0f5v-ITE-IP-2 + 1 + + PRENOMREF + + + + fr.insee + koka0f5v-ITE-IP-3 + 1 + + PRENOM + + + + fr.insee + koka0f5v-ITE-IP-4 + 1 + + persplus18TR + + + + fr.insee + koka0f5v-ITE-IP-5 + 1 + + persplus18AGE + + + + fr.insee + koka0f5v-ITE-IP-6 + 1 + + LIEN + + + + fr.insee + koka0f5v-ITE-IP-7 + 1 + + DURLOG + + + + fr.insee + koka0f5v-ITE-IP-8 + 1 + + LOGENQ + + + + fr.insee + koka0f5v-ITE-IP-9 + 1 + + LOGAUT + + + + fr.insee + koka0f5v-ITE-IP-10 + 1 + + SITUA + + + + fr.insee + koka0f5v-ITE-IP-11 + 1 + + STOCB1 + + + + + fr.insee + kp5n3jf8-GOP + 1 + OutParameter + + + fr.insee + koka0f5v-ITE-IP-1 + 1 + InParameter + + + + + fr.insee + kpauiid9-GOP + 1 + OutParameter + + + fr.insee + koka0f5v-ITE-IP-2 + 1 + InParameter + + + + + fr.insee + kq7uo7yd-GOP + 1 + OutParameter + + + fr.insee + koka0f5v-ITE-IP-3 + 1 + InParameter + + + + + fr.insee + krd6p7hy-GOP + 1 + OutParameter + + + fr.insee + koka0f5v-ITE-IP-4 + 1 + InParameter + + + + + fr.insee + krd6rkdl-GOP + 1 + OutParameter + + + fr.insee + koka0f5v-ITE-IP-5 + 1 + InParameter + + + + + fr.insee + kmw4revw-QOP-kmw5mxph + 1 + OutParameter + + + fr.insee + koka0f5v-ITE-IP-6 + 1 + InParameter + + + + + fr.insee + kmx97ttc-QOP-kmx93bw6 + 1 + OutParameter + + + fr.insee + koka0f5v-ITE-IP-7 + 1 + InParameter + + + + + fr.insee + kmx97tz1-QOP-kmx95xeo + 1 + OutParameter + + + fr.insee + koka0f5v-ITE-IP-8 + 1 + InParameter + + + + + fr.insee + kmx93med-QOP-kmx9mse6 + 1 + OutParameter + + + fr.insee + koka0f5v-ITE-IP-9 + 1 + InParameter + + + + + fr.insee + kmxfqrb1-QOP-kmxfw3tj + 1 + OutParameter + + + fr.insee + koka0f5v-ITE-IP-10 + 1 + InParameter + + + + + fr.insee + knoqewds-QOP-knoq13l0 + 1 + OutParameter + + + fr.insee + koka0f5v-ITE-IP-11 + 1 + InParameter + + + not((koka0f5v-ITE-IP-3=koka0f5v-ITE-IP-2) or (isnull(koka0f5v-ITE-IP-1) or koka0f5v-ITE-IP-1="1") or (koka0f5v-ITE-IP-11="1" and not(isnull(koka0f5v-ITE-IP-11)) ) or ((koka0f5v-ITE-IP-6="1" or koka0f5v-ITE-IP-6="3" or koka0f5v-ITE-IP-6="5") and not(isnull(koka0f5v-ITE-IP-6)) ) or (koka0f5v-ITE-IP-10="5" and not(isnull(koka0f5v-ITE-IP-10)) ) or (koka0f5v-ITE-IP-8="5" and not(isnull(koka0f5v-ITE-IP-8)) ) or (koka0f5v-ITE-IP-9="1" and not(isnull(koka0f5v-ITE-IP-9)) ) or (koka0f5v-ITE-IP-7="3" and not(isnull(koka0f5v-ITE-IP-7)) ) or (koka0f5v-ITE-IP-4="0" and koka0f5v-ITE-IP-5="0")) + + + + fr.insee + koka0f5v-ITE-THEN + 1 + Sequence + + + + fr.insee + koka0f5v-ITE-THEN + 1 + + + + + fr.insee + jsygk7m7 + 1 + Sequence + + + + fr.insee + kkcc8cqi-ITE + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + kkcc8cqi-ITE-IP-1 + 1 + + persplus15AGE + + + + fr.insee + kkcc8cqi-ITE-IP-2 + 1 + + persplus15TR + + + + + fr.insee + ksew6khf-GOP + 1 + OutParameter + + + fr.insee + kkcc8cqi-ITE-IP-1 + 1 + InParameter + + + + + fr.insee + lfwlwjes-GOP + 1 + OutParameter + + + fr.insee + kkcc8cqi-ITE-IP-2 + 1 + InParameter + + + not((kkcc8cqi-ITE-IP-2="0" and kkcc8cqi-ITE-IP-1 ="0")) + + + + fr.insee + kkcc8cqi-ITE-THEN + 1 + Sequence + + + + fr.insee + kkcc8cqi-ITE-THEN + 1 + + + + + fr.insee + joio33nc + 1 + Sequence + + + + fr.insee + kks6bbzr + 1 + + A définir + + + Correction adresse + + hideable + + + vtl + + fr.insee + kks6bbzr-IP-1 + 1 + + CADR + + + + + fr.insee + kb9hlpdc-QOP-kb9ht73s + 1 + OutParameter + + + fr.insee + kks6bbzr-IP-1 + 1 + InParameter + + + kks6bbzr-IP-1 = "2" + + + + fr.insee + kks6bbzr-THEN + 1 + Sequence + + + + fr.insee + kks6bbzr-THEN + 1 + + + + + fr.insee + krp3zark-SI + 1 + StatementItem + + + fr.insee + krp3lw6x-SI + 1 + StatementItem + + + fr.insee + kbakywwy-QC + 1 + QuestionConstruct + + + fr.insee + kbal4bzb-QC + 1 + QuestionConstruct + + + fr.insee + kbal4bzb-CI-0 + 1 + ComputationItem + + + fr.insee + kbalhn4i-QC + 1 + QuestionConstruct + + + fr.insee + kbal8crw-QC + 1 + QuestionConstruct + + + fr.insee + kbal8crw-CI-0 + 1 + ComputationItem + + + fr.insee + kbal9dwk-QC + 1 + QuestionConstruct + + + fr.insee + kbal9dwk-CI-0 + 1 + ComputationItem + + + + fr.insee + kqwehqob + 1 + + A définir + + + si déménagement + + hideable + + + vtl + + fr.insee + kqwehqob-IP-1 + 1 + + CADR + + + + + fr.insee + kb9hlpdc-QOP-kb9ht73s + 1 + OutParameter + + + fr.insee + kqwehqob-IP-1 + 1 + InParameter + + + kqwehqob-IP-1 = "3" + + + + fr.insee + kqwehqob-THEN + 1 + Sequence + + + + fr.insee + kqwehqob-THEN + 1 + + + + + fr.insee + kqwen63d + 1 + Sequence + + + + fr.insee + kqwhfgbp + 1 + + A définir + + + si connaissance du nom des nouveaux occupants + + hideable + + + vtl + + fr.insee + kqwhfgbp-IP-1 + 1 + + INDNVOCC + + + + + fr.insee + kqweh61i-QOP-kqwet1gs + 1 + OutParameter + + + fr.insee + kqwhfgbp-IP-1 + 1 + InParameter + + + kqwhfgbp-IP-1 = "1" + + + + fr.insee + kqwhfgbp-THEN + 1 + Sequence + + + + fr.insee + kqwhfgbp-THEN + 1 + + + + + fr.insee + kqwg4t12-SI + 1 + StatementItem + + + fr.insee + kqwga16w-QC + 1 + QuestionConstruct + + + fr.insee + kqwfswjj-QC + 1 + QuestionConstruct + + + fr.insee + kqwfedoy-QC + 1 + QuestionConstruct + + + fr.insee + kqwg9azb-QC + 1 + QuestionConstruct + + + fr.insee + kr0e0pav-QC + 1 + QuestionConstruct + + + fr.insee + kr0ee3u2-QC + 1 + QuestionConstruct + + + + fr.insee + kkzirf74 + 1 + + A définir + + + Filtre sur le nombre d'habitants + + hideable + + + vtl + + fr.insee + kkzirf74-IP-1 + 1 + + CADR + + + + + fr.insee + kb9hlpdc-QOP-kb9ht73s + 1 + OutParameter + + + fr.insee + kkzirf74-IP-1 + 1 + InParameter + + + kkzirf74-IP-1 = "1" or kkzirf74-IP-1 = "2" or isnull(kkzirf74-IP-1) + + + + fr.insee + kkzirf74-THEN + 1 + Sequence + + + + fr.insee + kkzirf74-THEN + 1 + + + + + fr.insee + jruq5os5 + 1 + Sequence + + + fr.insee + kmnnjaf1 + 1 + Sequence + + + fr.insee + jn0cmg7j + 1 + Sequence + + + fr.insee + jojuy3c4 + 1 + Sequence + + + fr.insee + joicksrx + 1 + Sequence + + + fr.insee + kw0ugbm8 + 1 + IfThenElse + + + fr.insee + kv86jli3 + 1 + Sequence + + + fr.insee + kqa0lqp4 + 1 + Sequence + + + + fr.insee + kqijz2uj + 1 + + A définir + + + Date de naissance non renseigné + + hideable + + + vtl + + fr.insee + kqijz2uj-IP-1 + 1 + + DATENAIS + + + + + fr.insee + kmoouamz-QOP-kmoow49z + 1 + OutParameter + + + fr.insee + kqijz2uj-IP-1 + 1 + InParameter + + + nvl(kqijz2uj-IP-1,"")="" + + + + fr.insee + kqijz2uj-THEN + 1 + Sequence + + + + fr.insee + kqijz2uj-THEN + 1 + + + + + fr.insee + kmx6w6n5-QC + 1 + QuestionConstruct + + + + fr.insee + kmor8e7k + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + kmor8e7k-IP-1 + 1 + + persplus18TR + + + + fr.insee + kmor8e7k-IP-2 + 1 + + persplus18AGE + + + + fr.insee + kmor8e7k-IP-3 + 1 + + LNAIS + + + + + fr.insee + krd6p7hy-GOP + 1 + OutParameter + + + fr.insee + kmor8e7k-IP-1 + 1 + InParameter + + + + + fr.insee + krd6rkdl-GOP + 1 + OutParameter + + + fr.insee + kmor8e7k-IP-2 + 1 + InParameter + + + + + fr.insee + kmookacu-QOP-kmop5us3 + 1 + OutParameter + + + fr.insee + kmor8e7k-IP-3 + 1 + InParameter + + + kmor8e7k-IP-3 ="1" and (kmor8e7k-IP-1="1" or kmor8e7k-IP-2="1") + + + + fr.insee + kmor8e7k-THEN + 1 + Sequence + + + + fr.insee + kmor8e7k-THEN + 1 + + + + + fr.insee + kmor2z1x-QC + 1 + QuestionConstruct + + + + fr.insee + kmorem6m + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + kmorem6m-IP-1 + 1 + + LNAIS + + + + + fr.insee + kmookacu-QOP-kmop5us3 + 1 + OutParameter + + + fr.insee + kmorem6m-IP-1 + 1 + InParameter + + + kmorem6m-IP-1 = "2" + + + + fr.insee + kmorem6m-THEN + 1 + Sequence + + + + fr.insee + kmorem6m-THEN + 1 + + + + + fr.insee + kmorege9-QC + 1 + QuestionConstruct + + + + fr.insee + kmosdpt9 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + kmosdpt9-IP-1 + 1 + + NATIO1N3 + + + + + fr.insee + kmort6x9-QOP-kmos37e1 + 1 + OutParameter + + + fr.insee + kmosdpt9-IP-1 + 1 + InParameter + + + kmosdpt9-IP-1 = true + + + + fr.insee + kmosdpt9-THEN + 1 + Sequence + + + + fr.insee + kmosdpt9-THEN + 1 + + + + + fr.insee + kmos2yo6-QC + 1 + QuestionConstruct + + + + fr.insee + kpaux49o + 1 + + A définir + + + Hors répondant + + hideable + + + vtl + + fr.insee + kpaux49o-IP-1 + 1 + + PRENOMREF + + + + fr.insee + kpaux49o-IP-2 + 1 + + PRENOM + + + + + fr.insee + kpauiid9-GOP + 1 + OutParameter + + + fr.insee + kpaux49o-IP-1 + 1 + InParameter + + + + + fr.insee + kq7uo7yd-GOP + 1 + OutParameter + + + fr.insee + kpaux49o-IP-2 + 1 + InParameter + + + kpaux49o-IP-2 <> kpaux49o-IP-1 + + + + fr.insee + kpaux49o-THEN + 1 + Sequence + + + + fr.insee + kpaux49o-THEN + 1 + + + + + fr.insee + kmw4revw-QC + 1 + QuestionConstruct + + + + fr.insee + kvl70bp3 + 1 + + A définir + + + Hors conjoint + + hideable + + + vtl + + fr.insee + kvl70bp3-IP-1 + 1 + + PRENOMREF + + + + fr.insee + kvl70bp3-IP-2 + 1 + + PRENOM + + + + fr.insee + kvl70bp3-IP-3 + 1 + + LIEN + + + + + fr.insee + kpauiid9-GOP + 1 + OutParameter + + + fr.insee + kvl70bp3-IP-1 + 1 + InParameter + + + + + fr.insee + kq7uo7yd-GOP + 1 + OutParameter + + + fr.insee + kvl70bp3-IP-2 + 1 + InParameter + + + + + fr.insee + kmw4revw-QOP-kmw5mxph + 1 + OutParameter + + + fr.insee + kvl70bp3-IP-3 + 1 + InParameter + + + (not(isnull(kvl70bp3-IP-3)) and kvl70bp3-IP-3<>"1") or (kvl70bp3-IP-2=kvl70bp3-IP-1) + + + + fr.insee + kvl70bp3-THEN + 1 + Sequence + + + + fr.insee + kvl70bp3-THEN + 1 + + + + + fr.insee + kmw65fpx + 1 + IfThenElse + + + + fr.insee + kmw65fpx + 1 + + A définir + + + + de 18 ans + + hideable + + + vtl + + fr.insee + kmw65fpx-IP-1 + 1 + + persplus18TR + + + + fr.insee + kmw65fpx-IP-2 + 1 + + persplus18AGE + + + + + fr.insee + krd6p7hy-GOP + 1 + OutParameter + + + fr.insee + kmw65fpx-IP-1 + 1 + InParameter + + + + + fr.insee + krd6rkdl-GOP + 1 + OutParameter + + + fr.insee + kmw65fpx-IP-2 + 1 + InParameter + + + (kmw65fpx-IP-1="1" or kmw65fpx-IP-2="1") + + + + fr.insee + kmw65fpx-THEN + 1 + Sequence + + + + fr.insee + kmw65fpx-THEN + 1 + + + + + fr.insee + kod271pp-QC + 1 + QuestionConstruct + + + fr.insee + kmw5h275-QC + 1 + QuestionConstruct + + + + fr.insee + kqi5v895 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + kqi5v895-IP-1 + 1 + + UNLOG + + + + + fr.insee + kmx8sgeu-QOP-kn8zvq0g + 1 + OutParameter + + + fr.insee + kqi5v895-IP-1 + 1 + InParameter + + + kqi5v895-IP-1 = "2" + + + + fr.insee + kqi5v895-THEN + 1 + Sequence + + + + fr.insee + kqi5v895-THEN + 1 + + + + + fr.insee + kmx97ttc-QC + 1 + QuestionConstruct + + + fr.insee + kmx97tz1-QC + 1 + QuestionConstruct + + + fr.insee + kmx93med-QC + 1 + QuestionConstruct + + + fr.insee + kmxa1kq2 + 1 + IfThenElse + + + fr.insee + kqi5icjv + 1 + IfThenElse + + + + fr.insee + kmxa1kq2 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + kmxa1kq2-IP-1 + 1 + + DURLOG + + + + fr.insee + kmxa1kq2-IP-2 + 1 + + LOGENQ + + + + fr.insee + kmxa1kq2-IP-3 + 1 + + LOGAUT + + + + + fr.insee + kmx97ttc-QOP-kmx93bw6 + 1 + OutParameter + + + fr.insee + kmxa1kq2-IP-1 + 1 + InParameter + + + + + fr.insee + kmx97tz1-QOP-kmx95xeo + 1 + OutParameter + + + fr.insee + kmxa1kq2-IP-2 + 1 + InParameter + + + + + fr.insee + kmx93med-QOP-kmx9mse6 + 1 + OutParameter + + + fr.insee + kmxa1kq2-IP-3 + 1 + InParameter + + + kmxa1kq2-IP-1 = "2" and kmxa1kq2-IP-2 = "2" and kmxa1kq2-IP-3 = "2" + + + + fr.insee + kmxa1kq2-THEN + 1 + Sequence + + + + fr.insee + kmxa1kq2-THEN + 1 + + + + + fr.insee + kmx9punx-QC + 1 + QuestionConstruct + + + fr.insee + kmx9whfa + 1 + IfThenElse + + + + fr.insee + kmx9whfa + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + kmx9whfa-IP-1 + 1 + + GARDE + + + + + fr.insee + kmx9punx-QOP-kmx9hqtj + 1 + OutParameter + + + fr.insee + kmx9whfa-IP-1 + 1 + InParameter + + + kmx9whfa-IP-1 = "1" + + + + fr.insee + kmx9whfa-THEN + 1 + Sequence + + + + fr.insee + kmx9whfa-THEN + 1 + + + + + fr.insee + kmx9im0b-QC + 1 + QuestionConstruct + + + + fr.insee + kqi5icjv + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + kqi5icjv-IP-1 + 1 + + LOGAUT + + + + + fr.insee + kmx93med-QOP-kmx9mse6 + 1 + OutParameter + + + fr.insee + kqi5icjv-IP-1 + 1 + InParameter + + + kqi5icjv-IP-1 = "3" or kqi5icjv-IP-1 = "4" or kqi5icjv-IP-1 = "6" + + + + fr.insee + kqi5icjv-THEN + 1 + Sequence + + + + fr.insee + kqi5icjv-THEN + 1 + + + + + fr.insee + kqi4zdkk-QC + 1 + QuestionConstruct + + + fr.insee + kmx9lvv1 + 1 + IfThenElse + + + + fr.insee + kmx9lvv1 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + kmx9lvv1-IP-1 + 1 + + LOGCO + + + + + fr.insee + kqi4zdkk-QOP-kqi52gbh + 1 + OutParameter + + + fr.insee + kmx9lvv1-IP-1 + 1 + InParameter + + + kmx9lvv1-IP-1 = "1" + + + + fr.insee + kmx9lvv1-THEN + 1 + Sequence + + + + fr.insee + kmx9lvv1-THEN + 1 + + + + + fr.insee + kmx9pvyn-QC + 1 + QuestionConstruct + + + + fr.insee + kug1deqa + 1 + + A définir + + + Au moins une personne majeure déclarée dans le logement + + hideable + + + vtl + + fr.insee + kug1deqa-IP-1 + 1 + + nbpersmaj + + + + + fr.insee + kq98eqln-GOP + 1 + OutParameter + + + fr.insee + kug1deqa-IP-1 + 1 + InParameter + + + not(isnull(kug1deqa-IP-1)) and cast(kug1deqa-IP-1,integer)>0 + + + + fr.insee + kug1deqa-THEN + 1 + Sequence + + + + fr.insee + kug1deqa-THEN + 1 + + + + + fr.insee + kmx9wphw + 1 + Loop + + + + fr.insee + kmxfxjv6 + 1 + + A définir + + + Pas en emploi + + hideable + + + vtl + + fr.insee + kmxfxjv6-IP-1 + 1 + + SITUA + + + + + fr.insee + kmxfqrb1-QOP-kmxfw3tj + 1 + OutParameter + + + fr.insee + kmxfxjv6-IP-1 + 1 + InParameter + + + not(isnull(kmxfxjv6-IP-1)) and (kmxfxjv6-IP-1 = "2" or kmxfxjv6-IP-1 = "3" or kmxfxjv6-IP-1 = "4" or kmxfxjv6-IP-1 = "5" or kmxfxjv6-IP-1 = "6" or kmxfxjv6-IP-1 = "7") + + + + fr.insee + kmxfxjv6-THEN + 1 + Sequence + + + + fr.insee + kmxfxjv6-THEN + 1 + + + + + fr.insee + kmxg8ci7-QC + 1 + QuestionConstruct + + + + fr.insee + kqi8ilmm + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + kqi8ilmm-IP-1 + 1 + + GRDIPA + + + + + fr.insee + kmxgftfs-QOP-kmxggoi3 + 1 + OutParameter + + + fr.insee + kqi8ilmm-IP-1 + 1 + InParameter + + + kqi8ilmm-IP-1 = "1" and not(isnull(kqi8ilmm-IP-1)) + + + + fr.insee + kqi8ilmm-THEN + 1 + Sequence + + + + fr.insee + kqi8ilmm-THEN + 1 + + + + + fr.insee + kqi8s71l-QC + 1 + QuestionConstruct + + + + fr.insee + kqi8jm91 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + kqi8jm91-IP-1 + 1 + + GRDIPA + + + + + fr.insee + kmxgftfs-QOP-kmxggoi3 + 1 + OutParameter + + + fr.insee + kqi8jm91-IP-1 + 1 + InParameter + + + (not(isnull(kqi8jm91-IP-1)) and kqi8jm91-IP-1 = "8") + + + + fr.insee + kqi8jm91-THEN + 1 + Sequence + + + + fr.insee + kqi8jm91-THEN + 1 + + + + + fr.insee + kqi8mfos-QC + 1 + QuestionConstruct + + + + fr.insee + kpboq7j6 + 1 + + A définir + + + En emploi + + hideable + + + vtl + + fr.insee + kpboq7j6-IP-1 + 1 + + EMPLOI + + + + + fr.insee + kqi7gwzb-GOP + 1 + OutParameter + + + fr.insee + kpboq7j6-IP-1 + 1 + InParameter + + + (not(isnull(kpboq7j6-IP-1)) and kpboq7j6-IP-1 = "1") + + + + fr.insee + kpboq7j6-THEN + 1 + Sequence + + + + fr.insee + kpboq7j6-THEN + 1 + + + + + fr.insee + kp4dw3br-QC + 1 + QuestionConstruct + + + fr.insee + kvjdpxin + 1 + IfThenElse + + + + fr.insee + kvjdpxin + 1 + + A définir + + + si télétravail + + hideable + + + vtl + + fr.insee + kvjdpxin-IP-1 + 1 + + TELET + + + + + fr.insee + kp4dw3br-QOP-kp4dj5dc + 1 + OutParameter + + + fr.insee + kvjdpxin-IP-1 + 1 + InParameter + + + kvjdpxin-IP-1="1" + + + + fr.insee + kvjdpxin-THEN + 1 + Sequence + + + + fr.insee + kvjdpxin-THEN + 1 + + + + + fr.insee + kvjb8q33-QC + 1 + QuestionConstruct + + + + fr.insee + lg58gb8d + 1 + + A définir + + + Si le ménage comporte au moins 2 personnes de plus de 15 ans, recherche du PRACT + + hideable + + + vtl + + fr.insee + lg58gb8d-IP-1 + 1 + + nbpers15 + + + + + fr.insee + lftfquwn-GOP + 1 + OutParameter + + + fr.insee + lg58gb8d-IP-1 + 1 + InParameter + + + cast(nvl(lg58gb8d-IP-1,0),integer) > 1 + + + + fr.insee + lg58gb8d-THEN + 1 + Sequence + + + + fr.insee + lg58gb8d-THEN + 1 + + + + + fr.insee + ley4go4m + 1 + Sequence + + + + fr.insee + l7kasgkd + 1 + + A définir + + + Pour les maisons, appartements et logements-foyer + + hideable + + + vtl + + fr.insee + l7kasgkd-IP-1 + 1 + + HTLC1 + + + + + fr.insee + kd8qd4ou-QOP-kd8q0swm + 1 + OutParameter + + + fr.insee + l7kasgkd-IP-1 + 1 + InParameter + + + nvl(l7kasgkd-IP-1, "") = "1" or nvl(l7kasgkd-IP-1 , "") = "2" or nvl(l7kasgkd-IP-1, "") = "3" + + + + fr.insee + l7kasgkd-THEN + 1 + Sequence + + + + fr.insee + l7kasgkd-THEN + 1 + + + + + fr.insee + l7kb07wt-QC + 1 + QuestionConstruct + + + + fr.insee + kp4bwxlx + 1 + + A définir + + + logement foyer + + hideable + + + vtl + + fr.insee + kp4bwxlx-IP-1 + 1 + + HTLC1 + + + + + fr.insee + kd8qd4ou-QOP-kd8q0swm + 1 + OutParameter + + + fr.insee + kp4bwxlx-IP-1 + 1 + InParameter + + + (not(isnull(kp4bwxlx-IP-1)) and kp4bwxlx-IP-1 = "3") + + + + fr.insee + kp4bwxlx-THEN + 1 + Sequence + + + + fr.insee + kp4bwxlx-THEN + 1 + + + + + fr.insee + kp4b8f63-QC + 1 + QuestionConstruct + + + fr.insee + kp4c9p2y + 1 + IfThenElse + + + + fr.insee + kp4c9p2y + 1 + + A définir + + + foyer ou résidence pour personnes agées + + hideable + + + vtl + + fr.insee + kp4c9p2y-IP-1 + 1 + + FOYPAGEES + + + + + fr.insee + kp4b8f63-QOP-kp4buj00 + 1 + OutParameter + + + fr.insee + kp4c9p2y-IP-1 + 1 + InParameter + + + kp4c9p2y-IP-1="1" and not(isnull(kp4c9p2y-IP-1)) + + + + fr.insee + kp4c9p2y-THEN + 1 + Sequence + + + + fr.insee + kp4c9p2y-THEN + 1 + + + + + fr.insee + kp4bwrb9-QC + 1 + QuestionConstruct + + + + fr.insee + kks6ik7e + 1 + + A définir + + + Filtre immeuble + + hideable + + + vtl + + fr.insee + kks6ik7e-IP-1 + 1 + + HTLC1 + + + + + fr.insee + kd8qd4ou-QOP-kd8q0swm + 1 + OutParameter + + + fr.insee + kks6ik7e-IP-1 + 1 + InParameter + + + (not(isnull(kks6ik7e-IP-1)) and kks6ik7e-IP-1 = "6") + + + + fr.insee + kks6ik7e-THEN + 1 + Sequence + + + + fr.insee + kks6ik7e-THEN + 1 + + + + + fr.insee + kbgi5n3g-QC + 1 + QuestionConstruct + + + fr.insee + kbgi5n3g-CI-0 + 1 + ComputationItem + + + + fr.insee + kks71hik + 1 + + A définir + + + maison individuelle + + hideable + + + vtl + + fr.insee + kks71hik-IP-1 + 1 + + HTLC1 + + + + fr.insee + kks71hik-IP-2 + 1 + + INDCOLL + + + + + fr.insee + kd8qd4ou-QOP-kd8q0swm + 1 + OutParameter + + + fr.insee + kks71hik-IP-1 + 1 + InParameter + + + + + fr.insee + kbgi5n3g-QOP-kbgif8i8 + 1 + OutParameter + + + fr.insee + kks71hik-IP-2 + 1 + InParameter + + + kks71hik-IP-1 = "1" or kks71hik-IP-2 = "2" + + + + fr.insee + kks71hik-THEN + 1 + Sequence + + + + fr.insee + kks71hik-THEN + 1 + + + + + fr.insee + kbgigljc-QC + 1 + QuestionConstruct + + + fr.insee + kbgim4v3-QC + 1 + QuestionConstruct + + + fr.insee + kbgim4v3-CI-0 + 1 + ComputationItem + + + + fr.insee + kks70xeh + 1 + + A définir + + + Immeuble collectif + + hideable + + + vtl + + fr.insee + kks70xeh-IP-1 + 1 + + HTLC1 + + + + fr.insee + kks70xeh-IP-2 + 1 + + INDCOLL + + + + + fr.insee + kd8qd4ou-QOP-kd8q0swm + 1 + OutParameter + + + fr.insee + kks70xeh-IP-1 + 1 + InParameter + + + + + fr.insee + kbgi5n3g-QOP-kbgif8i8 + 1 + OutParameter + + + fr.insee + kks70xeh-IP-2 + 1 + InParameter + + + kks70xeh-IP-1 = "2" or kks70xeh-IP-2 = "1" + + + + fr.insee + kks70xeh-THEN + 1 + Sequence + + + + fr.insee + kks70xeh-THEN + 1 + + + + + fr.insee + kbgidvnm-QC + 1 + QuestionConstruct + + + fr.insee + kbgigafp-QC + 1 + QuestionConstruct + + + fr.insee + kbgigafp-CI-0 + 1 + ComputationItem + + + + fr.insee + kp4d9yw7 + 1 + + A définir + + + Immeuble ou maison de 2006 ou plus + + hideable + + + vtl + + fr.insee + kp4d9yw7-IP-1 + 1 + + IAATC + + + + + fr.insee + kbghszh6-QOP-kbgi0wp8 + 1 + OutParameter + + + fr.insee + kp4d9yw7-IP-1 + 1 + InParameter + + + (not(isnull(kp4d9yw7-IP-1)) and kp4d9yw7-IP-1 = "6") + + + + fr.insee + kp4d9yw7-THEN + 1 + Sequence + + + + fr.insee + kp4d9yw7-THEN + 1 + + + + + fr.insee + kbghz7mp-QC + 1 + QuestionConstruct + + + fr.insee + kbghz7mp-CI-0 + 1 + ComputationItem + + + + fr.insee + klut1j4k + 1 + + A définir + + + Si usufruitier et plus d'une personne dans le ménage + + hideable + + + vtl + + fr.insee + klut1j4k-IP-1 + 1 + + NBHAB + + + + fr.insee + klut1j4k-IP-2 + 1 + + STOC1 + + + + + fr.insee + kbc1b4k2-QOP-kbc1oors + 1 + OutParameter + + + fr.insee + klut1j4k-IP-1 + 1 + InParameter + + + + + fr.insee + jn0cttir-QOP-jn0dct54 + 1 + OutParameter + + + fr.insee + klut1j4k-IP-2 + 1 + InParameter + + + klut1j4k-IP-2 = "3" and cast(klut1j4k-IP-1,integer) > 1 + + + + fr.insee + klut1j4k-THEN + 1 + Sequence + + + + fr.insee + klut1j4k-THEN + 1 + + + + + fr.insee + klusnxnh-QC + 1 + QuestionConstruct + + + + fr.insee + l7j3tfwj + 1 + + A définir + + + Si présence d'un ami ou colocataire dans le ménage + + hideable + + + vtl + + fr.insee + l7j3tfwj-IP-1 + 1 + + nbpersamiscoloc + + + + fr.insee + l7j3tfwj-IP-2 + 1 + + STOC1 + + + + + fr.insee + l7j3nlde-GOP + 1 + OutParameter + + + fr.insee + l7j3tfwj-IP-1 + 1 + InParameter + + + + + fr.insee + jn0cttir-QOP-jn0dct54 + 1 + OutParameter + + + fr.insee + l7j3tfwj-IP-2 + 1 + InParameter + + + nvl(l7j3tfwj-IP-2 ,"") = "4" and cast(l7j3tfwj-IP-1,integer) >= 1 + + + + fr.insee + l7j3tfwj-THEN + 1 + Sequence + + + + fr.insee + l7j3tfwj-THEN + 1 + + + + + fr.insee + l7j247p7-QC + 1 + QuestionConstruct + + + + fr.insee + l95f2ihe + 1 + + A définir + + + si locataire + + hideable + + + vtl + + fr.insee + l95f2ihe-IP-1 + 1 + + STOC1 + + + + + fr.insee + jn0cttir-QOP-jn0dct54 + 1 + OutParameter + + + fr.insee + l95f2ihe-IP-1 + 1 + InParameter + + + nvl(l95f2ihe-IP-1 ,"") = "4" + + + + fr.insee + l95f2ihe-THEN + 1 + Sequence + + + + fr.insee + l95f2ihe-THEN + 1 + + + + + fr.insee + l95euppt-QC + 1 + QuestionConstruct + + + + fr.insee + kl9c0p6t + 1 + + A définir + + + filtre sur les propriétaires + + hideable + + + vtl + + fr.insee + kl9c0p6t-IP-1 + 1 + + STOC + + + + + fr.insee + klutbpfw-GOP + 1 + OutParameter + + + fr.insee + kl9c0p6t-IP-1 + 1 + InParameter + + + (not(isnull(kl9c0p6t-IP-1)) and (kl9c0p6t-IP-1="1" or kl9c0p6t-IP-1="2")) + + + + fr.insee + kl9c0p6t-THEN + 1 + Sequence + + + + fr.insee + kl9c0p6t-THEN + 1 + + + + + fr.insee + jn0e3nhg-QC + 1 + QuestionConstruct + + + + fr.insee + kl9hjrhm + 1 + + A définir + + + test filtre STOCA + Présence d'une personne majeur dans le logement autre que le répondant et son conjoint + + hideable + + + vtl + + fr.insee + kl9hjrhm-IP-1 + 1 + + filtre_autrepers + + + + fr.insee + kl9hjrhm-IP-2 + 1 + + STOC1 + + + + + fr.insee + kue5ccwr-GOP + 1 + OutParameter + + + fr.insee + kl9hjrhm-IP-1 + 1 + InParameter + + + + + fr.insee + jn0cttir-QOP-jn0dct54 + 1 + OutParameter + + + fr.insee + kl9hjrhm-IP-2 + 1 + InParameter + + + not(isnull(kl9hjrhm-IP-2)) and (kl9hjrhm-IP-2="1" or kl9hjrhm-IP-2="2" or kl9hjrhm-IP-2="3" or kl9hjrhm-IP-2="4") and kl9hjrhm-IP-1="1" + + + + fr.insee + kl9hjrhm-THEN + 1 + Sequence + + + + fr.insee + kl9hjrhm-THEN + 1 + + + + + fr.insee + kl809dku + 1 + Loop + + + + fr.insee + ko9tvubd + 1 + + A définir + + + Propriétaires + + hideable + + + vtl + + fr.insee + ko9tvubd-IP-1 + 1 + + STOC + + + + fr.insee + ko9tvubd-IP-2 + 1 + + STOC1 + + + + + fr.insee + klutbpfw-GOP + 1 + OutParameter + + + fr.insee + ko9tvubd-IP-1 + 1 + InParameter + + + + + fr.insee + jn0cttir-QOP-jn0dct54 + 1 + OutParameter + + + fr.insee + ko9tvubd-IP-2 + 1 + InParameter + + + (not(isnull(ko9tvubd-IP-2)) and (ko9tvubd-IP-1="1" or ko9tvubd-IP-1="2")) + + + + fr.insee + ko9tvubd-THEN + 1 + Sequence + + + + fr.insee + ko9tvubd-THEN + 1 + + + + + fr.insee + ko9tiu0f-QC + 1 + QuestionConstruct + + + fr.insee + ko9tiu0f-CI-0 + 1 + ComputationItem + + + + fr.insee + ko9thgnw + 1 + + A définir + + + Usufruitier + + hideable + + + vtl + + fr.insee + ko9thgnw-IP-1 + 1 + + STOC + + + + fr.insee + ko9thgnw-IP-2 + 1 + + STOC1 + + + + + fr.insee + klutbpfw-GOP + 1 + OutParameter + + + fr.insee + ko9thgnw-IP-1 + 1 + InParameter + + + + + fr.insee + jn0cttir-QOP-jn0dct54 + 1 + OutParameter + + + fr.insee + ko9thgnw-IP-2 + 1 + InParameter + + + not(isnull(ko9thgnw-IP-2)) and ko9thgnw-IP-1="3" + + + + fr.insee + ko9thgnw-THEN + 1 + Sequence + + + + fr.insee + ko9thgnw-THEN + 1 + + + + + fr.insee + ko9r0alc-QC + 1 + QuestionConstruct + + + fr.insee + ko9r0alc-CI-0 + 1 + ComputationItem + + + + fr.insee + ko9u0wlk + 1 + + A définir + + + locataire + + hideable + + + vtl + + fr.insee + ko9u0wlk-IP-1 + 1 + + STOC + + + + fr.insee + ko9u0wlk-IP-2 + 1 + + STOC1 + + + + fr.insee + ko9u0wlk-IP-3 + 1 + + LBA + + + + + fr.insee + klutbpfw-GOP + 1 + OutParameter + + + fr.insee + ko9u0wlk-IP-1 + 1 + InParameter + + + + + fr.insee + jn0cttir-QOP-jn0dct54 + 1 + OutParameter + + + fr.insee + ko9u0wlk-IP-2 + 1 + InParameter + + + + + fr.insee + l95euppt-QOP-l95eseii + 1 + OutParameter + + + fr.insee + ko9u0wlk-IP-3 + 1 + InParameter + + + (not(isnull(ko9u0wlk-IP-2)) and ko9u0wlk-IP-1="4" and nvl(ko9u0wlk-IP-3,"")="1") + + + + fr.insee + ko9u0wlk-THEN + 1 + Sequence + + + + fr.insee + ko9u0wlk-THEN + 1 + + + + + fr.insee + ko9t45t9-QC + 1 + QuestionConstruct + + + fr.insee + ko9t45t9-CI-0 + 1 + ComputationItem + + + + fr.insee + kp5qydnb + 1 + + A définir + + + Hors conjoint du répondant et hors enfants du répondant et de son conjoint + + hideable + + + vtl + + fr.insee + kp5qydnb-IP-1 + 1 + + STOCA + + + + fr.insee + kp5qydnb-IP-2 + 1 + + LIEN + + + + + fr.insee + kp5n3jf8-GOP + 1 + OutParameter + + + fr.insee + kp5qydnb-IP-1 + 1 + InParameter + + + + + fr.insee + kmw4revw-QOP-kmw5mxph + 1 + OutParameter + + + fr.insee + kp5qydnb-IP-2 + 1 + InParameter + + + (kp5qydnb-IP-1="2" and not(isnull(kp5qydnb-IP-1))) and ((kp5qydnb-IP-2<>"1" and kp5qydnb-IP-2<>"3") or isnull(kp5qydnb-IP-2)) + + + + fr.insee + kp5qydnb-THEN + 1 + Sequence + + + + fr.insee + kp5qydnb-THEN + 1 + + + + + fr.insee + knoqewds-QC + 1 + QuestionConstruct + + + + fr.insee + kw3tyol0 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + kw3tyol0-IP-1 + 1 + + filtre_autrepers + + + + fr.insee + kw3tyol0-IP-2 + 1 + + filtre_HebEnfant + + + + fr.insee + kw3tyol0-IP-3 + 1 + + STOC1 + + + + + fr.insee + kue5ccwr-GOP + 1 + OutParameter + + + fr.insee + kw3tyol0-IP-1 + 1 + InParameter + + + + + fr.insee + kw3s7rxu-GOP + 1 + OutParameter + + + fr.insee + kw3tyol0-IP-2 + 1 + InParameter + + + + + fr.insee + jn0cttir-QOP-jn0dct54 + 1 + OutParameter + + + fr.insee + kw3tyol0-IP-3 + 1 + InParameter + + + not(isnull(kw3tyol0-IP-3)) and (kw3tyol0-IP-3="1" or kw3tyol0-IP-3="2" or kw3tyol0-IP-3="3" or kw3tyol0-IP-3="4") and kw3tyol0-IP-1="1" and kw3tyol0-IP-2="1" + + + + fr.insee + kw3tyol0-THEN + 1 + Sequence + + + + fr.insee + kw3tyol0-THEN + 1 + + + + + fr.insee + koka314y + 1 + Loop + + + + fr.insee + knora43u + 1 + + A définir + + + logement indépendant hors période d'études + + hideable + + + vtl + + fr.insee + knora43u-IP-1 + 1 + + EPAS1 + + + + + fr.insee + joh8lowu-QOP-kp5vmw5r + 1 + OutParameter + + + fr.insee + knora43u-IP-1 + 1 + InParameter + + + knora43u-IP-1="1" + + + + fr.insee + knora43u-THEN + 1 + Sequence + + + + fr.insee + knora43u-THEN + 1 + + + + + fr.insee + kppmespv-QC + 1 + QuestionConstruct + + + fr.insee + kppmtrft + 1 + IfThenElse + + + + fr.insee + kppmtrft + 1 + + A définir + + + pas chez les parents uniquement pour les vacances, week-ends + + hideable + + + vtl + + fr.insee + kppmtrft-IP-1 + 1 + + ERETOUR + + + + + fr.insee + kppmespv-QOP-kppmi2n2 + 1 + OutParameter + + + fr.insee + kppmtrft-IP-1 + 1 + InParameter + + + (isnull(kppmtrft-IP-1) or (kppmtrft-IP-1<>"1")) + + + + fr.insee + kppmtrft-THEN + 1 + Sequence + + + + fr.insee + kppmtrft-THEN + 1 + + + + + fr.insee + joh8ixt2-QC + 1 + QuestionConstruct + + + fr.insee + kcnccgjg-QC + 1 + QuestionConstruct + + + fr.insee + knorcs48-QC + 1 + QuestionConstruct + + + fr.insee + l9cyorpy + 1 + IfThenElse + + + + fr.insee + l9cyorpy + 1 + + A définir + + + si la personne est hébergée depuis moins de 10 ans + + hideable + + + vtl + + fr.insee + l9cyorpy-IP-1 + 1 + + EPASC + + + + + fr.insee + kcnccgjg-QOP-kcnch682 + 1 + OutParameter + + + fr.insee + l9cyorpy-IP-1 + 1 + InParameter + + + not(nvl(l9cyorpy-IP-1,"")="5") + + + + fr.insee + l9cyorpy-THEN + 1 + Sequence + + + + fr.insee + l9cyorpy-THEN + 1 + + + + + fr.insee + kp5vtjh4-QC + 1 + QuestionConstruct + + + + fr.insee + kp5wj6we + 1 + + A définir + + + Enfants n'ayant pas eu de logement indépendant (hors période d'étude), hors étudiants + + hideable + + + vtl + + fr.insee + kp5wj6we-IP-1 + 1 + + EPAS1 + + + + + fr.insee + joh8lowu-QOP-kp5vmw5r + 1 + OutParameter + + + fr.insee + kp5wj6we-IP-1 + 1 + InParameter + + + (kp5wj6we-IP-1="2" or kp5wj6we-IP-1="3") + + + + fr.insee + kp5wj6we-THEN + 1 + Sequence + + + + fr.insee + kp5wj6we-THEN + 1 + + + + + fr.insee + joirni0x-QC + 1 + QuestionConstruct + + + fr.insee + knpoah1p + 1 + IfThenElse + + + fr.insee + knpo0vz2 + 1 + IfThenElse + + + fr.insee + knpo0kd6 + 1 + IfThenElse + + + + fr.insee + knpoah1p + 1 + + A définir + + + envisage un logement indépendant dans les 6 mois + + hideable + + + vtl + + fr.insee + knpoah1p-IP-1 + 1 + + EPROJ + + + + + fr.insee + joirni0x-QOP-joirzvfg + 1 + OutParameter + + + fr.insee + knpoah1p-IP-1 + 1 + InParameter + + + knpoah1p-IP-1 = "1" and not(isnull(knpoah1p-IP-1)) + + + + fr.insee + knpoah1p-THEN + 1 + Sequence + + + + fr.insee + knpoah1p-THEN + 1 + + + + + fr.insee + joirve2f-QC + 1 + QuestionConstruct + + + + fr.insee + knpo0vz2 + 1 + + A définir + + + n'envisage pas un logement indépendant dans les 6 mois + + hideable + + + vtl + + fr.insee + knpo0vz2-IP-1 + 1 + + EPROJ + + + + + fr.insee + joirni0x-QOP-joirzvfg + 1 + OutParameter + + + fr.insee + knpo0vz2-IP-1 + 1 + InParameter + + + knpo0vz2-IP-1="2" or knpo0vz2-IP-1="3" + + + + fr.insee + knpo0vz2-THEN + 1 + Sequence + + + + fr.insee + knpo0vz2-THEN + 1 + + + + + fr.insee + joirtz3j-QC + 1 + QuestionConstruct + + + + fr.insee + knpo0kd6 + 1 + + A définir + + + pas les moyens financiers d'obtenir un logement indépendant + + hideable + + + vtl + + fr.insee + knpo0kd6-IP-1 + 1 + + EPROJB + + + + fr.insee + knpo0kd6-IP-2 + 1 + + EPROJC + + + + + fr.insee + joirve2f-QOP-jois1vwn + 1 + OutParameter + + + fr.insee + knpo0kd6-IP-1 + 1 + InParameter + + + + + fr.insee + joirtz3j-QOP-joirpdmw + 1 + OutParameter + + + fr.insee + knpo0kd6-IP-2 + 1 + InParameter + + + knpo0kd6-IP-1="3" or knpo0kd6-IP-2="3" + + + + fr.insee + knpo0kd6-THEN + 1 + Sequence + + + + fr.insee + knpo0kd6-THEN + 1 + + + + + fr.insee + joisp3u9-QC + 1 + QuestionConstruct + + + + fr.insee + kus69gmm + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + kus69gmm-IP-1 + 1 + + filtre_autrepers + + + + fr.insee + kus69gmm-IP-2 + 1 + + filtre_HEB + + + + fr.insee + kus69gmm-IP-3 + 1 + + STOC1 + + + + + fr.insee + kue5ccwr-GOP + 1 + OutParameter + + + fr.insee + kus69gmm-IP-1 + 1 + InParameter + + + + + fr.insee + kw3shdld-GOP + 1 + OutParameter + + + fr.insee + kus69gmm-IP-2 + 1 + InParameter + + + + + fr.insee + jn0cttir-QOP-jn0dct54 + 1 + OutParameter + + + fr.insee + kus69gmm-IP-3 + 1 + InParameter + + + not(isnull(kus69gmm-IP-3)) and (kus69gmm-IP-3="1" or kus69gmm-IP-3="2" or kus69gmm-IP-3="3" or kus69gmm-IP-3="4") and kus69gmm-IP-1="1" and kus69gmm-IP-2="1" + + + + fr.insee + kus69gmm-THEN + 1 + Sequence + + + + fr.insee + kus69gmm-THEN + 1 + + + + + fr.insee + koka0f5v + 1 + Loop + + + + fr.insee + kpppw3yo + 1 + + A définir + + + pas en couple avec un des membres du ménage + + hideable + + + vtl + + fr.insee + kpppw3yo-IP-1 + 1 + + EAMID11 + + + + + fr.insee + knpolbu3-QOP-l3d88g6a + 1 + OutParameter + + + fr.insee + kpppw3yo-IP-1 + 1 + InParameter + + + isnull(kpppw3yo-IP-1) or (kpppw3yo-IP-1 = false) + + + + fr.insee + kpppw3yo-THEN + 1 + Sequence + + + + fr.insee + kpppw3yo-THEN + 1 + + + + + fr.insee + l9cyooeu + 1 + IfThenElse + + + fr.insee + joismxwd-QC + 1 + QuestionConstruct + + + fr.insee + kqv3atis-QC + 1 + QuestionConstruct + + + fr.insee + kqv44b8j-QC + 1 + QuestionConstruct + + + + fr.insee + l9cyooeu + 1 + + A définir + + + si la personne est hébergée depuis moins de 10 ans + + hideable + + + vtl + + fr.insee + l9cyooeu-IP-1 + 1 + + EAMIA + + + + + fr.insee + joisq6l3-QOP-joisit3j + 1 + OutParameter + + + fr.insee + l9cyooeu-IP-1 + 1 + InParameter + + + not(nvl(l9cyooeu-IP-1,"")="5") + + + + fr.insee + l9cyooeu-THEN + 1 + Sequence + + + + fr.insee + l9cyooeu-THEN + 1 + + + + + fr.insee + kppptqlu-QC + 1 + QuestionConstruct + + + + fr.insee + kp6j9dpu + 1 + + A définir + + + MAA2A non renseigné + + hideable + + + vtl + + fr.insee + kp6j9dpu-IP-1 + 1 + + MAA2A + + + + + fr.insee + jojtbo85-QOP-lera9at4 + 1 + OutParameter + + + fr.insee + kp6j9dpu-IP-1 + 1 + InParameter + + + isnull(kp6j9dpu-IP-1) + + + + fr.insee + kp6j9dpu-THEN + 1 + Sequence + + + + fr.insee + kp6j9dpu-THEN + 1 + + + + + fr.insee + kp6iwd90-QC + 1 + QuestionConstruct + + + + fr.insee + kl9j48pi + 1 + + A définir + + + si l'installation date d'il y a 4 ans ou moins + + hideable + + + vtl + + fr.insee + kl9j48pi-IP-1 + 1 + + ANNEENQmoins4 + + + + fr.insee + kl9j48pi-IP-2 + 1 + + MAA2A + + + + + fr.insee + kocm65ii-GOP + 1 + OutParameter + + + fr.insee + kl9j48pi-IP-1 + 1 + InParameter + + + + + fr.insee + jojtbo85-QOP-lera9at4 + 1 + OutParameter + + + fr.insee + kl9j48pi-IP-2 + 1 + InParameter + + + not(isnull(kl9j48pi-IP-2)) and (cast(kl9j48pi-IP-2,integer) >= cast(kl9j48pi-IP-1,integer)) + + + + fr.insee + kl9j48pi-THEN + 1 + Sequence + + + + fr.insee + kl9j48pi-THEN + 1 + + + + + fr.insee + jojt16mt-QC + 1 + QuestionConstruct + + + fr.insee + jojt16mt-CI-0 + 1 + ComputationItem + + + + fr.insee + kue52fg6 + 1 + + A définir + + + Le répondant a un conjoint + + hideable + + + vtl + + fr.insee + kue52fg6-IP-1 + 1 + + INDconj + + + + + fr.insee + kpcqbqrk-GOP + 1 + OutParameter + + + fr.insee + kue52fg6-IP-1 + 1 + InParameter + + + kue52fg6-IP-1 = "1" + + + + fr.insee + kue52fg6-THEN + 1 + Sequence + + + + fr.insee + kue52fg6-THEN + 1 + + + + + fr.insee + jojt3qxp-QC + 1 + QuestionConstruct + + + fr.insee + kl9kee8x + 1 + IfThenElse + + + + fr.insee + kl9kee8x + 1 + + A définir + + + si le conjoint de l'occupant principal n'est pas arrivé en même temps que lui + + hideable + + + vtl + + fr.insee + kl9kee8x-IP-1 + 1 + + MARRIVC + + + + + fr.insee + jojt3qxp-QOP-jojtagah + 1 + OutParameter + + + fr.insee + kl9kee8x-IP-1 + 1 + InParameter + + + kl9kee8x-IP-1 = "2" and not(isnull(kl9kee8x-IP-1 )) + + + + fr.insee + kl9kee8x-THEN + 1 + Sequence + + + + fr.insee + kl9kee8x-THEN + 1 + + + + + fr.insee + jojtnq9z-QC + 1 + QuestionConstruct + + + fr.insee + jojtnq9z-CI-0 + 1 + ComputationItem + + + fr.insee + kp6k0ap9 + 1 + IfThenElse + + + fr.insee + kl9kk36x + 1 + IfThenElse + + + + fr.insee + kp6k0ap9 + 1 + + A définir + + + Non réponse à MAA2AC + + hideable + + + vtl + + fr.insee + kp6k0ap9-IP-1 + 1 + + MAA2AC + + + + + fr.insee + jojtnq9z-QOP-leraafbf + 1 + OutParameter + + + fr.insee + kp6k0ap9-IP-1 + 1 + InParameter + + + isnull(kp6k0ap9-IP-1) + + + + fr.insee + kp6k0ap9-THEN + 1 + Sequence + + + + fr.insee + kp6k0ap9-THEN + 1 + + + + + fr.insee + kp6ja40b-QC + 1 + QuestionConstruct + + + + fr.insee + kl9kk36x + 1 + + A définir + + + Si le conjoint de l'occupant principal est arrivé il y a 4 ans ou moins + + hideable + + + vtl + + fr.insee + kl9kk36x-IP-1 + 1 + + ANNEENQmoins4 + + + + fr.insee + kl9kk36x-IP-2 + 1 + + MAA2AC + + + + + fr.insee + kocm65ii-GOP + 1 + OutParameter + + + fr.insee + kl9kk36x-IP-1 + 1 + InParameter + + + + + fr.insee + jojtnq9z-QOP-leraafbf + 1 + OutParameter + + + fr.insee + kl9kk36x-IP-2 + 1 + InParameter + + + not(isnull(kl9kk36x-IP-2)) and (cast(kl9kk36x-IP-2,integer) >= cast(kl9kk36x-IP-1,integer)) + + + + fr.insee + kl9kk36x-THEN + 1 + Sequence + + + + fr.insee + kl9kk36x-THEN + 1 + + + + + fr.insee + jor73af6-QC + 1 + QuestionConstruct + + + + fr.insee + kue5m4qp + 1 + + A définir + + + Présence d'une personne majeure dans le logement autre que le répondant et son conjoint + + hideable + + + vtl + + fr.insee + kue5m4qp-IP-1 + 1 + + filtre_autrepers + + + + + fr.insee + kue5ccwr-GOP + 1 + OutParameter + + + fr.insee + kue5m4qp-IP-1 + 1 + InParameter + + + kue5m4qp-IP-1="1" + + + + fr.insee + kue5m4qp-THEN + 1 + Sequence + + + + fr.insee + kue5m4qp-THEN + 1 + + + + + fr.insee + jojtsgsr-QC + 1 + QuestionConstruct + + + fr.insee + kp6kwnih + 1 + IfThenElse + + + + fr.insee + kp6kwnih + 1 + + A définir + + + Autre personne arrivée avant le répondant son conjoint + + hideable + + + vtl + + fr.insee + kp6kwnih-IP-1 + 1 + + MAA3 + + + + + fr.insee + jojtsgsr-QOP-jojtrf8n + 1 + OutParameter + + + fr.insee + kp6kwnih-IP-1 + 1 + InParameter + + + not(isnull(kp6kwnih-IP-1)) and kp6kwnih-IP-1="1" + + + + fr.insee + kp6kwnih-THEN + 1 + Sequence + + + + fr.insee + kp6kwnih-THEN + 1 + + + + + fr.insee + jojtutyy-QC + 1 + QuestionConstruct + + + fr.insee + jojtutyy-CI-0 + 1 + ComputationItem + + + fr.insee + jojtutyy-CI-1 + 1 + ComputationItem + + + fr.insee + kp6kvg07 + 1 + IfThenElse + + + + fr.insee + kp6kvg07 + 1 + + A définir + + + Arrivée de l'autre personne depuis plus ou moins 4ans + + hideable + + + vtl + + fr.insee + kp6kvg07-IP-1 + 1 + + ANNEENQmoins4 + + + + fr.insee + kp6kvg07-IP-2 + 1 + + MAA3A + + + + + fr.insee + kocm65ii-GOP + 1 + OutParameter + + + fr.insee + kp6kvg07-IP-1 + 1 + InParameter + + + + + fr.insee + jojtutyy-QOP-leranvj5 + 1 + OutParameter + + + fr.insee + kp6kvg07-IP-2 + 1 + InParameter + + + not(isnull(kp6kvg07-IP-2)) and (cast(kp6kvg07-IP-2,integer) >= cast(kp6kvg07-IP-1,integer)) + + + + fr.insee + kp6kvg07-THEN + 1 + Sequence + + + + fr.insee + kp6kvg07-THEN + 1 + + + + + fr.insee + jojtizrx-QC + 1 + QuestionConstruct + + + + fr.insee + l3ykh3ck + 1 + + A définir + + + Si Propriétaire + + hideable + + + vtl + + fr.insee + l3ykh3ck-IP-1 + 1 + + STOC + + + + + fr.insee + klutbpfw-GOP + 1 + OutParameter + + + fr.insee + l3ykh3ck-IP-1 + 1 + InParameter + + + nvl(l3ykh3ck-IP-1,"") ="1" or nvl(l3ykh3ck-IP-1,"")= "2" + + + + fr.insee + l3ykh3ck-THEN + 1 + Sequence + + + + fr.insee + l3ykh3ck-THEN + 1 + + + + + fr.insee + l3yket2i-QC + 1 + QuestionConstruct + + + + fr.insee + kkplqyr3 + 1 + + A définir + + + Filtre pour les cuisine séparée + + hideable + + + vtl + + fr.insee + kkplqyr3-IP-1 + 1 + + KCU1 + + + + + fr.insee + jojuueml-QOP-jojumdxu + 1 + OutParameter + + + fr.insee + kkplqyr3-IP-1 + 1 + InParameter + + + kkplqyr3-IP-1="1" and not(isnull(kkplqyr3-IP-1)) + + + + fr.insee + kkplqyr3-THEN + 1 + Sequence + + + + fr.insee + kkplqyr3-THEN + 1 + + + + + fr.insee + jojuno0d-QC + 1 + QuestionConstruct + + + + fr.insee + kue3m6gs + 1 + + A définir + + + Si au moins une personne du ménage est en télétravail + + hideable + + + vtl + + fr.insee + kue3m6gs-IP-1 + 1 + + nbperstelet + + + + + fr.insee + krdj37bc-GOP + 1 + OutParameter + + + fr.insee + kue3m6gs-IP-1 + 1 + InParameter + + + not(isnull(kue3m6gs-IP-1)) and (cast(kue3m6gs-IP-1,integer) >0) + + + + fr.insee + kue3m6gs-THEN + 1 + Sequence + + + + fr.insee + kue3m6gs-THEN + 1 + + + + + fr.insee + kp6n8gha + 1 + Sequence + + + + fr.insee + kkpmvugt + 1 + + A définir + + + Filtre sur l'existence de pièces à usage exclusivement professionnel + + hideable + + + vtl + + fr.insee + kkpmvugt-IP-1 + 1 + + HUP + + + + + fr.insee + jojuwst2-QOP-jojv5zcs + 1 + OutParameter + + + fr.insee + kkpmvugt-IP-1 + 1 + InParameter + + + kkpmvugt-IP-1="1" and not(isnull(kkpmvugt-IP-1)) + + + + fr.insee + kkpmvugt-THEN + 1 + Sequence + + + + fr.insee + kkpmvugt-THEN + 1 + + + + + fr.insee + jojv1e5e-QC + 1 + QuestionConstruct + + + fr.insee + jojv1e5e-CI-0 + 1 + ComputationItem + + + fr.insee + kkpnat8j + 1 + IfThenElse + + + + fr.insee + kkpnat8j + 1 + + A définir + + + Filtre sur l'existance d'au moins une pièce à usage exculsivement professionnel + + hideable + + + vtl + + fr.insee + kkpnat8j-IP-1 + 1 + + HUP + + + + fr.insee + kkpnat8j-IP-2 + 1 + + HPP + + + + + fr.insee + jojuwst2-QOP-jojv5zcs + 1 + OutParameter + + + fr.insee + kkpnat8j-IP-1 + 1 + InParameter + + + + + fr.insee + jojv1e5e-QOP-jojuuvbp + 1 + OutParameter + + + fr.insee + kkpnat8j-IP-2 + 1 + InParameter + + + cast(kkpnat8j-IP-2,integer) >0 and kkpnat8j-IP-1 ="1" + + + + fr.insee + kkpnat8j-THEN + 1 + Sequence + + + + fr.insee + kkpnat8j-THEN + 1 + + + + + fr.insee + jojuz9k3-QC + 1 + QuestionConstruct + + + + fr.insee + kkpnsz8f + 1 + + A définir + + + Filtre sur l'existence de pièces annexes + + hideable + + + vtl + + fr.insee + kkpnsz8f-IP-1 + 1 + + HUA + + + + + fr.insee + jojv79ut-QOP-jojv12lo + 1 + OutParameter + + + fr.insee + kkpnsz8f-IP-1 + 1 + InParameter + + + kkpnsz8f-IP-1 = "1" and not(isnull(kkpnsz8f-IP-1)) + + + + fr.insee + kkpnsz8f-THEN + 1 + Sequence + + + + fr.insee + kkpnsz8f-THEN + 1 + + + + + fr.insee + jojv3ha7-QC + 1 + QuestionConstruct + + + fr.insee + jojv3ha7-CI-0 + 1 + ComputationItem + + + fr.insee + kmd6vwnz + 1 + IfThenElse + + + + fr.insee + kmd6vwnz + 1 + + A définir + + + si au moins une pièce annexe + + hideable + + + vtl + + fr.insee + kmd6vwnz-IP-1 + 1 + + HPA + + + + + fr.insee + jojv3ha7-QOP-jojusenw + 1 + OutParameter + + + fr.insee + kmd6vwnz-IP-1 + 1 + InParameter + + + cast(kmd6vwnz-IP-1,integer) > 0 + + + + fr.insee + kmd6vwnz-THEN + 1 + Sequence + + + + fr.insee + kmd6vwnz-THEN + 1 + + + + + fr.insee + kmd70jlv + 1 + IfThenElse + + + fr.insee + klw4u49l + 1 + IfThenElse + + + fr.insee + klw5d4ei + 1 + IfThenElse + + + fr.insee + klw50zmr + 1 + IfThenElse + + + + fr.insee + kmd70jlv + 1 + + A définir + + + une pièce annexe + + hideable + + + vtl + + fr.insee + kmd70jlv-IP-1 + 1 + + HPA + + + + + fr.insee + jojv3ha7-QOP-jojusenw + 1 + OutParameter + + + fr.insee + kmd70jlv-IP-1 + 1 + InParameter + + + cast(kmd70jlv-IP-1,integer) = 1 + + + + fr.insee + kmd70jlv-THEN + 1 + Sequence + + + + fr.insee + kmd70jlv-THEN + 1 + + + + + fr.insee + kmd6o006-QC + 1 + QuestionConstruct + + + + fr.insee + klw4u49l + 1 + + A définir + + + A compléter avec : si plusieurs réponses à HULHUI + + hideable + + + vtl + + fr.insee + klw4u49l-IP-1 + 1 + + HPA + + + + + fr.insee + jojv3ha7-QOP-jojusenw + 1 + OutParameter + + + fr.insee + klw4u49l-IP-1 + 1 + InParameter + + + (not(isnull(klw4u49l-IP-1))) and (cast(klw4u49l-IP-1,integer) >1) + + + + fr.insee + klw4u49l-THEN + 1 + Sequence + + + + fr.insee + klw4u49l-THEN + 1 + + + + + fr.insee + kmcdiwdv-QC + 1 + QuestionConstruct + + + fr.insee + klw4c3tu + 1 + IfThenElse + + + fr.insee + klw4qqxo + 1 + IfThenElse + + + + fr.insee + klw4c3tu + 1 + + A définir + + + pièces annexes à usage personnel + + hideable + + + vtl + + fr.insee + klw4c3tu-IP-1 + 1 + + HULHUI21 + + + + fr.insee + klw4c3tu-IP-2 + 1 + + HULHUI22 + + + + fr.insee + klw4c3tu-IP-3 + 1 + + HULHUI23 + + + + + fr.insee + kmcdiwdv-QOP-kmd9jdka + 1 + OutParameter + + + fr.insee + klw4c3tu-IP-1 + 1 + InParameter + + + + + fr.insee + kmcdiwdv-QOP-kmd9qoms + 1 + OutParameter + + + fr.insee + klw4c3tu-IP-2 + 1 + InParameter + + + + + fr.insee + kmcdiwdv-QOP-kmd988n2 + 1 + OutParameter + + + fr.insee + klw4c3tu-IP-3 + 1 + InParameter + + + (klw4c3tu-IP-2) and (klw4c3tu-IP-1 or klw4c3tu-IP-3) + + + + fr.insee + klw4c3tu-THEN + 1 + Sequence + + + + fr.insee + klw4c3tu-THEN + 1 + + + + + fr.insee + jojuzbus-QC + 1 + QuestionConstruct + + + fr.insee + jojuzbus-CI-0 + 1 + ComputationItem + + + + fr.insee + klw4qqxo + 1 + + A définir + + + si pièce annexe réservé à un salarié + + hideable + + + vtl + + fr.insee + klw4qqxo-IP-1 + 1 + + HULHUI21 + + + + fr.insee + klw4qqxo-IP-2 + 1 + + HULHUI22 + + + + fr.insee + klw4qqxo-IP-3 + 1 + + HULHUI23 + + + + + fr.insee + kmcdiwdv-QOP-kmd9jdka + 1 + OutParameter + + + fr.insee + klw4qqxo-IP-1 + 1 + InParameter + + + + + fr.insee + kmcdiwdv-QOP-kmd9qoms + 1 + OutParameter + + + fr.insee + klw4qqxo-IP-2 + 1 + InParameter + + + + + fr.insee + kmcdiwdv-QOP-kmd988n2 + 1 + OutParameter + + + fr.insee + klw4qqxo-IP-3 + 1 + InParameter + + + (klw4qqxo-IP-3) and (klw4qqxo-IP-1 or klw4qqxo-IP-2) + + + + fr.insee + klw4qqxo-THEN + 1 + Sequence + + + + fr.insee + klw4qqxo-THEN + 1 + + + + + fr.insee + klv4iusu-QC + 1 + QuestionConstruct + + + fr.insee + klv4iusu-CI-0 + 1 + ComputationItem + + + + fr.insee + klw5d4ei + 1 + + A définir + + + si pièce annexe à usage personnel + + hideable + + + vtl + + fr.insee + klw5d4ei-IP-1 + 1 + + HULHUI1 + + + + fr.insee + klw5d4ei-IP-2 + 1 + + HULHUI22 + + + + + fr.insee + kmd6o006-QOP-kmd6yr7w + 1 + OutParameter + + + fr.insee + klw5d4ei-IP-1 + 1 + InParameter + + + + + fr.insee + kmcdiwdv-QOP-kmd9qoms + 1 + OutParameter + + + fr.insee + klw5d4ei-IP-2 + 1 + InParameter + + + (klw5d4ei-IP-1="2" or (klw5d4ei-IP-2)) + + + + fr.insee + klw5d4ei-THEN + 1 + Sequence + + + + fr.insee + klw5d4ei-THEN + 1 + + + + + fr.insee + jojv5bnw-QC + 1 + QuestionConstruct + + + + fr.insee + klw50zmr + 1 + + A définir + + + si pièce annexe réservé à un salarié + + hideable + + + vtl + + fr.insee + klw50zmr-IP-1 + 1 + + HULHUI1 + + + + fr.insee + klw50zmr-IP-2 + 1 + + HULHUI23 + + + + + fr.insee + kmd6o006-QOP-kmd6yr7w + 1 + OutParameter + + + fr.insee + klw50zmr-IP-1 + 1 + InParameter + + + + + fr.insee + kmcdiwdv-QOP-kmd988n2 + 1 + OutParameter + + + fr.insee + klw50zmr-IP-2 + 1 + InParameter + + + (klw50zmr-IP-1="3" or (klw50zmr-IP-2)) + + + + fr.insee + klw50zmr-THEN + 1 + Sequence + + + + fr.insee + klw50zmr-THEN + 1 + + + + + fr.insee + klw36l7v-QC + 1 + QuestionConstruct + + + + fr.insee + kmdbk7p4 + 1 + + A définir + + + si réponse au nombre de pièces d'habitation + + hideable + + + vtl + + fr.insee + kmdbk7p4-IP-1 + 1 + + HPH + + + + + fr.insee + jojvgfei-QOP-jojvjmis + 1 + OutParameter + + + fr.insee + kmdbk7p4-IP-1 + 1 + InParameter + + + cast(kmdbk7p4-IP-1,integer) > 1 + + + + fr.insee + kmdbk7p4-THEN + 1 + Sequence + + + + fr.insee + kmdbk7p4-THEN + 1 + + + + + fr.insee + jojv4yqe-QC + 1 + QuestionConstruct + + + fr.insee + jojv4yqe-CI-0 + 1 + ComputationItem + + + fr.insee + jojv4yqe-CI-1 + 1 + ComputationItem + + + fr.insee + jojv4yqe-CI-2 + 1 + ComputationItem + + + + fr.insee + kmdhaodv + 1 + + A définir + + + Si véranda + + hideable + + + vtl + + fr.insee + kmdhaodv-IP-1 + 1 + + KVE + + + + + fr.insee + jrupq1i5-QOP-jrupywt4 + 1 + OutParameter + + + fr.insee + kmdhaodv-IP-1 + 1 + InParameter + + + kmdhaodv-IP-1 ="1" and not(isnull(kmdhaodv-IP-1)) + + + + fr.insee + kmdhaodv-THEN + 1 + Sequence + + + + fr.insee + kmdhaodv-THEN + 1 + + + + + fr.insee + jrupsr80-QC + 1 + QuestionConstruct + + + fr.insee + kmdh1qmv + 1 + IfThenElse + + + + fr.insee + kmdh1qmv + 1 + + A définir + + + si surface du logement et de la véranda renseignées + + hideable + + + vtl + + fr.insee + kmdh1qmv-IP-1 + 1 + + HST + + + + fr.insee + kmdh1qmv-IP-2 + 1 + + KSV + + + + + fr.insee + jojvc0vt-QOP-jojv2uvg + 1 + OutParameter + + + fr.insee + kmdh1qmv-IP-1 + 1 + InParameter + + + + + fr.insee + jrupsr80-QOP-jrupxa50 + 1 + OutParameter + + + fr.insee + kmdh1qmv-IP-2 + 1 + InParameter + + + (cast(kmdh1qmv-IP-2,integer)>=1) and (cast(kmdh1qmv-IP-1,integer)>=1) + + + + fr.insee + kmdh1qmv-THEN + 1 + Sequence + + + + fr.insee + kmdh1qmv-THEN + 1 + + + + + fr.insee + jrupy93h-QC + 1 + QuestionConstruct + + + + fr.insee + kmdhk927 + 1 + + A définir + + + si terrasse, balcon ou loggia + + hideable + + + vtl + + fr.insee + kmdhk927-IP-1 + 1 + + KBA + + + + + fr.insee + jrupzl7m-QOP-jruppxki + 1 + OutParameter + + + fr.insee + kmdhk927-IP-1 + 1 + InParameter + + + kmdhk927-IP-1="1" and not(isnull(kmdhk927-IP-1)) + + + + fr.insee + kmdhk927-THEN + 1 + Sequence + + + + fr.insee + kmdhk927-THEN + 1 + + + + + fr.insee + jrupx7iz-QC + 1 + QuestionConstruct + + + + fr.insee + kmdi97hw + 1 + + A définir + + + si terrain et logement individuel + + hideable + + + vtl + + fr.insee + kmdi97hw-IP-1 + 1 + + libHTLC + + + + fr.insee + kmdi97hw-IP-2 + 1 + + KJA + + + + + fr.insee + kmdi456r-GOP + 1 + OutParameter + + + fr.insee + kmdi97hw-IP-1 + 1 + InParameter + + + + + fr.insee + jruq98v2-QOP-jruq36wn + 1 + OutParameter + + + fr.insee + kmdi97hw-IP-2 + 1 + InParameter + + + kmdi97hw-IP-2="1" and kmdi97hw-IP-1="individuel" + + + + fr.insee + kmdi97hw-THEN + 1 + Sequence + + + + fr.insee + kmdi97hw-THEN + 1 + + + + + fr.insee + jruq8x6e-QC + 1 + QuestionConstruct + + + fr.insee + jruq8x6e-CI-0 + 1 + ComputationItem + + + fr.insee + kmdih7pd + 1 + IfThenElse + + + fr.insee + jruq4was-QC + 1 + QuestionConstruct + + + fr.insee + jruq4was-CI-0 + 1 + ComputationItem + + + + fr.insee + kmdih7pd + 1 + + A définir + + + si surface du terrain non renseigné + + hideable + + + vtl + + fr.insee + kmdih7pd-IP-1 + 1 + + KSJPI + + + + + fr.insee + jruq8x6e-QOP-jruq3zg9 + 1 + OutParameter + + + fr.insee + kmdih7pd-IP-1 + 1 + InParameter + + + isnull(kmdih7pd-IP-1) + + + + fr.insee + kmdih7pd-THEN + 1 + Sequence + + + + fr.insee + kmdih7pd-THEN + 1 + + + + + fr.insee + jruq85av-QC + 1 + QuestionConstruct + + + + fr.insee + kmdifmw4 + 1 + + A définir + + + si logement collectif + + hideable + + + vtl + + fr.insee + kmdifmw4-IP-1 + 1 + + libHTLC + + + + fr.insee + kmdifmw4-IP-2 + 1 + + KJA + + + + + fr.insee + kmdi456r-GOP + 1 + OutParameter + + + fr.insee + kmdifmw4-IP-1 + 1 + InParameter + + + + + fr.insee + jruq98v2-QOP-jruq36wn + 1 + OutParameter + + + fr.insee + kmdifmw4-IP-2 + 1 + InParameter + + + kmdifmw4-IP-1="collectif" and kmdifmw4-IP-2="1" + + + + fr.insee + kmdifmw4-THEN + 1 + Sequence + + + + fr.insee + kmdifmw4-THEN + 1 + + + + + fr.insee + jruq6fv0-QC + 1 + QuestionConstruct + + + + fr.insee + kmdjxq9q + 1 + + A définir + + + si logement collectif ou maison individuelle en copropriété + + hideable + + + vtl + + fr.insee + kmdjxq9q-IP-1 + 1 + + libHTLC + + + + fr.insee + kmdjxq9q-IP-2 + 1 + + ICOI + + + + + fr.insee + kmdi456r-GOP + 1 + OutParameter + + + fr.insee + kmdjxq9q-IP-1 + 1 + InParameter + + + + + fr.insee + kbgim4v3-QOP-kbgin5q4 + 1 + OutParameter + + + fr.insee + kmdjxq9q-IP-2 + 1 + InParameter + + + (kmdjxq9q-IP-1 ="collectif") or (kmdjxq9q-IP-2="1") + + + + fr.insee + kmdjxq9q-THEN + 1 + Sequence + + + + fr.insee + kmdjxq9q-THEN + 1 + + + + + fr.insee + jruqlf39-QC + 1 + QuestionConstruct + + + fr.insee + kmdk0utz + 1 + IfThenElse + + + + fr.insee + kmdk0utz + 1 + + A définir + + + si escpaces extérieurs en tant que partie communes + + hideable + + + vtl + + fr.insee + kmdk0utz-IP-1 + 1 + + KJC + + + + + fr.insee + jruqlf39-QOP-jruqc60v + 1 + OutParameter + + + fr.insee + kmdk0utz-IP-1 + 1 + InParameter + + + kmdk0utz-IP-1="1" and not(isnull(kmdk0utz-IP-1)) + + + + fr.insee + kmdk0utz-THEN + 1 + Sequence + + + + fr.insee + kmdk0utz-THEN + 1 + + + + + fr.insee + jrusmgfq-QC + 1 + QuestionConstruct + + + + fr.insee + kmdkqyyp + 1 + + A définir + + + si logement collectif ou maison individuelle en copropriété + + hideable + + + vtl + + fr.insee + kmdkqyyp-IP-1 + 1 + + libHTLC + + + + fr.insee + kmdkqyyp-IP-2 + 1 + + ICOI + + + + + fr.insee + kmdi456r-GOP + 1 + OutParameter + + + fr.insee + kmdkqyyp-IP-1 + 1 + InParameter + + + + + fr.insee + kbgim4v3-QOP-kbgin5q4 + 1 + OutParameter + + + fr.insee + kmdkqyyp-IP-2 + 1 + InParameter + + + (kmdkqyyp-IP-1 ="collectif") or (kmdkqyyp-IP-2="1") + + + + fr.insee + kmdkqyyp-THEN + 1 + Sequence + + + + fr.insee + kmdkqyyp-THEN + 1 + + + + + fr.insee + jrusu349-QC + 1 + QuestionConstruct + + + + fr.insee + kq7od344 + 1 + + A définir + + + si cave ou sous-sol + + hideable + + + vtl + + fr.insee + kq7od344-IP-1 + 1 + + KCA + + + + + fr.insee + jrut0i0j-QOP-jrut3e99 + 1 + OutParameter + + + fr.insee + kq7od344-IP-1 + 1 + InParameter + + + kq7od344-IP-1="1" + + + + fr.insee + kq7od344-THEN + 1 + Sequence + + + + fr.insee + kq7od344-THEN + 1 + + + + + fr.insee + jruu4ry3-QC + 1 + QuestionConstruct + + + + fr.insee + kmdkmmoz + 1 + + A définir + + + si maison individuelle ou ferme + + hideable + + + vtl + + fr.insee + kmdkmmoz-IP-1 + 1 + + HTLC1 + + + + + fr.insee + kd8qd4ou-QOP-kd8q0swm + 1 + OutParameter + + + fr.insee + kmdkmmoz-IP-1 + 1 + InParameter + + + kmdkmmoz-IP-1="1" + + + + fr.insee + kmdkmmoz-THEN + 1 + Sequence + + + + fr.insee + kmdkmmoz-THEN + 1 + + + + + fr.insee + jruue197-QC + 1 + QuestionConstruct + + + fr.insee + jruubukg-QC + 1 + QuestionConstruct + + + + fr.insee + kmeugwlw + 1 + + A définir + + + si W-C à l'intérieur du logement + + hideable + + + vtl + + fr.insee + kmeugwlw-IP-1 + 1 + + KWC1 + + + + + fr.insee + jruv1cla-QOP-kdabltlu + 1 + OutParameter + + + fr.insee + kmeugwlw-IP-1 + 1 + InParameter + + + kmeugwlw-IP-1="1" and not(isnull(kmeugwlw-IP-1)) + + + + fr.insee + kmeugwlw-THEN + 1 + Sequence + + + + fr.insee + kmeugwlw-THEN + 1 + + + + + fr.insee + kmeu61l4-QC + 1 + QuestionConstruct + + + fr.insee + kmeu61l4-CI-0 + 1 + ComputationItem + + + fr.insee + lfjh5gud + 1 + IfThenElse + + + fr.insee + lfjh71fo + 1 + IfThenElse + + + + fr.insee + lfjh5gud + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lfjh5gud-IP-1 + 1 + + KWCID + + + + + fr.insee + kmeu61l4-QOP-lfjenhhf + 1 + OutParameter + + + fr.insee + lfjh5gud-IP-1 + 1 + InParameter + + + nvl(lfjh5gud-IP-1,0)=1 + + + + fr.insee + lfjh5gud-THEN + 1 + Sequence + + + + fr.insee + lfjh5gud-THEN + 1 + + + + + fr.insee + lfjgw27o-QC + 1 + QuestionConstruct + + + + fr.insee + lfjh71fo + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lfjh71fo-IP-1 + 1 + + KWCID + + + + + fr.insee + kmeu61l4-QOP-lfjenhhf + 1 + OutParameter + + + fr.insee + lfjh71fo-IP-1 + 1 + InParameter + + + nvl(lfjh71fo-IP-1,0)>1 + + + + fr.insee + lfjh71fo-THEN + 1 + Sequence + + + + fr.insee + lfjh71fo-THEN + 1 + + + + + fr.insee + lfjel2zf-QC + 1 + QuestionConstruct + + + + fr.insee + kmf3fema + 1 + + A définir + + + si eau courante + + hideable + + + vtl + + fr.insee + kmf3fema-IP-1 + 1 + + KAO1 + + + + + fr.insee + jruuncm0-QOP-kmdshzqk + 1 + OutParameter + + + fr.insee + kmf3fema-IP-1 + 1 + InParameter + + + kmf3fema-IP-1<>"3" or isnull(kmf3fema-IP-1) + + + + fr.insee + kmf3fema-THEN + 1 + Sequence + + + + fr.insee + kmf3fema-THEN + 1 + + + + + fr.insee + jruva8uu-QC + 1 + QuestionConstruct + + + fr.insee + kmeuoann + 1 + IfThenElse + + + fr.insee + kmf0rfij + 1 + IfThenElse + + + + fr.insee + kmeuoann + 1 + + A définir + + + si salle d'eau ou salle de bain + + hideable + + + vtl + + fr.insee + kmeuoann-IP-1 + 1 + + KBD + + + + + fr.insee + jruva8uu-QOP-jruuzwyy + 1 + OutParameter + + + fr.insee + kmeuoann-IP-1 + 1 + InParameter + + + kmeuoann-IP-1="1" + + + + fr.insee + kmeuoann-THEN + 1 + Sequence + + + + fr.insee + kmeuoann-THEN + 1 + + + + + fr.insee + kksgd6fv-QC + 1 + QuestionConstruct + + + fr.insee + kksgd6fv-CI-0 + 1 + ComputationItem + + + fr.insee + lfjgx96a + 1 + IfThenElse + + + fr.insee + lfjgog07 + 1 + IfThenElse + + + + fr.insee + lfjgx96a + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lfjgx96a-IP-1 + 1 + + KSE + + + + + fr.insee + kksgd6fv-QOP-lfjf0wd7 + 1 + OutParameter + + + fr.insee + lfjgx96a-IP-1 + 1 + InParameter + + + nvl(lfjgx96a-IP-1,0)=1 + + + + fr.insee + lfjgx96a-THEN + 1 + Sequence + + + + fr.insee + lfjgx96a-THEN + 1 + + + + + fr.insee + lfjgy3we-QC + 1 + QuestionConstruct + + + + fr.insee + lfjgog07 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lfjgog07-IP-1 + 1 + + KSE + + + + + fr.insee + kksgd6fv-QOP-lfjf0wd7 + 1 + OutParameter + + + fr.insee + lfjgog07-IP-1 + 1 + InParameter + + + nvl(lfjgog07-IP-1,0)>1 + + + + fr.insee + lfjgog07-THEN + 1 + Sequence + + + + fr.insee + lfjgog07-THEN + 1 + + + + + fr.insee + lfjedybr-QC + 1 + QuestionConstruct + + + + fr.insee + kmf0rfij + 1 + + A définir + + + pas de salle de bain ou d'eau + + hideable + + + vtl + + fr.insee + kmf0rfij-IP-1 + 1 + + KBD + + + + + fr.insee + jruva8uu-QOP-jruuzwyy + 1 + OutParameter + + + fr.insee + kmf0rfij-IP-1 + 1 + InParameter + + + kmf0rfij-IP-1="2" + + + + fr.insee + kmf0rfij-THEN + 1 + Sequence + + + + fr.insee + kmf0rfij-THEN + 1 + + + + + fr.insee + kmf0xcox-QC + 1 + QuestionConstruct + + + fr.insee + kmf173ag + 1 + IfThenElse + + + + fr.insee + kmf173ag + 1 + + A définir + + + si ni douche ni baignoire + + hideable + + + vtl + + fr.insee + kmf173ag-IP-1 + 1 + + KDLK1 + + + + + fr.insee + kmf0xcox-QOP-kmf17z2u + 1 + OutParameter + + + fr.insee + kmf173ag-IP-1 + 1 + InParameter + + + kmf173ag-IP-1="2" + + + + fr.insee + kmf173ag-THEN + 1 + Sequence + + + + fr.insee + kmf173ag-THEN + 1 + + + + + fr.insee + jruv164k-QC + 1 + QuestionConstruct + + + + fr.insee + l7j20adt + 1 + + A définir + + + Pas de logement collectif ni de copro + + hideable + + + vtl + + fr.insee + l7j20adt-IP-1 + 1 + + libHTLC + + + + fr.insee + l7j20adt-IP-2 + 1 + + ICOI + + + + + fr.insee + kmdi456r-GOP + 1 + OutParameter + + + fr.insee + l7j20adt-IP-1 + 1 + InParameter + + + + + fr.insee + kbgim4v3-QOP-kbgin5q4 + 1 + OutParameter + + + fr.insee + l7j20adt-IP-2 + 1 + InParameter + + + (nvl(l7j20adt-IP-1,"")<>"collectif") and (nvl(l7j20adt-IP-2,"")<>"1") + + + + fr.insee + l7j20adt-THEN + 1 + Sequence + + + + fr.insee + l7j20adt-THEN + 1 + + + + + fr.insee + l7j1k2un-QC + 1 + QuestionConstruct + + + + fr.insee + l7j29yuq + 1 + + A définir + + + Si logement collectif ou maison individuelle en copropriété + + hideable + + + vtl + + fr.insee + l7j29yuq-IP-1 + 1 + + libHTLC + + + + fr.insee + l7j29yuq-IP-2 + 1 + + ICOI + + + + + fr.insee + kmdi456r-GOP + 1 + OutParameter + + + fr.insee + l7j29yuq-IP-1 + 1 + InParameter + + + + + fr.insee + kbgim4v3-QOP-kbgin5q4 + 1 + OutParameter + + + fr.insee + l7j29yuq-IP-2 + 1 + InParameter + + + (l7j29yuq-IP-1="collectif") or (l7j29yuq-IP-2="1") + + + + fr.insee + l7j29yuq-THEN + 1 + Sequence + + + + fr.insee + l7j29yuq-THEN + 1 + + + + + fr.insee + l7j1y65o-QC + 1 + QuestionConstruct + + + + fr.insee + l3ylv9q8 + 1 + + A définir + + + des enfants dans le logement + + hideable + + + vtl + + fr.insee + l3ylv9q8-IP-1 + 1 + + nbenfant + + + + + fr.insee + l3yln6g1-GOP + 1 + OutParameter + + + fr.insee + l3ylv9q8-IP-1 + 1 + InParameter + + + not(isnull(l3ylv9q8-IP-1)) and (cast(l3ylv9q8-IP-1,integer)>0) + + + + fr.insee + l3ylv9q8-THEN + 1 + Sequence + + + + fr.insee + l3ylv9q8-THEN + 1 + + + + + fr.insee + l3yli2im-QC + 1 + QuestionConstruct + + + + fr.insee + kw0ugbm8 + 1 + + A définir + + + Au moins une personne majeure dans le logement + + hideable + + + vtl + + fr.insee + kw0ugbm8-IP-1 + 1 + + nbpers15 + + + + + fr.insee + lftfquwn-GOP + 1 + OutParameter + + + fr.insee + kw0ugbm8-IP-1 + 1 + InParameter + + + cast(nvl(kw0ugbm8-IP-1,0),integer)>0 + + + + fr.insee + kw0ugbm8-THEN + 1 + Sequence + + + + fr.insee + kw0ugbm8-THEN + 1 + + + + + fr.insee + joinv857 + 1 + Sequence + + + + fr.insee + kqru8csa + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + kqru8csa-IP-1 + 1 + + SDL12 + + + + + fr.insee + joinz4wo-QOP-ljvxk44t + 1 + OutParameter + + + fr.insee + kqru8csa-IP-1 + 1 + InParameter + + + (kqru8csa-IP-1) and not(isnull(kqru8csa-IP-1)) + + + + fr.insee + kqru8csa-THEN + 1 + Sequence + + + + fr.insee + kqru8csa-THEN + 1 + + + + + fr.insee + kqr0kx1e-QC + 1 + QuestionConstruct + + + + fr.insee + kqrudlfb + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + kqrudlfb-IP-1 + 1 + + SDL14 + + + + + fr.insee + joinz4wo-QOP-ljvxbn8w + 1 + OutParameter + + + fr.insee + kqrudlfb-IP-1 + 1 + InParameter + + + (kqrudlfb-IP-1) and not(isnull(kqrudlfb-IP-1)) + + + + fr.insee + kqrudlfb-THEN + 1 + Sequence + + + + fr.insee + kqrudlfb-THEN + 1 + + + + + fr.insee + kpb8b0vw-QC + 1 + QuestionConstruct + + + + fr.insee + kpb8n3ho + 1 + + A définir + + + situations difficiles de logements + + hideable + + + vtl + + fr.insee + kpb8n3ho-IP-1 + 1 + + SDL11 + + + + fr.insee + kpb8n3ho-IP-2 + 1 + + SDL12 + + + + fr.insee + kpb8n3ho-IP-3 + 1 + + SDL13 + + + + fr.insee + kpb8n3ho-IP-4 + 1 + + SDL14 + + + + fr.insee + kpb8n3ho-IP-5 + 1 + + SDL15 + + + + fr.insee + kpb8n3ho-IP-6 + 1 + + SDL16 + + + + fr.insee + kpb8n3ho-IP-7 + 1 + + SDL17 + + + + + fr.insee + joinz4wo-QOP-ljvxgvru + 1 + OutParameter + + + fr.insee + kpb8n3ho-IP-1 + 1 + InParameter + + + + + fr.insee + joinz4wo-QOP-ljvxk44t + 1 + OutParameter + + + fr.insee + kpb8n3ho-IP-2 + 1 + InParameter + + + + + fr.insee + joinz4wo-QOP-ljvxgmyh + 1 + OutParameter + + + fr.insee + kpb8n3ho-IP-3 + 1 + InParameter + + + + + fr.insee + joinz4wo-QOP-ljvxbn8w + 1 + OutParameter + + + fr.insee + kpb8n3ho-IP-4 + 1 + InParameter + + + + + fr.insee + joinz4wo-QOP-ljvxplyt + 1 + OutParameter + + + fr.insee + kpb8n3ho-IP-5 + 1 + InParameter + + + + + fr.insee + joinz4wo-QOP-ljvxncns + 1 + OutParameter + + + fr.insee + kpb8n3ho-IP-6 + 1 + InParameter + + + + + fr.insee + joinz4wo-QOP-ljvxcc4t + 1 + OutParameter + + + fr.insee + kpb8n3ho-IP-7 + 1 + InParameter + + + (not(isnull(kpb8n3ho-IP-1)) and kpb8n3ho-IP-1) or (not(isnull(kpb8n3ho-IP-2)) and kpb8n3ho-IP-2) or (not(isnull(kpb8n3ho-IP-3)) and kpb8n3ho-IP-3) or (not(isnull(kpb8n3ho-IP-4)) and kpb8n3ho-IP-4) or (not(isnull(kpb8n3ho-IP-5)) and kpb8n3ho-IP-5) or (not(isnull(kpb8n3ho-IP-6)) and kpb8n3ho-IP-6) or (not(isnull(kpb8n3ho-IP-7)) and kpb8n3ho-IP-7) + + + + fr.insee + kpb8n3ho-THEN + 1 + Sequence + + + + fr.insee + kpb8n3ho-THEN + 1 + + + + + fr.insee + joio5w41-QC + 1 + QuestionConstruct + + + fr.insee + kpbb6zkm + 1 + IfThenElse + + + fr.insee + kudw8rll + 1 + IfThenElse + + + fr.insee + kpbbtt2p + 1 + IfThenElse + + + fr.insee + kqruowfe + 1 + IfThenElse + + + + fr.insee + kpbb6zkm + 1 + + A définir + + + Réponse aux nombres de situations + + hideable + + + vtl + + fr.insee + kpbb6zkm-IP-1 + 1 + + SDN1 + + + + + fr.insee + joio5w41-QOP-kpb93tlo + 1 + OutParameter + + + fr.insee + kpbb6zkm-IP-1 + 1 + InParameter + + + (kpbb6zkm-IP-1="1" or kpbb6zkm-IP-1="2") and not(isnull(kpbb6zkm-IP-1)) + + + + fr.insee + kpbb6zkm-THEN + 1 + Sequence + + + + fr.insee + kpbb6zkm-THEN + 1 + + + + + fr.insee + joioebt6-QC + 1 + QuestionConstruct + + + + fr.insee + kudw8rll + 1 + + A définir + + + Plusieurs types de situations difficiles d'hébergement + + hideable + + + vtl + + fr.insee + kudw8rll-IP-1 + 1 + + filtre_SIT + + + + fr.insee + kudw8rll-IP-2 + 1 + + SDN1 + + + + + fr.insee + kudv8i2p-GOP + 1 + OutParameter + + + fr.insee + kudw8rll-IP-1 + 1 + InParameter + + + + + fr.insee + joio5w41-QOP-kpb93tlo + 1 + OutParameter + + + fr.insee + kudw8rll-IP-2 + 1 + InParameter + + + (not(isnull(kudw8rll-IP-1)) and kudw8rll-IP-1="1") and (not(isnull(kudw8rll-IP-2)) and kudw8rll-IP-2 = "2") + + + + fr.insee + kudw8rll-THEN + 1 + Sequence + + + + fr.insee + kudw8rll-THEN + 1 + + + + + fr.insee + kudultmi-QC + 1 + QuestionConstruct + + + + fr.insee + kpbbtt2p + 1 + + A définir + + + Réponse à la durée de la ou des situations difficiles de logement + + hideable + + + vtl + + fr.insee + kpbbtt2p-IP-1 + 1 + + SDT1 + + + + + fr.insee + joioebt6-QOP-joiot0f2 + 1 + OutParameter + + + fr.insee + kpbbtt2p-IP-1 + 1 + InParameter + + + (not(isnull(kpbbtt2p-IP-1))) + + + + fr.insee + kpbbtt2p-THEN + 1 + Sequence + + + + fr.insee + kpbbtt2p-THEN + 1 + + + + + fr.insee + joo0yx5k-QC + 1 + QuestionConstruct + + + fr.insee + joo0yx5k-CI-0 + 1 + ComputationItem + + + + fr.insee + kqruowfe + 1 + + A définir + + + Plusieurs situations difficiles d'hébergement + + hideable + + + vtl + + fr.insee + kqruowfe-IP-1 + 1 + + SDN1 + + + + + fr.insee + joio5w41-QOP-kpb93tlo + 1 + OutParameter + + + fr.insee + kqruowfe-IP-1 + 1 + InParameter + + + kqruowfe-IP-1 = "2" + + + + fr.insee + kqruowfe-THEN + 1 + Sequence + + + + fr.insee + kqruowfe-THEN + 1 + + + + + fr.insee + joo1m3x2-QC + 1 + QuestionConstruct + + + fr.insee + kudwd13q + 1 + IfThenElse + + + fr.insee + kudvxpft-QC + 1 + QuestionConstruct + + + fr.insee + kudvxpft-CI-0 + 1 + ComputationItem + + + fr.insee + kudwrcyp-QC + 1 + QuestionConstruct + + + + fr.insee + kudwd13q + 1 + + A définir + + + Plusieurs types de situations difficiles d'hébergement + + hideable + + + vtl + + fr.insee + kudwd13q-IP-1 + 1 + + filtre_SIT + + + + + fr.insee + kudv8i2p-GOP + 1 + OutParameter + + + fr.insee + kudwd13q-IP-1 + 1 + InParameter + + + kudwd13q-IP-1 ="1" + + + + fr.insee + kudwd13q-THEN + 1 + Sequence + + + + fr.insee + kudwd13q-THEN + 1 + + + + + fr.insee + kudvobyc-QC + 1 + QuestionConstruct + + + + fr.insee + koea7z4s + 1 + + A définir + + + Si VVENDL = 1 ou 2 + + hideable + + + vtl + + fr.insee + koea7z4s-IP-1 + 1 + + VVENDL + + + + + fr.insee + jopgtrq1-QOP-joph3nia + 1 + OutParameter + + + fr.insee + koea7z4s-IP-1 + 1 + InParameter + + + koea7z4s-IP-1 = "1" or koea7z4s-IP-1 = "2" + + + + fr.insee + koea7z4s-THEN + 1 + Sequence + + + + fr.insee + koea7z4s-THEN + 1 + + + + + fr.insee + jopgvwb0-QC + 1 + QuestionConstruct + + + fr.insee + koeadjrr + 1 + IfThenElse + + + + fr.insee + koeadjrr + 1 + + A définir + + + Pour ceux qui ont emménagé il y a moins de 4 ans + + hideable + + + vtl + + fr.insee + koeadjrr-IP-1 + 1 + + MAA1AT + + + + + fr.insee + kbkitdek-GOP + 1 + OutParameter + + + fr.insee + koeadjrr-IP-1 + 1 + InParameter + + + not(isnull(koeadjrr-IP-1)) and (koeadjrr-IP-1 = "1" or koeadjrr-IP-1 = "2") + + + + fr.insee + koeadjrr-THEN + 1 + Sequence + + + + fr.insee + koeadjrr-THEN + 1 + + + + + fr.insee + jopgzovi-QC + 1 + QuestionConstruct + + + + fr.insee + koeb4sq1 + 1 + + A définir + + + Pour ceux qui ont acheté et vendu + + hideable + + + vtl + + fr.insee + koeb4sq1-IP-1 + 1 + + VVENDL + + + + fr.insee + koeb4sq1-IP-2 + 1 + + VACHAL + + + + + fr.insee + jopgtrq1-QOP-joph3nia + 1 + OutParameter + + + fr.insee + koeb4sq1-IP-1 + 1 + InParameter + + + + + fr.insee + koeabibm-QOP-koebfojq + 1 + OutParameter + + + fr.insee + koeb4sq1-IP-2 + 1 + InParameter + + + (koeb4sq1-IP-1 ="1" or koeb4sq1-IP-1 = "2") and (koeb4sq1-IP-2 ="1" or koeb4sq1-IP-2 ="2") + + + + fr.insee + koeb4sq1-THEN + 1 + Sequence + + + + fr.insee + koeb4sq1-THEN + 1 + + + + + fr.insee + joph9za3-QC + 1 + QuestionConstruct + + + + fr.insee + koec5lwv + 1 + + A définir + + + Si la personne a emménagé après le 1er moins d'enquête n-4 + + hideable + + + vtl + + fr.insee + koec5lwv-IP-1 + 1 + + MAA2AT + + + + + fr.insee + kbjjncl4-GOP + 1 + OutParameter + + + fr.insee + koec5lwv-IP-1 + 1 + InParameter + + + not(isnull(koec5lwv-IP-1)) and (koec5lwv-IP-1 = "1" or koec5lwv-IP-1 ="2") + + + + fr.insee + koec5lwv-THEN + 1 + Sequence + + + + fr.insee + koec5lwv-THEN + 1 + + + + + fr.insee + kwglkyat-SI + 1 + StatementItem + + + fr.insee + jopkquw3-QC + 1 + QuestionConstruct + + + fr.insee + koec875x + 1 + IfThenElse + + + fr.insee + koecvok4 + 1 + IfThenElse + + + + fr.insee + koec875x + 1 + + A définir + + + Si VLR = 3 + + hideable + + + vtl + + fr.insee + koec875x-IP-1 + 1 + + VLR + + + + + fr.insee + jopkquw3-QOP-jopl57w1 + 1 + OutParameter + + + fr.insee + koec875x-IP-1 + 1 + InParameter + + + koec875x-IP-1 = "3" and not(isnull(koec875x-IP-1)) + + + + fr.insee + koec875x-THEN + 1 + Sequence + + + + fr.insee + koec875x-THEN + 1 + + + + + fr.insee + jopl7p41-QC + 1 + QuestionConstruct + + + fr.insee + kpbdy60n + 1 + IfThenElse + + + + fr.insee + kpbdy60n + 1 + + A définir + + + Pas de communes renseignées + + hideable + + + vtl + + fr.insee + kpbdy60n-IP-1 + 1 + + COMMUNEPASSEE + + + + + fr.insee + jopl7p41-QOP-lgrjy0k9 + 1 + OutParameter + + + fr.insee + kpbdy60n-IP-1 + 1 + InParameter + + + isnull(kpbdy60n-IP-1) + + + + fr.insee + kpbdy60n-THEN + 1 + Sequence + + + + fr.insee + kpbdy60n-THEN + 1 + + + + + fr.insee + joplihpv-QC + 1 + QuestionConstruct + + + fr.insee + joplkxrd-QC + 1 + QuestionConstruct + + + + fr.insee + koecvok4 + 1 + + A définir + + + Le logement d'il y a 4 ans était dans un pays étranger + + hideable + + + vtl + + fr.insee + koecvok4-IP-1 + 1 + + VLR + + + + + fr.insee + jopkquw3-QOP-jopl57w1 + 1 + OutParameter + + + fr.insee + koecvok4-IP-1 + 1 + InParameter + + + koecvok4-IP-1 ="5" and not(isnull(koecvok4-IP-1)) + + + + fr.insee + koecvok4-THEN + 1 + Sequence + + + + fr.insee + koecvok4-THEN + 1 + + + + + fr.insee + jopldlvn-QC + 1 + QuestionConstruct + + + + fr.insee + koecxjbu + 1 + + A définir + + + Il y a 4 ans occupant en titre d'un logement en métropole + + hideable + + + vtl + + fr.insee + koecxjbu-IP-1 + 1 + + MAA2AT + + + + fr.insee + koecxjbu-IP-2 + 1 + + VLR + + + + fr.insee + koecxjbu-IP-3 + 1 + + VLA1 + + + + + fr.insee + kbjjncl4-GOP + 1 + OutParameter + + + fr.insee + koecxjbu-IP-1 + 1 + InParameter + + + + + fr.insee + jopkquw3-QOP-jopl57w1 + 1 + OutParameter + + + fr.insee + koecxjbu-IP-2 + 1 + InParameter + + + + + fr.insee + joplorns-QOP-joplwq56 + 1 + OutParameter + + + fr.insee + koecxjbu-IP-3 + 1 + InParameter + + + (koecxjbu-IP-3 = "1") and ((koecxjbu-IP-2 = "2" or koecxjbu-IP-2 = "3") or (koecxjbu-IP-1="3" or koecxjbu-IP-1="4" or koecxjbu-IP-1="5" or koecxjbu-IP-2 = "1")) + + + + fr.insee + koecxjbu-THEN + 1 + Sequence + + + + fr.insee + koecxjbu-THEN + 1 + + + + + fr.insee + joplzrmo-QC + 1 + QuestionConstruct + + + + fr.insee + kpbh29zw + 1 + + A définir + + + Locataire il y a 4 ans et changement de logement ou de statut d'occupation + + hideable + + + vtl + + fr.insee + kpbh29zw-IP-1 + 1 + + MAA2AT + + + + fr.insee + kpbh29zw-IP-2 + 1 + + STOC + + + + fr.insee + kpbh29zw-IP-3 + 1 + + VLR + + + + fr.insee + kpbh29zw-IP-4 + 1 + + VLA1 + + + + fr.insee + kpbh29zw-IP-5 + 1 + + VSO1 + + + + + fr.insee + kbjjncl4-GOP + 1 + OutParameter + + + fr.insee + kpbh29zw-IP-1 + 1 + InParameter + + + + + fr.insee + klutbpfw-GOP + 1 + OutParameter + + + fr.insee + kpbh29zw-IP-2 + 1 + InParameter + + + + + fr.insee + jopkquw3-QOP-jopl57w1 + 1 + OutParameter + + + fr.insee + kpbh29zw-IP-3 + 1 + InParameter + + + + + fr.insee + joplorns-QOP-joplwq56 + 1 + OutParameter + + + fr.insee + kpbh29zw-IP-4 + 1 + InParameter + + + + + fr.insee + joplzrmo-QOP-jopm22x3 + 1 + OutParameter + + + fr.insee + kpbh29zw-IP-5 + 1 + InParameter + + + kpbh29zw-IP-5="4" and (((kpbh29zw-IP-3 = "2" or kpbh29zw-IP-3 = "3") and kpbh29zw-IP-4 = "1") or ((kpbh29zw-IP-1="3" or kpbh29zw-IP-1="4" or kpbh29zw-IP-1="5" or kpbh29zw-IP-3 = "1") and kpbh29zw-IP-2 <> "4")) + + + + fr.insee + kpbh29zw-THEN + 1 + Sequence + + + + fr.insee + kpbh29zw-THEN + 1 + + + + + fr.insee + jopri4xh-QC + 1 + QuestionConstruct + + + fr.insee + joprsm9u-QC + 1 + QuestionConstruct + + + fr.insee + joprsm9u-CI-0 + 1 + ComputationItem + + + fr.insee + joprsm9u-CI-1 + 1 + ComputationItem + + + fr.insee + joprlyql-QC + 1 + QuestionConstruct + + + + fr.insee + kpbh1cku + 1 + + A définir + + + Logement d'il y a 4 ans autre qu'une collectivité ou habitation mobile + + hideable + + + vtl + + fr.insee + kpbh1cku-IP-1 + 1 + + VLA1 + + + + + fr.insee + joplorns-QOP-joplwq56 + 1 + OutParameter + + + fr.insee + kpbh1cku-IP-1 + 1 + InParameter + + + kpbh1cku-IP-1<>"4" or isnull(kpbh1cku-IP-1) + + + + fr.insee + kpbh1cku-THEN + 1 + Sequence + + + + fr.insee + kpbh1cku-THEN + 1 + + + + + fr.insee + joprp441-QC + 1 + QuestionConstruct + + + fr.insee + joprp441-CI-0 + 1 + ComputationItem + + + + fr.insee + koeetx88 + 1 + + A définir + + + Si la personne réside actuellement en métropole et habitait un autre logement en métropole au 1er mois d’enquête A-4 (autre qu'une collectivité ou une habitation mobile) + + hideable + + + vtl + + fr.insee + koeetx88-IP-1 + 1 + + VLR + + + + fr.insee + koeetx88-IP-2 + 1 + + VLA1 + + + + + fr.insee + jopkquw3-QOP-jopl57w1 + 1 + OutParameter + + + fr.insee + koeetx88-IP-1 + 1 + InParameter + + + + + fr.insee + joplorns-QOP-joplwq56 + 1 + OutParameter + + + fr.insee + koeetx88-IP-2 + 1 + InParameter + + + not(isnull(koeetx88-IP-1)) and (koeetx88-IP-1="2" or koeetx88-IP-1="3") and (koeetx88-IP-2<>"4" or isnull(koeetx88-IP-2) ) + + + + fr.insee + koeetx88-THEN + 1 + Sequence + + + + fr.insee + koeetx88-THEN + 1 + + + + + fr.insee + joprv8x6 + 1 + Sequence + + + + fr.insee + kpbp18d4 + 1 + + A définir + + + arrivée depuis moins de 4 ans + + hideable + + + vtl + + fr.insee + kpbp18d4-IP-1 + 1 + + MAA2AT + + + + + fr.insee + kbjjncl4-GOP + 1 + OutParameter + + + fr.insee + kpbp18d4-IP-1 + 1 + InParameter + + + kpbp18d4-IP-1="1" or kpbp18d4-IP-1="2" + + + + fr.insee + kpbp18d4-THEN + 1 + Sequence + + + + fr.insee + kpbp18d4-THEN + 1 + + + + + fr.insee + jopsqquo + 1 + Sequence + + + + fr.insee + kovg4u51 + 1 + + A définir + + + Pour les ménages ayant déménagé + d'une fois + + hideable + + + vtl + + fr.insee + kovg4u51-IP-1 + 1 + + VND + + + + + fr.insee + jopsrdb3-QOP-jopt3q7k + 1 + OutParameter + + + fr.insee + kovg4u51-IP-1 + 1 + InParameter + + + cast(kovg4u51-IP-1,integer) > 1 + + + + fr.insee + kovg4u51-THEN + 1 + Sequence + + + + fr.insee + kovg4u51-THEN + 1 + + + + + fr.insee + kpbpgn1h-SI + 1 + StatementItem + + + fr.insee + joptkb9d-QC + 1 + QuestionConstruct + + + fr.insee + kovgds1a + 1 + IfThenElse + + + + fr.insee + kovgds1a + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + kovgds1a-IP-1 + 1 + + VLRD + + + + + fr.insee + joptkb9d-QOP-joptyklz + 1 + OutParameter + + + fr.insee + kovgds1a-IP-1 + 1 + InParameter + + + kovgds1a-IP-1 = "1" and not(isnull(kovgds1a-IP-1)) + + + + fr.insee + kovgds1a-THEN + 1 + Sequence + + + + fr.insee + kovgds1a-THEN + 1 + + + + + fr.insee + jopu7wfr-QC + 1 + QuestionConstruct + + + fr.insee + kovghnlp + 1 + IfThenElse + + + + fr.insee + kovghnlp + 1 + + A définir + + + Pour les occupants en titre + + hideable + + + vtl + + fr.insee + kovghnlp-IP-1 + 1 + + VLAB1 + + + + + fr.insee + jopu7wfr-QOP-jopueeyk + 1 + OutParameter + + + fr.insee + kovghnlp-IP-1 + 1 + InParameter + + + kovghnlp-IP-1 = "1" and not(isnull(kovghnlp-IP-1)) + + + + fr.insee + kovghnlp-THEN + 1 + Sequence + + + + fr.insee + kovghnlp-THEN + 1 + + + + + fr.insee + jopua1hn-QC + 1 + QuestionConstruct + + + fr.insee + kpbph9fx + 1 + IfThenElse + + + + fr.insee + kpbph9fx + 1 + + A définir + + + Locataire + + hideable + + + vtl + + fr.insee + kpbph9fx-IP-1 + 1 + + VDD1 + + + + + fr.insee + jopua1hn-QOP-jopuivt4 + 1 + OutParameter + + + fr.insee + kpbph9fx-IP-1 + 1 + InParameter + + + kpbph9fx-IP-1="4" + + + + fr.insee + kpbph9fx-THEN + 1 + Sequence + + + + fr.insee + kpbph9fx-THEN + 1 + + + + + fr.insee + jopuofnr-QC + 1 + QuestionConstruct + + + + fr.insee + kv6pvp4x + 1 + + A définir + + + Plus d'un déménagements en 4 ans + + hideable + + + vtl + + fr.insee + kv6pvp4x-IP-1 + 1 + + VND + + + + + fr.insee + jopsrdb3-QOP-jopt3q7k + 1 + OutParameter + + + fr.insee + kv6pvp4x-IP-1 + 1 + InParameter + + + not(isnull(kv6pvp4x-IP-1)) and (cast(kv6pvp4x-IP-1,integer) > 1) + + + + fr.insee + kv6pvp4x-THEN + 1 + Sequence + + + + fr.insee + kv6pvp4x-THEN + 1 + + + + + fr.insee + kpbq1qnt + 1 + IfThenElse + + + + fr.insee + kpbq1qnt + 1 + + A définir + + + hors structure collective + + hideable + + + vtl + + fr.insee + kpbq1qnt-IP-1 + 1 + + VLRD + + + + fr.insee + kpbq1qnt-IP-2 + 1 + + VLAB1 + + + + + fr.insee + joptkb9d-QOP-joptyklz + 1 + OutParameter + + + fr.insee + kpbq1qnt-IP-1 + 1 + InParameter + + + + + fr.insee + jopu7wfr-QOP-jopueeyk + 1 + OutParameter + + + fr.insee + kpbq1qnt-IP-2 + 1 + InParameter + + + (kpbq1qnt-IP-2 <>"4" or isnull(kpbq1qnt-IP-2)) and (kpbq1qnt-IP-1="1") + + + + fr.insee + kpbq1qnt-THEN + 1 + Sequence + + + + fr.insee + kpbq1qnt-THEN + 1 + + + + + fr.insee + kovgtboa + 1 + Sequence + + + + fr.insee + kovjcuwj + 1 + + A définir + + + Si déménagement + + hideable + + + vtl + + fr.insee + kovjcuwj-IP-1 + 1 + + VND + + + + + fr.insee + jopsrdb3-QOP-jopt3q7k + 1 + OutParameter + + + fr.insee + kovjcuwj-IP-1 + 1 + InParameter + + + not(isnull(kovjcuwj-IP-1)) and (cast(kovjcuwj-IP-1,integer) > 0) + + + + fr.insee + kovjcuwj-THEN + 1 + Sequence + + + + fr.insee + kovjcuwj-THEN + 1 + + + + + fr.insee + kovjkvfn + 1 + Sequence + + + + fr.insee + lgnrcxzr + 1 + + A définir + + + Si aucune raison de déménagement + + hideable + + + vtl + + fr.insee + lgnrcxzr-IP-1 + 1 + + VRAIS27 + + + + fr.insee + lgnrcxzr-IP-2 + 1 + + VRAIS36 + + + + fr.insee + lgnrcxzr-IP-3 + 1 + + VRAIS45 + + + + + fr.insee + kovj0a8h-QOP-lgqs27ee + 1 + OutParameter + + + fr.insee + lgnrcxzr-IP-1 + 1 + InParameter + + + + + fr.insee + kovirkvq-QOP-kovj8oex + 1 + OutParameter + + + fr.insee + lgnrcxzr-IP-2 + 1 + InParameter + + + + + fr.insee + kovj5q33-QOP-kovj34ma + 1 + OutParameter + + + fr.insee + lgnrcxzr-IP-3 + 1 + InParameter + + + nvl(lgnrcxzr-IP-1,false) = true and nvl(lgnrcxzr-IP-2,false) = true and nvl(lgnrcxzr-IP-3,false) = true + + + + fr.insee + lgnrcxzr-THEN + 1 + Sequence + + + + fr.insee + lgnrcxzr-THEN + 1 + + + + + fr.insee + lgmgi33v-QC + 1 + QuestionConstruct + + + + fr.insee + kksctbwg + 1 + + A définir + + + Modification du destinataire + + hideable + + + vtl + + fr.insee + kksctbwg-IP-1 + 1 + + CHGNC + + + + + fr.insee + kbamkrlv-QOP-kbamirtb + 1 + OutParameter + + + fr.insee + kksctbwg-IP-1 + 1 + InParameter + + + kksctbwg-IP-1 = "2" and not(isnull(kksctbwg-IP-1)) + + + + fr.insee + kksctbwg-THEN + 1 + Sequence + + + + fr.insee + kksctbwg-THEN + 1 + + + + + fr.insee + kwjirnmi-SI + 1 + StatementItem + + + fr.insee + kbaxq9l0-QC + 1 + QuestionConstruct + + + fr.insee + kr0fw3n6-QC + 1 + QuestionConstruct + + + fr.insee + kr0fn06f-QC + 1 + QuestionConstruct + + + fr.insee + kr0oafhw + 1 + IfThenElse + + + + fr.insee + kr0oafhw + 1 + + A définir + + + si deuxième destinataire + + hideable + + + vtl + + fr.insee + kr0oafhw-IP-1 + 1 + + NOMVOUS_D2 + + + + fr.insee + kr0oafhw-IP-2 + 1 + + NOMCOLL + + + + + fr.insee + NOMVOUS_D2 + 1 + InParameter + + + fr.insee + kr0oafhw-IP-1 + 1 + InParameter + + + + + fr.insee + kr0fn06f-QOP-kr0fwk40 + 1 + OutParameter + + + fr.insee + kr0oafhw-IP-2 + 1 + InParameter + + + (not(isnull(kr0oafhw-IP-1)) or kr0oafhw-IP-1<> "") and (not(isnull(kr0oafhw-IP-2)) or kr0oafhw-IP-2<> "") + + + + fr.insee + kr0oafhw-THEN + 1 + Sequence + + + + fr.insee + kr0oafhw-THEN + 1 + + + + + fr.insee + kwjivaa1-QC + 1 + QuestionConstruct + + + fr.insee + kwjjcr3y + 1 + IfThenElse + + + + fr.insee + kwjjcr3y + 1 + + A définir + + + deuxième destinataire souhaité + + hideable + + + vtl + + fr.insee + kwjjcr3y-IP-1 + 1 + + CHGNC2 + + + + + fr.insee + kwjivaa1-QOP-kwjixod8 + 1 + OutParameter + + + fr.insee + kwjjcr3y-IP-1 + 1 + InParameter + + + not(isnull(kwjjcr3y-IP-1)) and kwjjcr3y-IP-1="1" + + + + fr.insee + kwjjcr3y-THEN + 1 + Sequence + + + + fr.insee + kwjjcr3y-THEN + 1 + + + + + fr.insee + kwjjic7h-SI + 1 + StatementItem + + + fr.insee + kr0fr82y-QC + 1 + QuestionConstruct + + + fr.insee + kbbzjgn8-QC + 1 + QuestionConstruct + + + fr.insee + kbbzhtx3-QC + 1 + QuestionConstruct + + + + fr.insee + kb9hlpdc-QC + 1 + + CADR + + + fr.insee + kb9hlpdc + 1 + QuestionItem + + + + fr.insee + kbakywwy-QC + 1 + + NUMTH_COLL + + + fr.insee + kbakywwy + 1 + QuestionItem + + + + fr.insee + kbal4bzb-QC + 1 + + ADR_COLL + + + fr.insee + kbal4bzb + 1 + QuestionItem + + + + fr.insee + kbalhn4i-QC + 1 + + CADRTH_COLL + + + fr.insee + kbalhn4i + 1 + QuestionItem + + + + fr.insee + kbal8crw-QC + 1 + + CODEPOST1_COLL + + + fr.insee + kbal8crw + 1 + QuestionItem + + + + fr.insee + kbal9dwk-QC + 1 + + LIBCOM_COLL + + + fr.insee + kbal9dwk + 1 + QuestionItem + + + + fr.insee + kqweh61i-QC + 1 + + INDNVOCC + + + fr.insee + kqweh61i + 1 + QuestionItem + + + + fr.insee + kqwga16w-QC + 1 + + NOMNVOCC1 + + + fr.insee + kqwga16w + 1 + QuestionItem + + + + fr.insee + kqwfswjj-QC + 1 + + PRENOMNVOCC1 + + + fr.insee + kqwfswjj + 1 + QuestionItem + + + + fr.insee + kqwfedoy-QC + 1 + + NOMNVOCC2 + + + fr.insee + kqwfedoy + 1 + QuestionItem + + + + fr.insee + kqwg9azb-QC + 1 + + PRENOMNVOCC2 + + + fr.insee + kqwg9azb + 1 + QuestionItem + + + + fr.insee + kr0e0pav-QC + 1 + + TELNVOCC + + + fr.insee + kr0e0pav + 1 + QuestionItem + + + + fr.insee + kr0ee3u2-QC + 1 + + MAILNVOCC + + + fr.insee + kr0ee3u2 + 1 + QuestionItem + + + + fr.insee + kbc1b4k2-QC + 1 + + NBHAB + + + fr.insee + kbc1b4k2 + 1 + QuestionItem + + + + fr.insee + kmno1n7m-QC + 1 + + G_PRENOM + + + fr.insee + kmno1n7m + 1 + QuestionItem + + + + fr.insee + kmoo2fiy-QC + 1 + + SEXE + + + fr.insee + kmoo2fiy + 1 + QuestionItem + + + + fr.insee + kmoouamz-QC + 1 + + DATENAIS + + + fr.insee + kmoouamz + 1 + QuestionItem + + + + fr.insee + kmx6w6n5-QC + 1 + + TRAGE + + + fr.insee + kmx6w6n5 + 1 + QuestionItem + + + + fr.insee + kmookacu-QC + 1 + + LNAIS + + + fr.insee + kmookacu + 1 + QuestionItem + + + + fr.insee + kmor2z1x-QC + 1 + + DEPNAIS + + + fr.insee + kmor2z1x + 1 + QuestionItem + + + + fr.insee + kmorege9-QC + 1 + + PAYSNAIS + + + fr.insee + kmorege9 + 1 + QuestionItem + + + + fr.insee + kmort6x9-QC + 1 + + NATIO1N + + + fr.insee + kmort6x9 + 1 + QuestionGrid + + + + fr.insee + kmos2yo6-QC + 1 + + NATIO2N + + + fr.insee + kmos2yo6 + 1 + QuestionItem + + + + fr.insee + kmw4revw-QC + 1 + + LIEN + + + fr.insee + kmw4revw + 1 + QuestionItem + + + + fr.insee + kod271pp-QC + 1 + + COUPLE + + + fr.insee + kod271pp + 1 + QuestionItem + + + + fr.insee + kmw5h275-QC + 1 + + SITUMATRI + + + fr.insee + kmw5h275 + 1 + QuestionGrid + + + + fr.insee + kmx8sgeu-QC + 1 + + UNLOG + + + fr.insee + kmx8sgeu + 1 + QuestionItem + + + + fr.insee + kmx97ttc-QC + 1 + + DURLOG + + + fr.insee + kmx97ttc + 1 + QuestionItem + + + + fr.insee + kmx97tz1-QC + 1 + + LOGENQ + + + fr.insee + kmx97tz1 + 1 + QuestionItem + + + + fr.insee + kmx93med-QC + 1 + + LOGAUT + + + fr.insee + kmx93med + 1 + QuestionItem + + + + fr.insee + kmx9punx-QC + 1 + + GARDE + + + fr.insee + kmx9punx + 1 + QuestionItem + + + + fr.insee + kmx9im0b-QC + 1 + + DORM + + + fr.insee + kmx9im0b + 1 + QuestionItem + + + + fr.insee + kqi4zdkk-QC + 1 + + LOGCO + + + fr.insee + kqi4zdkk + 1 + QuestionItem + + + + fr.insee + kmx9pvyn-QC + 1 + + TYPLOGCO + + + fr.insee + kmx9pvyn + 1 + QuestionItem + + + + fr.insee + kmxfqrb1-QC + 1 + + SITUA + + + fr.insee + kmxfqrb1 + 1 + QuestionItem + + + + fr.insee + kmxg8ci7-QC + 1 + + TRAVAIL + + + fr.insee + kmxg8ci7 + 1 + QuestionItem + + + + fr.insee + kmxgftfs-QC + 1 + + GRDIPA + + + fr.insee + kmxgftfs + 1 + QuestionItem + + + + fr.insee + kqi8s71l-QC + 1 + + GRDIPB + + + fr.insee + kqi8s71l + 1 + QuestionItem + + + + fr.insee + kqi8mfos-QC + 1 + + GRDIPC + + + fr.insee + kqi8mfos + 1 + QuestionItem + + + + fr.insee + kp4dw3br-QC + 1 + + TELET + + + fr.insee + kp4dw3br + 1 + QuestionItem + + + + fr.insee + kvjb8q33-QC + 1 + + TELETNJ + + + fr.insee + kvjb8q33 + 1 + QuestionItem + + + + fr.insee + lgmc7929-QC + 1 + + PRACT_NOM + + + fr.insee + lgmc7929 + 1 + QuestionItem + + + + fr.insee + kd8qd4ou-QC + 1 + + HTLC1 + + + fr.insee + kd8qd4ou + 1 + QuestionItem + + + + fr.insee + l7kb07wt-QC + 1 + + NIVEAU + + + fr.insee + l7kb07wt + 1 + QuestionItem + + + + fr.insee + kp4b8f63-QC + 1 + + FOYPAGEES + + + fr.insee + kp4b8f63 + 1 + QuestionItem + + + + fr.insee + kp4bwrb9-QC + 1 + + RESAUTO + + + fr.insee + kp4bwrb9 + 1 + QuestionItem + + + + fr.insee + kbgi5n3g-QC + 1 + + INDCOLL + + + fr.insee + kbgi5n3g + 1 + QuestionItem + + + + fr.insee + kbgigljc-QC + 1 + + IMI + + + fr.insee + kbgigljc + 1 + QuestionItem + + + + fr.insee + kbgim4v3-QC + 1 + + ICOI + + + fr.insee + kbgim4v3 + 1 + QuestionItem + + + + fr.insee + kbgidvnm-QC + 1 + + IAS + + + fr.insee + kbgidvnm + 1 + QuestionItem + + + + fr.insee + kbgigafp-QC + 1 + + IEL + + + fr.insee + kbgigafp + 1 + QuestionItem + + + + fr.insee + kbghszh6-QC + 1 + + IAATC + + + fr.insee + kbghszh6 + 1 + QuestionItem + + + + fr.insee + kbghz7mp-QC + 1 + + IAATCD + + + fr.insee + kbghz7mp + 1 + QuestionItem + + + + fr.insee + jn0cttir-QC + 1 + + STOC1 + + + fr.insee + jn0cttir + 1 + QuestionItem + + + + fr.insee + klusnxnh-QC + 1 + + STOC2 + + + fr.insee + klusnxnh + 1 + QuestionItem + + + + fr.insee + l7j247p7-QC + 1 + + COLOC + + + fr.insee + l7j247p7 + 1 + QuestionItem + + + + fr.insee + l95euppt-QC + 1 + + LBA + + + fr.insee + l95euppt + 1 + QuestionItem + + + + fr.insee + jn0e3nhg-QC + 1 + + STOCP + + + fr.insee + jn0e3nhg + 1 + QuestionItem + + + + fr.insee + ko9tiu0f-QC + 1 + + STOCA12 + + + fr.insee + ko9tiu0f + 1 + QuestionItem + + + + fr.insee + ko9r0alc-QC + 1 + + STOCA3 + + + fr.insee + ko9r0alc + 1 + QuestionItem + + + + fr.insee + ko9t45t9-QC + 1 + + STOCA4 + + + fr.insee + ko9t45t9 + 1 + QuestionItem + + + + fr.insee + knoqewds-QC + 1 + + STOCB1 + + + fr.insee + knoqewds + 1 + QuestionItem + + + + fr.insee + joh8lowu-QC + 1 + + EPAS1 + + + fr.insee + joh8lowu + 1 + QuestionItem + + + + fr.insee + kppmespv-QC + 1 + + ERETOUR + + + fr.insee + kppmespv + 1 + QuestionItem + + + + fr.insee + joh8ixt2-QC + 1 + + EPASB + + + fr.insee + joh8ixt2 + 1 + QuestionItem + + + + fr.insee + kcnccgjg-QC + 1 + + EPASC + + + fr.insee + kcnccgjg + 1 + QuestionItem + + + + fr.insee + knorcs48-QC + 1 + + ERET1 + + + fr.insee + knorcs48 + 1 + QuestionGrid + + + + fr.insee + kp5vtjh4-QC + 1 + + ECOVID + + + fr.insee + kp5vtjh4 + 1 + QuestionItem + + + + fr.insee + joirni0x-QC + 1 + + EPROJ + + + fr.insee + joirni0x + 1 + QuestionItem + + + + fr.insee + joirve2f-QC + 1 + + EPROJB + + + fr.insee + joirve2f + 1 + QuestionItem + + + + fr.insee + joirtz3j-QC + 1 + + EPROJC + + + fr.insee + joirtz3j + 1 + QuestionItem + + + + fr.insee + joisp3u9-QC + 1 + + EPROJD + + + fr.insee + joisp3u9 + 1 + QuestionItem + + + + fr.insee + joisq6l3-QC + 1 + + EAMIA + + + fr.insee + joisq6l3 + 1 + QuestionItem + + + + fr.insee + knpolbu3-QC + 1 + + EAMID1 + + + fr.insee + knpolbu3 + 1 + QuestionGrid + + + + fr.insee + kppptqlu-QC + 1 + + ECOVID2 + + + fr.insee + kppptqlu + 1 + QuestionItem + + + + fr.insee + joismxwd-QC + 1 + + EAMIH + + + fr.insee + joismxwd + 1 + QuestionItem + + + + fr.insee + kqv3atis-QC + 1 + + EAMIK + + + fr.insee + kqv3atis + 1 + QuestionItem + + + + fr.insee + kqv44b8j-QC + 1 + + EAMIL + + + fr.insee + kqv44b8j + 1 + QuestionItem + + + + fr.insee + jojtbo85-QC + 1 + + MAA2A + + + fr.insee + jojtbo85 + 1 + QuestionItem + + + + fr.insee + kp6iwd90-QC + 1 + + MAA2AT_Q + + + fr.insee + kp6iwd90 + 1 + QuestionItem + + + + fr.insee + jojt16mt-QC + 1 + + MAA2M + + + fr.insee + jojt16mt + 1 + QuestionItem + + + + fr.insee + jojt3qxp-QC + 1 + + MARRIVC + + + fr.insee + jojt3qxp + 1 + QuestionItem + + + + fr.insee + jojtnq9z-QC + 1 + + MAA2AC + + + fr.insee + jojtnq9z + 1 + QuestionItem + + + + fr.insee + kp6ja40b-QC + 1 + + MAA2ATC_Q + + + fr.insee + kp6ja40b + 1 + QuestionItem + + + + fr.insee + jor73af6-QC + 1 + + MAA2MC + + + fr.insee + jor73af6 + 1 + QuestionItem + + + + fr.insee + jojtsgsr-QC + 1 + + MAA3 + + + fr.insee + jojtsgsr + 1 + QuestionItem + + + + fr.insee + jojtutyy-QC + 1 + + MAA3A + + + fr.insee + jojtutyy + 1 + QuestionItem + + + + fr.insee + jojtizrx-QC + 1 + + MAA3M + + + fr.insee + jojtizrx + 1 + QuestionItem + + + + fr.insee + l3yket2i-QC + 1 + + SDEJA + + + fr.insee + l3yket2i + 1 + QuestionItem + + + + fr.insee + jojuueml-QC + 1 + + KCU1 + + + fr.insee + jojuueml + 1 + QuestionItem + + + + fr.insee + jojuno0d-QC + 1 + + KCU2 + + + fr.insee + jojuno0d + 1 + QuestionItem + + + + fr.insee + klv34du0-QC + 1 + + HUTCOND + + + fr.insee + klv34du0 + 1 + QuestionItem + + + + fr.insee + l3io7e8f-QC + 1 + + HUTDEF + + + fr.insee + l3io7e8f + 1 + QuestionGrid + + + + fr.insee + jojuwst2-QC + 1 + + HUP + + + fr.insee + jojuwst2 + 1 + QuestionItem + + + + fr.insee + jojv1e5e-QC + 1 + + HPP + + + fr.insee + jojv1e5e + 1 + QuestionItem + + + + fr.insee + jojuz9k3-QC + 1 + + HSP + + + fr.insee + jojuz9k3 + 1 + QuestionItem + + + + fr.insee + jojv79ut-QC + 1 + + HUA + + + fr.insee + jojv79ut + 1 + QuestionItem + + + + fr.insee + jojv3ha7-QC + 1 + + HPA + + + fr.insee + jojv3ha7 + 1 + QuestionItem + + + + fr.insee + kmd6o006-QC + 1 + + HULHUI1 + + + fr.insee + kmd6o006 + 1 + QuestionItem + + + + fr.insee + kmcdiwdv-QC + 1 + + HULHUI2 + + + fr.insee + kmcdiwdv + 1 + QuestionGrid + + + + fr.insee + jojuzbus-QC + 1 + + HPI1 + + + fr.insee + jojuzbus + 1 + QuestionItem + + + + fr.insee + klv4iusu-QC + 1 + + HPI2 + + + fr.insee + klv4iusu + 1 + QuestionItem + + + + fr.insee + jojv5bnw-QC + 1 + + HSI1 + + + fr.insee + jojv5bnw + 1 + QuestionItem + + + + fr.insee + klw36l7v-QC + 1 + + HSI2 + + + fr.insee + klw36l7v + 1 + QuestionItem + + + + fr.insee + jojvgfei-QC + 1 + + HPH + + + fr.insee + jojvgfei + 1 + QuestionItem + + + + fr.insee + jojv4yqe-QC + 1 + + HCHA + + + fr.insee + jojv4yqe + 1 + QuestionItem + + + + fr.insee + jojvc0vt-QC + 1 + + HST + + + fr.insee + jojvc0vt + 1 + QuestionItem + + + + fr.insee + jojv1ux1-QC + 1 + + HPEUP + + + fr.insee + jojv1ux1 + 1 + QuestionItem + + + + fr.insee + kv29cjdq-QC + 1 + + HAUT + + + fr.insee + kv29cjdq + 1 + QuestionItem + + + + fr.insee + jrupq1i5-QC + 1 + + KVE + + + fr.insee + jrupq1i5 + 1 + QuestionItem + + + + fr.insee + jrupsr80-QC + 1 + + KSV + + + fr.insee + jrupsr80 + 1 + QuestionItem + + + + fr.insee + jrupy93h-QC + 1 + + KSV1 + + + fr.insee + jrupy93h + 1 + QuestionItem + + + + fr.insee + jrupzl7m-QC + 1 + + KBA + + + fr.insee + jrupzl7m + 1 + QuestionItem + + + + fr.insee + jrupx7iz-QC + 1 + + KSB + + + fr.insee + jrupx7iz + 1 + QuestionItem + + + + fr.insee + jruq98v2-QC + 1 + + KJA + + + fr.insee + jruq98v2 + 1 + QuestionItem + + + + fr.insee + jruq8x6e-QC + 1 + + KSJPI + + + fr.insee + jruq8x6e + 1 + QuestionItem + + + + fr.insee + jruq85av-QC + 1 + + KSJPIT + + + fr.insee + jruq85av + 1 + QuestionItem + + + + fr.insee + jruq4was-QC + 1 + + KSMI + + + fr.insee + jruq4was + 1 + QuestionItem + + + + fr.insee + jruq6fv0-QC + 1 + + KSJPC + + + fr.insee + jruq6fv0 + 1 + QuestionItem + + + + fr.insee + jruqlf39-QC + 1 + + KJC + + + fr.insee + jruqlf39 + 1 + QuestionItem + + + + fr.insee + jrusmgfq-QC + 1 + + KSJC + + + fr.insee + jrusmgfq + 1 + QuestionItem + + + + fr.insee + l3irva5g-QC + 1 + + GVOIT + + + fr.insee + l3irva5g + 1 + QuestionItem + + + + fr.insee + jrusjpqy-QC + 1 + + KGA + + + fr.insee + jrusjpqy + 1 + QuestionGrid + + + + fr.insee + jrut4vl7-QC + 1 + + KGAB + + + fr.insee + jrut4vl7 + 1 + QuestionGrid + + + + fr.insee + jrut0i0j-QC + 1 + + KCA + + + fr.insee + jrut0i0j + 1 + QuestionItem + + + + fr.insee + jrusu349-QC + 1 + + KVELO + + + fr.insee + jrusu349 + 1 + QuestionItem + + + + fr.insee + jrutj5co-QC + 1 + + KGRA + + + fr.insee + jrutj5co + 1 + QuestionItem + + + + fr.insee + jruu4ry3-QC + 1 + + KSOA + + + fr.insee + jruu4ry3 + 1 + QuestionItem + + + + fr.insee + jruue197-QC + 1 + + KPISC + + + fr.insee + jruue197 + 1 + QuestionItem + + + + fr.insee + jruubukg-QC + 1 + + KGRAA + + + fr.insee + jruubukg + 1 + QuestionItem + + + + fr.insee + jruuncm0-QC + 1 + + KAO1 + + + fr.insee + jruuncm0 + 1 + QuestionItem + + + + fr.insee + jruv1cla-QC + 1 + + KWC1 + + + fr.insee + jruv1cla + 1 + QuestionItem + + + + fr.insee + kmeu61l4-QC + 1 + + KWCID + + + fr.insee + kmeu61l4 + 1 + QuestionItem + + + + fr.insee + lfjgw27o-QC + 1 + + KWCIDB + + + fr.insee + lfjgw27o + 1 + QuestionItem + + + + fr.insee + lfjel2zf-QC + 1 + + KWCID2 + + + fr.insee + lfjel2zf + 1 + QuestionItem + + + + fr.insee + jruva8uu-QC + 1 + + KBD + + + fr.insee + jruva8uu + 1 + QuestionItem + + + + fr.insee + kksgd6fv-QC + 1 + + KSE + + + fr.insee + kksgd6fv + 1 + QuestionItem + + + + fr.insee + lfjgy3we-QC + 1 + + KSEB + + + fr.insee + lfjgy3we + 1 + QuestionItem + + + + fr.insee + lfjedybr-QC + 1 + + KSE2 + + + fr.insee + lfjedybr + 1 + QuestionItem + + + + fr.insee + kmf0xcox-QC + 1 + + KDLK1 + + + fr.insee + kmf0xcox + 1 + QuestionItem + + + + fr.insee + jruv164k-QC + 1 + + KDLK2 + + + fr.insee + jruv164k + 1 + QuestionItem + + + + fr.insee + joicolgp-QC + 1 + + OLA + + + fr.insee + joicolgp + 1 + QuestionItem + + + + fr.insee + joiccm1l-QC + 1 + + OLAD + + + fr.insee + joiccm1l + 1 + QuestionItem + + + + fr.insee + knio1w9d-QC + 1 + + OLAR1 + + + fr.insee + knio1w9d + 1 + QuestionGrid + + + + fr.insee + l7j1k2un-QC + 1 + + OLAR1DIF + + + fr.insee + l7j1k2un + 1 + QuestionGrid + + + + fr.insee + l7j1y65o-QC + 1 + + OLAR1DIFCO + + + fr.insee + l7j1y65o + 1 + QuestionGrid + + + + fr.insee + kninrf3p-QC + 1 + + OLAR2 + + + fr.insee + kninrf3p + 1 + QuestionGrid + + + + fr.insee + knioggcs-QC + 1 + + OLAR3 + + + fr.insee + knioggcs + 1 + QuestionGrid + + + + fr.insee + l3yli2im-QC + 1 + + OLAR4 + + + fr.insee + l3yli2im + 1 + QuestionItem + + + + fr.insee + kniwyjy0-QC + 1 + + OQA + + + fr.insee + kniwyjy0 + 1 + QuestionItem + + + + fr.insee + joidpl4s-QC + 1 + + OQAD + + + fr.insee + joidpl4s + 1 + QuestionItem + + + + fr.insee + joinz4wo-QC + 1 + + SDL1 + + + fr.insee + joinz4wo + 1 + QuestionGrid + + + + fr.insee + kqr0kx1e-QC + 1 + + SDL2 + + + fr.insee + kqr0kx1e + 1 + QuestionItem + + + + fr.insee + kpb8b0vw-QC + 1 + + SDL4 + + + fr.insee + kpb8b0vw + 1 + QuestionItem + + + + fr.insee + joio5w41-QC + 1 + + SDN1 + + + fr.insee + joio5w41 + 1 + QuestionItem + + + + fr.insee + joioebt6-QC + 1 + + SDT1 + + + fr.insee + joioebt6 + 1 + QuestionItem + + + + fr.insee + kudultmi-QC + 1 + + SDL_SIT1 + + + fr.insee + kudultmi + 1 + QuestionItem + + + + fr.insee + joo0yx5k-QC + 1 + + SDTAD + + + fr.insee + joo0yx5k + 1 + QuestionItem + + + + fr.insee + joo1m3x2-QC + 1 + + SDT2 + + + fr.insee + joo1m3x2 + 1 + QuestionItem + + + + fr.insee + kudvobyc-QC + 1 + + SDL_SIT2 + + + fr.insee + kudvobyc + 1 + QuestionItem + + + + fr.insee + kudvxpft-QC + 1 + + SDTAD_SIT2 + + + fr.insee + kudvxpft + 1 + QuestionItem + + + + fr.insee + kudwrcyp-QC + 1 + + SDT2_SIT2 + + + fr.insee + kudwrcyp + 1 + QuestionItem + + + + fr.insee + joo1h434-QC + 1 + + VMODM + + + fr.insee + joo1h434 + 1 + QuestionGrid + + + + fr.insee + joo22fbd-QC + 1 + + VMODP1 + + + fr.insee + joo22fbd + 1 + QuestionGrid + + + + fr.insee + koe0u2zg-QC + 1 + + VMODP2 + + + fr.insee + koe0u2zg + 1 + QuestionGrid + + + + fr.insee + jopgtrq1-QC + 1 + + VVENDL + + + fr.insee + jopgtrq1 + 1 + QuestionItem + + + + fr.insee + jopgvwb0-QC + 1 + + VFFH + + + fr.insee + jopgvwb0 + 1 + QuestionItem + + + + fr.insee + jopgzovi-QC + 1 + + VFLA + + + fr.insee + jopgzovi + 1 + QuestionItem + + + + fr.insee + koeabibm-QC + 1 + + VACHAL + + + fr.insee + koeabibm + 1 + QuestionItem + + + + fr.insee + joph9za3-QC + 1 + + VBILLOG + + + fr.insee + joph9za3 + 1 + QuestionItem + + + + fr.insee + jopkquw3-QC + 1 + + VLR + + + fr.insee + jopkquw3 + 1 + QuestionItem + + + + fr.insee + jopl7p41-QC + 1 + + COMMUNEPASSEE + + + fr.insee + jopl7p41 + 1 + QuestionItem + + + + fr.insee + joplihpv-QC + 1 + + DEPART + + + fr.insee + joplihpv + 1 + QuestionItem + + + + fr.insee + joplkxrd-QC + 1 + + VCRCOM + + + fr.insee + joplkxrd + 1 + QuestionItem + + + + fr.insee + jopldlvn-QC + 1 + + VPRA + + + fr.insee + jopldlvn + 1 + QuestionItem + + + + fr.insee + joplorns-QC + 1 + + VLA1 + + + fr.insee + joplorns + 1 + QuestionItem + + + + fr.insee + joplzrmo-QC + 1 + + VSO1 + + + fr.insee + joplzrmo + 1 + QuestionItem + + + + fr.insee + jopri4xh-QC + 1 + + VSY + + + fr.insee + jopri4xh + 1 + QuestionItem + + + + fr.insee + joprsm9u-QC + 1 + + VLOYER + + + fr.insee + joprsm9u + 1 + QuestionItem + + + + fr.insee + joprlyql-QC + 1 + + VAID + + + fr.insee + joprlyql + 1 + QuestionItem + + + + fr.insee + joprp441-QC + 1 + + VIN + + + fr.insee + joprp441 + 1 + QuestionItem + + + + fr.insee + jopruzlo-QC + 1 + + VTL1 + + + fr.insee + jopruzlo + 1 + QuestionItem + + + + fr.insee + jopsc29x-QC + 1 + + VSURF + + + fr.insee + jopsc29x + 1 + QuestionItem + + + + fr.insee + jops4c0x-QC + 1 + + VPI + + + fr.insee + jops4c0x + 1 + QuestionItem + + + + fr.insee + jopsjl1n-QC + 1 + + VANCIEN + + + fr.insee + jopsjl1n + 1 + QuestionItem + + + + fr.insee + jopsiigq-QC + 1 + + VOP + + + fr.insee + jopsiigq + 1 + QuestionItem + + + + fr.insee + jopsrdb3-QC + 1 + + VND + + + fr.insee + jopsrdb3 + 1 + QuestionItem + + + + fr.insee + joptkb9d-QC + 1 + + VLRD + + + fr.insee + joptkb9d + 1 + QuestionItem + + + + fr.insee + jopu7wfr-QC + 1 + + VLAB1 + + + fr.insee + jopu7wfr + 1 + QuestionItem + + + + fr.insee + jopua1hn-QC + 1 + + VDD1 + + + fr.insee + jopua1hn + 1 + QuestionItem + + + + fr.insee + jopuofnr-QC + 1 + + VDSY + + + fr.insee + jopuofnr + 1 + QuestionItem + + + + fr.insee + jopuhzbr-QC + 1 + + VTLD1 + + + fr.insee + jopuhzbr + 1 + QuestionItem + + + + fr.insee + jopukm75-QC + 1 + + VSURFD + + + fr.insee + jopukm75 + 1 + QuestionItem + + + + fr.insee + joputbjc-QC + 1 + + VPID + + + fr.insee + joputbjc + 1 + QuestionItem + + + + fr.insee + jopvzl28-QC + 1 + + VRAIS1 + + + fr.insee + jopvzl28 + 1 + QuestionItem + + + + fr.insee + kovj0a8h-QC + 1 + + VRAIS2 + + + fr.insee + kovj0a8h + 1 + QuestionGrid + + + + fr.insee + kovirkvq-QC + 1 + + VRAIS3 + + + fr.insee + kovirkvq + 1 + QuestionGrid + + + + fr.insee + kovj5q33-QC + 1 + + VRAIS4 + + + fr.insee + kovj5q33 + 1 + QuestionGrid + + + + fr.insee + lgmgi33v-QC + 1 + + VRAIS5 + + + fr.insee + lgmgi33v + 1 + QuestionItem + + + + fr.insee + kp5apvf3-QC + 1 + + TELFIXE + + + fr.insee + kp5apvf3 + 1 + QuestionItem + + + + fr.insee + kp5au0iu-QC + 1 + + TELMOB + + + fr.insee + kp5au0iu + 1 + QuestionItem + + + + fr.insee + kp5bjbzg-QC + 1 + + UWEB + + + fr.insee + kp5bjbzg + 1 + QuestionItem + + + + fr.insee + kbamkrlv-QC + 1 + + CHGNC + + + fr.insee + kbamkrlv + 1 + QuestionItem + + + + fr.insee + kbaxq9l0-QC + 1 + + CIVCOLL + + + fr.insee + kbaxq9l0 + 1 + QuestionItem + + + + fr.insee + kr0fw3n6-QC + 1 + + PRENOMCOLL + + + fr.insee + kr0fw3n6 + 1 + QuestionItem + + + + fr.insee + kr0fn06f-QC + 1 + + NOMCOLL + + + fr.insee + kr0fn06f + 1 + QuestionItem + + + + fr.insee + kwjivaa1-QC + 1 + + CHGNC2 + + + fr.insee + kwjivaa1 + 1 + QuestionItem + + + + fr.insee + kr0fr82y-QC + 1 + + CIVCOLL2 + + + fr.insee + kr0fr82y + 1 + QuestionItem + + + + fr.insee + kbbzjgn8-QC + 1 + + PRENOMCOLL2 + + + fr.insee + kbbzjgn8 + 1 + QuestionItem + + + + fr.insee + kbbzhtx3-QC + 1 + + NOMCOLL2 + + + fr.insee + kbbzhtx3 + 1 + QuestionItem + + + + fr.insee + kbay0xfi-QC + 1 + + NOTELCOLL + + + fr.insee + kbay0xfi + 1 + QuestionItem + + + + fr.insee + kb9hlpdc-CI-0 + 1 + + Confirmation non renseignée + + + Confirmation non renseignée + + + fr.insee + kb9hlpdc-CI-0-II-0 + 1 + Instruction + + warning + + + vtl + + fr.insee + kb9hlpdc-CI-0-IP-1 + 1 + + CADR + + + + + fr.insee + kb9hlpdc-QOP-kb9ht73s + 1 + OutParameter + + + fr.insee + kb9hlpdc-CI-0-IP-1 + 1 + InParameter + + + nvl(kb9hlpdc-CI-0-IP-1, "") = "" + + + + + fr.insee + kbal4bzb-CI-0 + 1 + + Message incitatif + + + Message incitatif + + + fr.insee + kbal4bzb-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kbal4bzb-CI-0-IP-1 + 1 + + ADR_COLL + + + + + fr.insee + kbal4bzb-QOP-kbalgoim + 1 + OutParameter + + + fr.insee + kbal4bzb-CI-0-IP-1 + 1 + InParameter + + + nvl(kbal4bzb-CI-0-IP-1, "") = "" + + + + + fr.insee + kbal8crw-CI-0 + 1 + + Message incitatif + + + Message incitatif + + + fr.insee + kbal8crw-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kbal8crw-CI-0-IP-1 + 1 + + CODEPOST1_COLL + + + + + fr.insee + kbal8crw-QOP-kbaldkpe + 1 + OutParameter + + + fr.insee + kbal8crw-CI-0-IP-1 + 1 + InParameter + + + nvl(kbal8crw-CI-0-IP-1, "") = "" + + + + + fr.insee + kbal9dwk-CI-0 + 1 + + Message incitatif + + + Message incitatif + + + fr.insee + kbal9dwk-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kbal9dwk-CI-0-IP-1 + 1 + + LIBCOM_COLL + + + + + fr.insee + kbal9dwk-QOP-kbalr921 + 1 + OutParameter + + + fr.insee + kbal9dwk-CI-0-IP-1 + 1 + InParameter + + + nvl(kbal9dwk-CI-0-IP-1, "") = "" + + + + + fr.insee + kbc1b4k2-CI-0 + 1 + + Nombre d'habitants non renseigné + + + Nombre d'habitants non renseigné + + + fr.insee + kbc1b4k2-CI-0-II-0 + 1 + Instruction + + warning + + + vtl + + fr.insee + kbc1b4k2-CI-0-IP-1 + 1 + + NBHAB + + + + + fr.insee + kbc1b4k2-QOP-kbc1oors + 1 + OutParameter + + + fr.insee + kbc1b4k2-CI-0-IP-1 + 1 + InParameter + + + nvl(kbc1b4k2-CI-0-IP-1,0) = 0 + + + + + fr.insee + kbc1b4k2-CI-1 + 1 + + alerte si décimales + + + + alerte si décimales + + + + fr.insee + kbc1b4k2-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + kbc1b4k2-CI-1-IP-1 + 1 + + NBHAB + + + + + fr.insee + kbc1b4k2-QOP-kbc1oors + 1 + OutParameter + + + fr.insee + kbc1b4k2-CI-1-IP-1 + 1 + InParameter + + + (instr(cast(nvl(kbc1b4k2-CI-1-IP-1,0),string),".") <> 0) or (instr(cast(nvl(kbc1b4k2-CI-1-IP-1,0),string),",) <> 0) + + + + + fr.insee + kmno1n7m-CI-0 + 1 + + Prénom non renseigné pour 1 habitant uniquement + + + Prénom non renseigné pour 1 habitant uniquement + + + fr.insee + kmno1n7m-CI-0-II-0 + 1 + Instruction + + stumblingblock + + + vtl + + fr.insee + kmno1n7m-CI-0-IP-1 + 1 + + NBHAB + + + + fr.insee + kmno1n7m-CI-0-IP-2 + 1 + + G_PRENOM + + + + + fr.insee + kbc1b4k2-QOP-kbc1oors + 1 + OutParameter + + + fr.insee + kmno1n7m-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + kmno1n7m-QOP-kmno8tbs + 1 + OutParameter + + + fr.insee + kmno1n7m-CI-0-IP-2 + 1 + InParameter + + + (nvl(kmno1n7m-CI-0-IP-2, "") = "") and (isnull(kmno1n7m-CI-0-IP-1) or cast(kmno1n7m-CI-0-IP-1,integer)=1) + + + + + fr.insee + kmno1n7m-CI-1 + 1 + + Prénoms non renseigné + + + Prénoms non renseigné + + + fr.insee + kmno1n7m-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + kmno1n7m-CI-1-IP-1 + 1 + + NBHAB + + + + fr.insee + kmno1n7m-CI-1-IP-2 + 1 + + G_PRENOM + + + + + fr.insee + kbc1b4k2-QOP-kbc1oors + 1 + OutParameter + + + fr.insee + kmno1n7m-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + kmno1n7m-QOP-kmno8tbs + 1 + OutParameter + + + fr.insee + kmno1n7m-CI-1-IP-2 + 1 + InParameter + + + (nvl(kmno1n7m-CI-1-IP-2, "") = "") and (not(isnull(kmno1n7m-CI-1-IP-1)) and cast(kmno1n7m-CI-1-IP-1,integer)>1) + + + + + fr.insee + kmoouamz-CI-0 + 1 + + Date de naissance non renseignée (répondant) + + + Date de naissance non renseignée (répondant) + + + fr.insee + kmoouamz-CI-0-II-0 + 1 + Instruction + + warning + + + vtl + + fr.insee + kmoouamz-CI-0-IP-1 + 1 + + PRENOMREF + + + + fr.insee + kmoouamz-CI-0-IP-2 + 1 + + PRENOM + + + + fr.insee + kmoouamz-CI-0-IP-3 + 1 + + DATENAIS + + + + + fr.insee + kpauiid9-GOP + 1 + OutParameter + + + fr.insee + kmoouamz-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + kq7uo7yd-GOP + 1 + OutParameter + + + fr.insee + kmoouamz-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + kmoouamz-QOP-kmoow49z + 1 + OutParameter + + + fr.insee + kmoouamz-CI-0-IP-3 + 1 + InParameter + + + (nvl(kmoouamz-CI-0-IP-3, "") = "") and (kmoouamz-CI-0-IP-2=kmoouamz-CI-0-IP-1) + + + + + fr.insee + kmoouamz-CI-1 + 1 + + Date de naissance non renseignée (autres) + + + Date de naissance non renseignée (autres) + + + fr.insee + kmoouamz-CI-1-II-1 + 1 + Instruction + + warning + + + vtl + + fr.insee + kmoouamz-CI-1-IP-1 + 1 + + PRENOMREF + + + + fr.insee + kmoouamz-CI-1-IP-2 + 1 + + PRENOM + + + + fr.insee + kmoouamz-CI-1-IP-3 + 1 + + DATENAIS + + + + + fr.insee + kpauiid9-GOP + 1 + OutParameter + + + fr.insee + kmoouamz-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + kq7uo7yd-GOP + 1 + OutParameter + + + fr.insee + kmoouamz-CI-1-IP-2 + 1 + InParameter + + + + + fr.insee + kmoouamz-QOP-kmoow49z + 1 + OutParameter + + + fr.insee + kmoouamz-CI-1-IP-3 + 1 + InParameter + + + (nvl(kmoouamz-CI-1-IP-3, "") = "") and (not(isnull(kmoouamz-CI-1-IP-2)) and kmoouamz-CI-1-IP-2<>kmoouamz-CI-1-IP-1) + + + + + fr.insee + kmort6x9-CI-0 + 1 + + Saisie incorrecte + + + Saisie incorrecte + + + fr.insee + kmort6x9-CI-0-II-0 + 1 + Instruction + + stumblingblock + + + vtl + + fr.insee + kmort6x9-CI-0-IP-1 + 1 + + NATIO1N1 + + + + fr.insee + kmort6x9-CI-0-IP-2 + 1 + + NATIO1N2 + + + + fr.insee + kmort6x9-CI-0-IP-3 + 1 + + NATIO1N3 + + + + fr.insee + kmort6x9-CI-0-IP-4 + 1 + + NATIO1N4 + + + + + fr.insee + kmort6x9-QOP-kmosa98y + 1 + OutParameter + + + fr.insee + kmort6x9-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + kmort6x9-QOP-kmos360k + 1 + OutParameter + + + fr.insee + kmort6x9-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + kmort6x9-QOP-kmos37e1 + 1 + OutParameter + + + fr.insee + kmort6x9-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + kmort6x9-QOP-kmorue9c + 1 + OutParameter + + + fr.insee + kmort6x9-CI-0-IP-4 + 1 + InParameter + + + (nvl(kmort6x9-CI-0-IP-1, false) = true and nvl(kmort6x9-CI-0-IP-2, false) = true) or (nvl(kmort6x9-CI-0-IP-1, false) = true and nvl(kmort6x9-CI-0-IP-4, false) = true) or (nvl(kmort6x9-CI-0-IP-2, false) = true and nvl(kmort6x9-CI-0-IP-4, false) = true) or (nvl(kmort6x9-CI-0-IP-3, false) = true and nvl(kmort6x9-CI-0-IP-4, false) = true) + + + + + fr.insee + kmxfqrb1-CI-0 + 1 + + Situation non déclarée + + + Situation non déclarée + + + fr.insee + kmxfqrb1-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kmxfqrb1-CI-0-IP-1 + 1 + + SITUA + + + + + fr.insee + kmxfqrb1-QOP-kmxfw3tj + 1 + OutParameter + + + fr.insee + kmxfqrb1-CI-0-IP-1 + 1 + InParameter + + + nvl(kmxfqrb1-CI-0-IP-1, "") = "" + + + + + fr.insee + kd8qd4ou-CI-0 + 1 + + Message incitatif + + + Message incitatif + + + fr.insee + kd8qd4ou-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kd8qd4ou-CI-0-IP-1 + 1 + + HTLC1 + + + + + fr.insee + kd8qd4ou-QOP-kd8q0swm + 1 + OutParameter + + + fr.insee + kd8qd4ou-CI-0-IP-1 + 1 + InParameter + + + nvl(kd8qd4ou-CI-0-IP-1, "") = "" + + + + + fr.insee + kbgi5n3g-CI-0 + 1 + + Message incitatif + + + Message incitatif + + + fr.insee + kbgi5n3g-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kbgi5n3g-CI-0-IP-1 + 1 + + INDCOLL + + + + + fr.insee + kbgi5n3g-QOP-kbgif8i8 + 1 + OutParameter + + + fr.insee + kbgi5n3g-CI-0-IP-1 + 1 + InParameter + + + nvl(kbgi5n3g-CI-0-IP-1, "") = "" + + + + + fr.insee + kbgim4v3-CI-0 + 1 + + Message incitatif + + + Message incitatif + + + fr.insee + kbgim4v3-CI-0-II-0 + 1 + Instruction + + warning + + + vtl + + fr.insee + kbgim4v3-CI-0-IP-1 + 1 + + ICOI + + + + + fr.insee + kbgim4v3-QOP-kbgin5q4 + 1 + OutParameter + + + fr.insee + kbgim4v3-CI-0-IP-1 + 1 + InParameter + + + nvl(kbgim4v3-CI-0-IP-1, "") = "" + + + + + fr.insee + kbgigafp-CI-0 + 1 + + alerte si décimales + + + alerte si décimales + + + fr.insee + kbgigafp-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kbgigafp-CI-0-IP-1 + 1 + + IEL + + + + + fr.insee + kbgigafp-QOP-kbgikgba + 1 + OutParameter + + + fr.insee + kbgigafp-CI-0-IP-1 + 1 + InParameter + + + (instr(cast(nvl(kbgigafp-CI-0-IP-1,0),string),".") <> 0) or (instr(cast(nvl(kbgigafp-CI-0-IP-1,0),string),",) <> 0) + + + + + fr.insee + kbghz7mp-CI-0 + 1 + + Contrôle de bornes sur les dates + + + Contrôle de bornes sur les dates + + + fr.insee + kbghz7mp-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kbghz7mp-CI-0-IP-1 + 1 + + IAATCD + + + + + fr.insee + kbghz7mp-QOP-leradyld + 1 + OutParameter + + + fr.insee + kbghz7mp-CI-0-IP-1 + 1 + InParameter + + + cast(nvl(kbghz7mp-CI-0-IP-1,""),integer) < 2006 or cast(nvl(kbghz7mp-CI-0-IP-1,""),integer) >2024 + + + + + fr.insee + jn0cttir-CI-0 + 1 + + Message incitatif + + + Message incitatif + + + fr.insee + jn0cttir-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + jn0cttir-CI-0-IP-1 + 1 + + STOC1 + + + + + fr.insee + jn0cttir-QOP-jn0dct54 + 1 + OutParameter + + + fr.insee + jn0cttir-CI-0-IP-1 + 1 + InParameter + + + nvl(jn0cttir-CI-0-IP-1, "") = "" + + + + + fr.insee + ko9tiu0f-CI-0 + 1 + + Message incitatif + + + Message incitatif + + + fr.insee + ko9tiu0f-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + ko9tiu0f-CI-0-IP-1 + 1 + + STOCA12 + + + + + fr.insee + ko9tiu0f-QOP-ko9t7khn + 1 + OutParameter + + + fr.insee + ko9tiu0f-CI-0-IP-1 + 1 + InParameter + + + nvl(ko9tiu0f-CI-0-IP-1, "") = "" + + + + + fr.insee + ko9r0alc-CI-0 + 1 + + Message incitatif + + + Message incitatif + + + fr.insee + ko9r0alc-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + ko9r0alc-CI-0-IP-1 + 1 + + STOCA3 + + + + + fr.insee + ko9r0alc-QOP-ko9qvhh3 + 1 + OutParameter + + + fr.insee + ko9r0alc-CI-0-IP-1 + 1 + InParameter + + + nvl(ko9r0alc-CI-0-IP-1, "") = "" + + + + + fr.insee + ko9t45t9-CI-0 + 1 + + Message incitatif + + + Message incitatif + + + fr.insee + ko9t45t9-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + ko9t45t9-CI-0-IP-1 + 1 + + STOCA4 + + + + + fr.insee + ko9t45t9-QOP-ko9sybca + 1 + OutParameter + + + fr.insee + ko9t45t9-CI-0-IP-1 + 1 + InParameter + + + nvl(ko9t45t9-CI-0-IP-1, "") = "" + + + + + fr.insee + jojtbo85-CI-0 + 1 + + Message incitatif + + + Message incitatif + + + fr.insee + jojtbo85-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + jojtbo85-CI-0-IP-1 + 1 + + MAA2A + + + + + fr.insee + jojtbo85-QOP-lera9at4 + 1 + OutParameter + + + fr.insee + jojtbo85-CI-0-IP-1 + 1 + InParameter + + + nvl(jojtbo85-CI-0-IP-1,"") = "" + + + + + fr.insee + jojtbo85-CI-1 + 1 + + Borne des dates + + + Borne des dates + + + fr.insee + jojtbo85-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + jojtbo85-CI-1-IP-1 + 1 + + MAA2A + + + + + fr.insee + jojtbo85-QOP-lera9at4 + 1 + OutParameter + + + fr.insee + jojtbo85-CI-1-IP-1 + 1 + InParameter + + + cast(nvl(jojtbo85-CI-1-IP-1,""),integer) < 1900 or cast(nvl(jojtbo85-CI-1-IP-1,""),integer) >2024 + + + + + fr.insee + jojt16mt-CI-0 + 1 + + Message incitatif + + + Message incitatif + + + fr.insee + jojt16mt-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + jojt16mt-CI-0-IP-1 + 1 + + MAA2M + + + + + fr.insee + jojt16mt-QOP-kf71i6tz + 1 + OutParameter + + + fr.insee + jojt16mt-CI-0-IP-1 + 1 + InParameter + + + nvl(jojt16mt-CI-0-IP-1, "") = "" + + + + + fr.insee + jojtnq9z-CI-0 + 1 + + Contrôle de borne sur les dates + + + Contrôle de borne sur les dates + + + fr.insee + jojtnq9z-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + jojtnq9z-CI-0-IP-1 + 1 + + MAA2AC + + + + + fr.insee + jojtnq9z-QOP-leraafbf + 1 + OutParameter + + + fr.insee + jojtnq9z-CI-0-IP-1 + 1 + InParameter + + + cast(nvl(jojtnq9z-CI-0-IP-1,""),integer) < 1900 or cast(nvl(jojtnq9z-CI-0-IP-1,""),integer) >2024 + + + + + fr.insee + jojtutyy-CI-0 + 1 + + Cohérence avec la date d'arrivée du répondant + + + Cohérence avec la date d'arrivée du répondant + + + fr.insee + jojtutyy-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + jojtutyy-CI-0-IP-1 + 1 + + MAA2A + + + + fr.insee + jojtutyy-CI-0-IP-2 + 1 + + MAA2M + + + + fr.insee + jojtutyy-CI-0-IP-3 + 1 + + MARRIVC + + + + fr.insee + jojtutyy-CI-0-IP-4 + 1 + + MAA2AC + + + + fr.insee + jojtutyy-CI-0-IP-5 + 1 + + MAA2MC + + + + fr.insee + jojtutyy-CI-0-IP-6 + 1 + + MAA3 + + + + fr.insee + jojtutyy-CI-0-IP-7 + 1 + + MAA3A + + + + + fr.insee + jojtbo85-QOP-lera9at4 + 1 + OutParameter + + + fr.insee + jojtutyy-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + jojt16mt-QOP-kf71i6tz + 1 + OutParameter + + + fr.insee + jojtutyy-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + jojt3qxp-QOP-jojtagah + 1 + OutParameter + + + fr.insee + jojtutyy-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + jojtnq9z-QOP-leraafbf + 1 + OutParameter + + + fr.insee + jojtutyy-CI-0-IP-4 + 1 + InParameter + + + + + fr.insee + jor73af6-QOP-kf71reoh + 1 + OutParameter + + + fr.insee + jojtutyy-CI-0-IP-5 + 1 + InParameter + + + + + fr.insee + jojtsgsr-QOP-jojtrf8n + 1 + OutParameter + + + fr.insee + jojtutyy-CI-0-IP-6 + 1 + InParameter + + + + + fr.insee + jojtutyy-QOP-leranvj5 + 1 + OutParameter + + + fr.insee + jojtutyy-CI-0-IP-7 + 1 + InParameter + + + (nvl(jojtutyy-CI-0-IP-6,"")="1" and (cast(nvl(jojtutyy-CI-0-IP-7,""),integer)>cast(nvl(jojtutyy-CI-0-IP-1,""),integer)) and ( isnull(jojtutyy-CI-0-IP-3) or jojtutyy-CI-0-IP-3="1" or isnull(jojtutyy-CI-0-IP-4) or (jojtutyy-CI-0-IP-3="2" and ((cast(jojtutyy-CI-0-IP-4,integer)>cast(jojtutyy-CI-0-IP-1,integer)) or ((cast(jojtutyy-CI-0-IP-4,integer)=cast(jojtutyy-CI-0-IP-1,integer)) and (cast(jojtutyy-CI-0-IP-5,integer)>=cast(jojtutyy-CI-0-IP-2,integer))) ) ) ) ) + + + + + fr.insee + jojtutyy-CI-1 + 1 + + Contrôle de borne sur les dates + + + Contrôle de borne sur les dates + + + fr.insee + jojtutyy-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + jojtutyy-CI-1-IP-1 + 1 + + MAA3A + + + + + fr.insee + jojtutyy-QOP-leranvj5 + 1 + OutParameter + + + fr.insee + jojtutyy-CI-1-IP-1 + 1 + InParameter + + + cast(nvl(jojtutyy-CI-1-IP-1,""),integer) < 1900 or cast(nvl(jojtutyy-CI-1-IP-1,""),integer) >2024 + + + + + fr.insee + jojv1e5e-CI-0 + 1 + + alerte si décimales + + + alerte si décimales + + + fr.insee + jojv1e5e-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + jojv1e5e-CI-0-IP-1 + 1 + + HPP + + + + + fr.insee + jojv1e5e-QOP-jojuuvbp + 1 + OutParameter + + + fr.insee + jojv1e5e-CI-0-IP-1 + 1 + InParameter + + + (instr(cast(nvl(jojv1e5e-CI-0-IP-1,0),string),".") <> 0) or (instr(cast(nvl(jojv1e5e-CI-0-IP-1,0),string),",) <> 0) + + + + + fr.insee + jojv3ha7-CI-0 + 1 + + alerte si décimales + + + alerte si décimales + + + fr.insee + jojv3ha7-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + jojv3ha7-CI-0-IP-1 + 1 + + HPA + + + + + fr.insee + jojv3ha7-QOP-jojusenw + 1 + OutParameter + + + fr.insee + jojv3ha7-CI-0-IP-1 + 1 + InParameter + + + (instr(cast(nvl(jojv3ha7-CI-0-IP-1,0),string),".") <> 0) or (instr(cast(nvl(jojv3ha7-CI-0-IP-1,0),string),",) <> 0) + + + + + fr.insee + jojuzbus-CI-0 + 1 + + alerte si décimales + + + alerte si décimales + + + fr.insee + jojuzbus-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + jojuzbus-CI-0-IP-1 + 1 + + HPI1 + + + + + fr.insee + jojuzbus-QOP-jojv8tjf + 1 + OutParameter + + + fr.insee + jojuzbus-CI-0-IP-1 + 1 + InParameter + + + (instr(cast(nvl(jojuzbus-CI-0-IP-1,0),string),".") <> 0) or (instr(cast(nvl(jojuzbus-CI-0-IP-1,0),string),",) <> 0) + + + + + fr.insee + klv4iusu-CI-0 + 1 + + alerte si décimales + + + alerte si décimales + + + fr.insee + klv4iusu-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + klv4iusu-CI-0-IP-1 + 1 + + HPI2 + + + + + fr.insee + klv4iusu-QOP-klv4mlgz + 1 + OutParameter + + + fr.insee + klv4iusu-CI-0-IP-1 + 1 + InParameter + + + (instr(cast(nvl(klv4iusu-CI-0-IP-1,0),string),".") <> 0) or (instr(cast(nvl(klv4iusu-CI-0-IP-1,0),string),",) <> 0) + + + + + fr.insee + jojvgfei-CI-0 + 1 + + 10 pièces d'habitation ou plus + + + 10 pièces d'habitation ou plus + + + fr.insee + jojvgfei-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + jojvgfei-CI-0-IP-1 + 1 + + HPH + + + + + fr.insee + jojvgfei-QOP-jojvjmis + 1 + OutParameter + + + fr.insee + jojvgfei-CI-0-IP-1 + 1 + InParameter + + + cast(nvl(jojvgfei-CI-0-IP-1,0),integer) >= 10 + + + + + fr.insee + jojvgfei-CI-1 + 1 + + Message incitatif + + + Message incitatif + + + fr.insee + jojvgfei-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + jojvgfei-CI-1-IP-1 + 1 + + HPH + + + + + fr.insee + jojvgfei-QOP-jojvjmis + 1 + OutParameter + + + fr.insee + jojvgfei-CI-1-IP-1 + 1 + InParameter + + + nvl(jojvgfei-CI-1-IP-1,0) = 0 + + + + + fr.insee + jojvgfei-CI-2 + 1 + + alerte si décimales + + + alerte si décimales + + + fr.insee + jojvgfei-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + jojvgfei-CI-2-IP-1 + 1 + + HPH + + + + + fr.insee + jojvgfei-QOP-jojvjmis + 1 + OutParameter + + + fr.insee + jojvgfei-CI-2-IP-1 + 1 + InParameter + + + (instr(cast(nvl(jojvgfei-CI-2-IP-1,0),string),".") <> 0) or (instr(cast(nvl(jojvgfei-CI-2-IP-1,0),string),",) <> 0) + + + + + fr.insee + jojv4yqe-CI-0 + 1 + + Plus de chambres à coucher que de pièces d'habitation + + + Plus de chambres à coucher que de pièces d'habitation + + + fr.insee + jojv4yqe-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + jojv4yqe-CI-0-IP-1 + 1 + + HPH + + + + fr.insee + jojv4yqe-CI-0-IP-2 + 1 + + HCHA + + + + + fr.insee + jojvgfei-QOP-jojvjmis + 1 + OutParameter + + + fr.insee + jojv4yqe-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + jojv4yqe-QOP-jojveb38 + 1 + OutParameter + + + fr.insee + jojv4yqe-CI-0-IP-2 + 1 + InParameter + + + (not(isnull(jojv4yqe-CI-0-IP-2)) and not(isnull(jojv4yqe-CI-0-IP-1))) and (cast(jojv4yqe-CI-0-IP-2,integer)>=0) and (cast(jojv4yqe-CI-0-IP-1,integer)>=1) and (cast(jojv4yqe-CI-0-IP-2,integer)>cast(jojv4yqe-CI-0-IP-1,integer)) + + + + + fr.insee + jojv4yqe-CI-1 + 1 + + Autant de chambres à coucher que de pièces d'habitation + + + Autant de chambres à coucher que de pièces d'habitation + + + fr.insee + jojv4yqe-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + jojv4yqe-CI-1-IP-1 + 1 + + HPH + + + + fr.insee + jojv4yqe-CI-1-IP-2 + 1 + + HCHA + + + + + fr.insee + jojvgfei-QOP-jojvjmis + 1 + OutParameter + + + fr.insee + jojv4yqe-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + jojv4yqe-QOP-jojveb38 + 1 + OutParameter + + + fr.insee + jojv4yqe-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(jojv4yqe-CI-1-IP-2)) and not(isnull(jojv4yqe-CI-1-IP-1))) and (cast(jojv4yqe-CI-1-IP-2,integer)>=0) and (cast(jojv4yqe-CI-1-IP-1,integer)>0) and (cast(jojv4yqe-CI-1-IP-2,integer)=cast(jojv4yqe-CI-1-IP-1,integer)) + + + + + fr.insee + jojv4yqe-CI-2 + 1 + + alerte si décimales + + + alerte si décimales + + + fr.insee + jojv4yqe-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + jojv4yqe-CI-2-IP-1 + 1 + + HCHA + + + + + fr.insee + jojv4yqe-QOP-jojveb38 + 1 + OutParameter + + + fr.insee + jojv4yqe-CI-2-IP-1 + 1 + InParameter + + + (instr(cast(nvl(jojv4yqe-CI-2-IP-1,0),string),".") <> 0) or (instr(cast(nvl(jojv4yqe-CI-2-IP-1,0),string),",) <> 0) + + + + + fr.insee + jojvc0vt-CI-0 + 1 + + Message incitatif + + + Message incitatif + + + fr.insee + jojvc0vt-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + jojvc0vt-CI-0-IP-1 + 1 + + HST + + + + + fr.insee + jojvc0vt-QOP-jojv2uvg + 1 + OutParameter + + + fr.insee + jojvc0vt-CI-0-IP-1 + 1 + InParameter + + + nvl(jojvc0vt-CI-0-IP-1,0) = 0) + + + + + fr.insee + jojvc0vt-CI-1 + 1 + + 1 seule pièce et plus de 81 m² + + + 1 seule pièce et plus de 81 m² + + + fr.insee + jojvc0vt-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + jojvc0vt-CI-1-IP-1 + 1 + + HPH + + + + fr.insee + jojvc0vt-CI-1-IP-2 + 1 + + HST + + + + + fr.insee + jojvgfei-QOP-jojvjmis + 1 + OutParameter + + + fr.insee + jojvc0vt-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + jojvc0vt-QOP-jojv2uvg + 1 + OutParameter + + + fr.insee + jojvc0vt-CI-1-IP-2 + 1 + InParameter + + + not(nvl(jojvc0vt-CI-1-IP-2,0) = 0) and not(nvl(jojvc0vt-CI-1-IP-1,0) = 0 ) and (cast(jojvc0vt-CI-1-IP-2,integer)>=81) and (cast(jojvc0vt-CI-1-IP-1,integer)=1) + + + + + fr.insee + jojvc0vt-CI-2 + 1 + + Plus d'une pièce avec une surface moyenne par pièce inférieure à 8 m² ou supérieure à 56 m² + + + Plus d'une pièce avec une surface moyenne par pièce inférieure à 8 m² ou supérieure à 56 m² + + + fr.insee + jojvc0vt-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + jojvc0vt-CI-2-IP-1 + 1 + + libHSTmoy + + + + fr.insee + jojvc0vt-CI-2-IP-2 + 1 + + libHSTmoy2 + + + + fr.insee + jojvc0vt-CI-2-IP-3 + 1 + + HPH + + + + fr.insee + jojvc0vt-CI-2-IP-4 + 1 + + HST + + + + + fr.insee + kd7fq6ld-GOP + 1 + OutParameter + + + fr.insee + jojvc0vt-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + kd7h7u8j-GOP + 1 + OutParameter + + + fr.insee + jojvc0vt-CI-2-IP-2 + 1 + InParameter + + + + + fr.insee + jojvgfei-QOP-jojvjmis + 1 + OutParameter + + + fr.insee + jojvc0vt-CI-2-IP-3 + 1 + InParameter + + + + + fr.insee + jojvc0vt-QOP-jojv2uvg + 1 + OutParameter + + + fr.insee + jojvc0vt-CI-2-IP-4 + 1 + InParameter + + + not(nvl(jojvc0vt-CI-2-IP-3,0) = 0) and not(nvl(jojvc0vt-CI-2-IP-4,0) =0 ) and (cast(jojvc0vt-CI-2-IP-4,integer)>8) and (cast(jojvc0vt-CI-2-IP-3,integer)>1) and ((cast(jojvc0vt-CI-2-IP-1,integer) <= 8) or (cast(jojvc0vt-CI-2-IP-2,integer) >=56)) + + + + + fr.insee + jruq8x6e-CI-0 + 1 + + Message d'alerte d'espace + + + Message d'alerte d'espace + + + fr.insee + jruq8x6e-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + jruq8x6e-CI-0-IP-1 + 1 + + KSJPI + + + + + fr.insee + jruq8x6e-QOP-jruq3zg9 + 1 + OutParameter + + + fr.insee + jruq8x6e-CI-0-IP-1 + 1 + InParameter + + + nvl(jruq8x6e-CI-0-IP-1,0)=0 + + + + + fr.insee + jruq4was-CI-0 + 1 + + surface de l'emprise au sol supérieure à celle du lot (terrain, maison...) + + + surface de l'emprise au sol supérieure à celle du lot (terrain, maison...) + + + fr.insee + jruq4was-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + jruq4was-CI-0-IP-1 + 1 + + KSJPI + + + + fr.insee + jruq4was-CI-0-IP-2 + 1 + + KSMI + + + + + fr.insee + jruq8x6e-QOP-jruq3zg9 + 1 + OutParameter + + + fr.insee + jruq4was-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + jruq4was-QOP-jruq4wnm + 1 + OutParameter + + + fr.insee + jruq4was-CI-0-IP-2 + 1 + InParameter + + + (cast(nvl(jruq4was-CI-0-IP-2,0),integer)>cast(nvl(jruq4was-CI-0-IP-1,0),integer)) + + + + + fr.insee + jrusjpqy-CI-0 + 1 + + Contrôle de cohérence, si "Non" pas d'autres réponses possibles. + + + Contrôle de cohérence, si "Non" pas d'autres réponses possibles. + + + fr.insee + jrusjpqy-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + jrusjpqy-CI-0-IP-1 + 1 + + KGA1 + + + + fr.insee + jrusjpqy-CI-0-IP-2 + 1 + + KGA2 + + + + fr.insee + jrusjpqy-CI-0-IP-3 + 1 + + KGA3 + + + + fr.insee + jrusjpqy-CI-0-IP-4 + 1 + + KGA4 + + + + + fr.insee + jrusjpqy-QOP-kf8972di + 1 + OutParameter + + + fr.insee + jrusjpqy-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + jrusjpqy-QOP-kf893sen + 1 + OutParameter + + + fr.insee + jrusjpqy-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + jrusjpqy-QOP-kf89737h + 1 + OutParameter + + + fr.insee + jrusjpqy-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + jrusjpqy-QOP-kf89ei4h + 1 + OutParameter + + + fr.insee + jrusjpqy-CI-0-IP-4 + 1 + InParameter + + + ((nvl(jrusjpqy-CI-0-IP-4, false) = true and nvl(jrusjpqy-CI-0-IP-1, false) = true) or (nvl(jrusjpqy-CI-0-IP-4, false) = true and nvl(jrusjpqy-CI-0-IP-2, false) = true) or (nvl(jrusjpqy-CI-0-IP-4, false) = true and nvl(jrusjpqy-CI-0-IP-3, false) = true) ) + + + + + fr.insee + jrut4vl7-CI-0 + 1 + + Contrôle de cohérence si "Non" pas d'autre réponse possible + + + Contrôle de cohérence si "Non" pas d'autre réponse possible + + + fr.insee + jrut4vl7-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + jrut4vl7-CI-0-IP-1 + 1 + + KGA11 + + + + fr.insee + jrut4vl7-CI-0-IP-2 + 1 + + KGA12 + + + + fr.insee + jrut4vl7-CI-0-IP-3 + 1 + + KGA13 + + + + fr.insee + jrut4vl7-CI-0-IP-4 + 1 + + KGA14 + + + + + fr.insee + jrut4vl7-QOP-kf8913r1 + 1 + OutParameter + + + fr.insee + jrut4vl7-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + jrut4vl7-QOP-kf89c33b + 1 + OutParameter + + + fr.insee + jrut4vl7-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + jrut4vl7-QOP-kf899mmw + 1 + OutParameter + + + fr.insee + jrut4vl7-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + jrut4vl7-QOP-kf8931vm + 1 + OutParameter + + + fr.insee + jrut4vl7-CI-0-IP-4 + 1 + InParameter + + + ((nvl(jrut4vl7-CI-0-IP-4, false) = true and nvl(jrut4vl7-CI-0-IP-1, false) = true) or (nvl(jrut4vl7-CI-0-IP-4, false) = true and nvl(jrut4vl7-CI-0-IP-2, false) = true) or (nvl(jrut4vl7-CI-0-IP-4, false) = true and nvl(jrut4vl7-CI-0-IP-3, false) = true) ) + + + + + fr.insee + kmeu61l4-CI-0 + 1 + + 0 W-C déclarés + + + 0 W-C déclarés + + + fr.insee + kmeu61l4-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kmeu61l4-CI-0-IP-1 + 1 + + KWCID + + + + + fr.insee + kmeu61l4-QOP-lfjenhhf + 1 + OutParameter + + + fr.insee + kmeu61l4-CI-0-IP-1 + 1 + InParameter + + + nvl(kmeu61l4-CI-0-IP-1,0) = 0 + + + + + fr.insee + kksgd6fv-CI-0 + 1 + + 0 salle de bain ou d'eau déclarée + + + 0 salle de bain ou d'eau déclarée + + + fr.insee + kksgd6fv-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kksgd6fv-CI-0-IP-1 + 1 + + KSE + + + + + fr.insee + kksgd6fv-QOP-lfjf0wd7 + 1 + OutParameter + + + fr.insee + kksgd6fv-CI-0-IP-1 + 1 + InParameter + + + nvl(kksgd6fv-CI-0-IP-1,0) = 0 + + + + + fr.insee + joiccm1l-CI-0 + 1 + + alerte si décimales + + + alerte si décimales + + + fr.insee + joiccm1l-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + joiccm1l-CI-0-IP-1 + 1 + + OLAD + + + + + fr.insee + joiccm1l-QOP-jslhf6kb + 1 + OutParameter + + + fr.insee + joiccm1l-CI-0-IP-1 + 1 + InParameter + + + (instr(cast(nvl(joiccm1l-CI-0-IP-1,0),string),".") <> 0) or (instr(cast(nvl(joiccm1l-CI-0-IP-1,0),string),",) <> 0) + + + + + fr.insee + joidpl4s-CI-0 + 1 + + alerte si décimales + + + alerte si décimales + + + fr.insee + joidpl4s-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + joidpl4s-CI-0-IP-1 + 1 + + OQAD + + + + + fr.insee + joidpl4s-QOP-jslihsyh + 1 + OutParameter + + + fr.insee + joidpl4s-CI-0-IP-1 + 1 + InParameter + + + (instr(cast(nvl(joidpl4s-CI-0-IP-1,0),string),".") <> 0) or (instr(cast(nvl(joidpl4s-CI-0-IP-1,0),string),",) <> 0) + + + + + fr.insee + joinz4wo-CI-0 + 1 + + Compatibilité dernière modalité + + + Compatibilité dernière modalité + + + fr.insee + joinz4wo-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + joinz4wo-CI-0-IP-1 + 1 + + SDL11 + + + + fr.insee + joinz4wo-CI-0-IP-2 + 1 + + SDL12 + + + + fr.insee + joinz4wo-CI-0-IP-3 + 1 + + SDL13 + + + + fr.insee + joinz4wo-CI-0-IP-4 + 1 + + SDL14 + + + + fr.insee + joinz4wo-CI-0-IP-5 + 1 + + SDL15 + + + + fr.insee + joinz4wo-CI-0-IP-6 + 1 + + SDL16 + + + + fr.insee + joinz4wo-CI-0-IP-7 + 1 + + SDL17 + + + + fr.insee + joinz4wo-CI-0-IP-8 + 1 + + SDL18 + + + + + fr.insee + joinz4wo-QOP-ljvxgvru + 1 + OutParameter + + + fr.insee + joinz4wo-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + joinz4wo-QOP-ljvxk44t + 1 + OutParameter + + + fr.insee + joinz4wo-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + joinz4wo-QOP-ljvxgmyh + 1 + OutParameter + + + fr.insee + joinz4wo-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + joinz4wo-QOP-ljvxbn8w + 1 + OutParameter + + + fr.insee + joinz4wo-CI-0-IP-4 + 1 + InParameter + + + + + fr.insee + joinz4wo-QOP-ljvxplyt + 1 + OutParameter + + + fr.insee + joinz4wo-CI-0-IP-5 + 1 + InParameter + + + + + fr.insee + joinz4wo-QOP-ljvxncns + 1 + OutParameter + + + fr.insee + joinz4wo-CI-0-IP-6 + 1 + InParameter + + + + + fr.insee + joinz4wo-QOP-ljvxcc4t + 1 + OutParameter + + + fr.insee + joinz4wo-CI-0-IP-7 + 1 + InParameter + + + + + fr.insee + joinz4wo-QOP-ljvxobb5 + 1 + OutParameter + + + fr.insee + joinz4wo-CI-0-IP-8 + 1 + InParameter + + + ((nvl(joinz4wo-CI-0-IP-8, false) = true and nvl(joinz4wo-CI-0-IP-7, false) = true) or (nvl(joinz4wo-CI-0-IP-8, false) = true and nvl(joinz4wo-CI-0-IP-6, false) = true) or (nvl(joinz4wo-CI-0-IP-8, false) = true and nvl(joinz4wo-CI-0-IP-5, false) = true) or (nvl(joinz4wo-CI-0-IP-8, false) = true and nvl(joinz4wo-CI-0-IP-4, false) = true) or (nvl(joinz4wo-CI-0-IP-8, false) = true and nvl(joinz4wo-CI-0-IP-3, false) = true) or (nvl(joinz4wo-CI-0-IP-8, false) = true and nvl(joinz4wo-CI-0-IP-2, false) = true) or (nvl(joinz4wo-CI-0-IP-8, false) = true and nvl(joinz4wo-CI-0-IP-1, false) = true) ) + + + + + fr.insee + joo0yx5k-CI-0 + 1 + + Contrôle de borne sur les dates + + + Contrôle de borne sur les dates + + + fr.insee + joo0yx5k-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + joo0yx5k-CI-0-IP-1 + 1 + + SDTAD + + + + + fr.insee + joo0yx5k-QOP-lerabv6d + 1 + OutParameter + + + fr.insee + joo0yx5k-CI-0-IP-1 + 1 + InParameter + + + cast(nvl(joo0yx5k-CI-0-IP-1,""),integer) < 1900 or cast(nvl(joo0yx5k-CI-0-IP-1,""),integer) >2024 + + + + + fr.insee + kudvxpft-CI-0 + 1 + + Contrôle de borne sur les dates + + + Contrôle de borne sur les dates + + + fr.insee + kudvxpft-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kudvxpft-CI-0-IP-1 + 1 + + SDTAD_SIT2 + + + + + fr.insee + kudvxpft-QOP-lerb71l0 + 1 + OutParameter + + + fr.insee + kudvxpft-CI-0-IP-1 + 1 + InParameter + + + cast(nvl(kudvxpft-CI-0-IP-1,""),integer) < 1900 or cast(nvl(kudvxpft-CI-0-IP-1,""),integer) >2024 + + + + + fr.insee + joo1h434-CI-0 + 1 + + Modalité "Aucune modification" n'en permet pas d'autre + + + Modalité "Aucune modification" n'en permet pas d'autre + + + fr.insee + joo1h434-CI-0-II-0 + 1 + Instruction + + stumblingblock + + + vtl + + fr.insee + joo1h434-CI-0-IP-1 + 1 + + VMODM1 + + + + fr.insee + joo1h434-CI-0-IP-2 + 1 + + VMODM2 + + + + fr.insee + joo1h434-CI-0-IP-3 + 1 + + VMODM3 + + + + fr.insee + joo1h434-CI-0-IP-4 + 1 + + VMODM4 + + + + fr.insee + joo1h434-CI-0-IP-5 + 1 + + VMODM5 + + + + fr.insee + joo1h434-CI-0-IP-6 + 1 + + VMODM6 + + + + fr.insee + joo1h434-CI-0-IP-7 + 1 + + VMODM7 + + + + + fr.insee + joo1h434-QOP-kx6fakgl + 1 + OutParameter + + + fr.insee + joo1h434-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + joo1h434-QOP-kx6f2koy + 1 + OutParameter + + + fr.insee + joo1h434-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + joo1h434-QOP-kx6f0lvo + 1 + OutParameter + + + fr.insee + joo1h434-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + joo1h434-QOP-kx6eypbj + 1 + OutParameter + + + fr.insee + joo1h434-CI-0-IP-4 + 1 + InParameter + + + + + fr.insee + joo1h434-QOP-kx6ey11w + 1 + OutParameter + + + fr.insee + joo1h434-CI-0-IP-5 + 1 + InParameter + + + + + fr.insee + joo1h434-QOP-kx6f2xy1 + 1 + OutParameter + + + fr.insee + joo1h434-CI-0-IP-6 + 1 + InParameter + + + + + fr.insee + joo1h434-QOP-kx6fe1ev + 1 + OutParameter + + + fr.insee + joo1h434-CI-0-IP-7 + 1 + InParameter + + + ((nvl(joo1h434-CI-0-IP-7,false) = true and nvl(joo1h434-CI-0-IP-6,false) = true) or (nvl(joo1h434-CI-0-IP-7,false) = true and nvl(joo1h434-CI-0-IP-5,false) = true) or (nvl(joo1h434-CI-0-IP-7,false) = true and nvl(joo1h434-CI-0-IP-4,false) = true) or (nvl(joo1h434-CI-0-IP-7,false) = true and nvl(joo1h434-CI-0-IP-3,false) = true) or (nvl(joo1h434-CI-0-IP-7,false) = true and nvl(joo1h434-CI-0-IP-2,false) = true) or (nvl(joo1h434-CI-0-IP-7,false) = true and nvl(joo1h434-CI-0-IP-1,false) = true)) + + + + + fr.insee + joo22fbd-CI-0 + 1 + + Modalité "Aucune modification" n'en permet pas d'autre + + + Modalité "Aucune modification" n'en permet pas d'autre + + + fr.insee + joo22fbd-CI-0-II-0 + 1 + Instruction + + stumblingblock + + + vtl + + fr.insee + joo22fbd-CI-0-IP-1 + 1 + + VMODP11 + + + + fr.insee + joo22fbd-CI-0-IP-2 + 1 + + VMODP12 + + + + fr.insee + joo22fbd-CI-0-IP-3 + 1 + + VMODP13 + + + + fr.insee + joo22fbd-CI-0-IP-4 + 1 + + VMODP14 + + + + + fr.insee + joo22fbd-QOP-lex5m47r + 1 + OutParameter + + + fr.insee + joo22fbd-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + joo22fbd-QOP-lex5fzlx + 1 + OutParameter + + + fr.insee + joo22fbd-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + joo22fbd-QOP-lex5ok5v + 1 + OutParameter + + + fr.insee + joo22fbd-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + joo22fbd-QOP-lex5grsp + 1 + OutParameter + + + fr.insee + joo22fbd-CI-0-IP-4 + 1 + InParameter + + + ((nvl(joo22fbd-CI-0-IP-4, false) = true and nvl(joo22fbd-CI-0-IP-3, false) = true) or (nvl(joo22fbd-CI-0-IP-4, false) = true and nvl(joo22fbd-CI-0-IP-2, false) = true) or (nvl(joo22fbd-CI-0-IP-4, false) = true and nvl(joo22fbd-CI-0-IP-1, false) = true) ) + + + + + fr.insee + koe0u2zg-CI-0 + 1 + + Aucune modifications n'en permet pas d'autre + + + Aucune modifications n'en permet pas d'autre + + + fr.insee + koe0u2zg-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + koe0u2zg-CI-0-IP-1 + 1 + + VMODP21 + + + + fr.insee + koe0u2zg-CI-0-IP-2 + 1 + + VMODP22 + + + + fr.insee + koe0u2zg-CI-0-IP-3 + 1 + + VMODP23 + + + + + fr.insee + koe0u2zg-QOP-koe0ya2t + 1 + OutParameter + + + fr.insee + koe0u2zg-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + koe0u2zg-QOP-koe12q3u + 1 + OutParameter + + + fr.insee + koe0u2zg-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + koe0u2zg-QOP-koe0vlva + 1 + OutParameter + + + fr.insee + koe0u2zg-CI-0-IP-3 + 1 + InParameter + + + ((nvl(koe0u2zg-CI-0-IP-3,false) = true and nvl(koe0u2zg-CI-0-IP-2,false) = true) or (nvl(koe0u2zg-CI-0-IP-3,false) = true and nvl(koe0u2zg-CI-0-IP-1,false) = true)) + + + + + fr.insee + joprsm9u-CI-0 + 1 + + alerte si décimales + + + alerte si décimales + + + fr.insee + joprsm9u-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + joprsm9u-CI-0-IP-1 + 1 + + VLOYER + + + + + fr.insee + joprsm9u-QOP-joprtstn + 1 + OutParameter + + + fr.insee + joprsm9u-CI-0-IP-1 + 1 + InParameter + + + (instr(cast(nvl(joprsm9u-CI-0-IP-1,0),string),".") <> 0) or (instr(cast(nvl(joprsm9u-CI-0-IP-1,0),string),",) <> 0) + + + + + fr.insee + joprsm9u-CI-1 + 1 + + Message d'alerte d'espace pour les numériques pouvant >1000 + + + + Message d'alerte d'espace pour les numériques pouvant >1000 + + + + fr.insee + joprsm9u-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + joprsm9u-CI-1-IP-1 + 1 + + VLOYER + + + + + fr.insee + joprsm9u-QOP-joprtstn + 1 + OutParameter + + + fr.insee + joprsm9u-CI-1-IP-1 + 1 + InParameter + + + nvl(joprsm9u-CI-1-IP-1,0)=0 + + + + + fr.insee + joprp441-CI-0 + 1 + + alerte si décimales + + + alerte si décimales + + + fr.insee + joprp441-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + joprp441-CI-0-IP-1 + 1 + + VIN + + + + + fr.insee + joprp441-QOP-jops9bgj + 1 + OutParameter + + + fr.insee + joprp441-CI-0-IP-1 + 1 + InParameter + + + (instr(cast(nvl(joprp441-CI-0-IP-1,0),string),".") <> 0) or (instr(cast(nvl(joprp441-CI-0-IP-1,0),string),",) <> 0) + + + + + fr.insee + jops4c0x-CI-0 + 1 + + alerte si décimales + + + alerte si décimales + + + fr.insee + jops4c0x-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + jops4c0x-CI-0-IP-1 + 1 + + VPI + + + + + fr.insee + jops4c0x-QOP-jopsp5li + 1 + OutParameter + + + fr.insee + jops4c0x-CI-0-IP-1 + 1 + InParameter + + + (instr(cast(nvl(jops4c0x-CI-0-IP-1,0),string),".") <> 0) or (instr(cast(nvl(jops4c0x-CI-0-IP-1,0),string),",) <> 0) + + + + + fr.insee + jopsrdb3-CI-0 + 1 + + alerte si décimales + + + alerte si décimales + + + fr.insee + jopsrdb3-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + jopsrdb3-CI-0-IP-1 + 1 + + VND + + + + + fr.insee + jopsrdb3-QOP-jopt3q7k + 1 + OutParameter + + + fr.insee + jopsrdb3-CI-0-IP-1 + 1 + InParameter + + + (instr(cast(nvl(jopsrdb3-CI-0-IP-1,0),string),".") <> 0) or (instr(cast(nvl(jopsrdb3-CI-0-IP-1,0),string),",) <> 0) + + + + + fr.insee + joputbjc-CI-0 + 1 + + alerte si décimales + + + alerte si décimales + + + fr.insee + joputbjc-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + joputbjc-CI-0-IP-1 + 1 + + VPID + + + + + fr.insee + joputbjc-QOP-joput4wx + 1 + OutParameter + + + fr.insee + joputbjc-CI-0-IP-1 + 1 + InParameter + + + (instr(cast(nvl(joputbjc-CI-0-IP-1,0),string),".") <> 0) or (instr(cast(nvl(joputbjc-CI-0-IP-1,0),string),",) <> 0) + + + + + fr.insee + kovj0a8h-CI-0 + 1 + + Unicité de la modalité "Non ..." + + + Unicité de la modalité "Non ..." + + + fr.insee + kovj0a8h-CI-0-II-0 + 1 + Instruction + + stumblingblock + + + vtl + + fr.insee + kovj0a8h-CI-0-IP-1 + 1 + + VRAIS21 + + + + fr.insee + kovj0a8h-CI-0-IP-2 + 1 + + VRAIS22 + + + + fr.insee + kovj0a8h-CI-0-IP-3 + 1 + + VRAIS23 + + + + fr.insee + kovj0a8h-CI-0-IP-4 + 1 + + VRAIS24 + + + + fr.insee + kovj0a8h-CI-0-IP-5 + 1 + + VRAIS25 + + + + fr.insee + kovj0a8h-CI-0-IP-6 + 1 + + VRAIS26 + + + + + fr.insee + kovj0a8h-QOP-lgqs0z70 + 1 + OutParameter + + + fr.insee + kovj0a8h-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + kovj0a8h-QOP-lgqs316l + 1 + OutParameter + + + fr.insee + kovj0a8h-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + kovj0a8h-QOP-lgqscpq0 + 1 + OutParameter + + + fr.insee + kovj0a8h-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + kovj0a8h-QOP-lgqs6idu + 1 + OutParameter + + + fr.insee + kovj0a8h-CI-0-IP-4 + 1 + InParameter + + + + + fr.insee + kovj0a8h-QOP-lgqrxc96 + 1 + OutParameter + + + fr.insee + kovj0a8h-CI-0-IP-5 + 1 + InParameter + + + + + fr.insee + kovj0a8h-QOP-lgqs60bf + 1 + OutParameter + + + fr.insee + kovj0a8h-CI-0-IP-6 + 1 + InParameter + + + ((nvl(kovj0a8h-CI-0-IP-6, false) = true and nvl(kovj0a8h-CI-0-IP-5, false) = true) or (nvl(kovj0a8h-CI-0-IP-6, false) = true and nvl(kovj0a8h-CI-0-IP-4, false) = true) or (nvl(kovj0a8h-CI-0-IP-6, false) = true and nvl(kovj0a8h-CI-0-IP-3, false) = true) or (nvl(kovj0a8h-CI-0-IP-6, false) = true and nvl(kovj0a8h-CI-0-IP-2, false) = true) or (nvl(kovj0a8h-CI-0-IP-6, false) = true and nvl(kovj0a8h-CI-0-IP-1, false) = true) ) + + + + + fr.insee + kovirkvq-CI-0 + 1 + + Unicité modalité "Non ..." + + + Unicité modalité "Non ..." + + + fr.insee + kovirkvq-CI-0-II-0 + 1 + Instruction + + stumblingblock + + + vtl + + fr.insee + kovirkvq-CI-0-IP-1 + 1 + + VRAIS31 + + + + fr.insee + kovirkvq-CI-0-IP-2 + 1 + + VRAIS32 + + + + fr.insee + kovirkvq-CI-0-IP-3 + 1 + + VRAIS33 + + + + fr.insee + kovirkvq-CI-0-IP-4 + 1 + + VRAIS34 + + + + fr.insee + kovirkvq-CI-0-IP-5 + 1 + + VRAIS35 + + + + fr.insee + kovirkvq-CI-0-IP-6 + 1 + + VRAIS36 + + + + + fr.insee + kovirkvq-QOP-kovj6smk + 1 + OutParameter + + + fr.insee + kovirkvq-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + kovirkvq-QOP-kovj16ho + 1 + OutParameter + + + fr.insee + kovirkvq-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + kovirkvq-QOP-koviym9y + 1 + OutParameter + + + fr.insee + kovirkvq-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + kovirkvq-QOP-kovjetbt + 1 + OutParameter + + + fr.insee + kovirkvq-CI-0-IP-4 + 1 + InParameter + + + + + fr.insee + kovirkvq-QOP-kovj1rc6 + 1 + OutParameter + + + fr.insee + kovirkvq-CI-0-IP-5 + 1 + InParameter + + + + + fr.insee + kovirkvq-QOP-kovj8oex + 1 + OutParameter + + + fr.insee + kovirkvq-CI-0-IP-6 + 1 + InParameter + + + ((nvl(kovirkvq-CI-0-IP-6, false) = true and nvl(kovirkvq-CI-0-IP-5, false) = true) or (nvl(kovirkvq-CI-0-IP-6, false) = true and nvl(kovirkvq-CI-0-IP-4, false) = true) or (nvl(kovirkvq-CI-0-IP-6, false) = true and nvl(kovirkvq-CI-0-IP-3, false) = true) or (nvl(kovirkvq-CI-0-IP-6, false) = true and nvl(kovirkvq-CI-0-IP-2, false) = true) or (nvl(kovirkvq-CI-0-IP-6, false) = true and nvl(kovirkvq-CI-0-IP-1, false) = true) ) + + + + + fr.insee + kovj5q33-CI-0 + 1 + + Unicité modalité "Non ... " + + + Unicité modalité "Non ... " + + + fr.insee + kovj5q33-CI-0-II-0 + 1 + Instruction + + stumblingblock + + + vtl + + fr.insee + kovj5q33-CI-0-IP-1 + 1 + + VRAIS41 + + + + fr.insee + kovj5q33-CI-0-IP-2 + 1 + + VRAIS42 + + + + fr.insee + kovj5q33-CI-0-IP-3 + 1 + + VRAIS43 + + + + fr.insee + kovj5q33-CI-0-IP-4 + 1 + + VRAIS44 + + + + fr.insee + kovj5q33-CI-0-IP-5 + 1 + + VRAIS45 + + + + + fr.insee + kovj5q33-QOP-kovj5e5b + 1 + OutParameter + + + fr.insee + kovj5q33-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + kovj5q33-QOP-kovj1u7h + 1 + OutParameter + + + fr.insee + kovj5q33-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + kovj5q33-QOP-kovj9p1r + 1 + OutParameter + + + fr.insee + kovj5q33-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + kovj5q33-QOP-kovj8tl5 + 1 + OutParameter + + + fr.insee + kovj5q33-CI-0-IP-4 + 1 + InParameter + + + + + fr.insee + kovj5q33-QOP-kovj34ma + 1 + OutParameter + + + fr.insee + kovj5q33-CI-0-IP-5 + 1 + InParameter + + + ((nvl(kovj5q33-CI-0-IP-5, false) = true and nvl(kovj5q33-CI-0-IP-4, false) = true) or (nvl(kovj5q33-CI-0-IP-5, false) = true and nvl(kovj5q33-CI-0-IP-3, false) = true) or (nvl(kovj5q33-CI-0-IP-5, false) = true and nvl(kovj5q33-CI-0-IP-2, false) = true) or (nvl(kovj5q33-CI-0-IP-5, false) = true and nvl(kovj5q33-CI-0-IP-1, false) = true) ) + + + + + fr.insee + kp5apvf3-CI-0 + 1 + + Message incitatif + + + Message incitatif + + + fr.insee + kp5apvf3-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kp5apvf3-CI-0-IP-1 + 1 + + TELFIXE + + + + + fr.insee + kp5apvf3-QOP-kp5ay97j + 1 + OutParameter + + + fr.insee + kp5apvf3-CI-0-IP-1 + 1 + InParameter + + + nvl(kp5apvf3-CI-0-IP-1, "") = "" + + + + + fr.insee + kp5au0iu-CI-0 + 1 + + Message incitatif + + + Message incitatif + + + fr.insee + kp5au0iu-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kp5au0iu-CI-0-IP-1 + 1 + + TELMOB + + + + + fr.insee + kp5au0iu-QOP-kp5bnv1m + 1 + OutParameter + + + fr.insee + kp5au0iu-CI-0-IP-1 + 1 + InParameter + + + nvl(kp5au0iu-CI-0-IP-1, "") = "" + + + + + fr.insee + kp5bjbzg-CI-0 + 1 + + Message incitatif + + + Message incitatif + + + fr.insee + kp5bjbzg-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kp5bjbzg-CI-0-IP-1 + 1 + + UWEB + + + + + fr.insee + kp5bjbzg-QOP-kp5bdswc + 1 + OutParameter + + + fr.insee + kp5bjbzg-CI-0-IP-1 + 1 + InParameter + + + nvl(kp5bjbzg-CI-0-IP-1, "") = "" + + + + + fr.insee + krp3zark-SI + 1 + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Pouvez-vous indiquer votre adresse ci-dessous ? + + + + + fr.insee + krp3lw6x-SI + 1 + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Cette adresse sera utilisée pour envoyer les courriers. + + + + + fr.insee + kqwg4t12-SI + 1 + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + "Pouvez-vous indiquer le nom ou éventuellement les noms des habitants du logement situé à l'adresse : " || ¤kcoks7di-GOP¤ || " ?" + + + + + fr.insee + kwf3y6nj-SI + 1 + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + "Nous allons maintenant passer à la description de votre logement situé à l'adresse suivante : " || ¤kcolhi30-GOP¤ || " ." + + + + + fr.insee + kkpnqrqh-SI + 1 + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + On s’intéresse ici aux éventuelles pièces destinées à une activité professionnelle domiciliée dans le logement. + + + + + fr.insee + kq7nq067-SI + 1 + + Interview.Telephone.CATI + + + + Nous allons maintenant passer en revue les dépendances de votre logement. + + + + + fr.insee + kwglkyat-SI + 1 + + SelfAdministeredQuestionnaire.WebBased + + + Interview.Telephone.CATI + + + + "Nous allons maintenant poser quelques questions sur votre situation au 1er " || ¤ko9vg9v8-GOP¤ || " " || cast(¤kocm65ii-GOP¤,string) || ", et vos déménagements depuis cette date." + + + + + fr.insee + kpbpgn1h-SI + 1 + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Maintenant, nous allons parler du logement que vous occupiez juste avant d'habiter dans votre logement actuel. + + + + + fr.insee + kwjirnmi-SI + 1 + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Pouvez-vous indiquer le destinataire des courriers ? + + + + + fr.insee + kwjjic7h-SI + 1 + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Pouvez-vous indiquer le deuxième destinataire des courriers ? + + + + + + fr.insee + QuestionScheme-llxh9g6g + 1 + + A définir + + + fr.insee + kb9hlpdc + 1 + + CADR + + + fr.insee + kb9hlpdc-QOP-kb9ht73s + 1 + + CADR + + + + + fr.insee + kb9hlpdc-RDOP-kb9ht73s + 1 + OutParameter + + + fr.insee + kb9hlpdc-QOP-kb9ht73s + 1 + OutParameter + + + + + "Confirmez-vous que vous habitez toujours à l'adresse suivante : " || ¤kcoks7di-GOP¤ || " ?" + + + + radio-button + + fr.insee + kb9ht98f + 1 + CodeList + + + fr.insee + kb9hlpdc-RDOP-kb9ht73s + 1 + + + fr.insee + kb9ht98f + 1 + CodeList + + + + + + + + fr.insee + kbakywwy + 1 + + NUMTH_COLL + + + fr.insee + kbakywwy-QOP-kbal9bh5 + 1 + + NUMTH_COLL + + + + + fr.insee + kbakywwy-RDOP-kbal9bh5 + 1 + OutParameter + + + fr.insee + kbakywwy-QOP-kbal9bh5 + 1 + OutParameter + + + + + Numéro de voie : + + + + + fr.insee + kbakywwy-RDOP-kbal9bh5 + 1 + + + + + fr.insee + kbal5fzg + 1 + Instruction + + + + fr.insee + kbal4bzb + 1 + + ADR_COLL + + + fr.insee + kbal4bzb-QOP-kbalgoim + 1 + + ADR_COLL + + + + + fr.insee + kbal4bzb-RDOP-kbalgoim + 1 + OutParameter + + + fr.insee + kbal4bzb-QOP-kbalgoim + 1 + OutParameter + + + + + Libellé de la voie : + + + + + fr.insee + kbal4bzb-RDOP-kbalgoim + 1 + + + + + fr.insee + kbalg7ww + 1 + Instruction + + + + fr.insee + kbalhn4i + 1 + + CADRTH_COLL + + + fr.insee + kbalhn4i-QOP-kbalr9gi + 1 + + CADRTH_COLL + + + + + fr.insee + kbalhn4i-RDOP-kbalr9gi + 1 + OutParameter + + + fr.insee + kbalhn4i-QOP-kbalr9gi + 1 + OutParameter + + + + + Complément d'adresse : + + + + + fr.insee + kbalhn4i-RDOP-kbalr9gi + 1 + + + + + fr.insee + kbalm3fl + 1 + Instruction + + + + fr.insee + kbal8crw + 1 + + CODEPOST1_COLL + + + fr.insee + kbal8crw-QOP-kbaldkpe + 1 + + CODEPOST1_COLL + + + + + fr.insee + kbal8crw-RDOP-kbaldkpe + 1 + OutParameter + + + fr.insee + kbal8crw-QOP-kbaldkpe + 1 + OutParameter + + + + + Code postal : + + + + + fr.insee + kbal8crw-RDOP-kbaldkpe + 1 + + + + + fr.insee + kbal97f4 + 1 + Instruction + + + + fr.insee + kbal9dwk + 1 + + LIBCOM_COLL + + + fr.insee + kbal9dwk-QOP-kbalr921 + 1 + + LIBCOM_COLL + + + + + fr.insee + kbal9dwk-RDOP-kbalr921 + 1 + OutParameter + + + fr.insee + kbal9dwk-QOP-kbalr921 + 1 + OutParameter + + + + + Commune : + + + + + fr.insee + kbal9dwk-RDOP-kbalr921 + 1 + + + + + + fr.insee + kqweh61i + 1 + + INDNVOCC + + + fr.insee + kqweh61i-QOP-kqwet1gs + 1 + + INDNVOCC + + + + + fr.insee + kqweh61i-RDOP-kqwet1gs + 1 + OutParameter + + + fr.insee + kqweh61i-QOP-kqwet1gs + 1 + OutParameter + + + + + "Connaissez-vous le nom de la ou des personnes qui vous ont succédé dans le logement situé à l'adresse suivante : " || ¤kcoks7di-GOP¤ || " ?" + + + + radio-button + + fr.insee + ko8uzwua + 1 + CodeList + + + fr.insee + kqweh61i-RDOP-kqwet1gs + 1 + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + + + fr.insee + kqwga16w + 1 + + NOMNVOCC1 + + + fr.insee + kqwga16w-QOP-kqwfqy15 + 1 + + NOMNVOCC1 + + + + + fr.insee + kqwga16w-RDOP-kqwfqy15 + 1 + OutParameter + + + fr.insee + kqwga16w-QOP-kqwfqy15 + 1 + OutParameter + + + + + Nom : + + + + + fr.insee + kqwga16w-RDOP-kqwfqy15 + 1 + + + + + + fr.insee + kqwfswjj + 1 + + PRENOMNVOCC1 + + + fr.insee + kqwfswjj-QOP-kqwftx5y + 1 + + PRENOMNVOCC1 + + + + + fr.insee + kqwfswjj-RDOP-kqwftx5y + 1 + OutParameter + + + fr.insee + kqwfswjj-QOP-kqwftx5y + 1 + OutParameter + + + + + Prénom : + + + + + fr.insee + kqwfswjj-RDOP-kqwftx5y + 1 + + + + + + fr.insee + kqwfedoy + 1 + + NOMNVOCC2 + + + fr.insee + kqwfedoy-QOP-kqwfzgnh + 1 + + NOMNVOCC2 + + + + + fr.insee + kqwfedoy-RDOP-kqwfzgnh + 1 + OutParameter + + + fr.insee + kqwfedoy-QOP-kqwfzgnh + 1 + OutParameter + + + + + Nom d'un éventuel deuxième occupant : + + + + + fr.insee + kqwfedoy-RDOP-kqwfzgnh + 1 + + + + + + fr.insee + kqwg9azb + 1 + + PRENOMNVOCC2 + + + fr.insee + kqwg9azb-QOP-kqwg8mj6 + 1 + + PRENOMNVOCC2 + + + + + fr.insee + kqwg9azb-RDOP-kqwg8mj6 + 1 + OutParameter + + + fr.insee + kqwg9azb-QOP-kqwg8mj6 + 1 + OutParameter + + + + + Prénom d'un éventuel deuxième occupant : + + + + + fr.insee + kqwg9azb-RDOP-kqwg8mj6 + 1 + + + + + + fr.insee + kr0e0pav + 1 + + TELNVOCC + + + fr.insee + kr0e0pav-QOP-kr0ecbx1 + 1 + + TELNVOCC + + + + + fr.insee + kr0e0pav-RDOP-kr0ecbx1 + 1 + OutParameter + + + fr.insee + kr0e0pav-QOP-kr0ecbx1 + 1 + OutParameter + + + + + "Pouvez-vous indiquer un numéro de téléphone " || if (isnull(¤kqwfedoy-QOP-kqwfzgnh¤) and isnull(¤kqwg9azb-QOP-kqwg8mj6¤)) then "de l'occupant du logement ?" else "des occupants du logement ?" + + + + + fr.insee + kr0e0pav-RDOP-kr0ecbx1 + 1 + + + + + fr.insee + kr0e4p61 + 1 + Instruction + + + + fr.insee + kr0ee3u2 + 1 + + MAILNVOCC + + + fr.insee + kr0ee3u2-QOP-kr0erk52 + 1 + + MAILNVOCC + + + + + fr.insee + kr0ee3u2-RDOP-kr0erk52 + 1 + OutParameter + + + fr.insee + kr0ee3u2-QOP-kr0erk52 + 1 + OutParameter + + + + + "Pouvez-vous indiquer un mail " || if (isnull(¤kqwfedoy-QOP-kqwfzgnh¤) and isnull(¤kqwg9azb-QOP-kqwg8mj6¤)) then "de l'occupant du logement ?" else "des occupants du logement ?" + + + + + fr.insee + kr0ee3u2-RDOP-kr0erk52 + 1 + + + + + + fr.insee + kbc1b4k2 + 1 + + NBHAB + + + fr.insee + kbc1b4k2-QOP-kbc1oors + 1 + + NBHAB + + + + + fr.insee + kbc1b4k2-RDOP-kbc1oors + 1 + OutParameter + + + fr.insee + kbc1b4k2-QOP-kbc1oors + 1 + OutParameter + + + + + Au total, en vous comptant, combien de personnes habitent dans ce logement ? + + + + + 1 + 15 + + Decimal + + fr.insee + kbc1b4k2-RDOP-kbc1oors + 1 + + + + fr.insee + kbc1gah1 + 1 + Instruction + + + fr.insee + kqhv3glr + 1 + Instruction + + + + fr.insee + kmno1n7m + 1 + + G_PRENOM + + + fr.insee + kmno1n7m-QOP-kmno8tbs + 1 + + G_PRENOM + + + + + fr.insee + kmno1n7m-RDOP-kmno8tbs + 1 + OutParameter + + + fr.insee + kmno1n7m-QOP-kmno8tbs + 1 + OutParameter + + + + + " " || if (isnull(¤kbc1b4k2-QOP-kbc1oors¤) or cast(¤kbc1b4k2-QOP-kbc1oors¤,integer)=1) then "Votre prénom : " else (if ( not(isnull(¤kmno1n7m-QOP-kmno8tbs¤)) and ¤kmno1n7m-QOP-kmno8tbs¤=¤kpauiid9-GOP¤ ) then "Votre prénom : " else ( if (isnull(¤kpauiid9-GOP¤) and isnull(¤kmno1n7m-QOP-kmno8tbs¤)) then "Prénom (commencez par votre prénom) : " else "Prénom : ")) + + + + + fr.insee + kmno1n7m-RDOP-kmno8tbs + 1 + + + + + + fr.insee + kmoo2fiy + 1 + + SEXE + + + fr.insee + kmoo2fiy-QOP-kmoon375 + 1 + + SEXE + + + + + fr.insee + kmoo2fiy-RDOP-kmoon375 + 1 + OutParameter + + + fr.insee + kmoo2fiy-QOP-kmoon375 + 1 + OutParameter + + + + + "Quel est " || if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "votre sexe ?" else "le sexe de " || ¤kq7uo7yd-GOP¤ || " ?" + + + + radio-button + + fr.insee + kmolikl4 + 1 + CodeList + + + fr.insee + kmoo2fiy-RDOP-kmoon375 + 1 + + + fr.insee + kmolikl4 + 1 + CodeList + + + + + + + + fr.insee + kmoouamz + 1 + + DATENAIS + + + fr.insee + kmoouamz-QOP-kmoow49z + 1 + + DATENAIS + + + + + fr.insee + kmoouamz-RDOP-kmoow49z + 1 + OutParameter + + + fr.insee + kmoouamz-QOP-kmoow49z + 1 + OutParameter + + + + + "Quelle est " || if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "votre date de naissance ?" else "la date de naissance de " || ¤kq7uo7yd-GOP¤ ||" ?" + + + + YYYY-MM-DD + date + + 1900-01-01 + 2022-12-31 + + + fr.insee + kmoouamz-RDOP-kmoow49z + 1 + + + + + fr.insee + kmx6w6n5 + 1 + + TRAGE + + + fr.insee + kmx6w6n5-QOP-kmx7770w + 1 + + TRAGE + + + + + fr.insee + kmx6w6n5-RDOP-kmx7770w + 1 + OutParameter + + + fr.insee + kmx6w6n5-QOP-kmx7770w + 1 + OutParameter + + + + + "Vous n'avez pas indiqué de date de naissance, pouvez-vous indiquer la tranche d'âge dans laquelle " || if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "vous vous situez ?" else "se situe" || " " || ¤kq7uo7yd-GOP¤ || " ?" + + + + radio-button + + fr.insee + kmx6szo6 + 1 + CodeList + + + fr.insee + kmx6w6n5-RDOP-kmx7770w + 1 + + + fr.insee + kmx6szo6 + 1 + CodeList + + + + + + + + fr.insee + kmookacu + 1 + + LNAIS + + + fr.insee + kmookacu-QOP-kmop5us3 + 1 + + LNAIS + + + + + fr.insee + kmookacu-RDOP-kmop5us3 + 1 + OutParameter + + + fr.insee + kmookacu-QOP-kmop5us3 + 1 + OutParameter + + + + + "Où "|| if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "êtes-vous né" || ¤kmook912-GOP¤ || " ?" else "est né" || ¤kmook912-GOP¤ || " " || ¤kq7uo7yd-GOP¤ || " ?" + + + + radio-button + + fr.insee + kmomiwx3 + 1 + CodeList + + + fr.insee + kmookacu-RDOP-kmop5us3 + 1 + + + fr.insee + kmomiwx3 + 1 + CodeList + + + + + + + fr.insee + lo8om6yc + 1 + Instruction + + + fr.insee + lo8onkqg + 1 + Instruction + + + + fr.insee + kmor2z1x + 1 + + DEPNAIS + + + fr.insee + kmor2z1x-QOP-lgrjrpiq + 1 + + DEPNAIS + + + + + fr.insee + kmor2z1x-RDOP-lgrjrpiq + 1 + OutParameter + + + fr.insee + kmor2z1x-QOP-lgrjrpiq + 1 + OutParameter + + + + + "Dans quel département "|| if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "êtes-vous né" || ¤kmook912-GOP¤ || " ?" else "est né" || ¤kmook912-GOP¤ || " " || ¤kq7uo7yd-GOP¤ || " ?" + + + + + fr.insee + kmor2z1x-RDOP-lgrjrpiq + 1 + + + + + fr.insee + kwzak25x + 1 + Instruction + + + + fr.insee + kmorege9 + 1 + + PAYSNAIS + + + fr.insee + kmorege9-QOP-lgrk5smv + 1 + + PAYSNAIS + + + + + fr.insee + kmorege9-RDOP-lgrk5smv + 1 + OutParameter + + + fr.insee + kmorege9-QOP-lgrk5smv + 1 + OutParameter + + + + + "Dans quel pays "|| if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "êtes-vous né" || ¤kmook912-GOP¤ || " ?" else "est né" || ¤kmook912-GOP¤ || " " || ¤kq7uo7yd-GOP¤ || " ?" + + + + + fr.insee + kmorege9-RDOP-lgrk5smv + 1 + + + + + fr.insee + kwyzaj0t + 1 + Instruction + + + fr.insee + kwzasuub + 1 + Instruction + + + + fr.insee + kmos2yo6 + 1 + + NATIO2N + + + fr.insee + kmos2yo6-QOP-lgrjx1rt + 1 + + NATIO2N + + + + + fr.insee + kmos2yo6-RDOP-lgrjx1rt + 1 + OutParameter + + + fr.insee + kmos2yo6-QOP-lgrjx1rt + 1 + OutParameter + + + + + "Quelle est "|| if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "votre nationalité étrangère ?" else "la nationalité étrangère de " || ¤kq7uo7yd-GOP¤ || " ?" + + + + + fr.insee + kmos2yo6-RDOP-lgrjx1rt + 1 + + + + + fr.insee + kwzb4byw + 1 + Instruction + + + + fr.insee + kmw4revw + 1 + + LIEN + + + fr.insee + kmw4revw-QOP-kmw5mxph + 1 + + LIEN + + + + + fr.insee + kmw4revw-RDOP-kmw5mxph + 1 + OutParameter + + + fr.insee + kmw4revw-QOP-kmw5mxph + 1 + OutParameter + + + + + "Qui est "|| ¤kq7uo7yd-GOP¤ || " pour vous ?" + + + + radio-button + + fr.insee + kmw56gjz + 1 + CodeList + + + fr.insee + kmw4revw-RDOP-kmw5mxph + 1 + + + fr.insee + kmw56gjz + 1 + CodeList + + + + + + + + fr.insee + kod271pp + 1 + + COUPLE + + + fr.insee + kod271pp-QOP-kod2650j + 1 + + COUPLE + + + + + fr.insee + kod271pp-RDOP-kod2650j + 1 + OutParameter + + + fr.insee + kod271pp-QOP-kod2650j + 1 + OutParameter + + + + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Vivez-vous en couple ?" else ¤kq7uo7yd-GOP¤ || " vit-" || ¤kmx8i16l-GOP¤ || " en couple ?" + + + + radio-button + + fr.insee + kod1mvxo + 1 + CodeList + + + fr.insee + kod271pp-RDOP-kod2650j + 1 + + + fr.insee + kod1mvxo + 1 + CodeList + + + + + + + + fr.insee + kmx8sgeu + 1 + + UNLOG + + + fr.insee + kmx8sgeu-QOP-kn8zvq0g + 1 + + UNLOG + + + + + fr.insee + kmx8sgeu-RDOP-kn8zvq0g + 1 + OutParameter + + + fr.insee + kmx8sgeu-QOP-kn8zvq0g + 1 + OutParameter + + + + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Vivez-vous uniquement dans ce logement ou aussi dans un autre logement ?" else ¤kq7uo7yd-GOP¤ || " vit-" || ¤kmx8i16l-GOP¤ || " uniquement dans ce logement ou aussi dans un autre logement ?" + + + + radio-button + + fr.insee + kn8zodpk + 1 + CodeList + + + fr.insee + kmx8sgeu-RDOP-kn8zvq0g + 1 + + + fr.insee + kn8zodpk + 1 + CodeList + + + + + + + fr.insee + kvl9opds + 1 + Instruction + + + + fr.insee + kmx97ttc + 1 + + DURLOG + + + fr.insee + kmx97ttc-QOP-kmx93bw6 + 1 + + DURLOG + + + + + fr.insee + kmx97ttc-RDOP-kmx93bw6 + 1 + OutParameter + + + fr.insee + kmx97ttc-QOP-kmx93bw6 + 1 + OutParameter + + + + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Vous vivez dans le logement situé à l'adresse : " || ¤kcolhi30-GOP¤ || " ... ?" else ¤kq7uo7yd-GOP¤ || " vit dans ce logement situé à l'adresse : " || ¤kcolhi30-GOP¤ || " ... ?" + + + + radio-button + + fr.insee + kmukmzpq + 1 + CodeList + + + fr.insee + kmx97ttc-RDOP-kmx93bw6 + 1 + + + fr.insee + kmukmzpq + 1 + CodeList + + + + + + + + fr.insee + kmx97tz1 + 1 + + LOGENQ + + + fr.insee + kmx97tz1-QOP-kmx95xeo + 1 + + LOGENQ + + + + + fr.insee + kmx97tz1-RDOP-kmx95xeo + 1 + OutParameter + + + fr.insee + kmx97tz1-QOP-kmx95xeo + 1 + OutParameter + + + + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Pour vous, ce logement est... ?" else "Pour " || ¤kq7uo7yd-GOP¤ || ", ce logement est... ?" + + + + radio-button + + fr.insee + kmx96qdc + 1 + CodeList + + + fr.insee + kmx97tz1-RDOP-kmx95xeo + 1 + + + fr.insee + kmx96qdc + 1 + CodeList + + + + + + + fr.insee + kvlaj6p8 + 1 + Instruction + + + + fr.insee + kmx93med + 1 + + LOGAUT + + + fr.insee + kmx93med-QOP-kmx9mse6 + 1 + + LOGAUT + + + + + fr.insee + kmx93med-RDOP-kmx9mse6 + 1 + OutParameter + + + fr.insee + kmx93med-QOP-kmx9mse6 + 1 + OutParameter + + + + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Pour vous, l'autre logement où vous vivez est... ?" else "Pour " || ¤kq7uo7yd-GOP¤ || ", l'autre logement où " || ¤kmx8i16l-GOP¤ || " vit est... ?" + + + + radio-button + + fr.insee + kmx9jj4a + 1 + CodeList + + + fr.insee + kmx93med-RDOP-kmx9mse6 + 1 + + + fr.insee + kmx9jj4a + 1 + CodeList + + + + + + + fr.insee + kvm8n3pp + 1 + Instruction + + + fr.insee + kvm8xhsc + 1 + Instruction + + + + fr.insee + kmx9punx + 1 + + GARDE + + + fr.insee + kmx9punx-QOP-kmx9hqtj + 1 + + GARDE + + + + + fr.insee + kmx9punx-RDOP-kmx9hqtj + 1 + OutParameter + + + fr.insee + kmx9punx-QOP-kmx9hqtj + 1 + OutParameter + + + + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Êtes-vous en garde alternée chez vos deux parents ?" else ¤kq7uo7yd-GOP¤ || " est-" || ¤kmx8i16l-GOP¤ || " en garde alternée chez ses deux parents ?" + + + + radio-button + + fr.insee + k1qjtfk1 + 1 + CodeList + + + fr.insee + kmx9punx-RDOP-kmx9hqtj + 1 + + + fr.insee + k1qjtfk1 + 1 + CodeList + + + + + + + + fr.insee + kmx9im0b + 1 + + DORM + + + fr.insee + kmx9im0b-QOP-kna1mw8t + 1 + + DORM + + + + + fr.insee + kmx9im0b-RDOP-kna1mw8t + 1 + OutParameter + + + fr.insee + kmx9im0b-QOP-kna1mw8t + 1 + OutParameter + + + + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Où avez-vous dormi la nuit dernière ?" else "Où " || ¤kq7uo7yd-GOP¤ || " a-t-" || ¤kmx8i16l-GOP¤ || " dormi la nuit dernière ?" + + + + radio-button + + fr.insee + kna1qses + 1 + CodeList + + + fr.insee + kmx9im0b-RDOP-kna1mw8t + 1 + + + fr.insee + kna1qses + 1 + CodeList + + + + + + + fr.insee + kn7jf1jt + 1 + Instruction + + + + fr.insee + kqi4zdkk + 1 + + LOGCO + + + fr.insee + kqi4zdkk-QOP-kqi52gbh + 1 + + LOGCO + + + + + fr.insee + kqi4zdkk-RDOP-kqi52gbh + 1 + OutParameter + + + fr.insee + kqi4zdkk-QOP-kqi52gbh + 1 + OutParameter + + + + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "À propos de cet autre logement dans lequel vous vivez, s'agit-il d'une chambre dans une structure collective ?" else "À propos de cet autre logement dans lequel vit " || ¤kq7uo7yd-GOP¤ || ", s'agit-il d'une chambre dans une structure collective ?" + + + + radio-button + + fr.insee + k1qjtfk1 + 1 + CodeList + + + fr.insee + kqi4zdkk-RDOP-kqi52gbh + 1 + + + fr.insee + k1qjtfk1 + 1 + CodeList + + + + + + + fr.insee + kvm8hkmj + 1 + Instruction + + + + fr.insee + kmx9pvyn + 1 + + TYPLOGCO + + + fr.insee + kmx9pvyn-QOP-kmx9nkw7 + 1 + + TYPLOGCO + + + + + fr.insee + kmx9pvyn-RDOP-kmx9nkw7 + 1 + OutParameter + + + fr.insee + kmx9pvyn-QOP-kmx9nkw7 + 1 + OutParameter + + + + + De quelle structure s'agit-il ? + + + + radio-button + + fr.insee + kmx7yjsk + 1 + CodeList + + + fr.insee + kmx9pvyn-RDOP-kmx9nkw7 + 1 + + + fr.insee + kmx7yjsk + 1 + CodeList + + + + + + + fr.insee + kvm8t64a + 1 + Instruction + + + + fr.insee + kmxfqrb1 + 1 + + SITUA + + + fr.insee + kmxfqrb1-QOP-kmxfw3tj + 1 + + SITUA + + + + + fr.insee + kmxfqrb1-RDOP-kmxfw3tj + 1 + OutParameter + + + fr.insee + kmxfqrb1-QOP-kmxfw3tj + 1 + OutParameter + + + + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Actuellement, quelle est votre situation principale ?" else "Actuellement, quelle est la situation principale de " || ¤kq7uo7yd-GOP¤ || " ?" + + + + radio-button + + fr.insee + kmxfw3sx + 1 + CodeList + + + fr.insee + kmxfqrb1-RDOP-kmxfw3tj + 1 + + + fr.insee + kmxfw3sx + 1 + CodeList + + + + + + + fr.insee + krd9g6bh + 1 + Instruction + + + + fr.insee + kmxg8ci7 + 1 + + TRAVAIL + + + fr.insee + kmxg8ci7-QOP-kmxg0ml3 + 1 + + TRAVAIL + + + + + fr.insee + kmxg8ci7-RDOP-kmxg0ml3 + 1 + OutParameter + + + fr.insee + kmxg8ci7-QOP-kmxg0ml3 + 1 + OutParameter + + + + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Avez-vous cependant un emploi ?" else ¤kq7uo7yd-GOP¤ || " a-t-" || ¤kmx8i16l-GOP¤ || " cependant un emploi ?" + + + + radio-button + + fr.insee + k1qjtfk1 + 1 + CodeList + + + fr.insee + kmxg8ci7-RDOP-kmxg0ml3 + 1 + + + fr.insee + k1qjtfk1 + 1 + CodeList + + + + + + + fr.insee + kqi7dwk7 + 1 + Instruction + + + fr.insee + kqi7omwd + 1 + Instruction + + + + fr.insee + kmxgftfs + 1 + + GRDIPA + + + fr.insee + kmxgftfs-QOP-kmxggoi3 + 1 + + GRDIPA + + + + + fr.insee + kmxgftfs-RDOP-kmxggoi3 + 1 + OutParameter + + + fr.insee + kmxgftfs-QOP-kmxggoi3 + 1 + OutParameter + + + + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "À ce jour, quel est le plus haut diplôme ou titre que vous possédez ?" else "À ce jour, quel est le plus haut diplôme ou titre que " || ¤kq7uo7yd-GOP¤ || " possède ?" + + + + radio-button + + fr.insee + kmxf03ss + 1 + CodeList + + + fr.insee + kmxgftfs-RDOP-kmxggoi3 + 1 + + + fr.insee + kmxf03ss + 1 + CodeList + + + + + + + fr.insee + kqi89yfr + 1 + Instruction + + + fr.insee + kqi81ih3 + 1 + Instruction + + + + fr.insee + kqi8s71l + 1 + + GRDIPB + + + fr.insee + kqi8s71l-QOP-kqi8oy4y + 1 + + GRDIPB + + + + + fr.insee + kqi8s71l-RDOP-kqi8oy4y + 1 + OutParameter + + + fr.insee + kqi8s71l-QOP-kqi8oy4y + 1 + OutParameter + + + + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Plus précisément, quel est votre niveau d'études ?" else "Plus précisément, quel est le niveau d'études de " || ¤kq7uo7yd-GOP¤ ||" ?" + + + + radio-button + + fr.insee + kqi895gg + 1 + CodeList + + + fr.insee + kqi8s71l-RDOP-kqi8oy4y + 1 + + + fr.insee + kqi895gg + 1 + CodeList + + + + + + + + fr.insee + kqi8mfos + 1 + + GRDIPC + + + fr.insee + kqi8mfos-QOP-kqi8kfm4 + 1 + + GRDIPC + + + + + fr.insee + kqi8mfos-RDOP-kqi8kfm4 + 1 + OutParameter + + + fr.insee + kqi8mfos-QOP-kqi8kfm4 + 1 + OutParameter + + + + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Plus précisément, quel diplôme de niveau supérieur à bac+2 avez-vous obtenu ?" else "Plus précisément, quel diplôme de niveau supérieur à bac+2 "|| ¤kq7uo7yd-GOP¤ || " a-t-" || ¤kmx8i16l-GOP¤ || " obtenu ?" + + + + radio-button + + fr.insee + kqi8rie2 + 1 + CodeList + + + fr.insee + kqi8mfos-RDOP-kqi8kfm4 + 1 + + + fr.insee + kqi8rie2 + 1 + CodeList + + + + + + + + fr.insee + kp4dw3br + 1 + + TELET + + + fr.insee + kp4dw3br-QOP-kp4dj5dc + 1 + + TELET + + + + + fr.insee + kp4dw3br-RDOP-kp4dj5dc + 1 + OutParameter + + + fr.insee + kp4dw3br-QOP-kp4dj5dc + 1 + OutParameter + + + + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Pratiquez-vous le télétravail ?" else ¤kq7uo7yd-GOP¤ || " pratique-t-" || ¤kmx8i16l-GOP¤ || " le télétravail ?" + + + + radio-button + + fr.insee + ko8uzwua + 1 + CodeList + + + fr.insee + kp4dw3br-RDOP-kp4dj5dc + 1 + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + + fr.insee + lepxuxk2 + 1 + Instruction + + + + fr.insee + kvjb8q33 + 1 + + TELETNJ + + + fr.insee + kvjb8q33-QOP-kvjbdo0x + 1 + + TELETNJ + + + + + fr.insee + kvjb8q33-RDOP-kvjbdo0x + 1 + OutParameter + + + fr.insee + kvjb8q33-QOP-kvjbdo0x + 1 + OutParameter + + + + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Combien de jours par semaine êtes-vous en télétravail, en moyenne ?" else "Combien de jours par semaine " || ¤kq7uo7yd-GOP¤ || " est-" || ¤kmx8i16l-GOP¤ || " en télétravail, en moyenne ? " + + + + + 0 + 7 + + Decimal + + fr.insee + kvjb8q33-RDOP-kvjbdo0x + 1 + + + + + fr.insee + lgmc7929 + 1 + + PRACT_NOM + + + fr.insee + lgmc7929-QOP-lgmddhd1 + 1 + + PRACT_NOM + + + + + fr.insee + lgmc7929-RDOP-lgmddhd1 + 1 + OutParameter + + + fr.insee + lgmc7929-QOP-lgmddhd1 + 1 + OutParameter + + + + + Qui est le principal apporteur de ressources du ménage ? + + + + + fr.insee + lgmc7929-RDOP-lgmddhd1 + 1 + + + + + fr.insee + lgmd7uor + 1 + Instruction + + + + fr.insee + kd8qd4ou + 1 + + HTLC1 + + + fr.insee + kd8qd4ou-QOP-kd8q0swm + 1 + + HTLC1 + + + + + fr.insee + kd8qd4ou-RDOP-kd8q0swm + 1 + OutParameter + + + fr.insee + kd8qd4ou-QOP-kd8q0swm + 1 + OutParameter + + + + + À quoi correspond votre logement ? + + + + radio-button + + fr.insee + kd8q4yja + 1 + CodeList + + + fr.insee + kd8qd4ou-RDOP-kd8q0swm + 1 + + + fr.insee + kd8q4yja + 1 + CodeList + + + + + + + + fr.insee + l7kb07wt + 1 + + NIVEAU + + + fr.insee + l7kb07wt-QOP-l7kaurt5 + 1 + + NIVEAU + + + + + fr.insee + l7kb07wt-RDOP-l7kaurt5 + 1 + OutParameter + + + fr.insee + l7kb07wt-QOP-l7kaurt5 + 1 + OutParameter + + + + + Combien de niveaux comporte votre logement ? + + + + + 1 + 99 + + Decimal + + fr.insee + l7kb07wt-RDOP-l7kaurt5 + 1 + + + + fr.insee + l7kato20 + 1 + Instruction + + + fr.insee + lhiyps86 + 1 + Instruction + + + + fr.insee + kp4b8f63 + 1 + + FOYPAGEES + + + fr.insee + kp4b8f63-QOP-kp4buj00 + 1 + + FOYPAGEES + + + + + fr.insee + kp4b8f63-RDOP-kp4buj00 + 1 + OutParameter + + + fr.insee + kp4b8f63-QOP-kp4buj00 + 1 + OutParameter + + + + + Est-ce que votre logement se trouve en foyer (ou résidence) pour personnes âgées ? + + + + radio-button + + fr.insee + ko8uzwua + 1 + CodeList + + + fr.insee + kp4b8f63-RDOP-kp4buj00 + 1 + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + + + fr.insee + kp4bwrb9 + 1 + + RESAUTO + + + fr.insee + kp4bwrb9-QOP-kp4bvh3q + 1 + + RESAUTO + + + + + fr.insee + kp4bwrb9-RDOP-kp4bvh3q + 1 + OutParameter + + + fr.insee + kp4bwrb9-QOP-kp4bvh3q + 1 + OutParameter + + + + + Plus précisément, quel est le type de cette résidence ? + + + + radio-button + + fr.insee + kp4bs9c4 + 1 + CodeList + + + fr.insee + kp4bwrb9-RDOP-kp4bvh3q + 1 + + + fr.insee + kp4bs9c4 + 1 + CodeList + + + + + + + + fr.insee + kbgi5n3g + 1 + + INDCOLL + + + fr.insee + kbgi5n3g-QOP-kbgif8i8 + 1 + + INDCOLL + + + + + fr.insee + kbgi5n3g-RDOP-kbgif8i8 + 1 + OutParameter + + + fr.insee + kbgi5n3g-QOP-kbgif8i8 + 1 + OutParameter + + + + + Le logement fait-il partie d'un immeuble collectif ? + + + + radio-button + + fr.insee + k1qjtfk1 + 1 + CodeList + + + fr.insee + kbgi5n3g-RDOP-kbgif8i8 + 1 + + + fr.insee + k1qjtfk1 + 1 + CodeList + + + + + + + + fr.insee + kbgigljc + 1 + + IMI + + + fr.insee + kbgigljc-QOP-kbgif1cj + 1 + + IMI + + + + + fr.insee + kbgigljc-RDOP-kbgif1cj + 1 + OutParameter + + + fr.insee + kbgigljc-QOP-kbgif1cj + 1 + OutParameter + + + + + Quel est le type de construction de la maison individuelle ? + + + + radio-button + + fr.insee + kbgi2ogb + 1 + CodeList + + + fr.insee + kbgigljc-RDOP-kbgif1cj + 1 + + + fr.insee + kbgi2ogb + 1 + CodeList + + + + + + + + fr.insee + kbgim4v3 + 1 + + ICOI + + + fr.insee + kbgim4v3-QOP-kbgin5q4 + 1 + + ICOI + + + + + fr.insee + kbgim4v3-RDOP-kbgin5q4 + 1 + OutParameter + + + fr.insee + kbgim4v3-QOP-kbgin5q4 + 1 + OutParameter + + + + + La maison fait-elle partie d'une résidence ou d'un 'village' en copropriété ? + + + + radio-button + + fr.insee + k1qjtfk1 + 1 + CodeList + + + fr.insee + kbgim4v3-RDOP-kbgin5q4 + 1 + + + fr.insee + k1qjtfk1 + 1 + CodeList + + + + + + + + fr.insee + kbgidvnm + 1 + + IAS + + + fr.insee + kbgidvnm-QOP-kbgis9ja + 1 + + IAS + + + + + fr.insee + kbgidvnm-RDOP-kbgis9ja + 1 + OutParameter + + + fr.insee + kbgidvnm-QOP-kbgis9ja + 1 + OutParameter + + + + + Y a-t-il au moins un ascenseur dans l'immeuble collectif ? + + + + radio-button + + fr.insee + k1qjtfk1 + 1 + CodeList + + + fr.insee + kbgidvnm-RDOP-kbgis9ja + 1 + + + fr.insee + k1qjtfk1 + 1 + CodeList + + + + + + + + fr.insee + kbgigafp + 1 + + IEL + + + fr.insee + kbgigafp-QOP-kbgikgba + 1 + + IEL + + + + + fr.insee + kbgigafp-RDOP-kbgikgba + 1 + OutParameter + + + fr.insee + kbgigafp-QOP-kbgikgba + 1 + OutParameter + + + + + À quel étage se trouve votre logement ? + + + + + 0 + 99 + + Decimal + + fr.insee + kbgigafp-RDOP-kbgikgba + 1 + + + + + fr.insee + kbghszh6 + 1 + + IAATC + + + fr.insee + kbghszh6-QOP-kbgi0wp8 + 1 + + IAATC + + + + + fr.insee + kbghszh6-RDOP-kbgi0wp8 + 1 + OutParameter + + + fr.insee + kbghszh6-QOP-kbgi0wp8 + 1 + OutParameter + + + + + "À quelle période a été achevée la construction "|| ¤kp4cwk1f-GOP¤ || " ?" + + + + radio-button + + fr.insee + kbgiawbm + 1 + CodeList + + + fr.insee + kbghszh6-RDOP-kbgi0wp8 + 1 + + + fr.insee + kbgiawbm + 1 + CodeList + + + + + + + + fr.insee + kbghz7mp + 1 + + IAATCD + + + fr.insee + kbghz7mp-QOP-leradyld + 1 + + IAATCD + + + + + fr.insee + kbghz7mp-RDOP-leradyld + 1 + OutParameter + + + fr.insee + kbghz7mp-QOP-leradyld + 1 + OutParameter + + + + + "En quelle année exactement la construction " || ¤kp4cwk1f-GOP¤ || " a-t-elle été achevée ?" + + + + + fr.insee + kbghz7mp-RDOP-leradyld + 1 + + + + + + fr.insee + jn0cttir + 1 + + STOC1 + + + fr.insee + jn0cttir-QOP-jn0dct54 + 1 + + STOC1 + + + + + fr.insee + jn0cttir-RDOP-jn0dct54 + 1 + OutParameter + + + fr.insee + jn0cttir-QOP-jn0dct54 + 1 + OutParameter + + + + + Comment votre ménage occupe-t-il ce logement ? + + + + radio-button + + fr.insee + jn0cd476 + 1 + CodeList + + + fr.insee + jn0cttir-RDOP-jn0dct54 + 1 + + + fr.insee + jn0cd476 + 1 + CodeList + + + + + + + fr.insee + jn0d8za4 + 1 + Instruction + + + + fr.insee + klusnxnh + 1 + + STOC2 + + + fr.insee + klusnxnh-QOP-klut950c + 1 + + STOC2 + + + + + fr.insee + klusnxnh-RDOP-klut950c + 1 + OutParameter + + + fr.insee + klusnxnh-QOP-klut950c + 1 + OutParameter + + + + + Un des occupants actuels du logement est-il propriétaire de ce logement ? + + + + radio-button + + fr.insee + klut8zly + 1 + CodeList + + + fr.insee + klusnxnh-RDOP-klut950c + 1 + + + fr.insee + klut8zly + 1 + CodeList + + + + + + + fr.insee + knrah5ep + 1 + Instruction + + + + fr.insee + l7j247p7 + 1 + + COLOC + + + fr.insee + l7j247p7-QOP-l7j3o6fg + 1 + + COLOC + + + + + fr.insee + l7j247p7-RDOP-l7j3o6fg + 1 + OutParameter + + + fr.insee + l7j247p7-QOP-l7j3o6fg + 1 + OutParameter + + + + + Vivez-vous en colocation ? + + + + radio-button + + fr.insee + ko8uzwua + 1 + CodeList + + + fr.insee + l7j247p7-RDOP-l7j3o6fg + 1 + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + + + fr.insee + l95euppt + 1 + + LBA + + + fr.insee + l95euppt-QOP-l95eseii + 1 + + LBA + + + + + fr.insee + l95euppt-RDOP-l95eseii + 1 + OutParameter + + + fr.insee + l95euppt-QOP-l95eseii + 1 + OutParameter + + + + + Disposez-vous d'un bail ou d'un engagement écrit de location ? + + + + radio-button + + fr.insee + ko8uzwua + 1 + CodeList + + + fr.insee + l95euppt-RDOP-l95eseii + 1 + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + + + fr.insee + jn0e3nhg + 1 + + STOCP + + + fr.insee + jn0e3nhg-QOP-jn0dupyf + 1 + + STOCP + + + + + fr.insee + jn0e3nhg-RDOP-jn0dupyf + 1 + OutParameter + + + fr.insee + jn0e3nhg-QOP-jn0dupyf + 1 + OutParameter + + + + + Votre ménage occupe-t-il ce logement en pleine propriété ou en propriété partielle ?&#xd;​ + + + + radio-button + + fr.insee + jn0dummd + 1 + CodeList + + + fr.insee + jn0e3nhg-RDOP-jn0dupyf + 1 + + + fr.insee + jn0dummd + 1 + CodeList + + + + + + + + fr.insee + ko9tiu0f + 1 + + STOCA12 + + + fr.insee + ko9tiu0f-QOP-ko9t7khn + 1 + + STOCA12 + + + + + fr.insee + ko9tiu0f-RDOP-ko9t7khn + 1 + OutParameter + + + fr.insee + ko9tiu0f-QOP-ko9t7khn + 1 + OutParameter + + + + + "À titre personnel, " || if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "votre nom figure-t-il sur l'acte de propriété ?" else "le nom de " || ¤kq7uo7yd-GOP¤ || " figure-t-il sur l'acte de propriété ?" + + + + radio-button + + fr.insee + ko8uzwua + 1 + CodeList + + + fr.insee + ko9tiu0f-RDOP-ko9t7khn + 1 + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + + fr.insee + kp5nuwqt + 1 + Instruction + + + + fr.insee + ko9r0alc + 1 + + STOCA3 + + + fr.insee + ko9r0alc-QOP-ko9qvhh3 + 1 + + STOCA3 + + + + + fr.insee + ko9r0alc-RDOP-ko9qvhh3 + 1 + OutParameter + + + fr.insee + ko9r0alc-QOP-ko9qvhh3 + 1 + OutParameter + + + + + "À titre personnel, " || (if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "êtes-vous" else (¤kq7uo7yd-GOP¤ || " est-" || ¤kmx8i16l-GOP¤)) || " usufruitier" || ¤kf5dz367-GOP¤ || " de ce logement ?" + + + + radio-button + + fr.insee + ko8uzwua + 1 + CodeList + + + fr.insee + ko9r0alc-RDOP-ko9qvhh3 + 1 + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + + + fr.insee + ko9t45t9 + 1 + + STOCA4 + + + fr.insee + ko9t45t9-QOP-ko9sybca + 1 + + STOCA4 + + + + + fr.insee + ko9t45t9-RDOP-ko9sybca + 1 + OutParameter + + + fr.insee + ko9t45t9-QOP-ko9sybca + 1 + OutParameter + + + + + "À titre personnel, " || if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "votre nom figure-t-il sur le bail de location ?" else "le nom de " || ¤kq7uo7yd-GOP¤ || " figure-t-il sur le bail de location ?" + + + + radio-button + + fr.insee + ko8uzwua + 1 + CodeList + + + fr.insee + ko9t45t9-RDOP-ko9sybca + 1 + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + + + fr.insee + knoqewds + 1 + + STOCB1 + + + fr.insee + knoqewds-QOP-knoq13l0 + 1 + + STOCB1 + + + + + fr.insee + knoqewds-RDOP-knoq13l0 + 1 + OutParameter + + + fr.insee + knoqewds-QOP-knoq13l0 + 1 + OutParameter + + + + + (if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Êtes-vous" else (¤kq7uo7yd-GOP¤ || " est-" || ¤kmx8i16l-GOP¤)) || " " || if (isnull(¤klutbpfw-GOP¤)) then "locataire, sous-locataire ou colocataire" else (if (¤klutbpfw-GOP¤="1" or ¤klutbpfw-GOP¤="2" or ¤klutbpfw-GOP¤="3") then "locataire ou colocataire" else "sous-locataire") || " d'une partie du logement ?" + + + + radio-button + + fr.insee + knoq1iew + 1 + CodeList + + + fr.insee + knoqewds-RDOP-knoq13l0 + 1 + + + fr.insee + knoq1iew + 1 + CodeList + + + + + + + + fr.insee + joh8lowu + 1 + + EPAS1 + + + fr.insee + joh8lowu-QOP-kp5vmw5r + 1 + + EPAS1 + + + + + fr.insee + joh8lowu-RDOP-kp5vmw5r + 1 + OutParameter + + + fr.insee + joh8lowu-QOP-kp5vmw5r + 1 + OutParameter + + + + + ¤kq7uo7yd-GOP¤ || " a-t-" || ¤kmx8i16l-GOP¤ || " déjà quitté le logement familial pour vivre dans un logement indépendant pendant plus de trois mois ?" + + + + radio-button + + fr.insee + kp5vfffj + 1 + CodeList + + + fr.insee + joh8lowu-RDOP-kp5vmw5r + 1 + + + fr.insee + kp5vfffj + 1 + CodeList + + + + + + + fr.insee + kqv2lwqk + 1 + Instruction + + + + fr.insee + kppmespv + 1 + + ERETOUR + + + fr.insee + kppmespv-QOP-kppmi2n2 + 1 + + ERETOUR + + + + + fr.insee + kppmespv-RDOP-kppmi2n2 + 1 + OutParameter + + + fr.insee + kppmespv-QOP-kppmi2n2 + 1 + OutParameter + + + + + ¤kq7uo7yd-GOP¤ || " vit-" || ¤kmx8i16l-GOP¤ || " chez vous uniquement pour les vacances, les week-ends ?" + + + + radio-button + + fr.insee + jncy00q3 + 1 + CodeList + + + fr.insee + kppmespv-RDOP-kppmi2n2 + 1 + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + + + fr.insee + joh8ixt2 + 1 + + EPASB + + + fr.insee + joh8ixt2-QOP-joh9guc7 + 1 + + EPASB + + + + + fr.insee + joh8ixt2-RDOP-joh9guc7 + 1 + OutParameter + + + fr.insee + joh8ixt2-QOP-joh9guc7 + 1 + OutParameter + + + + + "Au total, pendant combien de temps " || ¤kq7uo7yd-GOP¤ || " a-t-" || ¤kmx8i16l-GOP¤ || " vécu dans un logement indépendant ?" + + + + radio-button + + fr.insee + joh8kni7 + 1 + CodeList + + + fr.insee + joh8ixt2-RDOP-joh9guc7 + 1 + + + fr.insee + joh8kni7 + 1 + CodeList + + + + + + + fr.insee + joh97u9u + 1 + Instruction + + + + fr.insee + kcnccgjg + 1 + + EPASC + + + fr.insee + kcnccgjg-QOP-kcnch682 + 1 + + EPASC + + + + + fr.insee + kcnccgjg-RDOP-kcnch682 + 1 + OutParameter + + + fr.insee + kcnccgjg-QOP-kcnch682 + 1 + OutParameter + + + + + "Depuis quand " || ¤kq7uo7yd-GOP¤ || " est-" || ¤kmx8i16l-GOP¤ || " venu" || ¤kmook912-GOP¤ || " ou revenu" || ¤kmook912-GOP¤ || " vivre chez vous ?" + + + + radio-button + + fr.insee + joh9gxwq + 1 + CodeList + + + fr.insee + kcnccgjg-RDOP-kcnch682 + 1 + + + fr.insee + joh9gxwq + 1 + CodeList + + + + + + + + fr.insee + kp5vtjh4 + 1 + + ECOVID + + + fr.insee + kp5vtjh4-QOP-kp5w4s1s + 1 + + ECOVID + + + + + fr.insee + kp5vtjh4-RDOP-kp5w4s1s + 1 + OutParameter + + + fr.insee + kp5vtjh4-QOP-kp5w4s1s + 1 + OutParameter + + + + + "Le fait que " || ¤kq7uo7yd-GOP¤ || " vit chez vous est-il lié à la crise sanitaire due à l'épidémie de Covid19 ?" + + + + radio-button + + fr.insee + jncy00q3 + 1 + CodeList + + + fr.insee + kp5vtjh4-RDOP-kp5w4s1s + 1 + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + + + fr.insee + joirni0x + 1 + + EPROJ + + + fr.insee + joirni0x-QOP-joirzvfg + 1 + + EPROJ + + + + + fr.insee + joirni0x-RDOP-joirzvfg + 1 + OutParameter + + + fr.insee + joirni0x-QOP-joirzvfg + 1 + OutParameter + + + + + ¤kq7uo7yd-GOP¤ || " envisage-t-" || ¤kmx8i16l-GOP¤ || " d'aller habiter dans un logement indépendant dans les six mois qui viennent ?" + + + + radio-button + + fr.insee + joirusc3 + 1 + CodeList + + + fr.insee + joirni0x-RDOP-joirzvfg + 1 + + + fr.insee + joirusc3 + 1 + CodeList + + + + + + + + fr.insee + joirve2f + 1 + + EPROJB + + + fr.insee + joirve2f-QOP-jois1vwn + 1 + + EPROJB + + + + + fr.insee + joirve2f-RDOP-jois1vwn + 1 + OutParameter + + + fr.insee + joirve2f-QOP-jois1vwn + 1 + OutParameter + + + + + ¤kq7uo7yd-GOP¤ || " a-t-" || ¤kmx8i16l-GOP¤ || " actuellement les moyens financiers lui permettant d'avoir un logement indépendant ?" + + + + radio-button + + fr.insee + joirox38 + 1 + CodeList + + + fr.insee + joirve2f-RDOP-jois1vwn + 1 + + + fr.insee + joirox38 + 1 + CodeList + + + + + + + + fr.insee + joirtz3j + 1 + + EPROJC + + + fr.insee + joirtz3j-QOP-joirpdmw + 1 + + EPROJC + + + + + fr.insee + joirtz3j-RDOP-joirpdmw + 1 + OutParameter + + + fr.insee + joirtz3j-QOP-joirpdmw + 1 + OutParameter + + + + + ¤kq7uo7yd-GOP¤ || " aurait-" || ¤kmx8i16l-GOP¤ || " les moyens financiers d’obtenir un logement indépendant ?" + + + + radio-button + + fr.insee + joirox38 + 1 + CodeList + + + fr.insee + joirtz3j-RDOP-joirpdmw + 1 + + + fr.insee + joirox38 + 1 + CodeList + + + + + + + + fr.insee + joisp3u9 + 1 + + EPROJD + + + fr.insee + joisp3u9-QOP-joit4rln + 1 + + EPROJD + + + + + fr.insee + joisp3u9-RDOP-joit4rln + 1 + OutParameter + + + fr.insee + joisp3u9-QOP-joit4rln + 1 + OutParameter + + + + + "Si " || ¤kq7uo7yd-GOP¤ || " en avait les moyens financiers, quitterait-" || ¤kmx8i16l-GOP¤ || " le logement familial ?" + + + + radio-button + + fr.insee + joisst25 + 1 + CodeList + + + fr.insee + joisp3u9-RDOP-joit4rln + 1 + + + fr.insee + joisst25 + 1 + CodeList + + + + + + + + fr.insee + joisq6l3 + 1 + + EAMIA + + + fr.insee + joisq6l3-QOP-joisit3j + 1 + + EAMIA + + + + + fr.insee + joisq6l3-RDOP-joisit3j + 1 + OutParameter + + + fr.insee + joisq6l3-QOP-joisit3j + 1 + OutParameter + + + + + "Depuis quand " || ¤kq7uo7yd-GOP¤ || " vit-" || ¤kmx8i16l-GOP¤ ||" chez vous ?" + + + + radio-button + + fr.insee + joh9gxwq + 1 + CodeList + + + fr.insee + joisq6l3-RDOP-joisit3j + 1 + + + fr.insee + joh9gxwq + 1 + CodeList + + + + + + + + fr.insee + kppptqlu + 1 + + ECOVID2 + + + fr.insee + kppptqlu-QOP-kpppq7ha + 1 + + ECOVID2 + + + + + fr.insee + kppptqlu-RDOP-kpppq7ha + 1 + OutParameter + + + fr.insee + kppptqlu-QOP-kpppq7ha + 1 + OutParameter + + + + + "Le fait que " || ¤kq7uo7yd-GOP¤ || " vive chez vous est-il lié à la crise sanitaire due à l'épidémie de Covid 19 ?" + + + + radio-button + + fr.insee + jncy00q3 + 1 + CodeList + + + fr.insee + kppptqlu-RDOP-kpppq7ha + 1 + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + + + fr.insee + joismxwd + 1 + + EAMIH + + + fr.insee + joismxwd-QOP-joisy91r + 1 + + EAMIH + + + + + fr.insee + joismxwd-RDOP-joisy91r + 1 + OutParameter + + + fr.insee + joismxwd-QOP-joisy91r + 1 + OutParameter + + + + + "Selon vous, " || ¤kq7uo7yd-GOP¤ || " a-t-" || ¤kmx8i16l-GOP¤ || " actuellement les moyens financiers lui permettant d'avoir un logement indépendant ?" + + + + radio-button + + fr.insee + joirusc3 + 1 + CodeList + + + fr.insee + joismxwd-RDOP-joisy91r + 1 + + + fr.insee + joirusc3 + 1 + CodeList + + + + + + + + fr.insee + kqv3atis + 1 + + EAMIK + + + fr.insee + kqv3atis-QOP-kqv47xde + 1 + + EAMIK + + + + + fr.insee + kqv3atis-RDOP-kqv47xde + 1 + OutParameter + + + fr.insee + kqv3atis-QOP-kqv47xde + 1 + OutParameter + + + + + "Est-ce compliqué pour vous d'héberger " || ¤kq7uo7yd-GOP¤ || " ?" + + + + radio-button + + fr.insee + kqv3pa7u + 1 + CodeList + + + fr.insee + kqv3atis-RDOP-kqv47xde + 1 + + + fr.insee + kqv3pa7u + 1 + CodeList + + + + + + + + fr.insee + kqv44b8j + 1 + + EAMIL + + + fr.insee + kqv44b8j-QOP-kqv4akc6 + 1 + + EAMIL + + + + + fr.insee + kqv44b8j-RDOP-kqv4akc6 + 1 + OutParameter + + + fr.insee + kqv44b8j-QOP-kqv4akc6 + 1 + OutParameter + + + + + "Est-ce que " || ¤kq7uo7yd-GOP¤ || " a une chambre indépendante dans votre logement ?" + + + + radio-button + + fr.insee + ko8uzwua + 1 + CodeList + + + fr.insee + kqv44b8j-RDOP-kqv4akc6 + 1 + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + + + fr.insee + jojtbo85 + 1 + + MAA2A + + + fr.insee + jojtbo85-QOP-lera9at4 + 1 + + MAA2A + + + + + fr.insee + jojtbo85-RDOP-lera9at4 + 1 + OutParameter + + + fr.insee + jojtbo85-QOP-lera9at4 + 1 + OutParameter + + + + + "En quelle année êtes-vous arrivé" || (if (isnull(¤kryp58r5-GOP¤)) then "" else (if (cast(¤kryp58r5-GOP¤,string) = "2") then "e" else "")) || " dans ce logement ?" + + + + + fr.insee + jojtbo85-RDOP-lera9at4 + 1 + + + + + + fr.insee + kp6iwd90 + 1 + + MAA2AT_Q + + + fr.insee + kp6iwd90-QOP-kp6iwdcb + 1 + + MAA2AT_Q + + + + + fr.insee + kp6iwd90-RDOP-kp6iwdcb + 1 + OutParameter + + + fr.insee + kp6iwd90-QOP-kp6iwdcb + 1 + OutParameter + + + + + "Depuis environ combien d'années êtes-vous arrivé" || (if (isnull(¤kryp58r5-GOP¤)) then "" else (if (cast(¤kryp58r5-GOP¤,string) = "2") then "e" else "")) || " dans ce logement ?" + + + + radio-button + + fr.insee + kp6iy3xk + 1 + CodeList + + + fr.insee + kp6iwd90-RDOP-kp6iwdcb + 1 + + + fr.insee + kp6iy3xk + 1 + CodeList + + + + + + + + fr.insee + jojt16mt + 1 + + MAA2M + + + fr.insee + jojt16mt-QOP-kf71i6tz + 1 + + MAA2M + + + + + fr.insee + jojt16mt-RDOP-kf71i6tz + 1 + OutParameter + + + fr.insee + jojt16mt-QOP-kf71i6tz + 1 + OutParameter + + + + + "Quel est le mois de votre arrivée en " || cast(¤jojtbo85-QOP-lera9at4¤,string) || " ?" + + + + drop-down-list + + fr.insee + kf71urf1 + 1 + CodeList + + + fr.insee + jojt16mt-RDOP-kf71i6tz + 1 + + + fr.insee + kf71urf1 + 1 + CodeList + + + + + + + + fr.insee + jojt3qxp + 1 + + MARRIVC + + + fr.insee + jojt3qxp-QOP-jojtagah + 1 + + MARRIVC + + + + + fr.insee + jojt3qxp-RDOP-jojtagah + 1 + OutParameter + + + fr.insee + jojt3qxp-QOP-jojtagah + 1 + OutParameter + + + + + "Votre conjoint" || ¤kwnwikvh-GOP¤ || " est-" || ¤kwnxlh9z-GOP¤ || " arrivé" || ¤kwnwikvh-GOP¤ || " dans ce logement en même temps que vous ?" + + + + radio-button + + fr.insee + jncy00q3 + 1 + CodeList + + + fr.insee + jojt3qxp-RDOP-jojtagah + 1 + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + + + fr.insee + jojtnq9z + 1 + + MAA2AC + + + fr.insee + jojtnq9z-QOP-leraafbf + 1 + + MAA2AC + + + + + fr.insee + jojtnq9z-RDOP-leraafbf + 1 + OutParameter + + + fr.insee + jojtnq9z-QOP-leraafbf + 1 + OutParameter + + + + + "En quelle année votre conjoint" || ¤kwnwikvh-GOP¤ || " est-" || ¤kwnxlh9z-GOP¤ || " arrivé" || ¤kwnwikvh-GOP¤ || " dans ce logement ?" + + + + + fr.insee + jojtnq9z-RDOP-leraafbf + 1 + + + + + + fr.insee + kp6ja40b + 1 + + MAA2ATC_Q + + + fr.insee + kp6ja40b-QOP-kp6j1a25 + 1 + + MAA2ATC_Q + + + + + fr.insee + kp6ja40b-RDOP-kp6j1a25 + 1 + OutParameter + + + fr.insee + kp6ja40b-QOP-kp6j1a25 + 1 + OutParameter + + + + + "Depuis environ combien d'années votre conjoint" || ¤kwnwikvh-GOP¤ || " est-" || ¤kwnxlh9z-GOP¤ || " arrivé" || ¤kwnwikvh-GOP¤ || " dans ce logement ?" + + + + radio-button + + fr.insee + kp6iy3xk + 1 + CodeList + + + fr.insee + kp6ja40b-RDOP-kp6j1a25 + 1 + + + fr.insee + kp6iy3xk + 1 + CodeList + + + + + + + + fr.insee + jor73af6 + 1 + + MAA2MC + + + fr.insee + jor73af6-QOP-kf71reoh + 1 + + MAA2MC + + + + + fr.insee + jor73af6-RDOP-kf71reoh + 1 + OutParameter + + + fr.insee + jor73af6-QOP-kf71reoh + 1 + OutParameter + + + + + "Quel est le mois de son arrivée dans le logement en " || cast(¤jojtnq9z-QOP-leraafbf¤,string) || " ?" + + + + drop-down-list + + fr.insee + kf71urf1 + 1 + CodeList + + + fr.insee + jor73af6-RDOP-kf71reoh + 1 + + + fr.insee + kf71urf1 + 1 + CodeList + + + + + + + + fr.insee + jojtsgsr + 1 + + MAA3 + + + fr.insee + jojtsgsr-QOP-jojtrf8n + 1 + + MAA3 + + + + + fr.insee + jojtsgsr-RDOP-jojtrf8n + 1 + OutParameter + + + fr.insee + jojtsgsr-QOP-jojtrf8n + 1 + OutParameter + + + + + "Parmi les membres de votre ménage actuel, une personne habitait-elle déjà dans ce logement, au moment de " || ¤kcotuys2-GOP¤ || " ?" + + + + radio-button + + fr.insee + jncy00q3 + 1 + CodeList + + + fr.insee + jojtsgsr-RDOP-jojtrf8n + 1 + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + + + fr.insee + jojtutyy + 1 + + MAA3A + + + fr.insee + jojtutyy-QOP-leranvj5 + 1 + + MAA3A + + + + + fr.insee + jojtutyy-RDOP-leranvj5 + 1 + OutParameter + + + fr.insee + jojtutyy-QOP-leranvj5 + 1 + OutParameter + + + + + En quelle année cette personne est-elle arrivée dans ce logement ? + + + + + fr.insee + jojtutyy-RDOP-leranvj5 + 1 + + + + + + fr.insee + jojtizrx + 1 + + MAA3M + + + fr.insee + jojtizrx-QOP-kf71m9y7 + 1 + + MAA3M + + + + + fr.insee + jojtizrx-RDOP-kf71m9y7 + 1 + OutParameter + + + fr.insee + jojtizrx-QOP-kf71m9y7 + 1 + OutParameter + + + + + "Quel est le mois de son arrivée dans le logement en " || cast(¤jojtutyy-QOP-leranvj5¤,string) || " ?" + + + + drop-down-list + + fr.insee + kf71urf1 + 1 + CodeList + + + fr.insee + jojtizrx-RDOP-kf71m9y7 + 1 + + + fr.insee + kf71urf1 + 1 + CodeList + + + + + + + + fr.insee + l3yket2i + 1 + + SDEJA + + + fr.insee + l3yket2i-QOP-l3yknw6r + 1 + + SDEJA + + + + + fr.insee + l3yket2i-RDOP-l3yknw6r + 1 + OutParameter + + + fr.insee + l3yket2i-QOP-l3yknw6r + 1 + OutParameter + + + + + "Avez-vous" || ¤l3ykn00w-GOP¤ || " déjà été propriétaire d’une résidence principale autre que celle-ci ?" + + + + radio-button + + fr.insee + ko8uzwua + 1 + CodeList + + + fr.insee + l3yket2i-RDOP-l3yknw6r + 1 + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + + + fr.insee + jojuueml + 1 + + KCU1 + + + fr.insee + jojuueml-QOP-jojumdxu + 1 + + KCU1 + + + + + fr.insee + jojuueml-RDOP-jojumdxu + 1 + OutParameter + + + fr.insee + jojuueml-QOP-jojumdxu + 1 + OutParameter + + + + + Votre logement dispose-t-il d'une cuisine ? + + + + radio-button + + fr.insee + jojv0g6x + 1 + CodeList + + + fr.insee + jojuueml-RDOP-jojumdxu + 1 + + + fr.insee + jojv0g6x + 1 + CodeList + + + + + + + + fr.insee + jojuno0d + 1 + + KCU2 + + + fr.insee + jojuno0d-QOP-jojuz9du + 1 + + KCU2 + + + + + fr.insee + jojuno0d-RDOP-jojuz9du + 1 + OutParameter + + + fr.insee + jojuno0d-QOP-jojuz9du + 1 + OutParameter + + + + + Quelle est la surface de la cuisine ? + + + + radio-button + + fr.insee + jojum3uu + 1 + CodeList + + + fr.insee + jojuno0d-RDOP-jojuz9du + 1 + + + fr.insee + jojum3uu + 1 + CodeList + + + + + + + + fr.insee + klv34du0 + 1 + + HUTCOND + + + fr.insee + klv34du0-QOP-l3irjta2 + 1 + + HUTCOND + + + + + fr.insee + klv34du0-RDOP-l3irjta2 + 1 + OutParameter + + + fr.insee + klv34du0-QOP-l3irjta2 + 1 + OutParameter + + + + + Par rapport à l’exercice du télétravail, quelle note entre 0 et 10 donneriez-vous à vos conditions de logement ? + + + + + 0 + 10 + + Decimal + + fr.insee + klv34du0-RDOP-l3irjta2 + 1 + + + + fr.insee + l3ioieyl + 1 + Instruction + + + + fr.insee + jojuwst2 + 1 + + HUP + + + fr.insee + jojuwst2-QOP-jojv5zcs + 1 + + HUP + + + + + fr.insee + jojuwst2-RDOP-jojv5zcs + 1 + OutParameter + + + fr.insee + jojuwst2-QOP-jojv5zcs + 1 + OutParameter + + + + + Y a-t-il, dans le logement, des [pièces réservées exclusivement à une activité professionnelle](. "Ne rentrent pas dans cette catégorie les pièces à usage mixte, utilisées également par les membres de la famille."), comme un cabinet de dentiste ou d'avocat par exemple ? + + + + radio-button + + fr.insee + jncy00q3 + 1 + CodeList + + + fr.insee + jojuwst2-RDOP-jojv5zcs + 1 + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + + fr.insee + kkpmu4ui + 1 + Instruction + + + + fr.insee + jojv1e5e + 1 + + HPP + + + fr.insee + jojv1e5e-QOP-jojuuvbp + 1 + + HPP + + + + + fr.insee + jojv1e5e-RDOP-jojuuvbp + 1 + OutParameter + + + fr.insee + jojv1e5e-QOP-jojuuvbp + 1 + OutParameter + + + + + Combien avez-vous de pièces à usage exclusivement professionnel ? + + + + + 1 + 9 + + Decimal + + fr.insee + jojv1e5e-RDOP-jojuuvbp + 1 + + + + fr.insee + klv3gkq8 + 1 + Instruction + + + + fr.insee + jojuz9k3 + 1 + + HSP + + + fr.insee + jojuz9k3-QOP-jojv0jt2 + 1 + + HSP + + + + + fr.insee + jojuz9k3-RDOP-jojv0jt2 + 1 + OutParameter + + + fr.insee + jojuz9k3-QOP-jojv0jt2 + 1 + OutParameter + + + + + "Quelle est la surface totale de " || ¤kcp0yph2-GOP¤ || " à usage exclusivement professionnel ?" + + + + + 1 + 997 + + Decimal + + fr.insee + jojuz9k3-RDOP-jojv0jt2 + 1 + + + + + fr.insee + jojv79ut + 1 + + HUA + + + fr.insee + jojv79ut-QOP-jojv12lo + 1 + + HUA + + + + + fr.insee + jojv79ut-RDOP-jojv12lo + 1 + OutParameter + + + fr.insee + jojv79ut-QOP-jojv12lo + 1 + OutParameter + + + + + Y a-t-il des pièces annexes à usage d'habitation rattachées au logement avec une entrée indépendante, telles que des chambres de bonne ou d’anciens garages réaménagés en studios par exemple ? + + + + radio-button + + fr.insee + jncy00q3 + 1 + CodeList + + + fr.insee + jojv79ut-RDOP-jojv12lo + 1 + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + + fr.insee + jrj0gbrz + 1 + Instruction + + + + fr.insee + jojv3ha7 + 1 + + HPA + + + fr.insee + jojv3ha7-QOP-jojusenw + 1 + + HPA + + + + + fr.insee + jojv3ha7-RDOP-jojusenw + 1 + OutParameter + + + fr.insee + jojv3ha7-QOP-jojusenw + 1 + OutParameter + + + + + Combien avez-vous de [pièces annexes](. "Pièces rattachées au logement avec une entrée indépendante telles que des chambres de bonne ou d'anciens garages réaménagés en studios par exemple") à usage d'habitation ? + + + + + 1 + 9 + + Decimal + + fr.insee + jojv3ha7-RDOP-jojusenw + 1 + + + + + fr.insee + kmd6o006 + 1 + + HULHUI1 + + + fr.insee + kmd6o006-QOP-kmd6yr7w + 1 + + HULHUI1 + + + + + fr.insee + kmd6o006-RDOP-kmd6yr7w + 1 + OutParameter + + + fr.insee + kmd6o006-QOP-kmd6yr7w + 1 + OutParameter + + + + + Quel usage faites-vous de la pièce annexe ? + + + + radio-button + + fr.insee + kmd70xef + 1 + CodeList + + + fr.insee + kmd6o006-RDOP-kmd6yr7w + 1 + + + fr.insee + kmd70xef + 1 + CodeList + + + + + + + + fr.insee + jojuzbus + 1 + + HPI1 + + + fr.insee + jojuzbus-QOP-jojv8tjf + 1 + + HPI1 + + + + + fr.insee + jojuzbus-RDOP-jojv8tjf + 1 + OutParameter + + + fr.insee + jojuzbus-QOP-jojv8tjf + 1 + OutParameter + + + + + "Parmi les " || cast(¤jojv3ha7-QOP-jojusenw¤,string) || " pièces annexes, combien sont-elles réservées à votre usage personnel ?" + + + + + 1 + 9 + + Decimal + + fr.insee + jojuzbus-RDOP-jojv8tjf + 1 + + + + + fr.insee + klv4iusu + 1 + + HPI2 + + + fr.insee + klv4iusu-QOP-klv4mlgz + 1 + + HPI2 + + + + + fr.insee + klv4iusu-RDOP-klv4mlgz + 1 + OutParameter + + + fr.insee + klv4iusu-QOP-klv4mlgz + 1 + OutParameter + + + + + "Parmi les " || cast(¤jojv3ha7-QOP-jojusenw¤,string) || " pièces annexes, combien sont-elles réservées au logement d'un salarié à votre service ?" + + + + + 1 + 9 + + Decimal + + fr.insee + klv4iusu-RDOP-klv4mlgz + 1 + + + + + fr.insee + jojv5bnw + 1 + + HSI1 + + + fr.insee + jojv5bnw-QOP-jojuywkz + 1 + + HSI1 + + + + + fr.insee + jojv5bnw-RDOP-jojuywkz + 1 + OutParameter + + + fr.insee + jojv5bnw-QOP-jojuywkz + 1 + OutParameter + + + + + "Quelle est la surface totale de " || ¤kd4q6heg-GOP¤ || " à votre usage personnel ?" + + + + + 1 + 999 + + Decimal + + fr.insee + jojv5bnw-RDOP-jojuywkz + 1 + + + + + fr.insee + klw36l7v + 1 + + HSI2 + + + fr.insee + klw36l7v-QOP-klw34351 + 1 + + HSI2 + + + + + fr.insee + klw36l7v-RDOP-klw34351 + 1 + OutParameter + + + fr.insee + klw36l7v-QOP-klw34351 + 1 + OutParameter + + + + + "Quelle est la surface totale de " || ¤klw3bb9m-GOP¤ || " au logement d'un salarié à votre service ?" + + + + + 1 + 999 + + Decimal + + fr.insee + klw36l7v-RDOP-klw34351 + 1 + + + + + fr.insee + jojvgfei + 1 + + HPH + + + fr.insee + jojvgfei-QOP-jojvjmis + 1 + + HPH + + + + + fr.insee + jojvgfei-RDOP-jojvjmis + 1 + OutParameter + + + fr.insee + jojvgfei-QOP-jojvjmis + 1 + OutParameter + + + + + Combien avez-vous de pièces d'habitation (ou de pièces habitables) ? + + + + + 1 + 100 + + Decimal + + fr.insee + jojvgfei-RDOP-jojvjmis + 1 + + + + fr.insee + kd5qr5s5 + 1 + Instruction + + + fr.insee + kmdb0cfn + 1 + Instruction + + + + fr.insee + jojv4yqe + 1 + + HCHA + + + fr.insee + jojv4yqe-QOP-jojveb38 + 1 + + HCHA + + + + + fr.insee + jojv4yqe-RDOP-jojveb38 + 1 + OutParameter + + + fr.insee + jojv4yqe-QOP-jojveb38 + 1 + OutParameter + + + + + "Parmi ces " || cast(¤jojvgfei-QOP-jojvjmis¤,string) || " pièces, combien de chambres avez-vous ?" + + + + + 0 + 100 + + Decimal + + fr.insee + jojv4yqe-RDOP-jojveb38 + 1 + + + + fr.insee + js0hn6b6 + 1 + Instruction + + + + fr.insee + jojvc0vt + 1 + + HST + + + fr.insee + jojvc0vt-QOP-jojv2uvg + 1 + + HST + + + + + fr.insee + jojvc0vt-RDOP-jojv2uvg + 1 + OutParameter + + + fr.insee + jojvc0vt-QOP-jojv2uvg + 1 + OutParameter + + + + + "Quelle est la surface totale habitable de votre logement" || ¤kd5xwi4p-GOP¤ || " ?" + + + + + 1 + 1000 + + Decimal + + fr.insee + jojvc0vt-RDOP-jojv2uvg + 1 + + + + fr.insee + kd5v90t1 + 1 + Instruction + + + fr.insee + kd5vkr8v + 1 + Instruction + + + + fr.insee + jojv1ux1 + 1 + + HPEUP + + + fr.insee + jojv1ux1-QOP-jojvggis + 1 + + HPEUP + + + + + fr.insee + jojv1ux1-RDOP-jojvggis + 1 + OutParameter + + + fr.insee + jojv1ux1-QOP-jojvggis + 1 + OutParameter + + + + + Compte tenu du nombre de personnes de votre ménage, comment estimez-vous le nombre de pièces dont vous disposez ? + + + + radio-button + + fr.insee + jojvev63 + 1 + CodeList + + + fr.insee + jojv1ux1-RDOP-jojvggis + 1 + + + fr.insee + jojvev63 + 1 + CodeList + + + + + + + + fr.insee + kv29cjdq + 1 + + HAUT + + + fr.insee + kv29cjdq-QOP-kv29rcjs + 1 + + HAUT + + + + + fr.insee + kv29cjdq-RDOP-kv29rcjs + 1 + OutParameter + + + fr.insee + kv29cjdq-QOP-kv29rcjs + 1 + OutParameter + + + + + Quelle est la hauteur sous plafond de votre pièce principale ? + + + + radio-button + + fr.insee + jojvm75x + 1 + CodeList + + + fr.insee + kv29cjdq-RDOP-kv29rcjs + 1 + + + fr.insee + jojvm75x + 1 + CodeList + + + + + + + fr.insee + ljny78kx + 1 + Instruction + + + + fr.insee + jrupq1i5 + 1 + + KVE + + + fr.insee + jrupq1i5-QOP-jrupywt4 + 1 + + KVE + + + + + fr.insee + jrupq1i5-RDOP-jrupywt4 + 1 + OutParameter + + + fr.insee + jrupq1i5-QOP-jrupywt4 + 1 + OutParameter + + + + + Avez-vous une véranda ? + + + + radio-button + + fr.insee + jncy00q3 + 1 + CodeList + + + fr.insee + jrupq1i5-RDOP-jrupywt4 + 1 + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + + fr.insee + jrupk9tg + 1 + Instruction + + + + fr.insee + jrupsr80 + 1 + + KSV + + + fr.insee + jrupsr80-QOP-jrupxa50 + 1 + + KSV + + + + + fr.insee + jrupsr80-RDOP-jrupxa50 + 1 + OutParameter + + + fr.insee + jrupsr80-QOP-jrupxa50 + 1 + OutParameter + + + + + Quelle est la surface de cette véranda ? + + + + + 1 + 999 + + Decimal + + fr.insee + jrupsr80-RDOP-jrupxa50 + 1 + + + + + fr.insee + jrupy93h + 1 + + KSV1 + + + fr.insee + jrupy93h-QOP-jrupnl2c + 1 + + KSV1 + + + + + fr.insee + jrupy93h-RDOP-jrupnl2c + 1 + OutParameter + + + fr.insee + jrupy93h-QOP-jrupnl2c + 1 + OutParameter + + + + + "La surface de la véranda (" || cast(¤jrupsr80-QOP-jrupxa50¤,string) || " m²) a t-elle été prise en compte dans la surface totale du logement (" || cast(¤jojvc0vt-QOP-jojv2uvg¤,string) || " m²) que vous avez indiquée précédemment ?" + + + + radio-button + + fr.insee + jncy00q3 + 1 + CodeList + + + fr.insee + jrupy93h-RDOP-jrupnl2c + 1 + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + + + fr.insee + jrupzl7m + 1 + + KBA + + + fr.insee + jrupzl7m-QOP-jruppxki + 1 + + KBA + + + + + fr.insee + jrupzl7m-RDOP-jruppxki + 1 + OutParameter + + + fr.insee + jrupzl7m-QOP-jruppxki + 1 + OutParameter + + + + + "Avez-vous un balcon"|| ¤kd8qhmj5-GOP¤ || " ou une loggia ?" + + + + radio-button + + fr.insee + jncy00q3 + 1 + CodeList + + + fr.insee + jrupzl7m-RDOP-jruppxki + 1 + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + + + fr.insee + jrupx7iz + 1 + + KSB + + + fr.insee + jrupx7iz-QOP-jruq3o9c + 1 + + KSB + + + + + fr.insee + jrupx7iz-RDOP-jruq3o9c + 1 + OutParameter + + + fr.insee + jrupx7iz-QOP-jruq3o9c + 1 + OutParameter + + + + + "Quelle est la surface totale des balcons"|| ¤kd8qhmj5-GOP¤ || " ou loggias ?" + + + + + 1 + 999 + + Decimal + + fr.insee + jrupx7iz-RDOP-jruq3o9c + 1 + + + + + fr.insee + jruq98v2 + 1 + + KJA + + + fr.insee + jruq98v2-QOP-jruq36wn + 1 + + KJA + + + + + fr.insee + jruq98v2-RDOP-jruq36wn + 1 + OutParameter + + + fr.insee + jruq98v2-QOP-jruq36wn + 1 + OutParameter + + + + + ¤kd8qo38q-GOP¤ || " un jardin, un terrain ou une cour réservés à votre usage personnel ?" + + + + radio-button + + fr.insee + jncy00q3 + 1 + CodeList + + + fr.insee + jruq98v2-RDOP-jruq36wn + 1 + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + + + fr.insee + jruq8x6e + 1 + + KSJPI + + + fr.insee + jruq8x6e-QOP-jruq3zg9 + 1 + + KSJPI + + + + + fr.insee + jruq8x6e-RDOP-jruq3zg9 + 1 + OutParameter + + + fr.insee + jruq8x6e-QOP-jruq3zg9 + 1 + OutParameter + + + + + Quelle est la surface totale de votre terrain ? + + + + + 1 + 100000 + + Decimal + + fr.insee + jruq8x6e-RDOP-jruq3zg9 + 1 + + + + fr.insee + js06xqg5 + 1 + Instruction + + + fr.insee + kmdhsqjj + 1 + Instruction + + + + fr.insee + jruq85av + 1 + + KSJPIT + + + fr.insee + jruq85av-QOP-kd8uw761 + 1 + + KSJPIT + + + + + fr.insee + jruq85av-RDOP-kd8uw761 + 1 + OutParameter + + + fr.insee + jruq85av-QOP-kd8uw761 + 1 + OutParameter + + + + + Pouvez-vous néanmoins indiquer dans quelle tranche se situe la surface du terrain ? + + + + radio-button + + fr.insee + jruq09km + 1 + CodeList + + + fr.insee + jruq85av-RDOP-kd8uw761 + 1 + + + fr.insee + jruq09km + 1 + CodeList + + + + + + + + fr.insee + jruq4was + 1 + + KSMI + + + fr.insee + jruq4was-QOP-jruq4wnm + 1 + + KSMI + + + + + fr.insee + jruq4was-RDOP-jruq4wnm + 1 + OutParameter + + + fr.insee + jruq4was-QOP-jruq4wnm + 1 + OutParameter + + + + + Quelle est la surface de terrain couverte par la maison (emprise au sol) ? + + + + + 1 + 99999 + + Decimal + + fr.insee + jruq4was-RDOP-jruq4wnm + 1 + + + + fr.insee + jruq9370 + 1 + Instruction + + + fr.insee + kd8v214t + 1 + Instruction + + + fr.insee + lex5yu47 + 1 + Instruction + + + + fr.insee + jruq6fv0 + 1 + + KSJPC + + + fr.insee + jruq6fv0-QOP-jruq3lzc + 1 + + KSJPC + + + + + fr.insee + jruq6fv0-RDOP-jruq3lzc + 1 + OutParameter + + + fr.insee + jruq6fv0-QOP-jruq3lzc + 1 + OutParameter + + + + + Quelle est la surface de ces espaces privatifs attenants au logement ? + + + + + 1 + 99999 + + Decimal + + fr.insee + jruq6fv0-RDOP-jruq3lzc + 1 + + + + + fr.insee + jruqlf39 + 1 + + KJC + + + fr.insee + jruqlf39-QOP-jruqc60v + 1 + + KJC + + + + + fr.insee + jruqlf39-RDOP-jruqc60v + 1 + OutParameter + + + fr.insee + jruqlf39-QOP-jruqc60v + 1 + OutParameter + + + + + Disposez-vous d'espaces extérieurs (jardin, terrain, cour...) en tant que parties communes de la résidence ou de la copropriété ? + + + + radio-button + + fr.insee + jncy00q3 + 1 + CodeList + + + fr.insee + jruqlf39-RDOP-jruqc60v + 1 + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + + fr.insee + jruse4ew + 1 + Instruction + + + + fr.insee + jrusmgfq + 1 + + KSJC + + + fr.insee + jrusmgfq-QOP-kd8wm7rc + 1 + + KSJC + + + + + fr.insee + jrusmgfq-RDOP-kd8wm7rc + 1 + OutParameter + + + fr.insee + jrusmgfq-QOP-kd8wm7rc + 1 + OutParameter + + + + + Quelle est la surface de ces espaces partagés ? + + + + radio-button + + fr.insee + jruscsna + 1 + CodeList + + + fr.insee + jrusmgfq-RDOP-kd8wm7rc + 1 + + + fr.insee + jruscsna + 1 + CodeList + + + + + + + + fr.insee + l3irva5g + 1 + + GVOIT + + + fr.insee + l3irva5g-QOP-l3is6e23 + 1 + + GVOIT + + + + + fr.insee + l3irva5g-RDOP-l3is6e23 + 1 + OutParameter + + + fr.insee + l3irva5g-QOP-l3is6e23 + 1 + OutParameter + + + + + De combien de voitures les habitants de ce logement disposent-ils ? + + + + radio-button + + fr.insee + l3is40qi + 1 + CodeList + + + fr.insee + l3irva5g-RDOP-l3is6e23 + 1 + + + fr.insee + l3is40qi + 1 + CodeList + + + + + + + fr.insee + l3is5o9g + 1 + Instruction + + + + fr.insee + jrut0i0j + 1 + + KCA + + + fr.insee + jrut0i0j-QOP-jrut3e99 + 1 + + KCA + + + + + fr.insee + jrut0i0j-RDOP-jrut3e99 + 1 + OutParameter + + + fr.insee + jrut0i0j-QOP-jrut3e99 + 1 + OutParameter + + + + + Disposez-vous d'une cave ou d'un sous-sol (même si vous ne l'utilisez pas) ? + + + + radio-button + + fr.insee + jncy00q3 + 1 + CodeList + + + fr.insee + jrut0i0j-RDOP-jrut3e99 + 1 + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + + fr.insee + jrusw7aw + 1 + Instruction + + + + fr.insee + jrusu349 + 1 + + KVELO + + + fr.insee + jrusu349-QOP-kd91gp0d + 1 + + KVELO + + + + + fr.insee + jrusu349-RDOP-kd91gp0d + 1 + OutParameter + + + fr.insee + jrusu349-QOP-kd91gp0d + 1 + OutParameter + + + + + "Disposez-vous, dans les parties communes de " || ¤kd91m689-GOP¤ || ", d'un local fermé où vous pouvez déposer un vélo ou une poussette ?" + + + + radio-button + + fr.insee + joirusc3 + 1 + CodeList + + + fr.insee + jrusu349-RDOP-kd91gp0d + 1 + + + fr.insee + joirusc3 + 1 + CodeList + + + + + + + fr.insee + kmdk6e4h + 1 + Instruction + + + + fr.insee + jrutj5co + 1 + + KGRA + + + fr.insee + jrutj5co-QOP-jrutza0y + 1 + + KGRA + + + + + fr.insee + jrutj5co-RDOP-jrutza0y + 1 + OutParameter + + + fr.insee + jrutj5co-QOP-jrutza0y + 1 + OutParameter + + + + + Disposez-vous d'un grenier ou de combles aménageables, mais non aménagés en pièces d'habitation ? + + + + radio-button + + fr.insee + jncy00q3 + 1 + CodeList + + + fr.insee + jrutj5co-RDOP-jrutza0y + 1 + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + + + fr.insee + jruu4ry3 + 1 + + KSOA + + + fr.insee + jruu4ry3-QOP-jruu5wfk + 1 + + KSOA + + + + + fr.insee + jruu4ry3-RDOP-jruu5wfk + 1 + OutParameter + + + fr.insee + jruu4ry3-QOP-jruu5wfk + 1 + OutParameter + + + + + Disposez-vous d'un sous-sol non aménagé en pièces d'habitation ? + + + + radio-button + + fr.insee + jncy00q3 + 1 + CodeList + + + fr.insee + jruu4ry3-RDOP-jruu5wfk + 1 + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + + + fr.insee + jruue197 + 1 + + KPISC + + + fr.insee + jruue197-QOP-jruui69o + 1 + + KPISC + + + + + fr.insee + jruue197-RDOP-jruui69o + 1 + OutParameter + + + fr.insee + jruue197-QOP-jruui69o + 1 + OutParameter + + + + + Avez-vous une piscine fixe d'une profondeur de plus de 1 mètre ? + + + + radio-button + + fr.insee + jncy00q3 + 1 + CodeList + + + fr.insee + jruue197-RDOP-jruui69o + 1 + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + + fr.insee + jruu3t31 + 1 + Instruction + + + + fr.insee + jruubukg + 1 + + KGRAA + + + fr.insee + jruubukg-QOP-jruuibm5 + 1 + + KGRAA + + + + + fr.insee + jruubukg-RDOP-jruuibm5 + 1 + OutParameter + + + fr.insee + jruubukg-QOP-jruuibm5 + 1 + OutParameter + + + + + Disposez-vous d'une grange non aménagée en pièces d'habitation ? + + + + radio-button + + fr.insee + jncy00q3 + 1 + CodeList + + + fr.insee + jruubukg-RDOP-jruuibm5 + 1 + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + + + fr.insee + jruuncm0 + 1 + + KAO1 + + + fr.insee + jruuncm0-QOP-kmdshzqk + 1 + + KAO1 + + + + + fr.insee + jruuncm0-RDOP-kmdshzqk + 1 + OutParameter + + + fr.insee + jruuncm0-QOP-kmdshzqk + 1 + OutParameter + + + + + Comment votre logement est-il alimenté en eau ? + + + + radio-button + + fr.insee + kmdsf01l + 1 + CodeList + + + fr.insee + jruuncm0-RDOP-kmdshzqk + 1 + + + fr.insee + kmdsf01l + 1 + CodeList + + + + + + + + fr.insee + jruv1cla + 1 + + KWC1 + + + fr.insee + jruv1cla-QOP-kdabltlu + 1 + + KWC1 + + + + + fr.insee + jruv1cla-RDOP-kdabltlu + 1 + OutParameter + + + fr.insee + jruv1cla-QOP-kdabltlu + 1 + OutParameter + + + + + Disposez-vous de W-C à l'intérieur du logement ? + + + + radio-button + + fr.insee + jruv7r7y + 1 + CodeList + + + fr.insee + jruv1cla-RDOP-kdabltlu + 1 + + + fr.insee + jruv7r7y + 1 + CodeList + + + + + + + + fr.insee + kmeu61l4 + 1 + + KWCID + + + fr.insee + kmeu61l4-QOP-lfjenhhf + 1 + + KWCID + + + + + fr.insee + kmeu61l4-RDOP-lfjenhhf + 1 + OutParameter + + + fr.insee + kmeu61l4-QOP-lfjenhhf + 1 + OutParameter + + + + + Combien avez-vous de W-C ? + + + + + 0 + 9 + + Decimal + + fr.insee + kmeu61l4-RDOP-lfjenhhf + 1 + + + + + fr.insee + lfjgw27o + 1 + + KWCIDB + + + fr.insee + lfjgw27o-QOP-lfjgw5h9 + 1 + + KWCIDB + + + + + fr.insee + lfjgw27o-RDOP-lfjgw5h9 + 1 + OutParameter + + + fr.insee + lfjgw27o-QOP-lfjgw5h9 + 1 + OutParameter + + + + + Vos W-C sont-ils situés dans une pièce indépendante ? + + + + radio-button + + fr.insee + ko8uzwua + 1 + CodeList + + + fr.insee + lfjgw27o-RDOP-lfjgw5h9 + 1 + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + + fr.insee + lh5x9lsb + 1 + Instruction + + + + fr.insee + lfjel2zf + 1 + + KWCID2 + + + fr.insee + lfjel2zf-QOP-lfjeoq03 + 1 + + KWCID2 + + + + + fr.insee + lfjel2zf-RDOP-lfjeoq03 + 1 + OutParameter + + + fr.insee + lfjel2zf-QOP-lfjeoq03 + 1 + OutParameter + + + + + "Parmi vos " || cast(¤kmeu61l4-QOP-lfjenhhf¤,string) || " W-C, combien sont situés dans une pièce indépendante ?" + + + + + 0 + 9 + + Decimal + + fr.insee + lfjel2zf-RDOP-lfjeoq03 + 1 + + + + fr.insee + lfjehv20 + 1 + Instruction + + + + fr.insee + jruva8uu + 1 + + KBD + + + fr.insee + jruva8uu-QOP-jruuzwyy + 1 + + KBD + + + + + fr.insee + jruva8uu-RDOP-jruuzwyy + 1 + OutParameter + + + fr.insee + jruva8uu-QOP-jruuzwyy + 1 + OutParameter + + + + + Possédez-vous une salle d'eau ou une salle de bain (pièce contenant une douche ou une baignoire) ? + + + + radio-button + + fr.insee + jncy00q3 + 1 + CodeList + + + fr.insee + jruva8uu-RDOP-jruuzwyy + 1 + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + + + fr.insee + kksgd6fv + 1 + + KSE + + + fr.insee + kksgd6fv-QOP-lfjf0wd7 + 1 + + KSE + + + + + fr.insee + kksgd6fv-RDOP-lfjf0wd7 + 1 + OutParameter + + + fr.insee + kksgd6fv-QOP-lfjf0wd7 + 1 + OutParameter + + + + + Combien avez-vous de salles d'eau ou de salles de bain ? + + + + + 0 + 9 + + Decimal + + fr.insee + kksgd6fv-RDOP-lfjf0wd7 + 1 + + + + + fr.insee + lfjgy3we + 1 + + KSEB + + + fr.insee + lfjgy3we-QOP-lfjglmww + 1 + + KSEB + + + + + fr.insee + lfjgy3we-RDOP-lfjglmww + 1 + OutParameter + + + fr.insee + lfjgy3we-QOP-lfjglmww + 1 + OutParameter + + + + + Votre salle d'eau ou de bain comporte-t-elle une baignoire ? + + + + radio-button + + fr.insee + ko8uzwua + 1 + CodeList + + + fr.insee + lfjgy3we-RDOP-lfjglmww + 1 + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + + + fr.insee + lfjedybr + 1 + + KSE2 + + + fr.insee + lfjedybr-QOP-lfjesou2 + 1 + + KSE2 + + + + + fr.insee + lfjedybr-RDOP-lfjesou2 + 1 + OutParameter + + + fr.insee + lfjedybr-QOP-lfjesou2 + 1 + OutParameter + + + + + "Parmi vos " || cast(¤kksgd6fv-QOP-lfjf0wd7¤,string) || " salles d’eau ou de bain, combien comportent une baignoire ?" + + + + + 0 + 9 + + Decimal + + fr.insee + lfjedybr-RDOP-lfjesou2 + 1 + + + + + fr.insee + kmf0xcox + 1 + + KDLK1 + + + fr.insee + kmf0xcox-QOP-kmf17z2u + 1 + + KDLK1 + + + + + fr.insee + kmf0xcox-RDOP-kmf17z2u + 1 + OutParameter + + + fr.insee + kmf0xcox-QOP-kmf17z2u + 1 + OutParameter + + + + + Avez-vous une douche ou une baignoire installée dans une pièce destinée à un autre usage ? + + + + radio-button + + fr.insee + jncy00q3 + 1 + CodeList + + + fr.insee + kmf0xcox-RDOP-kmf17z2u + 1 + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + + + fr.insee + jruv164k + 1 + + KDLK2 + + + fr.insee + jruv164k-QOP-kdaas2sy + 1 + + KDLK2 + + + + + fr.insee + jruv164k-RDOP-kdaas2sy + 1 + OutParameter + + + fr.insee + jruv164k-QOP-kdaas2sy + 1 + OutParameter + + + + + Disposez-vous d'un ou plusieurs lavabos ? + + + + radio-button + + fr.insee + jruvifd2 + 1 + CodeList + + + fr.insee + jruv164k-RDOP-kdaas2sy + 1 + + + fr.insee + jruvifd2 + 1 + CodeList + + + + + + + + fr.insee + joicolgp + 1 + + OLA + + + fr.insee + joicolgp-QOP-joicybdw + 1 + + OLA + + + + + fr.insee + joicolgp-RDOP-joicybdw + 1 + OutParameter + + + fr.insee + joicolgp-QOP-joicybdw + 1 + OutParameter + + + + + Comment estimez-vous vos conditions actuelles de logement ? + + + + radio-button + + fr.insee + joico0rb + 1 + CodeList + + + fr.insee + joicolgp-RDOP-joicybdw + 1 + + + fr.insee + joico0rb + 1 + CodeList + + + + + + + + fr.insee + joiccm1l + 1 + + OLAD + + + fr.insee + joiccm1l-QOP-jslhf6kb + 1 + + OLAD + + + + + fr.insee + joiccm1l-RDOP-jslhf6kb + 1 + OutParameter + + + fr.insee + joiccm1l-QOP-jslhf6kb + 1 + OutParameter + + + + + En tant qu’endroit pour vivre, quelle note globale de 1 à 10 donneriez-vous à votre logement ? + + + + + 1 + 10 + + Decimal + + fr.insee + joiccm1l-RDOP-jslhf6kb + 1 + + + + fr.insee + kc21oley + 1 + Instruction + + + + fr.insee + l3yli2im + 1 + + OLAR4 + + + fr.insee + l3yli2im-QOP-l3ylipbg + 1 + + OLAR4 + + + + + fr.insee + l3yli2im-RDOP-l3ylipbg + 1 + OutParameter + + + fr.insee + l3yli2im-QOP-l3ylipbg + 1 + OutParameter + + + + + Est-il difficile de trouver un lieu d’éducation qui vous convienne à proximité de votre logement ? + + + + radio-button + + fr.insee + ko8uzwua + 1 + CodeList + + + fr.insee + l3yli2im-RDOP-l3ylipbg + 1 + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + + + fr.insee + kniwyjy0 + 1 + + OQA + + + fr.insee + kniwyjy0-QOP-knixdt6f + 1 + + OQA + + + + + fr.insee + kniwyjy0-RDOP-knixdt6f + 1 + OutParameter + + + fr.insee + kniwyjy0-QOP-knixdt6f + 1 + OutParameter + + + + + Vous plaisez-vous dans votre quartier (ou village) ? + + + + radio-button + + fr.insee + joirusc3 + 1 + CodeList + + + fr.insee + kniwyjy0-RDOP-knixdt6f + 1 + + + fr.insee + joirusc3 + 1 + CodeList + + + + + + + + fr.insee + joidpl4s + 1 + + OQAD + + + fr.insee + joidpl4s-QOP-jslihsyh + 1 + + OQAD + + + + + fr.insee + joidpl4s-RDOP-jslihsyh + 1 + OutParameter + + + fr.insee + joidpl4s-QOP-jslihsyh + 1 + OutParameter + + + + + Quelle note globale de 1 à 10 donneriez-vous à votre quartier (ou village) ? + + + + + 1 + 10 + + Decimal + + fr.insee + joidpl4s-RDOP-jslihsyh + 1 + + + + fr.insee + kculau3o + 1 + Instruction + + + + fr.insee + kqr0kx1e + 1 + + SDL2 + + + fr.insee + kqr0kx1e-QOP-kqr0rhwq + 1 + + SDL2 + + + + + fr.insee + kqr0kx1e-RDOP-kqr0rhwq + 1 + OutParameter + + + fr.insee + kqr0kx1e-QOP-kqr0rhwq + 1 + OutParameter + + + + + Comment la chambre d'hôtel était-elle payée ? + + + + radio-button + + fr.insee + kqr0x5ml + 1 + CodeList + + + fr.insee + kqr0kx1e-RDOP-kqr0rhwq + 1 + + + fr.insee + kqr0x5ml + 1 + CodeList + + + + + + + + fr.insee + kpb8b0vw + 1 + + SDL4 + + + fr.insee + kpb8b0vw-QOP-kpb8gc24 + 1 + + SDL4 + + + + + fr.insee + kpb8b0vw-RDOP-kpb8gc24 + 1 + OutParameter + + + fr.insee + kpb8b0vw-QOP-kpb8gc24 + 1 + OutParameter + + + + + Était-ce un centre d'hébergement pour demandeurs d'asile ou réfugiés ? + + + + radio-button + + fr.insee + jncy00q3 + 1 + CodeList + + + fr.insee + kpb8b0vw-RDOP-kpb8gc24 + 1 + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + + + fr.insee + joio5w41 + 1 + + SDN1 + + + fr.insee + joio5w41-QOP-kpb93tlo + 1 + + SDN1 + + + + + fr.insee + joio5w41-RDOP-kpb93tlo + 1 + OutParameter + + + fr.insee + joio5w41-QOP-kpb93tlo + 1 + OutParameter + + + + + "Combien de situations de ce type " || (if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "avez-vous" else ¤kq7uo7yd-GOP¤ || " a-t-" || ¤kmx8i16l-GOP¤) || " connues ?" + + + + radio-button + + fr.insee + kpb8y2tb + 1 + CodeList + + + fr.insee + joio5w41-RDOP-kpb93tlo + 1 + + + fr.insee + kpb8y2tb + 1 + CodeList + + + + + + + + fr.insee + joioebt6 + 1 + + SDT1 + + + fr.insee + joioebt6-QOP-joiot0f2 + 1 + + SDT1 + + + + + fr.insee + joioebt6-RDOP-joiot0f2 + 1 + OutParameter + + + fr.insee + joioebt6-QOP-joiot0f2 + 1 + OutParameter + + + + + "Combien de temps au total " || (if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "avez-vous" else ¤kq7uo7yd-GOP¤ || " a-t-" || ¤kmx8i16l-GOP¤) || " été dans " || ¤kpbaad5q-GOP¤ || " ?" + + + + radio-button + + fr.insee + joiodz52 + 1 + CodeList + + + fr.insee + joioebt6-RDOP-joiot0f2 + 1 + + + fr.insee + joiodz52 + 1 + CodeList + + + + + + + + fr.insee + kudultmi + 1 + + SDL_SIT1 + + + fr.insee + kudultmi-QOP-kw112u99 + 1 + + SDL_SIT1 + + + + + fr.insee + kudultmi-RDOP-kw112u99 + 1 + OutParameter + + + fr.insee + kudultmi-QOP-kw112u99 + 1 + OutParameter + + + + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Quelle est la première situation de ce type que vous avez connue ?" else "Quelle est la première situation de ce type que " || ¤kq7uo7yd-GOP¤ || " a connue ?" + + + + radio-button + + fr.insee + kw10q170 + 1 + CodeList + + + fr.insee + kudultmi-RDOP-kw112u99 + 1 + + + fr.insee + kw10q170 + 1 + CodeList + + + + + + + + fr.insee + joo0yx5k + 1 + + SDTAD + + + fr.insee + joo0yx5k-QOP-lerabv6d + 1 + + SDTAD + + + + + fr.insee + joo0yx5k-RDOP-lerabv6d + 1 + OutParameter + + + fr.insee + joo0yx5k-QOP-lerabv6d + 1 + OutParameter + + + + + "En quelle année " || if (isnull(¤joio5w41-QOP-kpb93tlo¤)) then ( if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "avez-vous été pour la première fois dans une de ces situations ?" else ¤kq7uo7yd-GOP¤ || " a-t-" || ¤kmx8i16l-GOP¤ || " été pour la première fois dans une de ces situations ?" ) else (if (¤joio5w41-QOP-kpb93tlo¤="1") then "cette situation a-t-elle débuté ?" else ( if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "avez-vous été dans cette première situation ?" else ¤kq7uo7yd-GOP¤ || " a-t-" || ¤kmx8i16l-GOP¤ || " été dans cette première situation ?" )) + + + + + fr.insee + joo0yx5k-RDOP-lerabv6d + 1 + + + + + + fr.insee + joo1m3x2 + 1 + + SDT2 + + + fr.insee + joo1m3x2-QOP-kpbc6p3x + 1 + + SDT2 + + + + + fr.insee + joo1m3x2-RDOP-kpbc6p3x + 1 + OutParameter + + + fr.insee + joo1m3x2-QOP-kpbc6p3x + 1 + OutParameter + + + + + "La première fois que " || (if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "vous avez été" else ¤kq7uo7yd-GOP¤ || " a été") || " dans cette situation, combien de temps cela a-t-il duré ?" + + + + radio-button + + fr.insee + joiodz52 + 1 + CodeList + + + fr.insee + joo1m3x2-RDOP-kpbc6p3x + 1 + + + fr.insee + joiodz52 + 1 + CodeList + + + + + + + + fr.insee + kudvobyc + 1 + + SDL_SIT2 + + + fr.insee + kudvobyc-QOP-kudvddn0 + 1 + + SDL_SIT2 + + + + + fr.insee + kudvobyc-RDOP-kudvddn0 + 1 + OutParameter + + + fr.insee + kudvobyc-QOP-kudvddn0 + 1 + OutParameter + + + + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Quelle est la dernière situation de ce type que vous avez connue ?" else "Quelle est la dernière situation de ce type que " || ¤kq7uo7yd-GOP¤ || " a connue ?" + + + + radio-button + + fr.insee + kw10q170 + 1 + CodeList + + + fr.insee + kudvobyc-RDOP-kudvddn0 + 1 + + + fr.insee + kw10q170 + 1 + CodeList + + + + + + + + fr.insee + kudvxpft + 1 + + SDTAD_SIT2 + + + fr.insee + kudvxpft-QOP-lerb71l0 + 1 + + SDTAD_SIT2 + + + + + fr.insee + kudvxpft-RDOP-lerb71l0 + 1 + OutParameter + + + fr.insee + kudvxpft-QOP-lerb71l0 + 1 + OutParameter + + + + + "En quelle année cette dernière situation a-t-elle débuté pour " || ( if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "vous ?" else ¤kq7uo7yd-GOP¤ || "?" ) + + + + + fr.insee + kudvxpft-RDOP-lerb71l0 + 1 + + + + + + fr.insee + kudwrcyp + 1 + + SDT2_SIT2 + + + fr.insee + kudwrcyp-QOP-kudwbquk + 1 + + SDT2_SIT2 + + + + + fr.insee + kudwrcyp-RDOP-kudwbquk + 1 + OutParameter + + + fr.insee + kudwrcyp-QOP-kudwbquk + 1 + OutParameter + + + + + "La dernière fois que " || (if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "vous avez été" else ¤kq7uo7yd-GOP¤ || " a été") || " dans cette situation, combien de temps cela a-t-il duré ?" + + + + radio-button + + fr.insee + joiodz52 + 1 + CodeList + + + fr.insee + kudwrcyp-RDOP-kudwbquk + 1 + + + fr.insee + joiodz52 + 1 + CodeList + + + + + + + + fr.insee + jopgtrq1 + 1 + + VVENDL + + + fr.insee + jopgtrq1-QOP-joph3nia + 1 + + VVENDL + + + + + fr.insee + jopgtrq1-RDOP-joph3nia + 1 + OutParameter + + + fr.insee + jopgtrq1-QOP-joph3nia + 1 + OutParameter + + + + + "Depuis le 1er " || ¤ko9vg9v8-GOP¤ || " " || cast(¤kocm65ii-GOP¤,string) || ", un des membres de votre ménage actuel, y compris vous-même, a-t-il vendu un ou plusieurs logements ?" + + + + radio-button + + fr.insee + joph1lnb + 1 + CodeList + + + fr.insee + jopgtrq1-RDOP-joph3nia + 1 + + + fr.insee + joph1lnb + 1 + CodeList + + + + + + + fr.insee + kpbd40p7 + 1 + Instruction + + + + fr.insee + jopgvwb0 + 1 + + VFFH + + + fr.insee + jopgvwb0-QOP-joph5rt8 + 1 + + VFFH + + + + + fr.insee + jopgvwb0-RDOP-joph5rt8 + 1 + OutParameter + + + fr.insee + jopgvwb0-QOP-joph5rt8 + 1 + OutParameter + + + + + Comment aviez-vous fait l’acquisition de ce logement maintenant vendu ? + + + + radio-button + + fr.insee + jopgr6lb + 1 + CodeList + + + fr.insee + jopgvwb0-RDOP-joph5rt8 + 1 + + + fr.insee + jopgr6lb + 1 + CodeList + + + + + + + fr.insee + jslhsfkf + 1 + Instruction + + + + fr.insee + jopgzovi + 1 + + VFLA + + + fr.insee + jopgzovi-QOP-joph67ad + 1 + + VFLA + + + + + fr.insee + jopgzovi-RDOP-joph67ad + 1 + OutParameter + + + fr.insee + jopgzovi-QOP-joph67ad + 1 + OutParameter + + + + + ¤koead7in-GOP¤ || " était-il votre résidence principale ?" + + + + radio-button + + fr.insee + jncy00q3 + 1 + CodeList + + + fr.insee + jopgzovi-RDOP-joph67ad + 1 + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + + + fr.insee + koeabibm + 1 + + VACHAL + + + fr.insee + koeabibm-QOP-koebfojq + 1 + + VACHAL + + + + + fr.insee + koeabibm-RDOP-koebfojq + 1 + OutParameter + + + fr.insee + koeabibm-QOP-koebfojq + 1 + OutParameter + + + + + "Depuis le 1er " || ¤ko9vg9v8-GOP¤ || " " || cast(¤kocm65ii-GOP¤,string) || ", un des membres de votre ménage actuel, y compris vous-même, a-t-il acheté un ou plusieurs logements, comme une résidence principale, secondaire, un logement destiné à être loué, etc. ?" + + + + radio-button + + fr.insee + joph1lnb + 1 + CodeList + + + fr.insee + koeabibm-RDOP-koebfojq + 1 + + + fr.insee + joph1lnb + 1 + CodeList + + + + + + + + fr.insee + joph9za3 + 1 + + VBILLOG + + + fr.insee + joph9za3-QOP-jophbp5b + 1 + + VBILLOG + + + + + fr.insee + joph9za3-RDOP-jophbp5b + 1 + OutParameter + + + fr.insee + joph9za3-QOP-jophbp5b + 1 + OutParameter + + + + + "Par rapport au prix du " || ¤koeauvkr-GOP¤ || ", comment était le prix du " || ¤koeb5lcn-GOP¤ || " ?" + + + + radio-button + + fr.insee + joph7hjs + 1 + CodeList + + + fr.insee + joph9za3-RDOP-jophbp5b + 1 + + + fr.insee + joph7hjs + 1 + CodeList + + + + + + + + fr.insee + jopkquw3 + 1 + + VLR + + + fr.insee + jopkquw3-QOP-jopl57w1 + 1 + + VLR + + + + + fr.insee + jopkquw3-RDOP-jopl57w1 + 1 + OutParameter + + + fr.insee + jopkquw3-QOP-jopl57w1 + 1 + OutParameter + + + + + "Où habitiez-vous le 1er " || ¤ko9vg9v8-GOP¤ || " " || cast(¤kocm65ii-GOP¤,string) || " ?" + + + + radio-button + + fr.insee + jopkxxc6 + 1 + CodeList + + + fr.insee + jopkquw3-RDOP-jopl57w1 + 1 + + + fr.insee + jopkxxc6 + 1 + CodeList + + + + + + + + fr.insee + jopl7p41 + 1 + + COMMUNEPASSEE + + + fr.insee + jopl7p41-QOP-lgrjy0k9 + 1 + + COMMUNEPASSEE + + + + + fr.insee + jopl7p41-RDOP-lgrjy0k9 + 1 + OutParameter + + + fr.insee + jopl7p41-QOP-lgrjy0k9 + 1 + OutParameter + + + + + "Dans quelle commune habitiez-vous le 1er " || ¤ko9vg9v8-GOP¤ || " " || cast(¤kocm65ii-GOP¤,string) || " ?" + + + + + fr.insee + jopl7p41-RDOP-lgrjy0k9 + 1 + + + + + fr.insee + kwzauu2j + 1 + Instruction + + + + fr.insee + joplihpv + 1 + + DEPART + + + fr.insee + joplihpv-QOP-lgrjy7me + 1 + + DEPART + + + + + fr.insee + joplihpv-RDOP-lgrjy7me + 1 + OutParameter + + + fr.insee + joplihpv-QOP-lgrjy7me + 1 + OutParameter + + + + + "Dans quel département habitiez-vous le 1er " || ¤ko9vg9v8-GOP¤ || " " || cast(¤kocm65ii-GOP¤,string) || " ?" + + + + + fr.insee + joplihpv-RDOP-lgrjy7me + 1 + + + + + fr.insee + joplaxge + 1 + Instruction + + + + fr.insee + joplkxrd + 1 + + VCRCOM + + + fr.insee + joplkxrd-QOP-joplrr4n + 1 + + VCRCOM + + + + + fr.insee + joplkxrd-RDOP-joplrr4n + 1 + OutParameter + + + fr.insee + joplkxrd-QOP-joplrr4n + 1 + OutParameter + + + + + Indiquer le nom complet de la commune : + + + + + fr.insee + joplkxrd-RDOP-joplrr4n + 1 + + + + + + fr.insee + jopldlvn + 1 + + VPRA + + + fr.insee + jopldlvn-QOP-joplnmbl + 1 + + VPRA + + + + + fr.insee + jopldlvn-RDOP-joplnmbl + 1 + OutParameter + + + fr.insee + jopldlvn-QOP-joplnmbl + 1 + OutParameter + + + + + "Dans quel pays résidiez-vous le 1er " || ¤ko9vg9v8-GOP¤ || " " || cast(¤kocm65ii-GOP¤,string) || " ?" + + + + + fr.insee + jopldlvn-RDOP-joplnmbl + 1 + + + + + fr.insee + kwzbrdy1 + 1 + Instruction + + + + fr.insee + joplorns + 1 + + VLA1 + + + fr.insee + joplorns-QOP-joplwq56 + 1 + + VLA1 + + + + + fr.insee + joplorns-RDOP-joplwq56 + 1 + OutParameter + + + fr.insee + joplorns-QOP-joplwq56 + 1 + OutParameter + + + + + "Au 1er " || ¤ko9vg9v8-GOP¤ || " " || cast(¤kocm65ii-GOP¤,string) || ", quelle était votre situation ?" + + + + radio-button + + fr.insee + joplgdcw + 1 + CodeList + + + fr.insee + joplorns-RDOP-joplwq56 + 1 + + + fr.insee + joplgdcw + 1 + CodeList + + + + + + + + fr.insee + joplzrmo + 1 + + VSO1 + + + fr.insee + joplzrmo-QOP-jopm22x3 + 1 + + VSO1 + + + + + fr.insee + joplzrmo-RDOP-jopm22x3 + 1 + OutParameter + + + fr.insee + joplzrmo-QOP-jopm22x3 + 1 + OutParameter + + + + + "Au 1er " || ¤ko9vg9v8-GOP¤ || " " || cast(¤kocm65ii-GOP¤,string) || ", comment votre ménage occupait-il ce logement ?" + + + + radio-button + + fr.insee + joplsxki + 1 + CodeList + + + fr.insee + joplzrmo-RDOP-jopm22x3 + 1 + + + fr.insee + joplsxki + 1 + CodeList + + + + + + + + fr.insee + jopri4xh + 1 + + VSY + + + fr.insee + jopri4xh-QOP-joprppxd + 1 + + VSY + + + + + fr.insee + jopri4xh-RDOP-joprppxd + 1 + OutParameter + + + fr.insee + jopri4xh-QOP-joprppxd + 1 + OutParameter + + + + + Quel était le régime juridique du loyer ? + + + + radio-button + + fr.insee + joprlb0a + 1 + CodeList + + + fr.insee + jopri4xh-RDOP-joprppxd + 1 + + + fr.insee + joprlb0a + 1 + CodeList + + + + + + + + fr.insee + joprsm9u + 1 + + VLOYER + + + fr.insee + joprsm9u-QOP-joprtstn + 1 + + VLOYER + + + + + fr.insee + joprsm9u-RDOP-joprtstn + 1 + OutParameter + + + fr.insee + joprsm9u-QOP-joprtstn + 1 + OutParameter + + + + + "Quel était le montant du loyer mensuel au 1er " || ¤ko9vg9v8-GOP¤ || " " || cast(¤kocm65ii-GOP¤,string) || " ?" + + + + + 0 + 1000000 + + Decimal + + fr.insee + joprsm9u-RDOP-joprtstn + 1 + + + + fr.insee + kpbfr1bb + 1 + Instruction + + + + fr.insee + joprlyql + 1 + + VAID + + + fr.insee + joprlyql-QOP-jops8mhm + 1 + + VAID + + + + + fr.insee + joprlyql-RDOP-jops8mhm + 1 + OutParameter + + + fr.insee + joprlyql-QOP-jops8mhm + 1 + OutParameter + + + + + "Bénéficiez-vous au 1er " || ¤ko9vg9v8-GOP¤ || " " || cast(¤kocm65ii-GOP¤,string) || " de l’allocation logement ou de l’aide personnalisée au logement (APL) ?" + + + + radio-button + + fr.insee + joidufam + 1 + CodeList + + + fr.insee + joprlyql-RDOP-jops8mhm + 1 + + + fr.insee + joidufam + 1 + CodeList + + + + + + + + fr.insee + joprp441 + 1 + + VIN + + + fr.insee + joprp441-QOP-jops9bgj + 1 + + VIN + + + + + fr.insee + joprp441-RDOP-jops9bgj + 1 + OutParameter + + + fr.insee + joprp441-QOP-jops9bgj + 1 + OutParameter + + + + + "Combien de personnes résidaient dans le logement occupé au 1er " || ¤ko9vg9v8-GOP¤ || " " || cast(¤kocm65ii-GOP¤,string) || ", y compris vous-même ?" + + + + + 1 + 24 + + Decimal + + fr.insee + joprp441-RDOP-jops9bgj + 1 + + + + + fr.insee + jopruzlo + 1 + + VTL1 + + + fr.insee + jopruzlo-QOP-jopskga3 + 1 + + VTL1 + + + + + fr.insee + jopruzlo-RDOP-jopskga3 + 1 + OutParameter + + + fr.insee + jopruzlo-QOP-jopskga3 + 1 + OutParameter + + + + + "À quoi correspondait le logement occupé au 1er " || ¤ko9vg9v8-GOP¤ || " " || cast(¤kocm65ii-GOP¤,string) || " ?" + + + + radio-button + + fr.insee + joprub8u + 1 + CodeList + + + fr.insee + jopruzlo-RDOP-jopskga3 + 1 + + + fr.insee + joprub8u + 1 + CodeList + + + + + + + + fr.insee + jopsc29x + 1 + + VSURF + + + fr.insee + jopsc29x-QOP-jopspuot + 1 + + VSURF + + + + + fr.insee + jopsc29x-RDOP-jopspuot + 1 + OutParameter + + + fr.insee + jopsc29x-QOP-jopspuot + 1 + OutParameter + + + + + "Quelle était la surface habitable de ce logement occupé au 1er " || ¤ko9vg9v8-GOP¤ || " " || cast(¤kocm65ii-GOP¤,string) || " ?" + + + + + 1 + 999 + + Decimal + + fr.insee + jopsc29x-RDOP-jopspuot + 1 + + + + fr.insee + jopshrd0 + 1 + Instruction + + + fr.insee + kpbnmqra + 1 + Instruction + + + + fr.insee + jops4c0x + 1 + + VPI + + + fr.insee + jops4c0x-QOP-jopsp5li + 1 + + VPI + + + + + fr.insee + jops4c0x-RDOP-jopsp5li + 1 + OutParameter + + + fr.insee + jops4c0x-QOP-jopsp5li + 1 + OutParameter + + + + + "Quel était le nombre de pièces d'habitation de ce logement occupé au 1er " || ¤ko9vg9v8-GOP¤ || " " || cast(¤kocm65ii-GOP¤,string) || " ?" + + + + + 1 + 20 + + Decimal + + fr.insee + jops4c0x-RDOP-jopsp5li + 1 + + + + fr.insee + jops3ast + 1 + Instruction + + + fr.insee + kpbnwlcz + 1 + Instruction + + + + fr.insee + jopsjl1n + 1 + + VANCIEN + + + fr.insee + jopsjl1n-QOP-jopsq146 + 1 + + VANCIEN + + + + + fr.insee + jopsjl1n-RDOP-jopsq146 + 1 + OutParameter + + + fr.insee + jopsjl1n-QOP-jopsq146 + 1 + OutParameter + + + + + "Combien d’années avez-vous vécu dans ce logement occupé au 1er " || ¤ko9vg9v8-GOP¤ || " " || cast(¤kocm65ii-GOP¤,string) || " ?" + + + + + 0 + 100 + + Decimal + + fr.insee + jopsjl1n-RDOP-jopsq146 + 1 + + + + + fr.insee + jopsiigq + 1 + + VOP + + + fr.insee + jopsiigq-QOP-jopsucph + 1 + + VOP + + + + + fr.insee + jopsiigq-RDOP-jopsucph + 1 + OutParameter + + + fr.insee + jopsiigq-QOP-jopsucph + 1 + OutParameter + + + + + "Quelle était votre situation professionnelle au 1er " || ¤ko9vg9v8-GOP¤ || " " || cast(¤kocm65ii-GOP¤,string) || " ?" + + + + radio-button + + fr.insee + jopsh9ng + 1 + CodeList + + + fr.insee + jopsiigq-RDOP-jopsucph + 1 + + + fr.insee + jopsh9ng + 1 + CodeList + + + + + + + + fr.insee + jopsrdb3 + 1 + + VND + + + fr.insee + jopsrdb3-QOP-jopt3q7k + 1 + + VND + + + + + fr.insee + jopsrdb3-RDOP-jopt3q7k + 1 + OutParameter + + + fr.insee + jopsrdb3-QOP-jopt3q7k + 1 + OutParameter + + + + + "Combien de fois avez-vous déménagé depuis le 1er " || ¤ko9vg9v8-GOP¤ || " " || cast(¤kocm65ii-GOP¤,string) || " ?" + + + + + 0 + 9 + + Decimal + + fr.insee + jopsrdb3-RDOP-jopt3q7k + 1 + + + + + fr.insee + joptkb9d + 1 + + VLRD + + + fr.insee + joptkb9d-QOP-joptyklz + 1 + + VLRD + + + + + fr.insee + joptkb9d-RDOP-joptyklz + 1 + OutParameter + + + fr.insee + joptkb9d-QOP-joptyklz + 1 + OutParameter + + + + + Juste avant d'habiter dans votre logement actuel, où résidiez-vous ? + + + + radio-button + + fr.insee + joptnagd + 1 + CodeList + + + fr.insee + joptkb9d-RDOP-joptyklz + 1 + + + fr.insee + joptnagd + 1 + CodeList + + + + + + + + fr.insee + jopu7wfr + 1 + + VLAB1 + + + fr.insee + jopu7wfr-QOP-jopueeyk + 1 + + VLAB1 + + + + + fr.insee + jopu7wfr-RDOP-jopueeyk + 1 + OutParameter + + + fr.insee + jopu7wfr-QOP-jopueeyk + 1 + OutParameter + + + + + Avant d'occuper votre logement actuel, quelle était votre situation ? + + + + radio-button + + fr.insee + jopu65h0 + 1 + CodeList + + + fr.insee + jopu7wfr-RDOP-jopueeyk + 1 + + + fr.insee + jopu65h0 + 1 + CodeList + + + + + + + + fr.insee + jopua1hn + 1 + + VDD1 + + + fr.insee + jopua1hn-QOP-jopuivt4 + 1 + + VDD1 + + + + + fr.insee + jopua1hn-RDOP-jopuivt4 + 1 + OutParameter + + + fr.insee + jopua1hn-QOP-jopuivt4 + 1 + OutParameter + + + + + Comment votre ménage occupait-il le précédent logement ? + + + + radio-button + + fr.insee + joplsxki + 1 + CodeList + + + fr.insee + jopua1hn-RDOP-jopuivt4 + 1 + + + fr.insee + joplsxki + 1 + CodeList + + + + + + + + fr.insee + jopuofnr + 1 + + VDSY + + + fr.insee + jopuofnr-QOP-jopur7zt + 1 + + VDSY + + + + + fr.insee + jopuofnr-RDOP-jopur7zt + 1 + OutParameter + + + fr.insee + jopuofnr-QOP-jopur7zt + 1 + OutParameter + + + + + Quel était le régime juridique du loyer ? + + + + radio-button + + fr.insee + jopur3k1 + 1 + CodeList + + + fr.insee + jopuofnr-RDOP-jopur7zt + 1 + + + fr.insee + jopur3k1 + 1 + CodeList + + + + + + + + fr.insee + jopuhzbr + 1 + + VTLD1 + + + fr.insee + jopuhzbr-QOP-jopuwk7u + 1 + + VTLD1 + + + + + fr.insee + jopuhzbr-RDOP-jopuwk7u + 1 + OutParameter + + + fr.insee + jopuhzbr-QOP-jopuwk7u + 1 + OutParameter + + + + + À quoi correspondait votre précédent logement ? + + + + radio-button + + fr.insee + joprub8u + 1 + CodeList + + + fr.insee + jopuhzbr-RDOP-jopuwk7u + 1 + + + fr.insee + joprub8u + 1 + CodeList + + + + + + + + fr.insee + jopukm75 + 1 + + VSURFD + + + fr.insee + jopukm75-QOP-jopurvqk + 1 + + VSURFD + + + + + fr.insee + jopukm75-RDOP-jopurvqk + 1 + OutParameter + + + fr.insee + jopukm75-QOP-jopurvqk + 1 + OutParameter + + + + + Quelle était la surface de votre précédent logement ? + + + + + 1 + 997 + + Decimal + + fr.insee + jopukm75-RDOP-jopurvqk + 1 + + + + fr.insee + kovh3bgb + 1 + Instruction + + + fr.insee + kovh0e18 + 1 + Instruction + + + + fr.insee + joputbjc + 1 + + VPID + + + fr.insee + joputbjc-QOP-joput4wx + 1 + + VPID + + + + + fr.insee + joputbjc-RDOP-joput4wx + 1 + OutParameter + + + fr.insee + joputbjc-QOP-joput4wx + 1 + OutParameter + + + + + Quel était le nombre de pièces de votre précédent logement ? + + + + + 1 + 20 + + Decimal + + fr.insee + joputbjc-RDOP-joput4wx + 1 + + + + fr.insee + jrw9jmbu + 1 + Instruction + + + fr.insee + kpbq0xkh + 1 + Instruction + + + + fr.insee + jopvzl28 + 1 + + VRAIS1 + + + fr.insee + jopvzl28-QOP-l3iyeb2s + 1 + + VRAIS1 + + + + + fr.insee + jopvzl28-RDOP-l3iyeb2s + 1 + OutParameter + + + fr.insee + jopvzl28-QOP-l3iyeb2s + 1 + OutParameter + + + + + Avez-vous déménagé pour changer de statut d’occupation ? + + + + radio-button + + fr.insee + kovj0vbo + 1 + CodeList + + + fr.insee + jopvzl28-RDOP-l3iyeb2s + 1 + + + fr.insee + kovj0vbo + 1 + CodeList + + + + + + + + fr.insee + lgmgi33v + 1 + + VRAIS5 + + + fr.insee + lgmgi33v-QOP-lgmg7py5 + 1 + + VRAIS5 + + + + + fr.insee + lgmgi33v-RDOP-lgmg7py5 + 1 + OutParameter + + + fr.insee + lgmgi33v-QOP-lgmg7py5 + 1 + OutParameter + + + + + Avez-vous été contraint de déménager ? + + + + radio-button + + fr.insee + lgmga7g1 + 1 + CodeList + + + fr.insee + lgmgi33v-RDOP-lgmg7py5 + 1 + + + fr.insee + lgmga7g1 + 1 + CodeList + + + + + + + fr.insee + lgns2wkv + 1 + Instruction + + + + fr.insee + kp5apvf3 + 1 + + TELFIXE + + + fr.insee + kp5apvf3-QOP-kp5ay97j + 1 + + TELFIXE + + + + + fr.insee + kp5apvf3-RDOP-kp5ay97j + 1 + OutParameter + + + fr.insee + kp5apvf3-QOP-kp5ay97j + 1 + OutParameter + + + + + Vous ou une autre personne de votre ménage, décrochez-vous lorsque votre téléphone fixe sonne ? + + + + radio-button + + fr.insee + kp5afd7f + 1 + CodeList + + + fr.insee + kp5apvf3-RDOP-kp5ay97j + 1 + + + fr.insee + kp5afd7f + 1 + CodeList + + + + + + + + fr.insee + kp5au0iu + 1 + + TELMOB + + + fr.insee + kp5au0iu-QOP-kp5bnv1m + 1 + + TELMOB + + + + + fr.insee + kp5au0iu-RDOP-kp5bnv1m + 1 + OutParameter + + + fr.insee + kp5au0iu-QOP-kp5bnv1m + 1 + OutParameter + + + + + Décrochez-vous lorsque votre téléphone mobile sonne ? + + + + radio-button + + fr.insee + kp5b81ae + 1 + CodeList + + + fr.insee + kp5au0iu-RDOP-kp5bnv1m + 1 + + + fr.insee + kp5b81ae + 1 + CodeList + + + + + + + + fr.insee + kp5bjbzg + 1 + + UWEB + + + fr.insee + kp5bjbzg-QOP-kp5bdswc + 1 + + UWEB + + + + + fr.insee + kp5bjbzg-RDOP-kp5bdswc + 1 + OutParameter + + + fr.insee + kp5bjbzg-QOP-kp5bdswc + 1 + OutParameter + + + + + Comment avez-vous utilisé Internet, au cours des trois derniers mois, en moyenne ? + + + + radio-button + + fr.insee + kp5bdcd2 + 1 + CodeList + + + fr.insee + kp5bjbzg-RDOP-kp5bdswc + 1 + + + fr.insee + kp5bdcd2 + 1 + CodeList + + + + + + + fr.insee + kp5bt2q8 + 1 + Instruction + + + + fr.insee + kbamkrlv + 1 + + CHGNC + + + fr.insee + kbamkrlv-QOP-kbamirtb + 1 + + CHGNC + + + + + fr.insee + kbamkrlv-RDOP-kbamirtb + 1 + OutParameter + + + fr.insee + kbamkrlv-QOP-kbamirtb + 1 + OutParameter + + + + + "Les courriers que nous vous envoyons dans le cadre de cette enquête sont adressés à : " || ¤kr0o550i-GOP¤ || ". Cela vous convient-il ?" + + + + radio-button + + fr.insee + k1qjtfk1 + 1 + CodeList + + + fr.insee + kbamkrlv-RDOP-kbamirtb + 1 + + + fr.insee + k1qjtfk1 + 1 + CodeList + + + + + + + + fr.insee + kbaxq9l0 + 1 + + CIVCOLL + + + fr.insee + kbaxq9l0-QOP-knefys19 + 1 + + CIVCOLL + + + + + fr.insee + kbaxq9l0-RDOP-knefys19 + 1 + OutParameter + + + fr.insee + kbaxq9l0-QOP-knefys19 + 1 + OutParameter + + + + + "Civilité du " || if (not(isnull(¤NOMVOUS_D2¤)) and ¤NOMVOUS_D2¤<>"") then "premier destinataire :" else " destinataire :" + + + + radio-button + + fr.insee + kneexxy3 + 1 + CodeList + + + fr.insee + kbaxq9l0-RDOP-knefys19 + 1 + + + fr.insee + kneexxy3 + 1 + CodeList + + + + + + + + fr.insee + kr0fw3n6 + 1 + + PRENOMCOLL + + + fr.insee + kr0fw3n6-QOP-kr0fwd91 + 1 + + PRENOMCOLL + + + + + fr.insee + kr0fw3n6-RDOP-kr0fwd91 + 1 + OutParameter + + + fr.insee + kr0fw3n6-QOP-kr0fwd91 + 1 + OutParameter + + + + + "Prénom du " || if (not(isnull(¤NOMVOUS_D2¤)) and ¤NOMVOUS_D2¤<>"") then "premier destinataire :" else "destinataire :" + + + + + fr.insee + kr0fw3n6-RDOP-kr0fwd91 + 1 + + + + + + fr.insee + kr0fn06f + 1 + + NOMCOLL + + + fr.insee + kr0fn06f-QOP-kr0fwk40 + 1 + + NOMCOLL + + + + + fr.insee + kr0fn06f-RDOP-kr0fwk40 + 1 + OutParameter + + + fr.insee + kr0fn06f-QOP-kr0fwk40 + 1 + OutParameter + + + + + "Nom du " || if (not(isnull(¤NOMVOUS_D2¤)) and ¤NOMVOUS_D2¤<>"") then "premier destinataire :" else "destinataire :" + + + + + fr.insee + kr0fn06f-RDOP-kr0fwk40 + 1 + + + + + + fr.insee + kwjivaa1 + 1 + + CHGNC2 + + + fr.insee + kwjivaa1-QOP-kwjixod8 + 1 + + CHGNC2 + + + + + fr.insee + kwjivaa1-RDOP-kwjixod8 + 1 + OutParameter + + + fr.insee + kwjivaa1-QOP-kwjixod8 + 1 + OutParameter + + + + + Souhaitez-vous ajouter un deuxième destinataire au courrier que nous vous envoyons ? + + + + radio-button + + fr.insee + ko8uzwua + 1 + CodeList + + + fr.insee + kwjivaa1-RDOP-kwjixod8 + 1 + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + + + fr.insee + kr0fr82y + 1 + + CIVCOLL2 + + + fr.insee + kr0fr82y-QOP-kr0fen5r + 1 + + CIVCOLL2 + + + + + fr.insee + kr0fr82y-RDOP-kr0fen5r + 1 + OutParameter + + + fr.insee + kr0fr82y-QOP-kr0fen5r + 1 + OutParameter + + + + + Civilité du deuxième destinataire : + + + + radio-button + + fr.insee + kneexxy3 + 1 + CodeList + + + fr.insee + kr0fr82y-RDOP-kr0fen5r + 1 + + + fr.insee + kneexxy3 + 1 + CodeList + + + + + + + + fr.insee + kbbzjgn8 + 1 + + PRENOMCOLL2 + + + fr.insee + kbbzjgn8-QOP-kbbzo5z9 + 1 + + PRENOMCOLL2 + + + + + fr.insee + kbbzjgn8-RDOP-kbbzo5z9 + 1 + OutParameter + + + fr.insee + kbbzjgn8-QOP-kbbzo5z9 + 1 + OutParameter + + + + + Prénom du deuxième destinataire : + + + + + fr.insee + kbbzjgn8-RDOP-kbbzo5z9 + 1 + + + + + + fr.insee + kbbzhtx3 + 1 + + NOMCOLL2 + + + fr.insee + kbbzhtx3-QOP-kbbzny35 + 1 + + NOMCOLL2 + + + + + fr.insee + kbbzhtx3-RDOP-kbbzny35 + 1 + OutParameter + + + fr.insee + kbbzhtx3-QOP-kbbzny35 + 1 + OutParameter + + + + + Nom du deuxième destinataire : + + + + + fr.insee + kbbzhtx3-RDOP-kbbzny35 + 1 + + + + + + fr.insee + kbay0xfi + 1 + + NOTELCOLL + + + fr.insee + kbay0xfi-QOP-kbay0dcb + 1 + + NOTELCOLL + + + + + fr.insee + kbay0xfi-RDOP-kbay0dcb + 1 + OutParameter + + + fr.insee + kbay0xfi-QOP-kbay0dcb + 1 + OutParameter + + + + + Pourriez-vous indiquer le numéro de téléphone à utiliser pour vous contacter ? + + + + + fr.insee + kbay0xfi-RDOP-kbay0dcb + 1 + + + + + fr.insee + kksdc5ct + 1 + Instruction + + + fr.insee + kkscy2qd + 1 + Instruction + + + + fr.insee + kmort6x9 + 1 + + NATIO1N + + + fr.insee + kmort6x9-QOP-kmosa98y + 1 + + NATIO1N1 + + + + fr.insee + kmort6x9-QOP-kmos360k + 1 + + NATIO1N2 + + + + fr.insee + kmort6x9-QOP-kmos37e1 + 1 + + NATIO1N3 + + + + fr.insee + kmort6x9-QOP-kmorue9c + 1 + + NATIO1N4 + + + + + fr.insee + kmort6x9-RDOP-kmosa98y + 1 + OutParameter + + + fr.insee + kmort6x9-QOP-kmosa98y + 1 + OutParameter + + + + + fr.insee + kmort6x9-RDOP-kmos360k + 1 + OutParameter + + + fr.insee + kmort6x9-QOP-kmos360k + 1 + OutParameter + + + + + fr.insee + kmort6x9-RDOP-kmos37e1 + 1 + OutParameter + + + fr.insee + kmort6x9-QOP-kmos37e1 + 1 + OutParameter + + + + + fr.insee + kmort6x9-RDOP-kmorue9c + 1 + OutParameter + + + fr.insee + kmort6x9-QOP-kmorue9c + 1 + OutParameter + + + + + "Quelle est "|| if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "votre nationalité ?" else "la nationalité de " || ¤kq7uo7yd-GOP¤ || " ?" + + + + + + fr.insee + kmos765d + 1 + CodeList + + + + + + + + fr.insee + kmort6x9-RDOP-kmosa98y + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kmort6x9-RDOP-kmos360k + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kmort6x9-RDOP-kmos37e1 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kmort6x9-RDOP-kmorue9c + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + kmorxjxc + 1 + Instruction + + + + fr.insee + kmw5h275 + 1 + + SITUMATRI + + + fr.insee + kmw5h275-QOP-kqi51gzp + 1 + + SITUMATRI1 + + + + fr.insee + kmw5h275-QOP-kqi557ae + 1 + + SITUMATRI2 + + + + fr.insee + kmw5h275-QOP-kqi572vy + 1 + + SITUMATRI3 + + + + fr.insee + kmw5h275-QOP-kqi54qj5 + 1 + + SITUMATRI4 + + + + fr.insee + kmw5h275-QOP-kqi5ewaq + 1 + + SITUMATRI5 + + + + fr.insee + kmw5h275-QOP-kqi5h0rk + 1 + + SITUMATRI6 + + + + + fr.insee + kmw5h275-RDOP-kqi51gzp + 1 + OutParameter + + + fr.insee + kmw5h275-QOP-kqi51gzp + 1 + OutParameter + + + + + fr.insee + kmw5h275-RDOP-kqi557ae + 1 + OutParameter + + + fr.insee + kmw5h275-QOP-kqi557ae + 1 + OutParameter + + + + + fr.insee + kmw5h275-RDOP-kqi572vy + 1 + OutParameter + + + fr.insee + kmw5h275-QOP-kqi572vy + 1 + OutParameter + + + + + fr.insee + kmw5h275-RDOP-kqi54qj5 + 1 + OutParameter + + + fr.insee + kmw5h275-QOP-kqi54qj5 + 1 + OutParameter + + + + + fr.insee + kmw5h275-RDOP-kqi5ewaq + 1 + OutParameter + + + fr.insee + kmw5h275-QOP-kqi5ewaq + 1 + OutParameter + + + + + fr.insee + kmw5h275-RDOP-kqi5h0rk + 1 + OutParameter + + + fr.insee + kmw5h275-QOP-kqi5h0rk + 1 + OutParameter + + + + + "Quelle est " || if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "votre situation matrimoniale ?" else "la situation matrimoniale de " || ¤kq7uo7yd-GOP¤ || " ?" + + + + + + fr.insee + kmw5u1pk + 1 + CodeList + + + + + + + + fr.insee + kmw5h275-RDOP-kqi51gzp + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kmw5h275-RDOP-kqi557ae + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kmw5h275-RDOP-kqi572vy + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kmw5h275-RDOP-kqi54qj5 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kmw5h275-RDOP-kqi5ewaq + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kmw5h275-RDOP-kqi5h0rk + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + knorcs48 + 1 + + ERET1 + + + fr.insee + knorcs48-QOP-kwqpl9t4 + 1 + + ERET11 + + + + fr.insee + knorcs48-QOP-kwqplt17 + 1 + + ERET12 + + + + fr.insee + knorcs48-QOP-kwqpx010 + 1 + + ERET13 + + + + fr.insee + knorcs48-QOP-kwqpvqw9 + 1 + + ERET14 + + + + fr.insee + knorcs48-QOP-kwqprhw6 + 1 + + ERET15 + + + + fr.insee + knorcs48-QOP-kwqq04zh + 1 + + ERET16 + + + + + fr.insee + knorcs48-RDOP-kwqpl9t4 + 1 + OutParameter + + + fr.insee + knorcs48-QOP-kwqpl9t4 + 1 + OutParameter + + + + + fr.insee + knorcs48-RDOP-kwqplt17 + 1 + OutParameter + + + fr.insee + knorcs48-QOP-kwqplt17 + 1 + OutParameter + + + + + fr.insee + knorcs48-RDOP-kwqpx010 + 1 + OutParameter + + + fr.insee + knorcs48-QOP-kwqpx010 + 1 + OutParameter + + + + + fr.insee + knorcs48-RDOP-kwqpvqw9 + 1 + OutParameter + + + fr.insee + knorcs48-QOP-kwqpvqw9 + 1 + OutParameter + + + + + fr.insee + knorcs48-RDOP-kwqprhw6 + 1 + OutParameter + + + fr.insee + knorcs48-QOP-kwqprhw6 + 1 + OutParameter + + + + + fr.insee + knorcs48-RDOP-kwqq04zh + 1 + OutParameter + + + fr.insee + knorcs48-QOP-kwqq04zh + 1 + OutParameter + + + + + "Dans quelles circonstances " || ¤kq7uo7yd-GOP¤ || " est-" || ¤kmx8i16l-GOP¤ || " venu" || ¤kmook912-GOP¤ || " ou revenu" || ¤kmook912-GOP¤ || " vivre avec vous après avoir eu un logement indépendant ?" + + + + + + fr.insee + knorkwv0 + 1 + CodeList + + + + + + + + fr.insee + knorcs48-RDOP-kwqpl9t4 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + knorcs48-RDOP-kwqplt17 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + knorcs48-RDOP-kwqpx010 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + knorcs48-RDOP-kwqpvqw9 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + knorcs48-RDOP-kwqprhw6 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + knorcs48-RDOP-kwqq04zh + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + kqigjlze + 1 + Instruction + + + + fr.insee + knpolbu3 + 1 + + EAMID1 + + + fr.insee + knpolbu3-QOP-l3d88g6a + 1 + + EAMID11 + + + + fr.insee + knpolbu3-QOP-l3d8efe0 + 1 + + EAMID12 + + + + fr.insee + knpolbu3-QOP-l3d8iii6 + 1 + + EAMID13 + + + + fr.insee + knpolbu3-QOP-l3d8aqcq + 1 + + EAMID14 + + + + fr.insee + knpolbu3-QOP-l3d8e08c + 1 + + EAMID15 + + + + fr.insee + knpolbu3-QOP-l3d896r3 + 1 + + EAMID16 + + + + fr.insee + knpolbu3-QOP-l3d87rh5 + 1 + + EAMID17 + + + + + fr.insee + knpolbu3-RDOP-l3d88g6a + 1 + OutParameter + + + fr.insee + knpolbu3-QOP-l3d88g6a + 1 + OutParameter + + + + + fr.insee + knpolbu3-RDOP-l3d8efe0 + 1 + OutParameter + + + fr.insee + knpolbu3-QOP-l3d8efe0 + 1 + OutParameter + + + + + fr.insee + knpolbu3-RDOP-l3d8iii6 + 1 + OutParameter + + + fr.insee + knpolbu3-QOP-l3d8iii6 + 1 + OutParameter + + + + + fr.insee + knpolbu3-RDOP-l3d8aqcq + 1 + OutParameter + + + fr.insee + knpolbu3-QOP-l3d8aqcq + 1 + OutParameter + + + + + fr.insee + knpolbu3-RDOP-l3d8e08c + 1 + OutParameter + + + fr.insee + knpolbu3-QOP-l3d8e08c + 1 + OutParameter + + + + + fr.insee + knpolbu3-RDOP-l3d896r3 + 1 + OutParameter + + + fr.insee + knpolbu3-QOP-l3d896r3 + 1 + OutParameter + + + + + fr.insee + knpolbu3-RDOP-l3d87rh5 + 1 + OutParameter + + + fr.insee + knpolbu3-QOP-l3d87rh5 + 1 + OutParameter + + + + + "Pour quelles raisons " || ¤kq7uo7yd-GOP¤ || " vit-" || ¤kmx8i16l-GOP¤ || " chez vous ?" + + + + + + fr.insee + kqs7ptde + 1 + CodeList + + + + + + + + fr.insee + knpolbu3-RDOP-l3d88g6a + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + knpolbu3-RDOP-l3d8efe0 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + knpolbu3-RDOP-l3d8iii6 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + knpolbu3-RDOP-l3d8aqcq + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + knpolbu3-RDOP-l3d8e08c + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + knpolbu3-RDOP-l3d896r3 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + knpolbu3-RDOP-l3d87rh5 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + kqigai4x + 1 + Instruction + + + + fr.insee + l3io7e8f + 1 + + HUTDEF + + + fr.insee + l3io7e8f-QOP-l3irxifk + 1 + + HUTDEF1 + + + + fr.insee + l3io7e8f-QOP-l3irkq5a + 1 + + HUTDEF2 + + + + fr.insee + l3io7e8f-QOP-l3irr1yx + 1 + + HUTDEF3 + + + + fr.insee + l3io7e8f-QOP-l3irjbx5 + 1 + + HUTDEF4 + + + + + fr.insee + l3io7e8f-RDOP-l3irxifk + 1 + OutParameter + + + fr.insee + l3io7e8f-QOP-l3irxifk + 1 + OutParameter + + + + + fr.insee + l3io7e8f-RDOP-l3irkq5a + 1 + OutParameter + + + fr.insee + l3io7e8f-QOP-l3irkq5a + 1 + OutParameter + + + + + fr.insee + l3io7e8f-RDOP-l3irr1yx + 1 + OutParameter + + + fr.insee + l3io7e8f-QOP-l3irr1yx + 1 + OutParameter + + + + + fr.insee + l3io7e8f-RDOP-l3irjbx5 + 1 + OutParameter + + + fr.insee + l3io7e8f-QOP-l3irjbx5 + 1 + OutParameter + + + + + Par rapport à l’exercice du télétravail, votre logement présente-t-il les défauts suivants ? + + + + + + fr.insee + l3iobv03 + 1 + CodeList + + + + + + + radio-button + + fr.insee + ko8uzwua + 1 + CodeList + + + fr.insee + l3io7e8f-RDOP-l3irxifk + 1 + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + + + + + + + + + radio-button + + fr.insee + ko8uzwua + 1 + CodeList + + + fr.insee + l3io7e8f-RDOP-l3irkq5a + 1 + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + + + + + + + + + radio-button + + fr.insee + ko8uzwua + 1 + CodeList + + + fr.insee + l3io7e8f-RDOP-l3irr1yx + 1 + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + + + + + + + + + radio-button + + fr.insee + ko8uzwua + 1 + CodeList + + + fr.insee + l3io7e8f-RDOP-l3irjbx5 + 1 + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + + + + + + + + + + fr.insee + kmcdiwdv + 1 + + HULHUI2 + + + fr.insee + kmcdiwdv-QOP-kmd9jdka + 1 + + HULHUI21 + + + + fr.insee + kmcdiwdv-QOP-kmd9qoms + 1 + + HULHUI22 + + + + fr.insee + kmcdiwdv-QOP-kmd988n2 + 1 + + HULHUI23 + + + + + fr.insee + kmcdiwdv-RDOP-kmd9jdka + 1 + OutParameter + + + fr.insee + kmcdiwdv-QOP-kmd9jdka + 1 + OutParameter + + + + + fr.insee + kmcdiwdv-RDOP-kmd9qoms + 1 + OutParameter + + + fr.insee + kmcdiwdv-QOP-kmd9qoms + 1 + OutParameter + + + + + fr.insee + kmcdiwdv-RDOP-kmd988n2 + 1 + OutParameter + + + fr.insee + kmcdiwdv-QOP-kmd988n2 + 1 + OutParameter + + + + + Quel usage faites-vous des [pièces annexes](. "Pièces rattachées au logement avec une entrée indépendante telles que des chambres de bonnes ou d'anciens garages réaménagés en studios, par exemple") ? + + + + + + fr.insee + kkqw9mkz + 1 + CodeList + + + + + + + + fr.insee + kmcdiwdv-RDOP-kmd9jdka + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kmcdiwdv-RDOP-kmd9qoms + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kmcdiwdv-RDOP-kmd988n2 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + kmcdfb60 + 1 + Instruction + + + + fr.insee + jrusjpqy + 1 + + KGA + + + fr.insee + jrusjpqy-QOP-kf8972di + 1 + + KGA1 + + + + fr.insee + jrusjpqy-QOP-kf893sen + 1 + + KGA2 + + + + fr.insee + jrusjpqy-QOP-kf89737h + 1 + + KGA3 + + + + fr.insee + jrusjpqy-QOP-kf89ei4h + 1 + + KGA4 + + + + + fr.insee + jrusjpqy-RDOP-kf8972di + 1 + OutParameter + + + fr.insee + jrusjpqy-QOP-kf8972di + 1 + OutParameter + + + + + fr.insee + jrusjpqy-RDOP-kf893sen + 1 + OutParameter + + + fr.insee + jrusjpqy-QOP-kf893sen + 1 + OutParameter + + + + + fr.insee + jrusjpqy-RDOP-kf89737h + 1 + OutParameter + + + fr.insee + jrusjpqy-QOP-kf89737h + 1 + OutParameter + + + + + fr.insee + jrusjpqy-RDOP-kf89ei4h + 1 + OutParameter + + + fr.insee + jrusjpqy-QOP-kf89ei4h + 1 + OutParameter + + + + + "Au sein de " || ¤kd8yarle-GOP¤ ||", disposez-vous d'un emplacement privatif de stationnement ?" + + + + + + fr.insee + jruss6vy + 1 + CodeList + + + + + + + + fr.insee + jrusjpqy-RDOP-kf8972di + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + jrusjpqy-RDOP-kf893sen + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + jrusjpqy-RDOP-kf89737h + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + jrusjpqy-RDOP-kf89ei4h + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + kd8yemf2 + 1 + Instruction + + + fr.insee + kmdk73lg + 1 + Instruction + + + + fr.insee + jrut4vl7 + 1 + + KGAB + + + fr.insee + jrut4vl7-QOP-kf8913r1 + 1 + + KGA11 + + + + fr.insee + jrut4vl7-QOP-kf89c33b + 1 + + KGA12 + + + + fr.insee + jrut4vl7-QOP-kf899mmw + 1 + + KGA13 + + + + fr.insee + jrut4vl7-QOP-kf8931vm + 1 + + KGA14 + + + + + fr.insee + jrut4vl7-RDOP-kf8913r1 + 1 + OutParameter + + + fr.insee + jrut4vl7-QOP-kf8913r1 + 1 + OutParameter + + + + + fr.insee + jrut4vl7-RDOP-kf89c33b + 1 + OutParameter + + + fr.insee + jrut4vl7-QOP-kf89c33b + 1 + OutParameter + + + + + fr.insee + jrut4vl7-RDOP-kf899mmw + 1 + OutParameter + + + fr.insee + jrut4vl7-QOP-kf899mmw + 1 + OutParameter + + + + + fr.insee + jrut4vl7-RDOP-kf8931vm + 1 + OutParameter + + + fr.insee + jrut4vl7-QOP-kf8931vm + 1 + OutParameter + + + + + "En dehors de "|| ¤kd8yarle-GOP¤ || ", disposez-vous d'un emplacement privatif de stationnement ?" + + + + + + fr.insee + jruss6vy + 1 + CodeList + + + + + + + + fr.insee + jrut4vl7-RDOP-kf8913r1 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + jrut4vl7-RDOP-kf89c33b + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + jrut4vl7-RDOP-kf899mmw + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + jrut4vl7-RDOP-kf8931vm + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + jrut167a + 1 + Instruction + + + fr.insee + kmdk288d + 1 + Instruction + + + + fr.insee + knio1w9d + 1 + + OLAR1 + + + fr.insee + knio1w9d-QOP-l8bbx7nd + 1 + + OLAR11 + + + + fr.insee + knio1w9d-QOP-l8bc28f0 + 1 + + OLAR12 + + + + fr.insee + knio1w9d-QOP-l8bccet1 + 1 + + OLAR13 + + + + fr.insee + knio1w9d-QOP-l8bbz1zl + 1 + + OLAR14 + + + + + fr.insee + knio1w9d-RDOP-l8bbx7nd + 1 + OutParameter + + + fr.insee + knio1w9d-QOP-l8bbx7nd + 1 + OutParameter + + + + + fr.insee + knio1w9d-RDOP-l8bc28f0 + 1 + OutParameter + + + fr.insee + knio1w9d-QOP-l8bc28f0 + 1 + OutParameter + + + + + fr.insee + knio1w9d-RDOP-l8bccet1 + 1 + OutParameter + + + fr.insee + knio1w9d-QOP-l8bccet1 + 1 + OutParameter + + + + + fr.insee + knio1w9d-RDOP-l8bbz1zl + 1 + OutParameter + + + fr.insee + knio1w9d-QOP-l8bbz1zl + 1 + OutParameter + + + + + Votre logement présente-t-il les défauts suivants ? + + + + + + fr.insee + knioh1gp + 1 + CodeList + + + + + + + radio-button + + fr.insee + joidufam + 1 + CodeList + + + fr.insee + knio1w9d-RDOP-l8bbx7nd + 1 + + + fr.insee + joidufam + 1 + CodeList + + + + + + + + + + + + + + radio-button + + fr.insee + joidufam + 1 + CodeList + + + fr.insee + knio1w9d-RDOP-l8bc28f0 + 1 + + + fr.insee + joidufam + 1 + CodeList + + + + + + + + + + + + + + radio-button + + fr.insee + joidufam + 1 + CodeList + + + fr.insee + knio1w9d-RDOP-l8bccet1 + 1 + + + fr.insee + joidufam + 1 + CodeList + + + + + + + + + + + + + + radio-button + + fr.insee + joidufam + 1 + CodeList + + + fr.insee + knio1w9d-RDOP-l8bbz1zl + 1 + + + fr.insee + joidufam + 1 + CodeList + + + + + + + + + + + + + + + fr.insee + l7j1k2un + 1 + + OLAR1DIF + + + fr.insee + l7j1k2un-QOP-l7j1nesf + 1 + + OLAR1DIF1 + + + + fr.insee + l7j1k2un-QOP-l7j1n6nb + 1 + + OLAR1DIF2 + + + + + fr.insee + l7j1k2un-RDOP-l7j1nesf + 1 + OutParameter + + + fr.insee + l7j1k2un-QOP-l7j1nesf + 1 + OutParameter + + + + + fr.insee + l7j1k2un-RDOP-l7j1n6nb + 1 + OutParameter + + + fr.insee + l7j1k2un-QOP-l7j1n6nb + 1 + OutParameter + + + + + Du fait d’un handicap, d’un problème de santé ou d’une avancée en âge, les occupants du logement ont-ils des difficultés + + + + + + fr.insee + l7j1ikot + 1 + CodeList + + + + + + + radio-button + + fr.insee + ko8uzwua + 1 + CodeList + + + fr.insee + l7j1k2un-RDOP-l7j1nesf + 1 + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + + + + + + + + + radio-button + + fr.insee + ko8uzwua + 1 + CodeList + + + fr.insee + l7j1k2un-RDOP-l7j1n6nb + 1 + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + + + + + + + + + + fr.insee + l7j1y65o + 1 + + OLAR1DIFCO + + + fr.insee + l7j1y65o-QOP-l7j1x8s4 + 1 + + OLAR1DIFCO1 + + + + fr.insee + l7j1y65o-QOP-l7j1mfn2 + 1 + + OLAR1DIFCO2 + + + + fr.insee + l7j1y65o-QOP-l7j1stx0 + 1 + + OLAR1DIFCO3 + + + + + fr.insee + l7j1y65o-RDOP-l7j1x8s4 + 1 + OutParameter + + + fr.insee + l7j1y65o-QOP-l7j1x8s4 + 1 + OutParameter + + + + + fr.insee + l7j1y65o-RDOP-l7j1mfn2 + 1 + OutParameter + + + fr.insee + l7j1y65o-QOP-l7j1mfn2 + 1 + OutParameter + + + + + fr.insee + l7j1y65o-RDOP-l7j1stx0 + 1 + OutParameter + + + fr.insee + l7j1y65o-QOP-l7j1stx0 + 1 + OutParameter + + + + + Du fait d’un handicap, d’un problème de santé ou d’une avancée en âge, les occupants du logement ont-ils des difficultés + + + + + + fr.insee + l7j1t7dy + 1 + CodeList + + + + + + + radio-button + + fr.insee + ko8uzwua + 1 + CodeList + + + fr.insee + l7j1y65o-RDOP-l7j1x8s4 + 1 + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + + + + + + + + + radio-button + + fr.insee + ko8uzwua + 1 + CodeList + + + fr.insee + l7j1y65o-RDOP-l7j1mfn2 + 1 + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + + + + + + + + + radio-button + + fr.insee + ko8uzwua + 1 + CodeList + + + fr.insee + l7j1y65o-RDOP-l7j1stx0 + 1 + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + + + + + + + + + + fr.insee + kninrf3p + 1 + + OLAR2 + + + fr.insee + kninrf3p-QOP-ko3x6kz1 + 1 + + OLAR21 + + + + fr.insee + kninrf3p-QOP-ko3wyuod + 1 + + OLAR22 + + + + fr.insee + kninrf3p-QOP-ko3xdviu + 1 + + OLAR23 + + + + fr.insee + kninrf3p-QOP-ko3xbz9m + 1 + + OLAR24 + + + + fr.insee + kninrf3p-QOP-ko3x1rx5 + 1 + + OLAR25 + + + + + fr.insee + kninrf3p-RDOP-ko3x6kz1 + 1 + OutParameter + + + fr.insee + kninrf3p-QOP-ko3x6kz1 + 1 + OutParameter + + + + + fr.insee + kninrf3p-RDOP-ko3wyuod + 1 + OutParameter + + + fr.insee + kninrf3p-QOP-ko3wyuod + 1 + OutParameter + + + + + fr.insee + kninrf3p-RDOP-ko3xdviu + 1 + OutParameter + + + fr.insee + kninrf3p-QOP-ko3xdviu + 1 + OutParameter + + + + + fr.insee + kninrf3p-RDOP-ko3xbz9m + 1 + OutParameter + + + fr.insee + kninrf3p-QOP-ko3xbz9m + 1 + OutParameter + + + + + fr.insee + kninrf3p-RDOP-ko3x1rx5 + 1 + OutParameter + + + fr.insee + kninrf3p-QOP-ko3x1rx5 + 1 + OutParameter + + + + + Votre logement présente-t-il les autres défauts suivants ? + + + + + + fr.insee + joicw344 + 1 + CodeList + + + + + + + radio-button + + fr.insee + joidufam + 1 + CodeList + + + fr.insee + kninrf3p-RDOP-ko3x6kz1 + 1 + + + fr.insee + joidufam + 1 + CodeList + + + + + + + + + + + + + + radio-button + + fr.insee + joidufam + 1 + CodeList + + + fr.insee + kninrf3p-RDOP-ko3wyuod + 1 + + + fr.insee + joidufam + 1 + CodeList + + + + + + + + + + + + + + radio-button + + fr.insee + joidufam + 1 + CodeList + + + fr.insee + kninrf3p-RDOP-ko3xdviu + 1 + + + fr.insee + joidufam + 1 + CodeList + + + + + + + + + + + + + + radio-button + + fr.insee + joidufam + 1 + CodeList + + + fr.insee + kninrf3p-RDOP-ko3xbz9m + 1 + + + fr.insee + joidufam + 1 + CodeList + + + + + + + + + + + + + + radio-button + + fr.insee + joidufam + 1 + CodeList + + + fr.insee + kninrf3p-RDOP-ko3x1rx5 + 1 + + + fr.insee + joidufam + 1 + CodeList + + + + + + + + + + + + + + + fr.insee + knioggcs + 1 + + OLAR3 + + + fr.insee + knioggcs-QOP-l7kmxkga + 1 + + OLAR31 + + + + fr.insee + knioggcs-QOP-l7kmxnbz + 1 + + OLAR32 + + + + fr.insee + knioggcs-QOP-l7knhcad + 1 + + OLAR33 + + + + fr.insee + knioggcs-QOP-l7kn7vvm + 1 + + OLAR34 + + + + fr.insee + knioggcs-QOP-l7knchw6 + 1 + + OLAR35 + + + + + fr.insee + knioggcs-RDOP-l7kmxkga + 1 + OutParameter + + + fr.insee + knioggcs-QOP-l7kmxkga + 1 + OutParameter + + + + + fr.insee + knioggcs-RDOP-l7kmxnbz + 1 + OutParameter + + + fr.insee + knioggcs-QOP-l7kmxnbz + 1 + OutParameter + + + + + fr.insee + knioggcs-RDOP-l7knhcad + 1 + OutParameter + + + fr.insee + knioggcs-QOP-l7knhcad + 1 + OutParameter + + + + + fr.insee + knioggcs-RDOP-l7kn7vvm + 1 + OutParameter + + + fr.insee + knioggcs-QOP-l7kn7vvm + 1 + OutParameter + + + + + fr.insee + knioggcs-RDOP-l7knchw6 + 1 + OutParameter + + + fr.insee + knioggcs-QOP-l7knchw6 + 1 + OutParameter + + + + + L'environnement de votre logement présente-t-il les défauts suivants ? + + + + + + fr.insee + knioesnw + 1 + CodeList + + + + + + + radio-button + + fr.insee + joidufam + 1 + CodeList + + + fr.insee + knioggcs-RDOP-l7kmxkga + 1 + + + fr.insee + joidufam + 1 + CodeList + + + + + + + + + + + + + + radio-button + + fr.insee + joidufam + 1 + CodeList + + + fr.insee + knioggcs-RDOP-l7kmxnbz + 1 + + + fr.insee + joidufam + 1 + CodeList + + + + + + + + + + + + + + radio-button + + fr.insee + joidufam + 1 + CodeList + + + fr.insee + knioggcs-RDOP-l7knhcad + 1 + + + fr.insee + joidufam + 1 + CodeList + + + + + + + + + + + + + + radio-button + + fr.insee + joidufam + 1 + CodeList + + + fr.insee + knioggcs-RDOP-l7kn7vvm + 1 + + + fr.insee + joidufam + 1 + CodeList + + + + + + + + + + + + + + radio-button + + fr.insee + joidufam + 1 + CodeList + + + fr.insee + knioggcs-RDOP-l7knchw6 + 1 + + + fr.insee + joidufam + 1 + CodeList + + + + + + + + + + + + + + + fr.insee + joinz4wo + 1 + + SDL1 + + + fr.insee + joinz4wo-QOP-ljvxgvru + 1 + + SDL11 + + + + fr.insee + joinz4wo-QOP-ljvxk44t + 1 + + SDL12 + + + + fr.insee + joinz4wo-QOP-ljvxgmyh + 1 + + SDL13 + + + + fr.insee + joinz4wo-QOP-ljvxbn8w + 1 + + SDL14 + + + + fr.insee + joinz4wo-QOP-ljvxplyt + 1 + + SDL15 + + + + fr.insee + joinz4wo-QOP-ljvxncns + 1 + + SDL16 + + + + fr.insee + joinz4wo-QOP-ljvxcc4t + 1 + + SDL17 + + + + fr.insee + joinz4wo-QOP-ljvxobb5 + 1 + + SDL18 + + + + + fr.insee + joinz4wo-RDOP-ljvxgvru + 1 + OutParameter + + + fr.insee + joinz4wo-QOP-ljvxgvru + 1 + OutParameter + + + + + fr.insee + joinz4wo-RDOP-ljvxk44t + 1 + OutParameter + + + fr.insee + joinz4wo-QOP-ljvxk44t + 1 + OutParameter + + + + + fr.insee + joinz4wo-RDOP-ljvxgmyh + 1 + OutParameter + + + fr.insee + joinz4wo-QOP-ljvxgmyh + 1 + OutParameter + + + + + fr.insee + joinz4wo-RDOP-ljvxbn8w + 1 + OutParameter + + + fr.insee + joinz4wo-QOP-ljvxbn8w + 1 + OutParameter + + + + + fr.insee + joinz4wo-RDOP-ljvxplyt + 1 + OutParameter + + + fr.insee + joinz4wo-QOP-ljvxplyt + 1 + OutParameter + + + + + fr.insee + joinz4wo-RDOP-ljvxncns + 1 + OutParameter + + + fr.insee + joinz4wo-QOP-ljvxncns + 1 + OutParameter + + + + + fr.insee + joinz4wo-RDOP-ljvxcc4t + 1 + OutParameter + + + fr.insee + joinz4wo-QOP-ljvxcc4t + 1 + OutParameter + + + + + fr.insee + joinz4wo-RDOP-ljvxobb5 + 1 + OutParameter + + + fr.insee + joinz4wo-QOP-ljvxobb5 + 1 + OutParameter + + + + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Avez-vous connu les situations suivantes, que vous n'avez pas choisies ?" else ¤kq7uo7yd-GOP¤ || " a-t-" || ¤kmx8i16l-GOP¤ || " connu une ou plusieurs des situations suivantes, qu'"|| ¤kmx8i16l-GOP¤ || " n'avait pas choisies ?" + + + + + + fr.insee + joinxitz + 1 + CodeList + + + + + + + + fr.insee + joinz4wo-RDOP-ljvxgvru + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + joinz4wo-RDOP-ljvxk44t + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + joinz4wo-RDOP-ljvxgmyh + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + joinz4wo-RDOP-ljvxbn8w + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + joinz4wo-RDOP-ljvxplyt + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + joinz4wo-RDOP-ljvxncns + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + joinz4wo-RDOP-ljvxcc4t + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + joinz4wo-RDOP-ljvxobb5 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + jsx8ktt3 + 1 + Instruction + + + fr.insee + ksj7s0h1 + 1 + Instruction + + + fr.insee + ksj79ywf + 1 + Instruction + + + + fr.insee + joo1h434 + 1 + + VMODM + + + fr.insee + joo1h434-QOP-kx6fakgl + 1 + + VMODM1 + + + + fr.insee + joo1h434-QOP-kx6f2koy + 1 + + VMODM2 + + + + fr.insee + joo1h434-QOP-kx6f0lvo + 1 + + VMODM3 + + + + fr.insee + joo1h434-QOP-kx6eypbj + 1 + + VMODM4 + + + + fr.insee + joo1h434-QOP-kx6ey11w + 1 + + VMODM5 + + + + fr.insee + joo1h434-QOP-kx6f2xy1 + 1 + + VMODM6 + + + + fr.insee + joo1h434-QOP-kx6fe1ev + 1 + + VMODM7 + + + + + fr.insee + joo1h434-RDOP-kx6fakgl + 1 + OutParameter + + + fr.insee + joo1h434-QOP-kx6fakgl + 1 + OutParameter + + + + + fr.insee + joo1h434-RDOP-kx6f2koy + 1 + OutParameter + + + fr.insee + joo1h434-QOP-kx6f2koy + 1 + OutParameter + + + + + fr.insee + joo1h434-RDOP-kx6f0lvo + 1 + OutParameter + + + fr.insee + joo1h434-QOP-kx6f0lvo + 1 + OutParameter + + + + + fr.insee + joo1h434-RDOP-kx6eypbj + 1 + OutParameter + + + fr.insee + joo1h434-QOP-kx6eypbj + 1 + OutParameter + + + + + fr.insee + joo1h434-RDOP-kx6ey11w + 1 + OutParameter + + + fr.insee + joo1h434-QOP-kx6ey11w + 1 + OutParameter + + + + + fr.insee + joo1h434-RDOP-kx6f2xy1 + 1 + OutParameter + + + fr.insee + joo1h434-QOP-kx6f2xy1 + 1 + OutParameter + + + + + fr.insee + joo1h434-RDOP-kx6fe1ev + 1 + OutParameter + + + fr.insee + joo1h434-QOP-kx6fe1ev + 1 + OutParameter + + + + + "Par rapport au 1er " || ¤ko9vg9v8-GOP¤ || " " || cast(¤kocm65ii-GOP¤,string) || ", comment la composition de votre ménage a-t-elle évolué ?" + + + + + + fr.insee + joo1g3aq + 1 + CodeList + + + + + + + + fr.insee + joo1h434-RDOP-kx6fakgl + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + joo1h434-RDOP-kx6f2koy + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + joo1h434-RDOP-kx6f0lvo + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + joo1h434-RDOP-kx6eypbj + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + joo1h434-RDOP-kx6ey11w + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + joo1h434-RDOP-kx6f2xy1 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + joo1h434-RDOP-kx6fe1ev + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + jopta1p5 + 1 + Instruction + + + + fr.insee + joo22fbd + 1 + + VMODP1 + + + fr.insee + joo22fbd-QOP-lex5m47r + 1 + + VMODP11 + + + + fr.insee + joo22fbd-QOP-lex5fzlx + 1 + + VMODP12 + + + + fr.insee + joo22fbd-QOP-lex5ok5v + 1 + + VMODP13 + + + + fr.insee + joo22fbd-QOP-lex5grsp + 1 + + VMODP14 + + + + + fr.insee + joo22fbd-RDOP-lex5m47r + 1 + OutParameter + + + fr.insee + joo22fbd-QOP-lex5m47r + 1 + OutParameter + + + + + fr.insee + joo22fbd-RDOP-lex5fzlx + 1 + OutParameter + + + fr.insee + joo22fbd-QOP-lex5fzlx + 1 + OutParameter + + + + + fr.insee + joo22fbd-RDOP-lex5ok5v + 1 + OutParameter + + + fr.insee + joo22fbd-QOP-lex5ok5v + 1 + OutParameter + + + + + fr.insee + joo22fbd-RDOP-lex5grsp + 1 + OutParameter + + + fr.insee + joo22fbd-QOP-lex5grsp + 1 + OutParameter + + + + + "Depuis le 1er " || ¤ko9vg9v8-GOP¤ || " " || cast(¤kocm65ii-GOP¤,string) || ", est-ce qu’un ou plusieurs membres de votre ménage, y-compris vous-même, a été confronté à un des changements de situation suivants relatifs à l’emploi ?" + + + + + + fr.insee + joo1pxqg + 1 + CodeList + + + + + + + + fr.insee + joo22fbd-RDOP-lex5m47r + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + joo22fbd-RDOP-lex5fzlx + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + joo22fbd-RDOP-lex5ok5v + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + joo22fbd-RDOP-lex5grsp + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + joptatl0 + 1 + Instruction + + + + fr.insee + koe0u2zg + 1 + + VMODP2 + + + fr.insee + koe0u2zg-QOP-koe0ya2t + 1 + + VMODP21 + + + + fr.insee + koe0u2zg-QOP-koe12q3u + 1 + + VMODP22 + + + + fr.insee + koe0u2zg-QOP-koe0vlva + 1 + + VMODP23 + + + + + fr.insee + koe0u2zg-RDOP-koe0ya2t + 1 + OutParameter + + + fr.insee + koe0u2zg-QOP-koe0ya2t + 1 + OutParameter + + + + + fr.insee + koe0u2zg-RDOP-koe12q3u + 1 + OutParameter + + + fr.insee + koe0u2zg-QOP-koe12q3u + 1 + OutParameter + + + + + fr.insee + koe0u2zg-RDOP-koe0vlva + 1 + OutParameter + + + fr.insee + koe0u2zg-QOP-koe0vlva + 1 + OutParameter + + + + + "Depuis le 1er " || ¤ko9vg9v8-GOP¤ || " " || cast(¤kocm65ii-GOP¤,string) || ", est-ce qu’un ou plusieurs membres de votre ménage, y-compris vous-même, a connu un des changements professionnels suivants ?" + + + + + + fr.insee + koe0mn5d + 1 + CodeList + + + + + + + + fr.insee + koe0u2zg-RDOP-koe0ya2t + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + koe0u2zg-RDOP-koe12q3u + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + koe0u2zg-RDOP-koe0vlva + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kovj0a8h + 1 + + VRAIS2 + + + fr.insee + kovj0a8h-QOP-lgqs0z70 + 1 + + VRAIS21 + + + + fr.insee + kovj0a8h-QOP-lgqs316l + 1 + + VRAIS22 + + + + fr.insee + kovj0a8h-QOP-lgqscpq0 + 1 + + VRAIS23 + + + + fr.insee + kovj0a8h-QOP-lgqs6idu + 1 + + VRAIS24 + + + + fr.insee + kovj0a8h-QOP-lgqrxc96 + 1 + + VRAIS25 + + + + fr.insee + kovj0a8h-QOP-lgqs60bf + 1 + + VRAIS26 + + + + fr.insee + kovj0a8h-QOP-lgqs27ee + 1 + + VRAIS27 + + + + + fr.insee + kovj0a8h-RDOP-lgqs0z70 + 1 + OutParameter + + + fr.insee + kovj0a8h-QOP-lgqs0z70 + 1 + OutParameter + + + + + fr.insee + kovj0a8h-RDOP-lgqs316l + 1 + OutParameter + + + fr.insee + kovj0a8h-QOP-lgqs316l + 1 + OutParameter + + + + + fr.insee + kovj0a8h-RDOP-lgqscpq0 + 1 + OutParameter + + + fr.insee + kovj0a8h-QOP-lgqscpq0 + 1 + OutParameter + + + + + fr.insee + kovj0a8h-RDOP-lgqs6idu + 1 + OutParameter + + + fr.insee + kovj0a8h-QOP-lgqs6idu + 1 + OutParameter + + + + + fr.insee + kovj0a8h-RDOP-lgqrxc96 + 1 + OutParameter + + + fr.insee + kovj0a8h-QOP-lgqrxc96 + 1 + OutParameter + + + + + fr.insee + kovj0a8h-RDOP-lgqs60bf + 1 + OutParameter + + + fr.insee + kovj0a8h-QOP-lgqs60bf + 1 + OutParameter + + + + + fr.insee + kovj0a8h-RDOP-lgqs27ee + 1 + OutParameter + + + fr.insee + kovj0a8h-QOP-lgqs27ee + 1 + OutParameter + + + + + Avez-vous déménagé du fait de l'évolution de votre situation personnelle ? + + + + + + fr.insee + koviy969 + 1 + CodeList + + + + + + + + fr.insee + kovj0a8h-RDOP-lgqs0z70 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kovj0a8h-RDOP-lgqs316l + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kovj0a8h-RDOP-lgqscpq0 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kovj0a8h-RDOP-lgqs6idu + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kovj0a8h-RDOP-lgqrxc96 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kovj0a8h-RDOP-lgqs60bf + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kovj0a8h-RDOP-lgqs27ee + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + kovj894p + 1 + Instruction + + + + fr.insee + kovirkvq + 1 + + VRAIS3 + + + fr.insee + kovirkvq-QOP-kovj6smk + 1 + + VRAIS31 + + + + fr.insee + kovirkvq-QOP-kovj16ho + 1 + + VRAIS32 + + + + fr.insee + kovirkvq-QOP-koviym9y + 1 + + VRAIS33 + + + + fr.insee + kovirkvq-QOP-kovjetbt + 1 + + VRAIS34 + + + + fr.insee + kovirkvq-QOP-kovj1rc6 + 1 + + VRAIS35 + + + + fr.insee + kovirkvq-QOP-kovj8oex + 1 + + VRAIS36 + + + + + fr.insee + kovirkvq-RDOP-kovj6smk + 1 + OutParameter + + + fr.insee + kovirkvq-QOP-kovj6smk + 1 + OutParameter + + + + + fr.insee + kovirkvq-RDOP-kovj16ho + 1 + OutParameter + + + fr.insee + kovirkvq-QOP-kovj16ho + 1 + OutParameter + + + + + fr.insee + kovirkvq-RDOP-koviym9y + 1 + OutParameter + + + fr.insee + kovirkvq-QOP-koviym9y + 1 + OutParameter + + + + + fr.insee + kovirkvq-RDOP-kovjetbt + 1 + OutParameter + + + fr.insee + kovirkvq-QOP-kovjetbt + 1 + OutParameter + + + + + fr.insee + kovirkvq-RDOP-kovj1rc6 + 1 + OutParameter + + + fr.insee + kovirkvq-QOP-kovj1rc6 + 1 + OutParameter + + + + + fr.insee + kovirkvq-RDOP-kovj8oex + 1 + OutParameter + + + fr.insee + kovirkvq-QOP-kovj8oex + 1 + OutParameter + + + + + Avez-vous déménagé pour changer vos conditions de logement ? + + + + + + fr.insee + kovj3f3o + 1 + CodeList + + + + + + + + fr.insee + kovirkvq-RDOP-kovj6smk + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kovirkvq-RDOP-kovj16ho + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kovirkvq-RDOP-koviym9y + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kovirkvq-RDOP-kovjetbt + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kovirkvq-RDOP-kovj1rc6 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kovirkvq-RDOP-kovj8oex + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + kovj7ehq + 1 + Instruction + + + + fr.insee + kovj5q33 + 1 + + VRAIS4 + + + fr.insee + kovj5q33-QOP-kovj5e5b + 1 + + VRAIS41 + + + + fr.insee + kovj5q33-QOP-kovj1u7h + 1 + + VRAIS42 + + + + fr.insee + kovj5q33-QOP-kovj9p1r + 1 + + VRAIS43 + + + + fr.insee + kovj5q33-QOP-kovj8tl5 + 1 + + VRAIS44 + + + + fr.insee + kovj5q33-QOP-kovj34ma + 1 + + VRAIS45 + + + + + fr.insee + kovj5q33-RDOP-kovj5e5b + 1 + OutParameter + + + fr.insee + kovj5q33-QOP-kovj5e5b + 1 + OutParameter + + + + + fr.insee + kovj5q33-RDOP-kovj1u7h + 1 + OutParameter + + + fr.insee + kovj5q33-QOP-kovj1u7h + 1 + OutParameter + + + + + fr.insee + kovj5q33-RDOP-kovj9p1r + 1 + OutParameter + + + fr.insee + kovj5q33-QOP-kovj9p1r + 1 + OutParameter + + + + + fr.insee + kovj5q33-RDOP-kovj8tl5 + 1 + OutParameter + + + fr.insee + kovj5q33-QOP-kovj8tl5 + 1 + OutParameter + + + + + fr.insee + kovj5q33-RDOP-kovj34ma + 1 + OutParameter + + + fr.insee + kovj5q33-QOP-kovj34ma + 1 + OutParameter + + + + + Avez-vous déménagé pour effectuer un rapprochement ? + + + + + + fr.insee + koviyjcm + 1 + CodeList + + + + + + + + fr.insee + kovj5q33-RDOP-kovj5e5b + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kovj5q33-RDOP-kovj1u7h + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kovj5q33-RDOP-kovj9p1r + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kovj5q33-RDOP-kovj8tl5 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kovj5q33-RDOP-kovj34ma + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + kovjfgo3 + 1 + Instruction + + + + + fr.insee + CategoryScheme-kb9ht98f + 1 + + L_CADR + + + fr.insee + CA-kb9ht98f-1 + 1 + + Oui, j'habite toujours à cette adresse et l'adresse est correcte et complète + + + + fr.insee + CA-kb9ht98f-2 + 1 + + Oui, j'habite toujours à cette adresse, mais l'adresse est incorrecte ou incomplète + + + + fr.insee + CA-kb9ht98f-3 + 1 + + Non, j'ai déménagé et habite à une autre adresse + + + + fr.insee + CA-kb9ht98f-4 + 1 + + Non, je n’ai jamais habité à cette adresse + + + + + fr.insee + CategoryScheme-ko8uzwua + 1 + + OUINON + + + fr.insee + CA-ko8uzwua-1 + 1 + + Oui + + + + fr.insee + CA-ko8uzwua-2 + 1 + + Non + + + + + fr.insee + CategoryScheme-kmolikl4 + 1 + + L_SEXE + + + fr.insee + CA-kmolikl4-1 + 1 + + Masculin + + + + fr.insee + CA-kmolikl4-2 + 1 + + Féminin + + + + + fr.insee + CategoryScheme-kmx6szo6 + 1 + + L_TRAGE + + + fr.insee + CA-kmx6szo6-1 + 1 + + Moins de 15 ans + + + + fr.insee + CA-kmx6szo6-2 + 1 + + De 15 à 18 ans + + + + fr.insee + CA-kmx6szo6-3 + 1 + + De 18 à 25 ans + + + + fr.insee + CA-kmx6szo6-4 + 1 + + Plus de 25 ans + + + + + fr.insee + CategoryScheme-kmomiwx3 + 1 + + L_LNAIS + + + fr.insee + CA-kmomiwx3-1 + 1 + + En France (y compris outre-mer) + + + + fr.insee + CA-kmomiwx3-2 + 1 + + À l'étranger + + + + + fr.insee + CategoryScheme-kmos765d + 1 + + L_NATIO1N + + + fr.insee + CA-kmos765d-1 + 1 + + Française de naissance ou par réintégration + + + + fr.insee + CA-kmos765d-2 + 1 + + "Française par déclaration, naturalisation, option à " || if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "votre majorité" else "sa majorité" + + + + fr.insee + CA-kmos765d-3 + 1 + + Étrangère + + + + fr.insee + CA-kmos765d-4 + 1 + + Apatride (pas de nationalité) + + + + + fr.insee + CategoryScheme-kmw56gjz + 1 + + L_LIEN + + + fr.insee + CA-kmw56gjz-1 + 1 + + "Votre conjoint"||¤kmook912-GOP¤ + + + + fr.insee + CA-kmw56gjz-2 + 1 + + ¤kmw4vrul-GOP¤ + + + + fr.insee + CA-kmw56gjz-3 + 1 + + ¤kmw5a7qq-GOP¤ + + + + fr.insee + CA-kmw56gjz-4 + 1 + + if (nvl(¤kmoo2fiy-QOP-kmoon375¤,"")="") then "Votre frère, votre sœur, votre demi-frère, votre demi-soeur" else (if (¤kmoo2fiy-QOP-kmoon375¤ = "2") then "Votre soeur, votre demi-soeur" else (if (¤kmoo2fiy-QOP-kmoon375¤ = "1") then "Votre frère, votre demi-frère " else "Votre frère, votre sœur, votre demi-frère, votre demi-sœur")) + + + + fr.insee + CA-kmw56gjz-5 + 1 + + ¤kmw4w899-GOP¤ + + + + fr.insee + CA-kmw56gjz-6 + 1 + + ¤kmw527m3-GOP¤ + + + + fr.insee + CA-kmw56gjz-7 + 1 + + Un autre membre de votre famille + + + + fr.insee + CA-kmw56gjz-8 + 1 + + "Une autre personne (ami"||¤kmook912-GOP¤||", colocataire...)" + + + + + fr.insee + CategoryScheme-kod1mvxo + 1 + + L_COUPLE + + + fr.insee + CA-kod1mvxo-1 + 1 + + Oui, avec une personne qui vit dans le logement + + + + fr.insee + CA-kod1mvxo-2 + 1 + + Oui, avec une personne qui ne vit pas dans le logement + + + + fr.insee + CA-kod1mvxo-3 + 1 + + Non + + + + + fr.insee + CategoryScheme-kmw5u1pk + 1 + + L_SITUMATRIAUT + + + fr.insee + CA-kmw5u1pk-1 + 1 + + "Marié"||¤kmook912-GOP¤ + + + + fr.insee + CA-kmw5u1pk-2 + 1 + + "Pacsé"||¤kmook912-GOP¤ + + + + fr.insee + CA-kmw5u1pk-3 + 1 + + En concubinage ou union libre + + + + fr.insee + CA-kmw5u1pk-4 + 1 + + ¤kmw5hke3-GOP¤ + + + + fr.insee + CA-kmw5u1pk-5 + 1 + + "Divorcé"||¤kmook912-GOP¤||", dépacsé"||¤kmook912-GOP¤||", rupture d'union libre" + + + + fr.insee + CA-kmw5u1pk-6 + 1 + + Célibataire + + + + + fr.insee + CategoryScheme-kn8zodpk + 1 + + L_UNLOG + + + fr.insee + CA-kn8zodpk-1 + 1 + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Vous vivez uniquement dans ce logement" else ¤kq7uo7yd-GOP¤ || " vit uniquement dans ce logement" + + + + fr.insee + CA-kn8zodpk-2 + 1 + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Vous vivez aussi dans un autre logement" else ¤kq7uo7yd-GOP¤ || " vit aussi dans un autre logement" + + + + + fr.insee + CategoryScheme-kmukmzpq + 1 + + L_DURLOG + + + fr.insee + CA-kmukmzpq-1 + 1 + + Plus de la moitié du temps + + + + fr.insee + CA-kmukmzpq-2 + 1 + + La moitié du temps + + + + fr.insee + CA-kmukmzpq-3 + 1 + + Moins de la moitié du temps + + + + + fr.insee + CategoryScheme-kmx96qdc + 1 + + L_LOGENQ + + + fr.insee + CA-kmx96qdc-1 + 1 + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Votre résidence principale" else "Sa résidence principale" + + + + fr.insee + CA-kmx96qdc-2 + 1 + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Le logement de vos parents ou de l’un d'entre eux" else "Le logement de ses parents ou de l’un d'entre eux" + + + + fr.insee + CA-kmx96qdc-3 + 1 + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Un logement occupé pour vos études" else "Un logement occupé pour ses études" + + + + fr.insee + CA-kmx96qdc-4 + 1 + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Un logement occupé pour votre travail ou une formation professionnelle" else "Un logement occupé pour son travail ou une formation professionnelle" + + + + fr.insee + CA-kmx96qdc-5 + 1 + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Une résidence secondaire, un logement occupé pour vos vacances ou vos loisirs" else "Une résidence secondaire, un logement occupé pour ses vacances ou ses loisirs" + + + + fr.insee + CA-kmx96qdc-6 + 1 + + Un logement occupé pour une autre raison + + + + + fr.insee + CategoryScheme-kmx9jj4a + 1 + + L_LOGAUT + + + fr.insee + CA-kmx9jj4a-1 + 1 + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Votre résidence principale" else "Sa résidence principale" + + + + fr.insee + CA-kmx9jj4a-2 + 1 + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Le logement de vos parents ou de l'un d'entre eux" else "Le logement de ses parents ou de l'un d'entre eux" + + + + fr.insee + CA-kmx9jj4a-3 + 1 + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Un logement occupé pour vos études" else "Un logement occupé pour ses études" + + + + fr.insee + CA-kmx9jj4a-4 + 1 + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Un logement occupé pour votre travail ou une formation professionnelle" else "Un logement occupé pour son travail ou une formation professionnelle" + + + + fr.insee + CA-kmx9jj4a-5 + 1 + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Une résidence secondaire, un logement occupé pour vos vacances ou loisirs" else "Une résidence secondaire, un logement occupé pour ses vacances ou loisirs" + + + + fr.insee + CA-kmx9jj4a-6 + 1 + + Un logement occupé pour une autre raison + + + + + fr.insee + CategoryScheme-k1qjtfk1 + 1 + + L_OUINON + + + fr.insee + CA-k1qjtfk1-1 + 1 + + Oui + + + + fr.insee + CA-k1qjtfk1-2 + 1 + + Non + + + + + fr.insee + CategoryScheme-kna1qses + 1 + + L_DORM + + + fr.insee + CA-kna1qses-1 + 1 + + "Dans ce logement situé à l'adresse : " || ¤kcolhi30-GOP¤ + + + + fr.insee + CA-kna1qses-2 + 1 + + "Dans le logement de " || (if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "votre" else "son") || " autre parent" + + + + + fr.insee + CategoryScheme-kmx7yjsk + 1 + + L_TYPLOGCO + + + fr.insee + CA-kmx7yjsk-1 + 1 + + Un internat, une résidence étudiante ou un foyer d’étudiants + + + + fr.insee + CA-kmx7yjsk-2 + 1 + + Un établissement pour personnes âgées (maison de retraite, Ehpad) + + + + fr.insee + CA-kmx7yjsk-3 + 1 + + Un foyer ou une résidence sociale (CADA, structures gérées par Adoma…), foyer de réinsertion ou foyer de travailleurs + + + + fr.insee + CA-kmx7yjsk-4 + 1 + + Une structure d’aide sociale à l’enfance ou de protection judiciaire + + + + fr.insee + CA-kmx7yjsk-5 + 1 + + Une structure pour personne nécessitant des soins médicaux (hôpital, maison de repos, centre de rééducation) + + + + fr.insee + CA-kmx7yjsk-6 + 1 + + Une caserne, un camp militaire + + + + fr.insee + CA-kmx7yjsk-7 + 1 + + Une autre structure (prison, communauté religieuse, hébergement d’urgence...) + + + + + fr.insee + CategoryScheme-kmxfw3sx + 1 + + L_SITUA + + + fr.insee + CA-kmxfw3sx-1 + 1 + + En emploi + + + + fr.insee + CA-kmxfw3sx-2 + 1 + + "Au chômage (inscrit"|| ¤kmook912-GOP¤ ||" ou non à Pôle emploi)" + + + + fr.insee + CA-kmxfw3sx-3 + 1 + + "Retraité"||¤kmook912-GOP¤||", préretraité"||¤kmook912-GOP¤ + + + + fr.insee + CA-kmxfw3sx-4 + 1 + + En incapacité de travailler en raison d'un handicap ou d'un problème de santé durable + + + + fr.insee + CA-kmxfw3sx-5 + 1 + + En études + + + + fr.insee + CA-kmxfw3sx-6 + 1 + + if (isnull(¤kmoo2fiy-QOP-kmoon375¤)) then "Femme ou homme au foyer" else (if (¤kmoo2fiy-QOP-kmoon375¤ = "2") then "Femme au foyer" else "Homme au foyer") + + + + fr.insee + CA-kmxfw3sx-7 + 1 + + Dans une autre situation + + + + + fr.insee + CategoryScheme-kmxf03ss + 1 + + L_NIVDIP + + + fr.insee + CA-kmxf03ss-1 + 1 + + Aucun diplôme + + + + fr.insee + CA-kmxf03ss-2 + 1 + + CEP (certificat d'études primaires) + + + + fr.insee + CA-kmxf03ss-3 + 1 + + BEPC, brevet élémentaire, brevet des collèges, DNB + + + + fr.insee + CA-kmxf03ss-4 + 1 + + CAP, BEP ou diplôme de niveau équivalent + + + + fr.insee + CA-kmxf03ss-5 + 1 + + Baccalauréat (général, technologique ou professionnel), brevet supérieur, brevet professionnel, de technicien ou d’enseignement ou diplôme équivalent + + + + fr.insee + CA-kmxf03ss-6 + 1 + + Capacité en droit, DAEU, ESEU + + + + fr.insee + CA-kmxf03ss-7 + 1 + + BTS, DUT, Deug, Deust, diplôme de la santé ou du social de niveau bac+2 ou diplôme équivalent + + + + fr.insee + CA-kmxf03ss-8 + 1 + + Diplôme de niveau supérieur à bac+2 (licence, licence pro, maîtrise, master, DESS, DEA, doctorat, diplôme d’une grande école) + + + + + fr.insee + CategoryScheme-kqi895gg + 1 + + L_GRDIPB + + + fr.insee + CA-kqi895gg-1 + 1 + + N’a jamais été à l’école ou l’a quittée avant la fin du primaire + + + + fr.insee + CA-kqi895gg-2 + 1 + + Scolarité jusqu’à la fin du primaire ou avant la fin du collège + + + + fr.insee + CA-kqi895gg-3 + 1 + + Scolarité jusqu’à la fin du collège ou au-delà + + + + + fr.insee + CategoryScheme-kqi8rie2 + 1 + + L_GRDIPC + + + fr.insee + CA-kqi8rie2-1 + 1 + + Licence, licence pro, maîtrise ou diplôme équivalent de niveau bac+3 ou bac+4 + + + + fr.insee + CA-kqi8rie2-2 + 1 + + Master, DEA, DESS, diplôme de grande école de niveau bac+5, doctorat de santé (médecine, pharmacie, dentaire...) + + + + fr.insee + CA-kqi8rie2-3 + 1 + + Doctorat de recherche (hors doctorat de santé) + + + + + fr.insee + CategoryScheme-kd8q4yja + 1 + + HTLC + + + fr.insee + CA-kd8q4yja-1 + 1 + + Maison + +​ + + + + fr.insee + CA-kd8q4yja-2 + 1 + + Appartement + +​ + + + + fr.insee + CA-kd8q4yja-3 + 1 + + [Logement-foyer](. "Par exemple : résidence services ou résidence autonomie") + +​ + + + + fr.insee + CA-kd8q4yja-4 + 1 + + Chambre d'hôtel + +​ + + + + fr.insee + CA-kd8q4yja-5 + 1 + + Habitation de fortune (construction précaire) + +​ + + + + fr.insee + CA-kd8q4yja-6 + 1 + + Pièce indépendante (ayant sa propre entrée) + +​ + + + + + fr.insee + CategoryScheme-kp4bs9c4 + 1 + + RESAUTO + + + fr.insee + CA-kp4bs9c4-1 + 1 + + [Résidence "autonomie"](. "Établissement médico-social géré par un centre communal d'action sociale (CCAS) ou par une association par exemple") + + + + fr.insee + CA-kp4bs9c4-2 + 1 + + [Résidence "services" ](. "Autres résidences comportant des logements individuels et privatifs et des espaces communs dédiés à la vie collective") + + + + + fr.insee + CategoryScheme-kbgi2ogb + 1 + + L_MAISON + + + fr.insee + CA-kbgi2ogb-1 + 1 + + Isolée (sans mur mitoyen) + + + + fr.insee + CA-kbgi2ogb-2 + 1 + + Jumelée (avec un mur mitoyen) + + + + + fr.insee + CategoryScheme-kbgiawbm + 1 + + L_PERIODECONSTR + + + fr.insee + CA-kbgiawbm-1 + 1 + + Avant 1919 + + + + fr.insee + CA-kbgiawbm-2 + 1 + + De 1919 à 1945 + + + + fr.insee + CA-kbgiawbm-3 + 1 + + De 1946 à 1970 + + + + fr.insee + CA-kbgiawbm-4 + 1 + + De 1971 à 1990 + + + + fr.insee + CA-kbgiawbm-5 + 1 + + De 1991 à 2005 + + + + fr.insee + CA-kbgiawbm-6 + 1 + + "2006 ou après" + + + + + fr.insee + CategoryScheme-jn0cd476 + 1 + + STOC + + + fr.insee + CA-jn0cd476-1 + 1 + + [Propriétaire accédant (remboursement d'emprunt en cours)](. "Ménages ayant encore des charges de remboursement d'emprunt pour l'achat de leur logement. Y compris en SCI ou en indivision.") + + + + fr.insee + CA-jn0cd476-2 + 1 + + [Propriétaire non accédant (ne remboursant plus d'emprunt)](. "Ménages qui ne remboursent plus d'emprunt lié à l'achat de leur logement. Y compris en SCI ou en indivision.") + + + + fr.insee + CA-jn0cd476-3 + 1 + + [Usufruitier, y compris en viager](. "Qui a le droit d'utiliser le logement et d'en percevoir les fruits (loyers), sans la nue-propriété (le droit de vendre ou de donner le logement).") + + + + + fr.insee + CA-jn0cd476-4 + 1 + + [Locataire ou sous-locataire](. "Devant payer un loyer, même si ce loyer est payé par une personne extérieure au ménage.") + + + + fr.insee + CA-jn0cd476-5 + 1 + + [Logé gratuitement, avec un paiement éventuel de charges](. "N'ayant pas à acquitter de loyer. Cela peut-être le cas si le logement a été vendu en viager.") + + + + + fr.insee + CategoryScheme-klut8zly + 1 + + STOC2 + + + fr.insee + CA-klut8zly-1 + 1 + + Oui, propriétaire accédant (remboursement d'emprunt en cours) + + + + fr.insee + CA-klut8zly-2 + 1 + + Oui, propriétaire non accédant (ne remboursant plus d'emprunt) + + + + fr.insee + CA-klut8zly-3 + 1 + + Non + + + + + fr.insee + CategoryScheme-jn0dummd + 1 + + STOCP + + + fr.insee + CA-jn0dummd-1 + 1 + + En pleine propriété : votre ménage se partage la totalité de la propriété du logement + + + + fr.insee + CA-jn0dummd-2 + 1 + + En propriété partielle : en indivision avec des personnes extérieures au ménage + + + + + fr.insee + CategoryScheme-knoq1iew + 1 + + L_STOCB1 + + + fr.insee + CA-knoq1iew-1 + 1 + + Oui + + + + fr.insee + CA-knoq1iew-2 + 1 + + "Non, " || (if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "vous êtes" else (¤kq7uo7yd-GOP¤ || " est")) || " accueilli" || ¤kmook912-GOP¤ || " dans ce logement" + + + + + fr.insee + CategoryScheme-kp5vfffj + 1 + + EPAS + + + fr.insee + CA-kp5vfffj-1 + 1 + + Oui, en dehors de la période de ses études + + + + fr.insee + CA-kp5vfffj-2 + 1 + + Oui, uniquement pendant la période de ses études + + + + fr.insee + CA-kp5vfffj-3 + 1 + + Non + + + + + fr.insee + CategoryScheme-jncy00q3 + 1 + + OUINON + + + fr.insee + CA-jncy00q3-1 + 1 + + Oui + + + + fr.insee + CA-jncy00q3-2 + 1 + + Non + + + + + fr.insee + CategoryScheme-joh8kni7 + 1 + + EPASB + + + fr.insee + CA-joh8kni7-1 + 1 + + Moins de 6 mois + + + + fr.insee + CA-joh8kni7-2 + 1 + + De 6 mois à moins de 1 an + + + + fr.insee + CA-joh8kni7-3 + 1 + + De 1 an à moins de 2 ans + + + + fr.insee + CA-joh8kni7-4 + 1 + + De 2 ans à moins de 5 ans + + + + fr.insee + CA-joh8kni7-5 + 1 + + Plus de 5 ans + + + + + fr.insee + CategoryScheme-joh9gxwq + 1 + + EPASC + + + fr.insee + CA-joh9gxwq-1 + 1 + + Depuis moins de 6 mois + + + + fr.insee + CA-joh9gxwq-2 + 1 + + Entre 6 mois et moins de 1 an + + + + fr.insee + CA-joh9gxwq-3 + 1 + + Entre 1 an et moins de 3 ans + + + + fr.insee + CA-joh9gxwq-4 + 1 + + De 3 ans à moins de 10 ans + + + + fr.insee + CA-joh9gxwq-5 + 1 + + Depuis 10 ans ou plus + + + + + fr.insee + CategoryScheme-knorkwv0 + 1 + + L_ERET1 + + + fr.insee + CA-knorkwv0-1 + 1 + + Changement de situation professionnelle (lieu de travail, perte d'emploi...) + + + + fr.insee + CA-knorkwv0-2 + 1 + + Séparation familiale + + + + fr.insee + CA-knorkwv0-3 + 1 + + Difficultés financières + + + + fr.insee + CA-knorkwv0-4 + 1 + + Fin des études ou études en cours + + + + fr.insee + CA-knorkwv0-5 + 1 + + Raisons de santé ou pour s'occuper d'un membre du ménage + + + + fr.insee + CA-knorkwv0-6 + 1 + + Autre + + + + + fr.insee + CategoryScheme-joirusc3 + 1 + + OUI_NON_NSP + + + fr.insee + CA-joirusc3-1 + 1 + + Oui + + + + fr.insee + CA-joirusc3-2 + 1 + + Non + + + + fr.insee + CA-joirusc3-3 + 1 + + Vous ne savez pas + + + + + fr.insee + CategoryScheme-joirox38 + 1 + + EPROJB + + + fr.insee + CA-joirox38-1 + 1 + + Oui, par ses propres moyens + + + + fr.insee + CA-joirox38-2 + 1 + + Oui, mais seulement grâce à l'aide de sa famille + + + + fr.insee + CA-joirox38-3 + 1 + + Non + + + + fr.insee + CA-joirox38-4 + 1 + + Vous ne savez pas + + + + + fr.insee + CategoryScheme-joisst25 + 1 + + EPROJD + + + fr.insee + CA-joisst25-1 + 1 + + Oui + + + + fr.insee + CA-joisst25-2 + 1 + + "Non, " || ¤kmx8i16l-GOP¤ || " ne le souhaite pas" + + + + fr.insee + CA-joisst25-3 + 1 + + "Non, " || ¤kmx8i16l-GOP¤|| " ne le peut pas" + + + + fr.insee + CA-joisst25-4 + 1 + + Vous ne savez pas + + + + + fr.insee + CategoryScheme-kqs7ptde + 1 + + EAMID1 + + + fr.insee + CA-kqs7ptde-1 + 1 + + En couple avec l'un des membres du ménage + + + + fr.insee + CA-kqs7ptde-2 + 1 + + Changement de situation professionnelle (lieu de travail, perte d'emploi...) + + + + fr.insee + CA-kqs7ptde-3 + 1 + + Séparation familiale + + + + fr.insee + CA-kqs7ptde-4 + 1 + + Difficultés financières + + + + fr.insee + CA-kqs7ptde-5 + 1 + + Fin des études ou études en cours + + + + fr.insee + CA-kqs7ptde-6 + 1 + + Raisons de santé ou pour s'occuper d'un membre du ménage + + + + fr.insee + CA-kqs7ptde-7 + 1 + + Je rends service à quelqu'un qui n'a pas d'autre solution d'hébergement + + + + + fr.insee + CategoryScheme-kqv3pa7u + 1 + + OuiUnpeuNon + + + fr.insee + CA-kqv3pa7u-1 + 1 + + Oui, beaucoup + + + + fr.insee + CA-kqv3pa7u-2 + 1 + + Oui, un peu + + + + fr.insee + CA-kqv3pa7u-3 + 1 + + Non + + + + + fr.insee + CategoryScheme-kp6iy3xk + 1 + + MAA2AT_Q + + + fr.insee + CA-kp6iy3xk-1 + 1 + + Moins d'un an + + + + fr.insee + CA-kp6iy3xk-2 + 1 + + De 1 an à moins de 4 ans + + + + fr.insee + CA-kp6iy3xk-3 + 1 + + De 4 ans à moins de 8 ans + + + + fr.insee + CA-kp6iy3xk-4 + 1 + + De 8 ans à moins de 12 ans + + + + fr.insee + CA-kp6iy3xk-5 + 1 + + "12 ans et plus" + + + + + fr.insee + CategoryScheme-kf71urf1 + 1 + + MOIS + + + fr.insee + CA-kf71urf1-1 + 1 + + Janvier - 01 + + + + fr.insee + CA-kf71urf1-2 + 1 + + Février - 02 + + + + fr.insee + CA-kf71urf1-3 + 1 + + Mars - 03 + + + + fr.insee + CA-kf71urf1-4 + 1 + + Avril - 04 + + + + fr.insee + CA-kf71urf1-5 + 1 + + Mai - 05 + + + + fr.insee + CA-kf71urf1-6 + 1 + + Juin - 06 + + + + fr.insee + CA-kf71urf1-7 + 1 + + Juillet - 07 + + + + fr.insee + CA-kf71urf1-8 + 1 + + Août - 08 + + + + fr.insee + CA-kf71urf1-9 + 1 + + Septembre - 09 + + + + fr.insee + CA-kf71urf1-10 + 1 + + Octobre - 10 + + + + fr.insee + CA-kf71urf1-11 + 1 + + Novembre - 11 + + + + fr.insee + CA-kf71urf1-12 + 1 + + Décembre - 12 + + + + + fr.insee + CategoryScheme-jojv0g6x + 1 + + KCU1 + + + fr.insee + CA-jojv0g6x-1 + 1 + + Oui, une cuisine séparée + + + + fr.insee + CA-jojv0g6x-2 + 1 + + Oui, une cuisine ouverte ou américaine + + + + fr.insee + CA-jojv0g6x-3 + 1 + + Seulement une petite installation pour faire la cuisine (avec évacuation des eaux usées) + + + + fr.insee + CA-jojv0g6x-4 + 1 + + Non, pas d'installation pour faire la cuisine + + + + + fr.insee + CategoryScheme-jojum3uu + 1 + + KCU2 + + + fr.insee + CA-jojum3uu-1 + 1 + + Moins de 4 m² + + + + fr.insee + CA-jojum3uu-2 + 1 + + De 4 m² à moins de 7 m² + + + + fr.insee + CA-jojum3uu-3 + 1 + + De 7 m² à moins de 12 m² + + + + fr.insee + CA-jojum3uu-4 + 1 + + Plus de 12 m² + + + + + fr.insee + CategoryScheme-l3iobv03 + 1 + + HUTDEF + + + fr.insee + CA-l3iobv03-1 + 1 + + Bruit + + + + fr.insee + CA-l3iobv03-2 + 1 + + Absence d'une pièce dédiée au télétravail + + + + fr.insee + CA-l3iobv03-3 + 1 + + Manque de place + + + + fr.insee + CA-l3iobv03-4 + 1 + + Problème de connexion Internet + + + + + fr.insee + CategoryScheme-kmd70xef + 1 + + HULHUI1 + + + fr.insee + CA-kmd70xef-1 + 1 + + Louée, sous-louée ou prêtée à des tiers + + + + fr.insee + CA-kmd70xef-2 + 1 + + Réservée à votre usage personnel + + + + fr.insee + CA-kmd70xef-3 + 1 + + À l'usage d'un salarié à votre service (employé, jeune au pair...) + + + + + fr.insee + CategoryScheme-kkqw9mkz + 1 + + HUL_HUI2 + + + fr.insee + CA-kkqw9mkz-1 + 1 + + Louées, sous-louées ou prêtées à des tiers. + + + + fr.insee + CA-kkqw9mkz-2 + 1 + + Réservées à votre usage personnel + + + + fr.insee + CA-kkqw9mkz-3 + 1 + + À l'usage d'un salarié à votre service (employé, jeune au pair..) + + + + + fr.insee + CategoryScheme-jojvev63 + 1 + + HPEUP + + + fr.insee + CA-jojvev63-1 + 1 + + Très insuffisant + + + + fr.insee + CA-jojvev63-2 + 1 + + Insuffisant + + + + fr.insee + CA-jojvev63-3 + 1 + + Correct + + + + fr.insee + CA-jojvev63-4 + 1 + + Supérieur à vos besoins + + + + fr.insee + CA-jojvev63-5 + 1 + + Très supérieur à vos besoins + + + + + fr.insee + CategoryScheme-jojvm75x + 1 + + HAUT + + + fr.insee + CA-jojvm75x-1 + 1 + + Moins de 2,20 mètres + + + + fr.insee + CA-jojvm75x-2 + 1 + + Entre 2,20 mètres et 2,50 mètres + + + + fr.insee + CA-jojvm75x-3 + 1 + + Plus de 2,50 mètres + + + + + fr.insee + CategoryScheme-jruq09km + 1 + + KSJPIT + + + fr.insee + CA-jruq09km-1 + 1 + + Inférieur à 300 m² + + + + fr.insee + CA-jruq09km-2 + 1 + + De 300 à moins de 500 m² + + + + fr.insee + CA-jruq09km-3 + 1 + + De 500 à moins de 1 000 m² + + + + fr.insee + CA-jruq09km-4 + 1 + + De 1 000 à moins de 1 500m² + + + + fr.insee + CA-jruq09km-5 + 1 + + "1 500 m² ou plus" + + + + + fr.insee + CategoryScheme-jruscsna + 1 + + KSJC + + + fr.insee + CA-jruscsna-1 + 1 + + Moins de 200 m² + + + + fr.insee + CA-jruscsna-2 + 1 + + "200 à moins de 1 000 m²" + + + + fr.insee + CA-jruscsna-3 + 1 + + "1 000 m² ou plus" + + + + + fr.insee + CategoryScheme-l3is40qi + 1 + + NBVOIT + + + fr.insee + CA-l3is40qi-1 + 1 + + Une + + + + fr.insee + CA-l3is40qi-2 + 1 + + Deux + + + + fr.insee + CA-l3is40qi-3 + 1 + + Trois ou plus + + + + fr.insee + CA-l3is40qi-4 + 1 + + Aucune + + + + + fr.insee + CategoryScheme-jruss6vy + 1 + + KGA + + + fr.insee + CA-jruss6vy-1 + 1 + + Oui, un garage ou un box + + + + fr.insee + CA-jruss6vy-2 + 1 + + Oui, une place de parking souterrain + + + + fr.insee + CA-jruss6vy-3 + 1 + + Oui, une place de parking en plein air + + + + fr.insee + CA-jruss6vy-4 + 1 + + Non, ni garage, ni box, ni parking + + + + + fr.insee + CategoryScheme-kmdsf01l + 1 + + KAO1 + + + fr.insee + CA-kmdsf01l-1 + 1 + + Eau froide et chaude + + + + fr.insee + CA-kmdsf01l-2 + 1 + + Eau froide uniquement + + + + fr.insee + CA-kmdsf01l-3 + 1 + + Pas d'eau courante + + + + + fr.insee + CategoryScheme-jruv7r7y + 1 + + KWC1 + + + fr.insee + CA-jruv7r7y-1 + 1 + + Oui + + + + fr.insee + CA-jruv7r7y-2 + 1 + + Non, W-C extérieurs au logement + + + + fr.insee + CA-jruv7r7y-3 + 1 + + Non, pas de W-C du tout + + + + + fr.insee + CategoryScheme-jruvifd2 + 1 + + KDLK2 + + + fr.insee + CA-jruvifd2-1 + 1 + + Oui, dans une pièce réservée à la toilette + + + + fr.insee + CA-jruvifd2-2 + 1 + + Oui, dans une pièce destinée à un autre usage + + + + fr.insee + CA-jruvifd2-3 + 1 + + Non, seulement un évier dans la cuisine + + + + fr.insee + CA-jruvifd2-4 + 1 + + Non + + + + + fr.insee + CategoryScheme-joico0rb + 1 + + satisfaction + + + fr.insee + CA-joico0rb-1 + 1 + + Très satisfaisantes + + + + fr.insee + CA-joico0rb-2 + 1 + + Satisfaisantes + + + + fr.insee + CA-joico0rb-3 + 1 + + Acceptables + + + + fr.insee + CA-joico0rb-4 + 1 + + Insuffisantes + + + + fr.insee + CA-joico0rb-5 + 1 + + Très insuffisantes + + + + + fr.insee + CategoryScheme-knioh1gp + 1 + + OLAR1 + + + fr.insee + CA-knioh1gp-1 + 1 + + Pas d'eau chaude + + + + fr.insee + CA-knioh1gp-2 + 1 + + Pas de chauffage central ou électrique + + + + fr.insee + CA-knioh1gp-3 + 1 + + Toit percé, humidité, infiltrations + + + + fr.insee + CA-knioh1gp-4 + 1 + + Logement bruyant + + + + + fr.insee + CategoryScheme-joidufam + 1 + + OUINON_2 + + + fr.insee + CA-joidufam-1 + 1 + + Oui + + + + fr.insee + CA-joidufam-2 + 1 + + Non + + + + + fr.insee + CategoryScheme-l7j1ikot + 1 + + OLAR1DIF + + + fr.insee + CA-l7j1ikot-1 + 1 + + pour accéder au logement ou s’y déplacer ? + + + + fr.insee + CA-l7j1ikot-2 + 1 + + pour accomplir les tâches du quotidien dans leur logement (cuisiner, se laver, fermer les volets, etc.) ? + + + + + fr.insee + CategoryScheme-l7j1t7dy + 1 + + OLAR1DIFCO + + + fr.insee + CA-l7j1t7dy-1 + 1 + + pour accéder au logement ou s’y déplacer ? + + + + fr.insee + CA-l7j1t7dy-2 + 1 + + pour accomplir les tâches du quotidien dans leur logement (cuisiner, se laver, fermer les volets, etc.) ? + + + + fr.insee + CA-l7j1t7dy-3 + 1 + + pour accéder aux parties communes de l’immeuble ? + + + + + fr.insee + CategoryScheme-joicw344 + 1 + + OLAR2 + + + fr.insee + CA-joicw344-1 + 1 + + Trop sombre + + + + fr.insee + CA-joicw344-2 + 1 + + Trop petit + + + + fr.insee + CA-joicw344-3 + 1 + + Trop difficile ou trop coûteux à chauffer + + + + fr.insee + CA-joicw344-4 + 1 + + Trop chaud (trop difficile ou coûteux à rafraîchir l’été) + + + + fr.insee + CA-joicw344-5 + 1 + + Trop cher + + + + + fr.insee + CategoryScheme-knioesnw + 1 + + OLAR3 + + + fr.insee + CA-knioesnw-1 + 1 + + Problèmes de pollution + + + + fr.insee + CA-knioesnw-2 + 1 + + Problèmes de délinquance, violence ou vandalisme dans les environs + + + + fr.insee + CA-knioesnw-3 + 1 + + Services médicaux insuffisants + + + + fr.insee + CA-knioesnw-4 + 1 + + Services publics insuffisants + + + + fr.insee + CA-knioesnw-5 + 1 + + Manque de végétation + + + + + fr.insee + CategoryScheme-joinxitz + 1 + + SDL + + + fr.insee + CA-joinxitz-1 + 1 + + Hébergement contraint chez d'autres personnes + + + + fr.insee + CA-joinxitz-2 + 1 + + Chambre d’hôtel (hors tourisme) + + + + fr.insee + CA-joinxitz-3 + 1 + + Logement payé par une association ou un organisme d’aide + + + + fr.insee + CA-joinxitz-4 + 1 + + Séjour en centre d'hébergement (Centre d'hébergement d'urgence, CHRS, centre maternel, centre d'hébergement pour demandeurs d'asile ou réfugiés...Foyers ou hébergements de la DDASS, DDCS, ASE, PJJ...) + + + + fr.insee + CA-joinxitz-5 + 1 + + Séjour dans un logement sans autorisation du propriétaire (squat) + + + + fr.insee + CA-joinxitz-6 + 1 + + Séjour dans un lieu non prévu pour l’habitation (rue, véhicule, abri de fortune...) + + + + fr.insee + CA-joinxitz-7 + 1 + + Logement contraint en habitation mobile (caravane, péniche) hors tourisme + + + + fr.insee + CA-joinxitz-8 + 1 + + Aucune de ces situations + + + + + fr.insee + CategoryScheme-kqr0x5ml + 1 + + liste_SDL2 + + + fr.insee + CA-kqr0x5ml-1 + 1 + + if (¤kq7uo7yd-GOP¤=¤kpauiid9-GOP¤) then "Par vos soins" else "Par ses soins" + + + + fr.insee + CA-kqr0x5ml-2 + 1 + + Par une autre personne + + + + fr.insee + CA-kqr0x5ml-3 + 1 + + Par une association ou un organisme d'aide + + + + + fr.insee + CategoryScheme-kpb8y2tb + 1 + + SDN1 + + + fr.insee + CA-kpb8y2tb-1 + 1 + + Une + + + + fr.insee + CA-kpb8y2tb-2 + 1 + + Plusieurs + + + + + fr.insee + CategoryScheme-joiodz52 + 1 + + SDT1 + + + fr.insee + CA-joiodz52-1 + 1 + + Moins d’une semaine + + + + fr.insee + CA-joiodz52-2 + 1 + + D’une semaine à moins de 3 mois + + + + fr.insee + CA-joiodz52-3 + 1 + + De 3 mois à moins d'un an + + + + fr.insee + CA-joiodz52-4 + 1 + + D'un an à moins de 3 ans + + + + fr.insee + CA-joiodz52-5 + 1 + + "3 ans et plus" + + + + + fr.insee + CategoryScheme-kw10q170 + 1 + + SDL_7 + + + fr.insee + CA-kw10q170-1 + 1 + + Hébergement contraint chez d'autres personnes + + + + fr.insee + CA-kw10q170-2 + 1 + + Chambre d’hôtel (hors tourisme) + + + + fr.insee + CA-kw10q170-3 + 1 + + Logement payé par une association ou un organisme d’aide + + + + fr.insee + CA-kw10q170-4 + 1 + + Séjour en [centre d'hébergement](. "\"centre d'hébergement d'urgence, CHRS, centre maternel, centre d'hébergement pour demandeurs d'asile ou réfugiés... Foyers ou hébergements de la DDASS, DDCS, ASE, PJJ...\"") + + + + fr.insee + CA-kw10q170-5 + 1 + + Séjour dans un logement sans autorisation du propriétaire (squat) + + + + fr.insee + CA-kw10q170-6 + 1 + + Séjour dans un lieu non prévu pour l’habitation (rue, véhicule, abri de fortune...) + + + + fr.insee + CA-kw10q170-7 + 1 + + Logement contraint en habitation mobile (caravane, péniche) hors tourisme + + + + + fr.insee + CategoryScheme-joo1g3aq + 1 + + VMODM + + + fr.insee + CA-joo1g3aq-1 + 1 + + Arrivée d'un ou plusieurs enfants + + + + fr.insee + CA-joo1g3aq-2 + 1 + + Survenue d'un ou plusieurs décès + + + + fr.insee + CA-joo1g3aq-3 + 1 + + Départ d'un ou plusieurs enfants + + + + fr.insee + CA-joo1g3aq-4 + 1 + + Arrivée d'une ou plusieurs personnes du fait d'une mise en couple + + + + fr.insee + CA-joo1g3aq-5 + 1 + + Départ d'une ou plusieurs personnes du fait d'une séparation + + + + fr.insee + CA-joo1g3aq-6 + 1 + + Autre évolution de la composition du ménage + + + + fr.insee + CA-joo1g3aq-7 + 1 + + Aucune modification + + + + + fr.insee + CategoryScheme-joo1pxqg + 1 + + VMODP1 + + + fr.insee + CA-joo1pxqg-1 + 1 + + Entrée en activité ou reprise d’activité + + + + fr.insee + CA-joo1pxqg-2 + 1 + + Perte de son emploi + + + + fr.insee + CA-joo1pxqg-3 + 1 + + Passage à la retraite, préretraite ou décision d’arrêter de travailler + + + + fr.insee + CA-joo1pxqg-4 + 1 + + Aucune modification de ce type + + + + + fr.insee + CategoryScheme-koe0mn5d + 1 + + VMODP2 + + + fr.insee + CA-koe0mn5d-1 + 1 + + Changement d’entreprise ou d’employeur + + + + fr.insee + CA-koe0mn5d-2 + 1 + + Déménagement de l'entreprise + + + + fr.insee + CA-koe0mn5d-3 + 1 + + Aucune modification de ce type + + + + + fr.insee + CategoryScheme-joph1lnb + 1 + + VVENDL + + + fr.insee + CA-joph1lnb-1 + 1 + + Oui, un seul + + + + fr.insee + CA-joph1lnb-2 + 1 + + Oui, deux logements ou plus + + + + fr.insee + CA-joph1lnb-3 + 1 + + Non + + + + + fr.insee + CategoryScheme-jopgr6lb + 1 + + VFFH + + + fr.insee + CA-jopgr6lb-1 + 1 + + Par héritage ou donation + + + + fr.insee + CA-jopgr6lb-2 + 1 + + Par achat comptant + + + + fr.insee + CA-jopgr6lb-3 + 1 + + Par achat à crédit + + + + fr.insee + CA-jopgr6lb-4 + 1 + + Par achat en viager + + + + fr.insee + CA-jopgr6lb-5 + 1 + + Par achat en location-accession, en location-vente, en location-attribution... + + + + + fr.insee + CategoryScheme-joph7hjs + 1 + + VBILLOG + + + fr.insee + CA-joph7hjs-1 + 1 + + Plus élevé + + + + fr.insee + CA-joph7hjs-2 + 1 + + Environ égal + + + + fr.insee + CA-joph7hjs-3 + 1 + + Moins élevé + + + + + fr.insee + CategoryScheme-jopkxxc6 + 1 + + VLR_1 + + + fr.insee + CA-jopkxxc6-1 + 1 + + Dans le même logement que maintenant + + + + fr.insee + CA-jopkxxc6-2 + 1 + + Dans un autre logement de la même commune + + + + fr.insee + CA-jopkxxc6-3 + 1 + + Dans une autre commune en France métropolitaine + + + + fr.insee + CA-jopkxxc6-4 + 1 + + En Outre-mer + + + + fr.insee + CA-jopkxxc6-5 + 1 + + À l'étranger + + + + + fr.insee + CategoryScheme-joplgdcw + 1 + + VLA + + + fr.insee + CA-joplgdcw-1 + 1 + + Occupant en titre de votre logement (locataire, propriétaire ou usufruitier) + + + + fr.insee + CA-joplgdcw-2 + 1 + + Vous viviez chez votre conjoint + + + + fr.insee + CA-joplgdcw-3 + 1 + + Vous viviez chez vos parents, ou chez des particuliers, sans être occupant en titre du logement + + + + fr.insee + CA-joplgdcw-4 + 1 + + Vous logiez dans une [structure collective](. "(caserne, cité universitaire, foyer d'étudiants ou de jeunes travailleurs, centre d'hébergement, établissement de soins ou de cure...)") (caserne, cité universitaire,…) ou une habitation mobile + + + + + fr.insee + CategoryScheme-joplsxki + 1 + + VSO + + + fr.insee + CA-joplsxki-1 + 1 + + Propriétaire accédant (remboursement d'emprunt) + + + + fr.insee + CA-joplsxki-2 + 1 + + Propriétaire non accédant (ne remboursant plus d'emprunt) + + + + fr.insee + CA-joplsxki-3 + 1 + + Usufruitier, y compris en viager + + + + fr.insee + CA-joplsxki-4 + 1 + + Locataire ou sous-locataire + + + + fr.insee + CA-joplsxki-5 + 1 + + Logé gratuitement avec un paiement éventuel de charges + + + + + fr.insee + CategoryScheme-joprlb0a + 1 + + VSY + + + fr.insee + CA-joprlb0a-1 + 1 + + Le loyer relevait de la législation HLM ou du logement social + + + + fr.insee + CA-joprlb0a-2 + 1 + + Le loyer était déterminé selon la loi de 1948 + + + + fr.insee + CA-joprlb0a-3 + 1 + + Le loyer relevait du secteur libre + + + + + fr.insee + CategoryScheme-joprub8u + 1 + + VTL + + + fr.insee + CA-joprub8u-1 + 1 + + Maison + + + + fr.insee + CA-joprub8u-2 + 1 + + Appartement + + + + fr.insee + CA-joprub8u-3 + 1 + + Logement-foyer + + + + fr.insee + CA-joprub8u-4 + 1 + + Chambre d'hôtel + + + + fr.insee + CA-joprub8u-5 + 1 + + Habitation de fortune (Construction précaire) + + + + fr.insee + CA-joprub8u-6 + 1 + + Pièce indépendante (ayant sa propre entrée) + + + + + fr.insee + CategoryScheme-jopsh9ng + 1 + + VOP + + + fr.insee + CA-jopsh9ng-1 + 1 + + En emploi + + + + fr.insee + CA-jopsh9ng-2 + 1 + + Au chômage (inscrit(e) ou non à Pôle emploi) + + + + fr.insee + CA-jopsh9ng-3 + 1 + + Retraité(e), préretraité(e) + + + + fr.insee + CA-jopsh9ng-4 + 1 + + En incapacité de travailler en raison d'un handicap ou d'un problème de santé durable + + + + fr.insee + CA-jopsh9ng-5 + 1 + + En études + + + + fr.insee + CA-jopsh9ng-6 + 1 + + Femme ou homme au foyer + + + + fr.insee + CA-jopsh9ng-7 + 1 + + Dans une autre situation + + + + + fr.insee + CategoryScheme-joptnagd + 1 + + VLRD + + + fr.insee + CA-joptnagd-1 + 1 + + En France métropolitaine + + + + fr.insee + CA-joptnagd-2 + 1 + + Ailleurs + + + + + fr.insee + CategoryScheme-jopu65h0 + 1 + + VLAB1 + + + fr.insee + CA-jopu65h0-1 + 1 + + [Occupant en titre](. "locataire, propriétaire, usufruitier") de votre logement + + + + fr.insee + CA-jopu65h0-2 + 1 + + Vous viviez chez votre conjoint + + + + fr.insee + CA-jopu65h0-3 + 1 + + Vous viviez chez vos parents ou chez des particuliers, sans être occupant en titre du logement + + + + fr.insee + CA-jopu65h0-4 + 1 + + Vous viviez dans une structure collective (caserne, cité universitaire... ) ou une habitation mobile + + + + + fr.insee + CategoryScheme-jopur3k1 + 1 + + VDSY + + + fr.insee + CA-jopur3k1-1 + 1 + + Le loyer relevait de la législation HLM ou du logement social + + + + fr.insee + CA-jopur3k1-2 + 1 + + Le loyer était déterminé selon la loi de 1948 + + + + fr.insee + CA-jopur3k1-3 + 1 + + Le loyer relevait du secteur libre + + + + + fr.insee + CategoryScheme-kovj0vbo + 1 + + VRAIS1 + + + fr.insee + CA-kovj0vbo-1 + 1 + + Oui, pour devenir propriétaire + + + + fr.insee + CA-kovj0vbo-2 + 1 + + Oui, pour devenir locataire + + + + fr.insee + CA-kovj0vbo-3 + 1 + + Non, aucune de ces situations + + + + + fr.insee + CategoryScheme-koviy969 + 1 + + VRAIS2 + + + fr.insee + CA-koviy969-1 + 1 + + Oui, mise en couple ou mariage + + + + fr.insee + CA-koviy969-2 + 1 + + Oui, naissance + + + + fr.insee + CA-koviy969-3 + 1 + + Oui, séparation, divorce, veuvage + + + + fr.insee + CA-koviy969-4 + 1 + + Oui, départ de chez vos parents + + + + fr.insee + CA-koviy969-5 + 1 + + Oui, départ des enfants + + + + fr.insee + CA-koviy969-6 + 1 + + Oui, en raison d'un problème de santé, d'un handicap ou d'une perte d'autonomie au sein du ménage + + + + fr.insee + CA-koviy969-7 + 1 + + Non, aucune de ces situations + + + + + fr.insee + CategoryScheme-kovj3f3o + 1 + + VRAIS3 + + + fr.insee + CA-kovj3f3o-1 + 1 + + Oui, pour avoir un logement de meilleure qualité + + + + fr.insee + CA-kovj3f3o-2 + 1 + + Oui, pour avoir un logement plus grand ou plus petit + + + + fr.insee + CA-kovj3f3o-3 + 1 + + Oui, pour avoir un logement plus adapté à la perte d'autonomie ou au handicap + + + + fr.insee + CA-kovj3f3o-4 + 1 + + Oui, pour changer d'environnement + + + + fr.insee + CA-kovj3f3o-5 + 1 + + Oui, pour avoir un loyer plus bas ou un logement moins cher à entretenir + + + + fr.insee + CA-kovj3f3o-6 + 1 + + Non, aucune de ces situations + + + + + fr.insee + CategoryScheme-koviyjcm + 1 + + VRAIS4 + + + fr.insee + CA-koviyjcm-1 + 1 + + Oui, de votre lieu de travail ou du lieu de travail d'une personne du ménage + + + + fr.insee + CA-koviyjcm-2 + 1 + + Oui, de service comme l'école, la garde d'enfants, l'hôpital... + + + + fr.insee + CA-koviyjcm-3 + 1 + + Oui, des commerces, de la gare... + + + + fr.insee + CA-koviyjcm-4 + 1 + + Oui, de la famille, des amis ou de la région d'origine + + + + fr.insee + CA-koviyjcm-5 + 1 + + Non, aucune de ces situations + + + + + fr.insee + CategoryScheme-lgmga7g1 + 1 + + VRAIS5 + + + fr.insee + CA-lgmga7g1-1 + 1 + + Oui, vous avez été expulsé (défaut de paiement du loyer, troubles du voisinage...) + + + + fr.insee + CA-lgmga7g1-2 + 1 + + Oui, pour des raisons financières (hors expulsion) + + + + fr.insee + CA-lgmga7g1-3 + 1 + + Oui, le propriétaire a voulu reprendre le logement à la fin du bail + + + + fr.insee + CA-lgmga7g1-4 + 1 + + Oui, à cause d'une réhabilitation ou destruction du logement + + + + fr.insee + CA-lgmga7g1-5 + 1 + + Oui, pour d'autres raisons + + + + fr.insee + CA-lgmga7g1-6 + 1 + + Non + + + + + fr.insee + CategoryScheme-kp5afd7f + 1 + + TELFIXE + + + fr.insee + CA-kp5afd7f-1 + 1 + + Oui, mais seulement lorsque vous connaissez le numéro qui essaie de vous joindre + + + + fr.insee + CA-kp5afd7f-2 + 1 + + Oui, sans vous soucier du numéro qui essaie de vous joindre + + + + fr.insee + CA-kp5afd7f-3 + 1 + + Non, jamais + + + + fr.insee + CA-kp5afd7f-4 + 1 + + Il ne sonne jamais + + + + fr.insee + CA-kp5afd7f-5 + 1 + + Vous n'avez pas de téléphone fixe + + + + + fr.insee + CategoryScheme-kp5b81ae + 1 + + TELMOB + + + fr.insee + CA-kp5b81ae-1 + 1 + + Oui, mais seulement lorsque vous connaissez le numéro ou le nom de la personne qui essaie de vous joindre + + + + fr.insee + CA-kp5b81ae-2 + 1 + + Oui, sans vous soucier du numéro qui essaie de vous joindre + + + + fr.insee + CA-kp5b81ae-3 + 1 + + Non, jamais + + + + fr.insee + CA-kp5b81ae-4 + 1 + + Il ne sonne jamais + + + + fr.insee + CA-kp5b81ae-5 + 1 + + Vous n'avez pas de téléphone portable + + + + + fr.insee + CategoryScheme-kp5bdcd2 + 1 + + UWEB + + + fr.insee + CA-kp5bdcd2-1 + 1 + + Tous les jours ou presque + + + + fr.insee + CA-kp5bdcd2-2 + 1 + + Pas tous les jours, mais au moins une fois par semaine + + + + fr.insee + CA-kp5bdcd2-3 + 1 + + Moins d'une fois par semaine + + + + fr.insee + CA-kp5bdcd2-4 + 1 + + Jamais + + + + fr.insee + CA-kp5bdcd2-5 + 1 + + Je n'ai pas accès à Internet + + + + + fr.insee + CategoryScheme-kneexxy3 + 1 + + L_CIV + + + fr.insee + CA-kneexxy3-1 + 1 + + M. + + + + fr.insee + CA-kneexxy3-2 + 1 + + Mme + + + + + fr.insee + CategoryScheme-llxh9g6g + 1 + + A définir + + + fr.insee + INSEE-COMMUN-CA-Booleen-1 + 1 + + + + + + + fr.insee + m1-CLS + 1 + + m1 + + + fr.insee + kb9ht98f + 1 + + L_CADR + + Regular + + Ordinal + + + fr.insee + kb9ht98f-1 + 1 + + fr.insee + CA-kb9ht98f-1 + 1 + Category + + 1 + + + fr.insee + kb9ht98f-2 + 1 + + fr.insee + CA-kb9ht98f-2 + 1 + Category + + 2 + + + fr.insee + kb9ht98f-3 + 1 + + fr.insee + CA-kb9ht98f-3 + 1 + Category + + 3 + + + fr.insee + kb9ht98f-4 + 1 + + fr.insee + CA-kb9ht98f-4 + 1 + Category + + 4 + + + + fr.insee + ko8uzwua + 1 + + OUINON + + Regular + + Ordinal + + + fr.insee + ko8uzwua-1 + 1 + + fr.insee + CA-ko8uzwua-1 + 1 + Category + + 1 + + + fr.insee + ko8uzwua-2 + 1 + + fr.insee + CA-ko8uzwua-2 + 1 + Category + + 2 + + + + fr.insee + kmolikl4 + 1 + + L_SEXE + + Regular + + Ordinal + + + fr.insee + kmolikl4-1 + 1 + + fr.insee + CA-kmolikl4-1 + 1 + Category + + 1 + + + fr.insee + kmolikl4-2 + 1 + + fr.insee + CA-kmolikl4-2 + 1 + Category + + 2 + + + + fr.insee + kmx6szo6 + 1 + + L_TRAGE + + Regular + + Ordinal + + + fr.insee + kmx6szo6-1 + 1 + + fr.insee + CA-kmx6szo6-1 + 1 + Category + + 4 + + + fr.insee + kmx6szo6-2 + 1 + + fr.insee + CA-kmx6szo6-2 + 1 + Category + + 1 + + + fr.insee + kmx6szo6-3 + 1 + + fr.insee + CA-kmx6szo6-3 + 1 + Category + + 2 + + + fr.insee + kmx6szo6-4 + 1 + + fr.insee + CA-kmx6szo6-4 + 1 + Category + + 3 + + + + fr.insee + kmomiwx3 + 1 + + L_LNAIS + + Regular + + Ordinal + + + fr.insee + kmomiwx3-1 + 1 + + fr.insee + CA-kmomiwx3-1 + 1 + Category + + 1 + + + fr.insee + kmomiwx3-2 + 1 + + fr.insee + CA-kmomiwx3-2 + 1 + Category + + 2 + + + + fr.insee + kmos765d + 1 + + L_NATIO1N + + Regular + + Ordinal + + + fr.insee + kmos765d-1 + 1 + + fr.insee + CA-kmos765d-1 + 1 + Category + + 1 + + + fr.insee + kmos765d-2 + 1 + + fr.insee + CA-kmos765d-2 + 1 + Category + + 2 + + + fr.insee + kmos765d-3 + 1 + + fr.insee + CA-kmos765d-3 + 1 + Category + + 3 + + + fr.insee + kmos765d-4 + 1 + + fr.insee + CA-kmos765d-4 + 1 + Category + + 4 + + + + fr.insee + kmw56gjz + 1 + + L_LIEN + + Regular + + Ordinal + + + fr.insee + kmw56gjz-1 + 1 + + fr.insee + CA-kmw56gjz-1 + 1 + Category + + 1 + + + fr.insee + kmw56gjz-2 + 1 + + fr.insee + CA-kmw56gjz-2 + 1 + Category + + 2 + + + fr.insee + kmw56gjz-3 + 1 + + fr.insee + CA-kmw56gjz-3 + 1 + Category + + 3 + + + fr.insee + kmw56gjz-4 + 1 + + fr.insee + CA-kmw56gjz-4 + 1 + Category + + 8 + + + fr.insee + kmw56gjz-5 + 1 + + fr.insee + CA-kmw56gjz-5 + 1 + Category + + 4 + + + fr.insee + kmw56gjz-6 + 1 + + fr.insee + CA-kmw56gjz-6 + 1 + Category + + 5 + + + fr.insee + kmw56gjz-7 + 1 + + fr.insee + CA-kmw56gjz-7 + 1 + Category + + 6 + + + fr.insee + kmw56gjz-8 + 1 + + fr.insee + CA-kmw56gjz-8 + 1 + Category + + 7 + + + + fr.insee + kod1mvxo + 1 + + L_COUPLE + + Regular + + Ordinal + + + fr.insee + kod1mvxo-1 + 1 + + fr.insee + CA-kod1mvxo-1 + 1 + Category + + 1 + + + fr.insee + kod1mvxo-2 + 1 + + fr.insee + CA-kod1mvxo-2 + 1 + Category + + 2 + + + fr.insee + kod1mvxo-3 + 1 + + fr.insee + CA-kod1mvxo-3 + 1 + Category + + 3 + + + + fr.insee + kmw5u1pk + 1 + + L_SITUMATRIAUT + + Regular + + Ordinal + + + fr.insee + kmw5u1pk-1 + 1 + + fr.insee + CA-kmw5u1pk-1 + 1 + Category + + 1 + + + fr.insee + kmw5u1pk-2 + 1 + + fr.insee + CA-kmw5u1pk-2 + 1 + Category + + 2 + + + fr.insee + kmw5u1pk-3 + 1 + + fr.insee + CA-kmw5u1pk-3 + 1 + Category + + 3 + + + fr.insee + kmw5u1pk-4 + 1 + + fr.insee + CA-kmw5u1pk-4 + 1 + Category + + 4 + + + fr.insee + kmw5u1pk-5 + 1 + + fr.insee + CA-kmw5u1pk-5 + 1 + Category + + 5 + + + fr.insee + kmw5u1pk-6 + 1 + + fr.insee + CA-kmw5u1pk-6 + 1 + Category + + 6 + + + + fr.insee + kn8zodpk + 1 + + L_UNLOG + + Regular + + Ordinal + + + fr.insee + kn8zodpk-1 + 1 + + fr.insee + CA-kn8zodpk-1 + 1 + Category + + 1 + + + fr.insee + kn8zodpk-2 + 1 + + fr.insee + CA-kn8zodpk-2 + 1 + Category + + 2 + + + + fr.insee + kmukmzpq + 1 + + L_DURLOG + + Regular + + Ordinal + + + fr.insee + kmukmzpq-1 + 1 + + fr.insee + CA-kmukmzpq-1 + 1 + Category + + 1 + + + fr.insee + kmukmzpq-2 + 1 + + fr.insee + CA-kmukmzpq-2 + 1 + Category + + 2 + + + fr.insee + kmukmzpq-3 + 1 + + fr.insee + CA-kmukmzpq-3 + 1 + Category + + 3 + + + + fr.insee + kmx96qdc + 1 + + L_LOGENQ + + Regular + + Ordinal + + + fr.insee + kmx96qdc-1 + 1 + + fr.insee + CA-kmx96qdc-1 + 1 + Category + + 1 + + + fr.insee + kmx96qdc-2 + 1 + + fr.insee + CA-kmx96qdc-2 + 1 + Category + + 2 + + + fr.insee + kmx96qdc-3 + 1 + + fr.insee + CA-kmx96qdc-3 + 1 + Category + + 3 + + + fr.insee + kmx96qdc-4 + 1 + + fr.insee + CA-kmx96qdc-4 + 1 + Category + + 4 + + + fr.insee + kmx96qdc-5 + 1 + + fr.insee + CA-kmx96qdc-5 + 1 + Category + + 5 + + + fr.insee + kmx96qdc-6 + 1 + + fr.insee + CA-kmx96qdc-6 + 1 + Category + + 6 + + + + fr.insee + kmx9jj4a + 1 + + L_LOGAUT + + Regular + + Ordinal + + + fr.insee + kmx9jj4a-1 + 1 + + fr.insee + CA-kmx9jj4a-1 + 1 + Category + + 1 + + + fr.insee + kmx9jj4a-2 + 1 + + fr.insee + CA-kmx9jj4a-2 + 1 + Category + + 2 + + + fr.insee + kmx9jj4a-3 + 1 + + fr.insee + CA-kmx9jj4a-3 + 1 + Category + + 3 + + + fr.insee + kmx9jj4a-4 + 1 + + fr.insee + CA-kmx9jj4a-4 + 1 + Category + + 4 + + + fr.insee + kmx9jj4a-5 + 1 + + fr.insee + CA-kmx9jj4a-5 + 1 + Category + + 5 + + + fr.insee + kmx9jj4a-6 + 1 + + fr.insee + CA-kmx9jj4a-6 + 1 + Category + + 6 + + + + fr.insee + k1qjtfk1 + 1 + + L_OUINON + + Regular + + Ordinal + + + fr.insee + k1qjtfk1-1 + 1 + + fr.insee + CA-k1qjtfk1-1 + 1 + Category + + 1 + + + fr.insee + k1qjtfk1-2 + 1 + + fr.insee + CA-k1qjtfk1-2 + 1 + Category + + 2 + + + + fr.insee + kna1qses + 1 + + L_DORM + + Regular + + Ordinal + + + fr.insee + kna1qses-1 + 1 + + fr.insee + CA-kna1qses-1 + 1 + Category + + 1 + + + fr.insee + kna1qses-2 + 1 + + fr.insee + CA-kna1qses-2 + 1 + Category + + 2 + + + + fr.insee + kmx7yjsk + 1 + + L_TYPLOGCO + + Regular + + Ordinal + + + fr.insee + kmx7yjsk-1 + 1 + + fr.insee + CA-kmx7yjsk-1 + 1 + Category + + 1 + + + fr.insee + kmx7yjsk-2 + 1 + + fr.insee + CA-kmx7yjsk-2 + 1 + Category + + 2 + + + fr.insee + kmx7yjsk-3 + 1 + + fr.insee + CA-kmx7yjsk-3 + 1 + Category + + 3 + + + fr.insee + kmx7yjsk-4 + 1 + + fr.insee + CA-kmx7yjsk-4 + 1 + Category + + 4 + + + fr.insee + kmx7yjsk-5 + 1 + + fr.insee + CA-kmx7yjsk-5 + 1 + Category + + 5 + + + fr.insee + kmx7yjsk-6 + 1 + + fr.insee + CA-kmx7yjsk-6 + 1 + Category + + 6 + + + fr.insee + kmx7yjsk-7 + 1 + + fr.insee + CA-kmx7yjsk-7 + 1 + Category + + 7 + + + + fr.insee + kmxfw3sx + 1 + + L_SITUA + + Regular + + Ordinal + + + fr.insee + kmxfw3sx-1 + 1 + + fr.insee + CA-kmxfw3sx-1 + 1 + Category + + 1 + + + fr.insee + kmxfw3sx-2 + 1 + + fr.insee + CA-kmxfw3sx-2 + 1 + Category + + 2 + + + fr.insee + kmxfw3sx-3 + 1 + + fr.insee + CA-kmxfw3sx-3 + 1 + Category + + 3 + + + fr.insee + kmxfw3sx-4 + 1 + + fr.insee + CA-kmxfw3sx-4 + 1 + Category + + 4 + + + fr.insee + kmxfw3sx-5 + 1 + + fr.insee + CA-kmxfw3sx-5 + 1 + Category + + 5 + + + fr.insee + kmxfw3sx-6 + 1 + + fr.insee + CA-kmxfw3sx-6 + 1 + Category + + 6 + + + fr.insee + kmxfw3sx-7 + 1 + + fr.insee + CA-kmxfw3sx-7 + 1 + Category + + 7 + + + + fr.insee + kmxf03ss + 1 + + L_NIVDIP + + Regular + + Ordinal + + + fr.insee + kmxf03ss-1 + 1 + + fr.insee + CA-kmxf03ss-1 + 1 + Category + + 1 + + + fr.insee + kmxf03ss-2 + 1 + + fr.insee + CA-kmxf03ss-2 + 1 + Category + + 2 + + + fr.insee + kmxf03ss-3 + 1 + + fr.insee + CA-kmxf03ss-3 + 1 + Category + + 3 + + + fr.insee + kmxf03ss-4 + 1 + + fr.insee + CA-kmxf03ss-4 + 1 + Category + + 4 + + + fr.insee + kmxf03ss-5 + 1 + + fr.insee + CA-kmxf03ss-5 + 1 + Category + + 5 + + + fr.insee + kmxf03ss-6 + 1 + + fr.insee + CA-kmxf03ss-6 + 1 + Category + + 6 + + + fr.insee + kmxf03ss-7 + 1 + + fr.insee + CA-kmxf03ss-7 + 1 + Category + + 7 + + + fr.insee + kmxf03ss-8 + 1 + + fr.insee + CA-kmxf03ss-8 + 1 + Category + + 8 + + + + fr.insee + kqi895gg + 1 + + L_GRDIPB + + Regular + + Ordinal + + + fr.insee + kqi895gg-1 + 1 + + fr.insee + CA-kqi895gg-1 + 1 + Category + + 1 + + + fr.insee + kqi895gg-2 + 1 + + fr.insee + CA-kqi895gg-2 + 1 + Category + + 2 + + + fr.insee + kqi895gg-3 + 1 + + fr.insee + CA-kqi895gg-3 + 1 + Category + + 3 + + + + fr.insee + kqi8rie2 + 1 + + L_GRDIPC + + Regular + + Ordinal + + + fr.insee + kqi8rie2-1 + 1 + + fr.insee + CA-kqi8rie2-1 + 1 + Category + + 1 + + + fr.insee + kqi8rie2-2 + 1 + + fr.insee + CA-kqi8rie2-2 + 1 + Category + + 2 + + + fr.insee + kqi8rie2-3 + 1 + + fr.insee + CA-kqi8rie2-3 + 1 + Category + + 3 + + + + fr.insee + kd8q4yja + 1 + + HTLC + + Regular + + Ordinal + + + fr.insee + kd8q4yja-1 + 1 + + fr.insee + CA-kd8q4yja-1 + 1 + Category + + 1 + + + fr.insee + kd8q4yja-2 + 1 + + fr.insee + CA-kd8q4yja-2 + 1 + Category + + 2 + + + fr.insee + kd8q4yja-3 + 1 + + fr.insee + CA-kd8q4yja-3 + 1 + Category + + 3 + + + fr.insee + kd8q4yja-4 + 1 + + fr.insee + CA-kd8q4yja-4 + 1 + Category + + 4 + + + fr.insee + kd8q4yja-5 + 1 + + fr.insee + CA-kd8q4yja-5 + 1 + Category + + 5 + + + fr.insee + kd8q4yja-6 + 1 + + fr.insee + CA-kd8q4yja-6 + 1 + Category + + 6 + + + + fr.insee + kp4bs9c4 + 1 + + RESAUTO + + Regular + + Ordinal + + + fr.insee + kp4bs9c4-1 + 1 + + fr.insee + CA-kp4bs9c4-1 + 1 + Category + + 1 + + + fr.insee + kp4bs9c4-2 + 1 + + fr.insee + CA-kp4bs9c4-2 + 1 + Category + + 2 + + + + fr.insee + kbgi2ogb + 1 + + L_MAISON + + Regular + + Ordinal + + + fr.insee + kbgi2ogb-1 + 1 + + fr.insee + CA-kbgi2ogb-1 + 1 + Category + + 1 + + + fr.insee + kbgi2ogb-2 + 1 + + fr.insee + CA-kbgi2ogb-2 + 1 + Category + + 2 + + + + fr.insee + kbgiawbm + 1 + + L_PERIODECONSTR + + Regular + + Ordinal + + + fr.insee + kbgiawbm-1 + 1 + + fr.insee + CA-kbgiawbm-1 + 1 + Category + + 1 + + + fr.insee + kbgiawbm-2 + 1 + + fr.insee + CA-kbgiawbm-2 + 1 + Category + + 2 + + + fr.insee + kbgiawbm-3 + 1 + + fr.insee + CA-kbgiawbm-3 + 1 + Category + + 3 + + + fr.insee + kbgiawbm-4 + 1 + + fr.insee + CA-kbgiawbm-4 + 1 + Category + + 4 + + + fr.insee + kbgiawbm-5 + 1 + + fr.insee + CA-kbgiawbm-5 + 1 + Category + + 5 + + + fr.insee + kbgiawbm-6 + 1 + + fr.insee + CA-kbgiawbm-6 + 1 + Category + + 6 + + + + fr.insee + jn0cd476 + 1 + + STOC + + Regular + + Ordinal + + + fr.insee + jn0cd476-1 + 1 + + fr.insee + CA-jn0cd476-1 + 1 + Category + + 1 + + + fr.insee + jn0cd476-2 + 1 + + fr.insee + CA-jn0cd476-2 + 1 + Category + + 2 + + + fr.insee + jn0cd476-3 + 1 + + fr.insee + CA-jn0cd476-3 + 1 + Category + + 3 + + + fr.insee + jn0cd476-4 + 1 + + fr.insee + CA-jn0cd476-4 + 1 + Category + + 4 + + + fr.insee + jn0cd476-5 + 1 + + fr.insee + CA-jn0cd476-5 + 1 + Category + + 5 + + + + fr.insee + klut8zly + 1 + + STOC2 + + Regular + + Ordinal + + + fr.insee + klut8zly-1 + 1 + + fr.insee + CA-klut8zly-1 + 1 + Category + + 1 + + + fr.insee + klut8zly-2 + 1 + + fr.insee + CA-klut8zly-2 + 1 + Category + + 2 + + + fr.insee + klut8zly-3 + 1 + + fr.insee + CA-klut8zly-3 + 1 + Category + + 3 + + + + fr.insee + jn0dummd + 1 + + STOCP + + Regular + + Ordinal + + + fr.insee + jn0dummd-1 + 1 + + fr.insee + CA-jn0dummd-1 + 1 + Category + + 1 + + + fr.insee + jn0dummd-2 + 1 + + fr.insee + CA-jn0dummd-2 + 1 + Category + + 2 + + + + fr.insee + knoq1iew + 1 + + L_STOCB1 + + Regular + + Ordinal + + + fr.insee + knoq1iew-1 + 1 + + fr.insee + CA-knoq1iew-1 + 1 + Category + + 1 + + + fr.insee + knoq1iew-2 + 1 + + fr.insee + CA-knoq1iew-2 + 1 + Category + + 2 + + + + fr.insee + kp5vfffj + 1 + + EPAS + + Regular + + Ordinal + + + fr.insee + kp5vfffj-1 + 1 + + fr.insee + CA-kp5vfffj-1 + 1 + Category + + 1 + + + fr.insee + kp5vfffj-2 + 1 + + fr.insee + CA-kp5vfffj-2 + 1 + Category + + 2 + + + fr.insee + kp5vfffj-3 + 1 + + fr.insee + CA-kp5vfffj-3 + 1 + Category + + 3 + + + + fr.insee + jncy00q3 + 1 + + OUINON + + Regular + + Ordinal + + + fr.insee + jncy00q3-1 + 1 + + fr.insee + CA-jncy00q3-1 + 1 + Category + + 1 + + + fr.insee + jncy00q3-2 + 1 + + fr.insee + CA-jncy00q3-2 + 1 + Category + + 2 + + + + fr.insee + joh8kni7 + 1 + + EPASB + + Regular + + Ordinal + + + fr.insee + joh8kni7-1 + 1 + + fr.insee + CA-joh8kni7-1 + 1 + Category + + 1 + + + fr.insee + joh8kni7-2 + 1 + + fr.insee + CA-joh8kni7-2 + 1 + Category + + 2 + + + fr.insee + joh8kni7-3 + 1 + + fr.insee + CA-joh8kni7-3 + 1 + Category + + 3 + + + fr.insee + joh8kni7-4 + 1 + + fr.insee + CA-joh8kni7-4 + 1 + Category + + 4 + + + fr.insee + joh8kni7-5 + 1 + + fr.insee + CA-joh8kni7-5 + 1 + Category + + 5 + + + + fr.insee + joh9gxwq + 1 + + EPASC + + Regular + + Ordinal + + + fr.insee + joh9gxwq-1 + 1 + + fr.insee + CA-joh9gxwq-1 + 1 + Category + + 1 + + + fr.insee + joh9gxwq-2 + 1 + + fr.insee + CA-joh9gxwq-2 + 1 + Category + + 2 + + + fr.insee + joh9gxwq-3 + 1 + + fr.insee + CA-joh9gxwq-3 + 1 + Category + + 3 + + + fr.insee + joh9gxwq-4 + 1 + + fr.insee + CA-joh9gxwq-4 + 1 + Category + + 4 + + + fr.insee + joh9gxwq-5 + 1 + + fr.insee + CA-joh9gxwq-5 + 1 + Category + + 5 + + + + fr.insee + knorkwv0 + 1 + + L_ERET1 + + Regular + + Ordinal + + + fr.insee + knorkwv0-1 + 1 + + fr.insee + CA-knorkwv0-1 + 1 + Category + + 1 + + + fr.insee + knorkwv0-2 + 1 + + fr.insee + CA-knorkwv0-2 + 1 + Category + + 2 + + + fr.insee + knorkwv0-3 + 1 + + fr.insee + CA-knorkwv0-3 + 1 + Category + + 3 + + + fr.insee + knorkwv0-4 + 1 + + fr.insee + CA-knorkwv0-4 + 1 + Category + + 4 + + + fr.insee + knorkwv0-5 + 1 + + fr.insee + CA-knorkwv0-5 + 1 + Category + + 5 + + + fr.insee + knorkwv0-6 + 1 + + fr.insee + CA-knorkwv0-6 + 1 + Category + + 6 + + + + fr.insee + joirusc3 + 1 + + OUI_NON_NSP + + Regular + + Ordinal + + + fr.insee + joirusc3-1 + 1 + + fr.insee + CA-joirusc3-1 + 1 + Category + + 1 + + + fr.insee + joirusc3-2 + 1 + + fr.insee + CA-joirusc3-2 + 1 + Category + + 2 + + + fr.insee + joirusc3-3 + 1 + + fr.insee + CA-joirusc3-3 + 1 + Category + + 3 + + + + fr.insee + joirox38 + 1 + + EPROJB + + Regular + + Ordinal + + + fr.insee + joirox38-1 + 1 + + fr.insee + CA-joirox38-1 + 1 + Category + + 1 + + + fr.insee + joirox38-2 + 1 + + fr.insee + CA-joirox38-2 + 1 + Category + + 2 + + + fr.insee + joirox38-3 + 1 + + fr.insee + CA-joirox38-3 + 1 + Category + + 3 + + + fr.insee + joirox38-4 + 1 + + fr.insee + CA-joirox38-4 + 1 + Category + + 4 + + + + fr.insee + joisst25 + 1 + + EPROJD + + Regular + + Ordinal + + + fr.insee + joisst25-1 + 1 + + fr.insee + CA-joisst25-1 + 1 + Category + + 1 + + + fr.insee + joisst25-2 + 1 + + fr.insee + CA-joisst25-2 + 1 + Category + + 2 + + + fr.insee + joisst25-3 + 1 + + fr.insee + CA-joisst25-3 + 1 + Category + + 3 + + + fr.insee + joisst25-4 + 1 + + fr.insee + CA-joisst25-4 + 1 + Category + + 4 + + + + fr.insee + kqs7ptde + 1 + + EAMID1 + + Regular + + Ordinal + + + fr.insee + kqs7ptde-1 + 1 + + fr.insee + CA-kqs7ptde-1 + 1 + Category + + 1 + + + fr.insee + kqs7ptde-2 + 1 + + fr.insee + CA-kqs7ptde-2 + 1 + Category + + 2 + + + fr.insee + kqs7ptde-3 + 1 + + fr.insee + CA-kqs7ptde-3 + 1 + Category + + 3 + + + fr.insee + kqs7ptde-4 + 1 + + fr.insee + CA-kqs7ptde-4 + 1 + Category + + 4 + + + fr.insee + kqs7ptde-5 + 1 + + fr.insee + CA-kqs7ptde-5 + 1 + Category + + 7 + + + fr.insee + kqs7ptde-6 + 1 + + fr.insee + CA-kqs7ptde-6 + 1 + Category + + 5 + + + fr.insee + kqs7ptde-7 + 1 + + fr.insee + CA-kqs7ptde-7 + 1 + Category + + 6 + + + + fr.insee + kqv3pa7u + 1 + + OuiUnpeuNon + + Regular + + Ordinal + + + fr.insee + kqv3pa7u-1 + 1 + + fr.insee + CA-kqv3pa7u-1 + 1 + Category + + 1 + + + fr.insee + kqv3pa7u-2 + 1 + + fr.insee + CA-kqv3pa7u-2 + 1 + Category + + 2 + + + fr.insee + kqv3pa7u-3 + 1 + + fr.insee + CA-kqv3pa7u-3 + 1 + Category + + 3 + + + + fr.insee + kp6iy3xk + 1 + + MAA2AT_Q + + Regular + + Ordinal + + + fr.insee + kp6iy3xk-1 + 1 + + fr.insee + CA-kp6iy3xk-1 + 1 + Category + + 1 + + + fr.insee + kp6iy3xk-2 + 1 + + fr.insee + CA-kp6iy3xk-2 + 1 + Category + + 2 + + + fr.insee + kp6iy3xk-3 + 1 + + fr.insee + CA-kp6iy3xk-3 + 1 + Category + + 3 + + + fr.insee + kp6iy3xk-4 + 1 + + fr.insee + CA-kp6iy3xk-4 + 1 + Category + + 4 + + + fr.insee + kp6iy3xk-5 + 1 + + fr.insee + CA-kp6iy3xk-5 + 1 + Category + + 5 + + + + fr.insee + kf71urf1 + 1 + + MOIS + + Regular + + Ordinal + + + fr.insee + kf71urf1-1 + 1 + + fr.insee + CA-kf71urf1-1 + 1 + Category + + 1 + + + fr.insee + kf71urf1-2 + 1 + + fr.insee + CA-kf71urf1-2 + 1 + Category + + 2 + + + fr.insee + kf71urf1-3 + 1 + + fr.insee + CA-kf71urf1-3 + 1 + Category + + 3 + + + fr.insee + kf71urf1-4 + 1 + + fr.insee + CA-kf71urf1-4 + 1 + Category + + 4 + + + fr.insee + kf71urf1-5 + 1 + + fr.insee + CA-kf71urf1-5 + 1 + Category + + 5 + + + fr.insee + kf71urf1-6 + 1 + + fr.insee + CA-kf71urf1-6 + 1 + Category + + 6 + + + fr.insee + kf71urf1-7 + 1 + + fr.insee + CA-kf71urf1-7 + 1 + Category + + 7 + + + fr.insee + kf71urf1-8 + 1 + + fr.insee + CA-kf71urf1-8 + 1 + Category + + 8 + + + fr.insee + kf71urf1-9 + 1 + + fr.insee + CA-kf71urf1-9 + 1 + Category + + 9 + + + fr.insee + kf71urf1-10 + 1 + + fr.insee + CA-kf71urf1-10 + 1 + Category + + 10 + + + fr.insee + kf71urf1-11 + 1 + + fr.insee + CA-kf71urf1-11 + 1 + Category + + 11 + + + fr.insee + kf71urf1-12 + 1 + + fr.insee + CA-kf71urf1-12 + 1 + Category + + 12 + + + + fr.insee + jojv0g6x + 1 + + KCU1 + + Regular + + Ordinal + + + fr.insee + jojv0g6x-1 + 1 + + fr.insee + CA-jojv0g6x-1 + 1 + Category + + 1 + + + fr.insee + jojv0g6x-2 + 1 + + fr.insee + CA-jojv0g6x-2 + 1 + Category + + 2 + + + fr.insee + jojv0g6x-3 + 1 + + fr.insee + CA-jojv0g6x-3 + 1 + Category + + 3 + + + fr.insee + jojv0g6x-4 + 1 + + fr.insee + CA-jojv0g6x-4 + 1 + Category + + 4 + + + + fr.insee + jojum3uu + 1 + + KCU2 + + Regular + + Ordinal + + + fr.insee + jojum3uu-1 + 1 + + fr.insee + CA-jojum3uu-1 + 1 + Category + + 1 + + + fr.insee + jojum3uu-2 + 1 + + fr.insee + CA-jojum3uu-2 + 1 + Category + + 2 + + + fr.insee + jojum3uu-3 + 1 + + fr.insee + CA-jojum3uu-3 + 1 + Category + + 3 + + + fr.insee + jojum3uu-4 + 1 + + fr.insee + CA-jojum3uu-4 + 1 + Category + + 4 + + + + fr.insee + l3iobv03 + 1 + + HUTDEF + + Regular + + Ordinal + + + fr.insee + l3iobv03-1 + 1 + + fr.insee + CA-l3iobv03-1 + 1 + Category + + 1 + + + fr.insee + l3iobv03-2 + 1 + + fr.insee + CA-l3iobv03-2 + 1 + Category + + 2 + + + fr.insee + l3iobv03-3 + 1 + + fr.insee + CA-l3iobv03-3 + 1 + Category + + 3 + + + fr.insee + l3iobv03-4 + 1 + + fr.insee + CA-l3iobv03-4 + 1 + Category + + 4 + + + + fr.insee + kmd70xef + 1 + + HULHUI1 + + Regular + + Ordinal + + + fr.insee + kmd70xef-1 + 1 + + fr.insee + CA-kmd70xef-1 + 1 + Category + + 1 + + + fr.insee + kmd70xef-2 + 1 + + fr.insee + CA-kmd70xef-2 + 1 + Category + + 2 + + + fr.insee + kmd70xef-3 + 1 + + fr.insee + CA-kmd70xef-3 + 1 + Category + + 3 + + + + fr.insee + kkqw9mkz + 1 + + HUL_HUI2 + + Regular + + Ordinal + + + fr.insee + kkqw9mkz-1 + 1 + + fr.insee + CA-kkqw9mkz-1 + 1 + Category + + 1 + + + fr.insee + kkqw9mkz-2 + 1 + + fr.insee + CA-kkqw9mkz-2 + 1 + Category + + 2 + + + fr.insee + kkqw9mkz-3 + 1 + + fr.insee + CA-kkqw9mkz-3 + 1 + Category + + 3 + + + + fr.insee + jojvev63 + 1 + + HPEUP + + Regular + + Ordinal + + + fr.insee + jojvev63-1 + 1 + + fr.insee + CA-jojvev63-1 + 1 + Category + + 1 + + + fr.insee + jojvev63-2 + 1 + + fr.insee + CA-jojvev63-2 + 1 + Category + + 2 + + + fr.insee + jojvev63-3 + 1 + + fr.insee + CA-jojvev63-3 + 1 + Category + + 3 + + + fr.insee + jojvev63-4 + 1 + + fr.insee + CA-jojvev63-4 + 1 + Category + + 4 + + + fr.insee + jojvev63-5 + 1 + + fr.insee + CA-jojvev63-5 + 1 + Category + + 5 + + + + fr.insee + jojvm75x + 1 + + HAUT + + Regular + + Ordinal + + + fr.insee + jojvm75x-1 + 1 + + fr.insee + CA-jojvm75x-1 + 1 + Category + + 1 + + + fr.insee + jojvm75x-2 + 1 + + fr.insee + CA-jojvm75x-2 + 1 + Category + + 2 + + + fr.insee + jojvm75x-3 + 1 + + fr.insee + CA-jojvm75x-3 + 1 + Category + + 3 + + + + fr.insee + jruq09km + 1 + + KSJPIT + + Regular + + Ordinal + + + fr.insee + jruq09km-1 + 1 + + fr.insee + CA-jruq09km-1 + 1 + Category + + 1 + + + fr.insee + jruq09km-2 + 1 + + fr.insee + CA-jruq09km-2 + 1 + Category + + 2 + + + fr.insee + jruq09km-3 + 1 + + fr.insee + CA-jruq09km-3 + 1 + Category + + 3 + + + fr.insee + jruq09km-4 + 1 + + fr.insee + CA-jruq09km-4 + 1 + Category + + 4 + + + fr.insee + jruq09km-5 + 1 + + fr.insee + CA-jruq09km-5 + 1 + Category + + 5 + + + + fr.insee + jruscsna + 1 + + KSJC + + Regular + + Ordinal + + + fr.insee + jruscsna-1 + 1 + + fr.insee + CA-jruscsna-1 + 1 + Category + + 1 + + + fr.insee + jruscsna-2 + 1 + + fr.insee + CA-jruscsna-2 + 1 + Category + + 2 + + + fr.insee + jruscsna-3 + 1 + + fr.insee + CA-jruscsna-3 + 1 + Category + + 3 + + + + fr.insee + l3is40qi + 1 + + NBVOIT + + Regular + + Ordinal + + + fr.insee + l3is40qi-1 + 1 + + fr.insee + CA-l3is40qi-1 + 1 + Category + + 1 + + + fr.insee + l3is40qi-2 + 1 + + fr.insee + CA-l3is40qi-2 + 1 + Category + + 2 + + + fr.insee + l3is40qi-3 + 1 + + fr.insee + CA-l3is40qi-3 + 1 + Category + + 3 + + + fr.insee + l3is40qi-4 + 1 + + fr.insee + CA-l3is40qi-4 + 1 + Category + + 4 + + + + fr.insee + jruss6vy + 1 + + KGA + + Regular + + Ordinal + + + fr.insee + jruss6vy-1 + 1 + + fr.insee + CA-jruss6vy-1 + 1 + Category + + 1 + + + fr.insee + jruss6vy-2 + 1 + + fr.insee + CA-jruss6vy-2 + 1 + Category + + 2 + + + fr.insee + jruss6vy-3 + 1 + + fr.insee + CA-jruss6vy-3 + 1 + Category + + 3 + + + fr.insee + jruss6vy-4 + 1 + + fr.insee + CA-jruss6vy-4 + 1 + Category + + 4 + + + + fr.insee + kmdsf01l + 1 + + KAO1 + + Regular + + Ordinal + + + fr.insee + kmdsf01l-1 + 1 + + fr.insee + CA-kmdsf01l-1 + 1 + Category + + 1 + + + fr.insee + kmdsf01l-2 + 1 + + fr.insee + CA-kmdsf01l-2 + 1 + Category + + 2 + + + fr.insee + kmdsf01l-3 + 1 + + fr.insee + CA-kmdsf01l-3 + 1 + Category + + 3 + + + + fr.insee + jruv7r7y + 1 + + KWC1 + + Regular + + Ordinal + + + fr.insee + jruv7r7y-1 + 1 + + fr.insee + CA-jruv7r7y-1 + 1 + Category + + 1 + + + fr.insee + jruv7r7y-2 + 1 + + fr.insee + CA-jruv7r7y-2 + 1 + Category + + 2 + + + fr.insee + jruv7r7y-3 + 1 + + fr.insee + CA-jruv7r7y-3 + 1 + Category + + 3 + + + + fr.insee + jruvifd2 + 1 + + KDLK2 + + Regular + + Ordinal + + + fr.insee + jruvifd2-1 + 1 + + fr.insee + CA-jruvifd2-1 + 1 + Category + + 1 + + + fr.insee + jruvifd2-2 + 1 + + fr.insee + CA-jruvifd2-2 + 1 + Category + + 2 + + + fr.insee + jruvifd2-3 + 1 + + fr.insee + CA-jruvifd2-3 + 1 + Category + + 3 + + + fr.insee + jruvifd2-4 + 1 + + fr.insee + CA-jruvifd2-4 + 1 + Category + + 4 + + + + fr.insee + joico0rb + 1 + + satisfaction + + Regular + + Ordinal + + + fr.insee + joico0rb-1 + 1 + + fr.insee + CA-joico0rb-1 + 1 + Category + + 1 + + + fr.insee + joico0rb-2 + 1 + + fr.insee + CA-joico0rb-2 + 1 + Category + + 2 + + + fr.insee + joico0rb-3 + 1 + + fr.insee + CA-joico0rb-3 + 1 + Category + + 3 + + + fr.insee + joico0rb-4 + 1 + + fr.insee + CA-joico0rb-4 + 1 + Category + + 4 + + + fr.insee + joico0rb-5 + 1 + + fr.insee + CA-joico0rb-5 + 1 + Category + + 5 + + + + fr.insee + knioh1gp + 1 + + OLAR1 + + Regular + + Ordinal + + + fr.insee + knioh1gp-1 + 1 + + fr.insee + CA-knioh1gp-1 + 1 + Category + + 1 + + + fr.insee + knioh1gp-2 + 1 + + fr.insee + CA-knioh1gp-2 + 1 + Category + + 2 + + + fr.insee + knioh1gp-3 + 1 + + fr.insee + CA-knioh1gp-3 + 1 + Category + + 3 + + + fr.insee + knioh1gp-4 + 1 + + fr.insee + CA-knioh1gp-4 + 1 + Category + + 4 + + + + fr.insee + joidufam + 1 + + OUINON_2 + + Regular + + Ordinal + + + fr.insee + joidufam-1 + 1 + + fr.insee + CA-joidufam-1 + 1 + Category + + 1 + + + fr.insee + joidufam-2 + 1 + + fr.insee + CA-joidufam-2 + 1 + Category + + 2 + + + + fr.insee + l7j1ikot + 1 + + OLAR1DIF + + Regular + + Ordinal + + + fr.insee + l7j1ikot-1 + 1 + + fr.insee + CA-l7j1ikot-1 + 1 + Category + + 1 + + + fr.insee + l7j1ikot-2 + 1 + + fr.insee + CA-l7j1ikot-2 + 1 + Category + + 2 + + + + fr.insee + l7j1t7dy + 1 + + OLAR1DIFCO + + Regular + + Ordinal + + + fr.insee + l7j1t7dy-1 + 1 + + fr.insee + CA-l7j1t7dy-1 + 1 + Category + + 1 + + + fr.insee + l7j1t7dy-2 + 1 + + fr.insee + CA-l7j1t7dy-2 + 1 + Category + + 2 + + + fr.insee + l7j1t7dy-3 + 1 + + fr.insee + CA-l7j1t7dy-3 + 1 + Category + + 3 + + + + fr.insee + joicw344 + 1 + + OLAR2 + + Regular + + Ordinal + + + fr.insee + joicw344-1 + 1 + + fr.insee + CA-joicw344-1 + 1 + Category + + 1 + + + fr.insee + joicw344-2 + 1 + + fr.insee + CA-joicw344-2 + 1 + Category + + 2 + + + fr.insee + joicw344-3 + 1 + + fr.insee + CA-joicw344-3 + 1 + Category + + 3 + + + fr.insee + joicw344-4 + 1 + + fr.insee + CA-joicw344-4 + 1 + Category + + 4 + + + fr.insee + joicw344-5 + 1 + + fr.insee + CA-joicw344-5 + 1 + Category + + 5 + + + + fr.insee + knioesnw + 1 + + OLAR3 + + Regular + + Ordinal + + + fr.insee + knioesnw-1 + 1 + + fr.insee + CA-knioesnw-1 + 1 + Category + + 1 + + + fr.insee + knioesnw-2 + 1 + + fr.insee + CA-knioesnw-2 + 1 + Category + + 2 + + + fr.insee + knioesnw-3 + 1 + + fr.insee + CA-knioesnw-3 + 1 + Category + + 3 + + + fr.insee + knioesnw-4 + 1 + + fr.insee + CA-knioesnw-4 + 1 + Category + + 4 + + + fr.insee + knioesnw-5 + 1 + + fr.insee + CA-knioesnw-5 + 1 + Category + + 5 + + + + fr.insee + joinxitz + 1 + + SDL + + Regular + + Ordinal + + + fr.insee + joinxitz-1 + 1 + + fr.insee + CA-joinxitz-1 + 1 + Category + + 1 + + + fr.insee + joinxitz-2 + 1 + + fr.insee + CA-joinxitz-2 + 1 + Category + + 2 + + + fr.insee + joinxitz-3 + 1 + + fr.insee + CA-joinxitz-3 + 1 + Category + + 3 + + + fr.insee + joinxitz-4 + 1 + + fr.insee + CA-joinxitz-4 + 1 + Category + + 4 + + + fr.insee + joinxitz-5 + 1 + + fr.insee + CA-joinxitz-5 + 1 + Category + + 5 + + + fr.insee + joinxitz-6 + 1 + + fr.insee + CA-joinxitz-6 + 1 + Category + + 6 + + + fr.insee + joinxitz-7 + 1 + + fr.insee + CA-joinxitz-7 + 1 + Category + + 7 + + + fr.insee + joinxitz-8 + 1 + + fr.insee + CA-joinxitz-8 + 1 + Category + + 8 + + + + fr.insee + kqr0x5ml + 1 + + liste_SDL2 + + Regular + + Ordinal + + + fr.insee + kqr0x5ml-1 + 1 + + fr.insee + CA-kqr0x5ml-1 + 1 + Category + + 1 + + + fr.insee + kqr0x5ml-2 + 1 + + fr.insee + CA-kqr0x5ml-2 + 1 + Category + + 2 + + + fr.insee + kqr0x5ml-3 + 1 + + fr.insee + CA-kqr0x5ml-3 + 1 + Category + + 3 + + + + fr.insee + kpb8y2tb + 1 + + SDN1 + + Regular + + Ordinal + + + fr.insee + kpb8y2tb-1 + 1 + + fr.insee + CA-kpb8y2tb-1 + 1 + Category + + 1 + + + fr.insee + kpb8y2tb-2 + 1 + + fr.insee + CA-kpb8y2tb-2 + 1 + Category + + 2 + + + + fr.insee + joiodz52 + 1 + + SDT1 + + Regular + + Ordinal + + + fr.insee + joiodz52-1 + 1 + + fr.insee + CA-joiodz52-1 + 1 + Category + + 1 + + + fr.insee + joiodz52-2 + 1 + + fr.insee + CA-joiodz52-2 + 1 + Category + + 2 + + + fr.insee + joiodz52-3 + 1 + + fr.insee + CA-joiodz52-3 + 1 + Category + + 3 + + + fr.insee + joiodz52-4 + 1 + + fr.insee + CA-joiodz52-4 + 1 + Category + + 4 + + + fr.insee + joiodz52-5 + 1 + + fr.insee + CA-joiodz52-5 + 1 + Category + + 5 + + + + fr.insee + kw10q170 + 1 + + SDL_7 + + Regular + + Ordinal + + + fr.insee + kw10q170-1 + 1 + + fr.insee + CA-kw10q170-1 + 1 + Category + + 1 + + + fr.insee + kw10q170-2 + 1 + + fr.insee + CA-kw10q170-2 + 1 + Category + + 2 + + + fr.insee + kw10q170-3 + 1 + + fr.insee + CA-kw10q170-3 + 1 + Category + + 3 + + + fr.insee + kw10q170-4 + 1 + + fr.insee + CA-kw10q170-4 + 1 + Category + + 4 + + + fr.insee + kw10q170-5 + 1 + + fr.insee + CA-kw10q170-5 + 1 + Category + + 5 + + + fr.insee + kw10q170-6 + 1 + + fr.insee + CA-kw10q170-6 + 1 + Category + + 6 + + + fr.insee + kw10q170-7 + 1 + + fr.insee + CA-kw10q170-7 + 1 + Category + + 7 + + + + fr.insee + joo1g3aq + 1 + + VMODM + + Regular + + Ordinal + + + fr.insee + joo1g3aq-1 + 1 + + fr.insee + CA-joo1g3aq-1 + 1 + Category + + 1 + + + fr.insee + joo1g3aq-2 + 1 + + fr.insee + CA-joo1g3aq-2 + 1 + Category + + 2 + + + fr.insee + joo1g3aq-3 + 1 + + fr.insee + CA-joo1g3aq-3 + 1 + Category + + 3 + + + fr.insee + joo1g3aq-4 + 1 + + fr.insee + CA-joo1g3aq-4 + 1 + Category + + 4 + + + fr.insee + joo1g3aq-5 + 1 + + fr.insee + CA-joo1g3aq-5 + 1 + Category + + 5 + + + fr.insee + joo1g3aq-6 + 1 + + fr.insee + CA-joo1g3aq-6 + 1 + Category + + 6 + + + fr.insee + joo1g3aq-7 + 1 + + fr.insee + CA-joo1g3aq-7 + 1 + Category + + 7 + + + + fr.insee + joo1pxqg + 1 + + VMODP1 + + Regular + + Ordinal + + + fr.insee + joo1pxqg-1 + 1 + + fr.insee + CA-joo1pxqg-1 + 1 + Category + + 3 + + + fr.insee + joo1pxqg-2 + 1 + + fr.insee + CA-joo1pxqg-2 + 1 + Category + + 1 + + + fr.insee + joo1pxqg-3 + 1 + + fr.insee + CA-joo1pxqg-3 + 1 + Category + + 2 + + + fr.insee + joo1pxqg-4 + 1 + + fr.insee + CA-joo1pxqg-4 + 1 + Category + + 4 + + + + fr.insee + koe0mn5d + 1 + + VMODP2 + + Regular + + Ordinal + + + fr.insee + koe0mn5d-1 + 1 + + fr.insee + CA-koe0mn5d-1 + 1 + Category + + 1 + + + fr.insee + koe0mn5d-2 + 1 + + fr.insee + CA-koe0mn5d-2 + 1 + Category + + 2 + + + fr.insee + koe0mn5d-3 + 1 + + fr.insee + CA-koe0mn5d-3 + 1 + Category + + 3 + + + + fr.insee + joph1lnb + 1 + + VVENDL + + Regular + + Ordinal + + + fr.insee + joph1lnb-1 + 1 + + fr.insee + CA-joph1lnb-1 + 1 + Category + + 1 + + + fr.insee + joph1lnb-2 + 1 + + fr.insee + CA-joph1lnb-2 + 1 + Category + + 2 + + + fr.insee + joph1lnb-3 + 1 + + fr.insee + CA-joph1lnb-3 + 1 + Category + + 3 + + + + fr.insee + jopgr6lb + 1 + + VFFH + + Regular + + Ordinal + + + fr.insee + jopgr6lb-1 + 1 + + fr.insee + CA-jopgr6lb-1 + 1 + Category + + 1 + + + fr.insee + jopgr6lb-2 + 1 + + fr.insee + CA-jopgr6lb-2 + 1 + Category + + 2 + + + fr.insee + jopgr6lb-3 + 1 + + fr.insee + CA-jopgr6lb-3 + 1 + Category + + 3 + + + fr.insee + jopgr6lb-4 + 1 + + fr.insee + CA-jopgr6lb-4 + 1 + Category + + 4 + + + fr.insee + jopgr6lb-5 + 1 + + fr.insee + CA-jopgr6lb-5 + 1 + Category + + 5 + + + + fr.insee + joph7hjs + 1 + + VBILLOG + + Regular + + Ordinal + + + fr.insee + joph7hjs-1 + 1 + + fr.insee + CA-joph7hjs-1 + 1 + Category + + 1 + + + fr.insee + joph7hjs-2 + 1 + + fr.insee + CA-joph7hjs-2 + 1 + Category + + 2 + + + fr.insee + joph7hjs-3 + 1 + + fr.insee + CA-joph7hjs-3 + 1 + Category + + 3 + + + + fr.insee + jopkxxc6 + 1 + + VLR_1 + + Regular + + Ordinal + + + fr.insee + jopkxxc6-1 + 1 + + fr.insee + CA-jopkxxc6-1 + 1 + Category + + 1 + + + fr.insee + jopkxxc6-2 + 1 + + fr.insee + CA-jopkxxc6-2 + 1 + Category + + 2 + + + fr.insee + jopkxxc6-3 + 1 + + fr.insee + CA-jopkxxc6-3 + 1 + Category + + 3 + + + fr.insee + jopkxxc6-4 + 1 + + fr.insee + CA-jopkxxc6-4 + 1 + Category + + 4 + + + fr.insee + jopkxxc6-5 + 1 + + fr.insee + CA-jopkxxc6-5 + 1 + Category + + 5 + + + + fr.insee + joplgdcw + 1 + + VLA + + Regular + + Ordinal + + + fr.insee + joplgdcw-1 + 1 + + fr.insee + CA-joplgdcw-1 + 1 + Category + + 1 + + + fr.insee + joplgdcw-2 + 1 + + fr.insee + CA-joplgdcw-2 + 1 + Category + + 2 + + + fr.insee + joplgdcw-3 + 1 + + fr.insee + CA-joplgdcw-3 + 1 + Category + + 3 + + + fr.insee + joplgdcw-4 + 1 + + fr.insee + CA-joplgdcw-4 + 1 + Category + + 4 + + + + fr.insee + joplsxki + 1 + + VSO + + Regular + + Ordinal + + + fr.insee + joplsxki-1 + 1 + + fr.insee + CA-joplsxki-1 + 1 + Category + + 1 + + + fr.insee + joplsxki-2 + 1 + + fr.insee + CA-joplsxki-2 + 1 + Category + + 2 + + + fr.insee + joplsxki-3 + 1 + + fr.insee + CA-joplsxki-3 + 1 + Category + + 3 + + + fr.insee + joplsxki-4 + 1 + + fr.insee + CA-joplsxki-4 + 1 + Category + + 4 + + + fr.insee + joplsxki-5 + 1 + + fr.insee + CA-joplsxki-5 + 1 + Category + + 5 + + + + fr.insee + joprlb0a + 1 + + VSY + + Regular + + Ordinal + + + fr.insee + joprlb0a-1 + 1 + + fr.insee + CA-joprlb0a-1 + 1 + Category + + 1 + + + fr.insee + joprlb0a-2 + 1 + + fr.insee + CA-joprlb0a-2 + 1 + Category + + 2 + + + fr.insee + joprlb0a-3 + 1 + + fr.insee + CA-joprlb0a-3 + 1 + Category + + 3 + + + + fr.insee + joprub8u + 1 + + VTL + + Regular + + Ordinal + + + fr.insee + joprub8u-1 + 1 + + fr.insee + CA-joprub8u-1 + 1 + Category + + 1 + + + fr.insee + joprub8u-2 + 1 + + fr.insee + CA-joprub8u-2 + 1 + Category + + 2 + + + fr.insee + joprub8u-3 + 1 + + fr.insee + CA-joprub8u-3 + 1 + Category + + 3 + + + fr.insee + joprub8u-4 + 1 + + fr.insee + CA-joprub8u-4 + 1 + Category + + 4 + + + fr.insee + joprub8u-5 + 1 + + fr.insee + CA-joprub8u-5 + 1 + Category + + 5 + + + fr.insee + joprub8u-6 + 1 + + fr.insee + CA-joprub8u-6 + 1 + Category + + 6 + + + + fr.insee + jopsh9ng + 1 + + VOP + + Regular + + Ordinal + + + fr.insee + jopsh9ng-1 + 1 + + fr.insee + CA-jopsh9ng-1 + 1 + Category + + 1 + + + fr.insee + jopsh9ng-2 + 1 + + fr.insee + CA-jopsh9ng-2 + 1 + Category + + 2 + + + fr.insee + jopsh9ng-3 + 1 + + fr.insee + CA-jopsh9ng-3 + 1 + Category + + 3 + + + fr.insee + jopsh9ng-4 + 1 + + fr.insee + CA-jopsh9ng-4 + 1 + Category + + 4 + + + fr.insee + jopsh9ng-5 + 1 + + fr.insee + CA-jopsh9ng-5 + 1 + Category + + 5 + + + fr.insee + jopsh9ng-6 + 1 + + fr.insee + CA-jopsh9ng-6 + 1 + Category + + 6 + + + fr.insee + jopsh9ng-7 + 1 + + fr.insee + CA-jopsh9ng-7 + 1 + Category + + 7 + + + + fr.insee + joptnagd + 1 + + VLRD + + Regular + + Ordinal + + + fr.insee + joptnagd-1 + 1 + + fr.insee + CA-joptnagd-1 + 1 + Category + + 1 + + + fr.insee + joptnagd-2 + 1 + + fr.insee + CA-joptnagd-2 + 1 + Category + + 2 + + + + fr.insee + jopu65h0 + 1 + + VLAB1 + + Regular + + Ordinal + + + fr.insee + jopu65h0-1 + 1 + + fr.insee + CA-jopu65h0-1 + 1 + Category + + 1 + + + fr.insee + jopu65h0-2 + 1 + + fr.insee + CA-jopu65h0-2 + 1 + Category + + 2 + + + fr.insee + jopu65h0-3 + 1 + + fr.insee + CA-jopu65h0-3 + 1 + Category + + 3 + + + fr.insee + jopu65h0-4 + 1 + + fr.insee + CA-jopu65h0-4 + 1 + Category + + 4 + + + + fr.insee + jopur3k1 + 1 + + VDSY + + Regular + + Ordinal + + + fr.insee + jopur3k1-1 + 1 + + fr.insee + CA-jopur3k1-1 + 1 + Category + + 1 + + + fr.insee + jopur3k1-2 + 1 + + fr.insee + CA-jopur3k1-2 + 1 + Category + + 2 + + + fr.insee + jopur3k1-3 + 1 + + fr.insee + CA-jopur3k1-3 + 1 + Category + + 3 + + + + fr.insee + kovj0vbo + 1 + + VRAIS1 + + Regular + + Ordinal + + + fr.insee + kovj0vbo-1 + 1 + + fr.insee + CA-kovj0vbo-1 + 1 + Category + + 1 + + + fr.insee + kovj0vbo-2 + 1 + + fr.insee + CA-kovj0vbo-2 + 1 + Category + + 2 + + + fr.insee + kovj0vbo-3 + 1 + + fr.insee + CA-kovj0vbo-3 + 1 + Category + + 3 + + + + fr.insee + koviy969 + 1 + + VRAIS2 + + Regular + + Ordinal + + + fr.insee + koviy969-1 + 1 + + fr.insee + CA-koviy969-1 + 1 + Category + + 1 + + + fr.insee + koviy969-2 + 1 + + fr.insee + CA-koviy969-2 + 1 + Category + + 2 + + + fr.insee + koviy969-3 + 1 + + fr.insee + CA-koviy969-3 + 1 + Category + + 3 + + + fr.insee + koviy969-4 + 1 + + fr.insee + CA-koviy969-4 + 1 + Category + + 4 + + + fr.insee + koviy969-5 + 1 + + fr.insee + CA-koviy969-5 + 1 + Category + + 5 + + + fr.insee + koviy969-6 + 1 + + fr.insee + CA-koviy969-6 + 1 + Category + + 6 + + + fr.insee + koviy969-7 + 1 + + fr.insee + CA-koviy969-7 + 1 + Category + + 7 + + + + fr.insee + kovj3f3o + 1 + + VRAIS3 + + Regular + + Ordinal + + + fr.insee + kovj3f3o-1 + 1 + + fr.insee + CA-kovj3f3o-1 + 1 + Category + + 1 + + + fr.insee + kovj3f3o-2 + 1 + + fr.insee + CA-kovj3f3o-2 + 1 + Category + + 2 + + + fr.insee + kovj3f3o-3 + 1 + + fr.insee + CA-kovj3f3o-3 + 1 + Category + + 3 + + + fr.insee + kovj3f3o-4 + 1 + + fr.insee + CA-kovj3f3o-4 + 1 + Category + + 4 + + + fr.insee + kovj3f3o-5 + 1 + + fr.insee + CA-kovj3f3o-5 + 1 + Category + + 5 + + + fr.insee + kovj3f3o-6 + 1 + + fr.insee + CA-kovj3f3o-6 + 1 + Category + + 6 + + + + fr.insee + koviyjcm + 1 + + VRAIS4 + + Regular + + Ordinal + + + fr.insee + koviyjcm-1 + 1 + + fr.insee + CA-koviyjcm-1 + 1 + Category + + 1 + + + fr.insee + koviyjcm-2 + 1 + + fr.insee + CA-koviyjcm-2 + 1 + Category + + 2 + + + fr.insee + koviyjcm-3 + 1 + + fr.insee + CA-koviyjcm-3 + 1 + Category + + 3 + + + fr.insee + koviyjcm-4 + 1 + + fr.insee + CA-koviyjcm-4 + 1 + Category + + 4 + + + fr.insee + koviyjcm-5 + 1 + + fr.insee + CA-koviyjcm-5 + 1 + Category + + 5 + + + + fr.insee + lgmga7g1 + 1 + + VRAIS5 + + Regular + + Ordinal + + + fr.insee + lgmga7g1-1 + 1 + + fr.insee + CA-lgmga7g1-1 + 1 + Category + + 1 + + + fr.insee + lgmga7g1-2 + 1 + + fr.insee + CA-lgmga7g1-2 + 1 + Category + + 2 + + + fr.insee + lgmga7g1-3 + 1 + + fr.insee + CA-lgmga7g1-3 + 1 + Category + + 3 + + + fr.insee + lgmga7g1-4 + 1 + + fr.insee + CA-lgmga7g1-4 + 1 + Category + + 4 + + + fr.insee + lgmga7g1-5 + 1 + + fr.insee + CA-lgmga7g1-5 + 1 + Category + + 5 + + + fr.insee + lgmga7g1-6 + 1 + + fr.insee + CA-lgmga7g1-6 + 1 + Category + + 6 + + + + fr.insee + kp5afd7f + 1 + + TELFIXE + + Regular + + Ordinal + + + fr.insee + kp5afd7f-1 + 1 + + fr.insee + CA-kp5afd7f-1 + 1 + Category + + 1 + + + fr.insee + kp5afd7f-2 + 1 + + fr.insee + CA-kp5afd7f-2 + 1 + Category + + 2 + + + fr.insee + kp5afd7f-3 + 1 + + fr.insee + CA-kp5afd7f-3 + 1 + Category + + 3 + + + fr.insee + kp5afd7f-4 + 1 + + fr.insee + CA-kp5afd7f-4 + 1 + Category + + 4 + + + fr.insee + kp5afd7f-5 + 1 + + fr.insee + CA-kp5afd7f-5 + 1 + Category + + 5 + + + + fr.insee + kp5b81ae + 1 + + TELMOB + + Regular + + Ordinal + + + fr.insee + kp5b81ae-1 + 1 + + fr.insee + CA-kp5b81ae-1 + 1 + Category + + 1 + + + fr.insee + kp5b81ae-2 + 1 + + fr.insee + CA-kp5b81ae-2 + 1 + Category + + 2 + + + fr.insee + kp5b81ae-3 + 1 + + fr.insee + CA-kp5b81ae-3 + 1 + Category + + 3 + + + fr.insee + kp5b81ae-4 + 1 + + fr.insee + CA-kp5b81ae-4 + 1 + Category + + 4 + + + fr.insee + kp5b81ae-5 + 1 + + fr.insee + CA-kp5b81ae-5 + 1 + Category + + 5 + + + + fr.insee + kp5bdcd2 + 1 + + UWEB + + Regular + + Ordinal + + + fr.insee + kp5bdcd2-1 + 1 + + fr.insee + CA-kp5bdcd2-1 + 1 + Category + + 1 + + + fr.insee + kp5bdcd2-2 + 1 + + fr.insee + CA-kp5bdcd2-2 + 1 + Category + + 2 + + + fr.insee + kp5bdcd2-3 + 1 + + fr.insee + CA-kp5bdcd2-3 + 1 + Category + + 3 + + + fr.insee + kp5bdcd2-4 + 1 + + fr.insee + CA-kp5bdcd2-4 + 1 + Category + + 4 + + + fr.insee + kp5bdcd2-5 + 1 + + fr.insee + CA-kp5bdcd2-5 + 1 + Category + + 5 + + + + fr.insee + kneexxy3 + 1 + + L_CIV + + Regular + + Ordinal + + + fr.insee + kneexxy3-1 + 1 + + fr.insee + CA-kneexxy3-1 + 1 + Category + + M. + + + fr.insee + kneexxy3-2 + 1 + + fr.insee + CA-kneexxy3-2 + 1 + Category + + Mme + + + + fr.insee + INSEE-COMMUN-CL-Booleen + 1 + + Booleen + + Regular + + Ordinal + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + + fr.insee + INSEE-COMMUN-CA-Booleen-1 + 1 + Category + + 1 + + + + + fr.insee + VariableScheme-llxh9g6g + 1 + + Variable Scheme for the survey + + + fr.insee + kcoks7di + 1 + + ADRESSE + + + Adresse connue (ADRESSE) + + + fr.insee + kcoks7di-VROP + 1 + + + + fr.insee + kcoks7di-GI + 1 + GenerationInstruction + + + fr.insee + kcoks7di-GOP + 1 + OutParameter + + + fr.insee + kcoks7di-VROP + 1 + OutParameter + + + + + + + + fr.insee + kcolhi30 + 1 + + ADRCOLLC + + + Adresse finale (ADRCOLLC) + + + fr.insee + kcolhi30-VROP + 1 + + + + fr.insee + kcolhi30-GI + 1 + GenerationInstruction + + + fr.insee + kcolhi30-GOP + 1 + OutParameter + + + fr.insee + kcolhi30-VROP + 1 + OutParameter + + + + + + + + fr.insee + kcom3tr9 + 1 + + NOMOCC1 + + + Correspondant connu (NOMOCC1) + + + fr.insee + kcom3tr9-VROP + 1 + + + + fr.insee + kcom3tr9-GI + 1 + GenerationInstruction + + + fr.insee + kcom3tr9-GOP + 1 + OutParameter + + + fr.insee + kcom3tr9-VROP + 1 + OutParameter + + + + + + + + fr.insee + kconppt9 + 1 + + NOMCOLLC + + + Noms destinataires (NOMCOLLC) + + + fr.insee + kconppt9-VROP + 1 + + + + fr.insee + kconppt9-GI + 1 + GenerationInstruction + + + fr.insee + kconppt9-GOP + 1 + OutParameter + + + fr.insee + kconppt9-VROP + 1 + OutParameter + + + + + + + + fr.insee + kmook912 + 1 + + LIB_FEM + + + Genre de la personne (LIB_FEM) + + + fr.insee + kmook912-VROP + 1 + + + + fr.insee + kmook912-GI + 1 + GenerationInstruction + + + fr.insee + kmook912-GOP + 1 + OutParameter + + + fr.insee + kmook912-VROP + 1 + OutParameter + + + + + + + + fr.insee + kmoofc72 + 1 + + AGE + + + Âge (AGE) + + + fr.insee + kmoofc72-VROP + 1 + + + + fr.insee + kmoofc72-GI + 1 + GenerationInstruction + + + fr.insee + kmoofc72-GOP + 1 + OutParameter + + + fr.insee + kmoofc72-VROP + 1 + OutParameter + + + + + + 0 + 125 + + Decimal + + + + + fr.insee + kmw4vrul + 1 + + LIB_PARENT + + + Parent du répondant (LIB_PARENT) + + + fr.insee + kmw4vrul-VROP + 1 + + + + fr.insee + kmw4vrul-GI + 1 + GenerationInstruction + + + fr.insee + kmw4vrul-GOP + 1 + OutParameter + + + fr.insee + kmw4vrul-VROP + 1 + OutParameter + + + + + + + + fr.insee + kmw5a7qq + 1 + + LIB_ENFANT + + + Enfant du répondant (LIB_ENFANT) + + + fr.insee + kmw5a7qq-VROP + 1 + + + + fr.insee + kmw5a7qq-GI + 1 + GenerationInstruction + + + fr.insee + kmw5a7qq-GOP + 1 + OutParameter + + + fr.insee + kmw5a7qq-VROP + 1 + OutParameter + + + + + + + + fr.insee + kmw4w899 + 1 + + LIB_GDPARENT + + + Grand-parent du répondant (LIB_GDPARENT) + + + fr.insee + kmw4w899-VROP + 1 + + + + fr.insee + kmw4w899-GI + 1 + GenerationInstruction + + + fr.insee + kmw4w899-GOP + 1 + OutParameter + + + fr.insee + kmw4w899-VROP + 1 + OutParameter + + + + + + + + fr.insee + kmw527m3 + 1 + + LIB_PTENFANT + + + Petit-enfant du répondant (LIB_PTENFANT) + + + fr.insee + kmw527m3-VROP + 1 + + + + fr.insee + kmw527m3-GI + 1 + GenerationInstruction + + + fr.insee + kmw527m3-GOP + 1 + OutParameter + + + fr.insee + kmw527m3-VROP + 1 + OutParameter + + + + + + + + fr.insee + kmw5hke3 + 1 + + LIB_VEUF + + + Personne veuve (LIB_VEUF) + + + fr.insee + kmw5hke3-VROP + 1 + + + + fr.insee + kmw5hke3-GI + 1 + GenerationInstruction + + + fr.insee + kmw5hke3-GOP + 1 + OutParameter + + + fr.insee + kmw5hke3-VROP + 1 + OutParameter + + + + + + + + fr.insee + kmx8i16l + 1 + + LIB_SUJET + + + Pronom personnel (LIB_SUJET) + + + fr.insee + kmx8i16l-VROP + 1 + + + + fr.insee + kmx8i16l-GI + 1 + GenerationInstruction + + + fr.insee + kmx8i16l-GOP + 1 + OutParameter + + + fr.insee + kmx8i16l-VROP + 1 + OutParameter + + + + + + + + fr.insee + kmx86dk5 + 1 + + LIB_PRONOM + + + Pronom (LIB_PRONOM) + + + fr.insee + kmx86dk5-VROP + 1 + + + + fr.insee + kmx86dk5-GI + 1 + GenerationInstruction + + + fr.insee + kmx86dk5-GOP + 1 + OutParameter + + + fr.insee + kmx86dk5-VROP + 1 + OutParameter + + + + + + + + fr.insee + koegmz7o + 1 + + NHAB + + + Nombre d'habitants (NHAB) + + + fr.insee + koegmz7o-VROP + 1 + + + + fr.insee + koegmz7o-GI + 1 + GenerationInstruction + + + fr.insee + koegmz7o-GOP + 1 + OutParameter + + + fr.insee + koegmz7o-VROP + 1 + OutParameter + + + + + + 1 + 15 + + Decimal + + + + + fr.insee + kbjjncl4 + 1 + + MAA2AT + + + MAA2AT + + + fr.insee + kbjjncl4-VROP + 1 + + + + fr.insee + kbjjncl4-GI + 1 + GenerationInstruction + + + fr.insee + kbjjncl4-GOP + 1 + OutParameter + + + fr.insee + kbjjncl4-VROP + 1 + OutParameter + + + + + + + + fr.insee + kbkesufu + 1 + + MAA2ATC + + + MAA2ATC + + + fr.insee + kbkesufu-VROP + 1 + + + + fr.insee + kbkesufu-GI + 1 + GenerationInstruction + + + fr.insee + kbkesufu-GOP + 1 + OutParameter + + + fr.insee + kbkesufu-VROP + 1 + OutParameter + + + + + + + + fr.insee + kbkispr8 + 1 + + MAA3AT + + + MAA3AT + + + fr.insee + kbkispr8-VROP + 1 + + + + fr.insee + kbkispr8-GI + 1 + GenerationInstruction + + + fr.insee + kbkispr8-GOP + 1 + OutParameter + + + fr.insee + kbkispr8-VROP + 1 + OutParameter + + + + + + + + fr.insee + kbkitdek + 1 + + MAA1AT + + + MAA1AT + + + fr.insee + kbkitdek-VROP + 1 + + + + fr.insee + kbkitdek-GI + 1 + GenerationInstruction + + + fr.insee + kbkitdek-GOP + 1 + OutParameter + + + fr.insee + kbkitdek-VROP + 1 + OutParameter + + + + + + + + fr.insee + kbmb2qvv + 1 + + ANNEENQ + + + ANNEENQ + + + fr.insee + kbmb2qvv-VROP + 1 + + + + fr.insee + kbmb2qvv-GI + 1 + GenerationInstruction + + + fr.insee + kbmb2qvv-GOP + 1 + OutParameter + + + fr.insee + kbmb2qvv-VROP + 1 + OutParameter + + + + + + + + fr.insee + kbmb6u1h + 1 + + MOISENQ + + + MOISENQ + + + fr.insee + kbmb6u1h-VROP + 1 + + + + fr.insee + kbmb6u1h-GI + 1 + GenerationInstruction + + + fr.insee + kbmb6u1h-GOP + 1 + OutParameter + + + fr.insee + kbmb6u1h-VROP + 1 + OutParameter + + + + + + + + fr.insee + kcotuys2 + 1 + + libMAA3 + + + libMAA3 + + + fr.insee + kcotuys2-VROP + 1 + + + + fr.insee + kcotuys2-GI + 1 + GenerationInstruction + + + fr.insee + kcotuys2-GOP + 1 + OutParameter + + + fr.insee + kcotuys2-VROP + 1 + OutParameter + + + + + + + + fr.insee + kcp0yph2 + 1 + + libHSP + + + libHSP + + + fr.insee + kcp0yph2-VROP + 1 + + + + fr.insee + kcp0yph2-GI + 1 + GenerationInstruction + + + fr.insee + kcp0yph2-GOP + 1 + OutParameter + + + fr.insee + kcp0yph2-VROP + 1 + OutParameter + + + + + + + + fr.insee + kd4q6heg + 1 + + libHSI1 + + + libHSI1 + + + fr.insee + kd4q6heg-VROP + 1 + + + + fr.insee + kd4q6heg-GI + 1 + GenerationInstruction + + + fr.insee + kd4q6heg-GOP + 1 + OutParameter + + + fr.insee + kd4q6heg-VROP + 1 + OutParameter + + + + + + + + fr.insee + kd5x12n1 + 1 + + libHPHa + + + libHPHa + + + fr.insee + kd5x12n1-VROP + 1 + + + + fr.insee + kd5x12n1-GI + 1 + GenerationInstruction + + + fr.insee + kd5x12n1-GOP + 1 + OutParameter + + + fr.insee + kd5x12n1-VROP + 1 + OutParameter + + + + + + + + fr.insee + kd5wsv3n + 1 + + libHPHp + + + libHPHp + + + fr.insee + kd5wsv3n-VROP + 1 + + + + fr.insee + kd5wsv3n-GI + 1 + GenerationInstruction + + + fr.insee + kd5wsv3n-GOP + 1 + OutParameter + + + fr.insee + kd5wsv3n-VROP + 1 + OutParameter + + + + + + + + fr.insee + kd5x03yf + 1 + + libHPHc + + + libHPHc + + + fr.insee + kd5x03yf-VROP + 1 + + + + fr.insee + kd5x03yf-GI + 1 + GenerationInstruction + + + fr.insee + kd5x03yf-GOP + 1 + OutParameter + + + fr.insee + kd5x03yf-VROP + 1 + OutParameter + + + + + + + + fr.insee + kd5xwi4p + 1 + + libHST + + + libHST + + + fr.insee + kd5xwi4p-VROP + 1 + + + + fr.insee + kd5xwi4p-GI + 1 + GenerationInstruction + + + fr.insee + kd5xwi4p-GOP + 1 + OutParameter + + + fr.insee + kd5xwi4p-VROP + 1 + OutParameter + + + + + + + + fr.insee + kd7fq6ld + 1 + + libHSTmoy + + + libHSTmoy + + + fr.insee + kd7fq6ld-VROP + 1 + + + + fr.insee + kd7fq6ld-GI + 1 + GenerationInstruction + + + fr.insee + kd7fq6ld-GOP + 1 + OutParameter + + + fr.insee + kd7fq6ld-VROP + 1 + OutParameter + + + + + + 0 + 1000 + + Decimal + + + + + fr.insee + kd7h7u8j + 1 + + libHSTmoy2 + + + libHSTmoy2 + + + fr.insee + kd7h7u8j-VROP + 1 + + + + fr.insee + kd7h7u8j-GI + 1 + GenerationInstruction + + + fr.insee + kd7h7u8j-GOP + 1 + OutParameter + + + fr.insee + kd7h7u8j-VROP + 1 + OutParameter + + + + + + 0 + 1000 + + Decimal + + + + + fr.insee + kd8qhmj5 + 1 + + libKBA + + + libKBA + + + fr.insee + kd8qhmj5-VROP + 1 + + + + fr.insee + kd8qhmj5-GI + 1 + GenerationInstruction + + + fr.insee + kd8qhmj5-GOP + 1 + OutParameter + + + fr.insee + kd8qhmj5-VROP + 1 + OutParameter + + + + + + + + fr.insee + kd8qo38q + 1 + + libKJA + + + libKJA + + + fr.insee + kd8qo38q-VROP + 1 + + + + fr.insee + kd8qo38q-GI + 1 + GenerationInstruction + + + fr.insee + kd8qo38q-GOP + 1 + OutParameter + + + fr.insee + kd8qo38q-VROP + 1 + OutParameter + + + + + + + + fr.insee + kd8yarle + 1 + + libHTLC2 + + + libHTLC2 + + + fr.insee + kd8yarle-VROP + 1 + + + + fr.insee + kd8yarle-GI + 1 + GenerationInstruction + + + fr.insee + kd8yarle-GOP + 1 + OutParameter + + + fr.insee + kd8yarle-VROP + 1 + OutParameter + + + + + + + + fr.insee + kd91m689 + 1 + + libKVELO + + + libKVELO + + + fr.insee + kd91m689-VROP + 1 + + + + fr.insee + kd91m689-GI + 1 + GenerationInstruction + + + fr.insee + kd91m689-GOP + 1 + OutParameter + + + fr.insee + kd91m689-VROP + 1 + OutParameter + + + + + + + + fr.insee + kd9dm2z8 + 1 + + libKAO + + + libKAO + + + fr.insee + kd9dm2z8-VROP + 1 + + + + fr.insee + kd9dm2z8-GI + 1 + GenerationInstruction + + + fr.insee + kd9dm2z8-GOP + 1 + OutParameter + + + fr.insee + kd9dm2z8-VROP + 1 + OutParameter + + + + + + + + fr.insee + kf5dz367 + 1 + + LIB_FEM2 + + + LIB_FEM2 + + + fr.insee + kf5dz367-VROP + 1 + + + + fr.insee + kf5dz367-GI + 1 + GenerationInstruction + + + fr.insee + kf5dz367-GOP + 1 + OutParameter + + + fr.insee + kf5dz367-VROP + 1 + OutParameter + + + + + + + + fr.insee + klutbpfw + 1 + + STOC + + + STOC + + + fr.insee + klutbpfw-VROP + 1 + + + + fr.insee + klutbpfw-GI + 1 + GenerationInstruction + + + fr.insee + klutbpfw-GOP + 1 + OutParameter + + + fr.insee + klutbpfw-VROP + 1 + OutParameter + + + + + + + + fr.insee + klw3bb9m + 1 + + libHSI2 + + + libHSI2 + + + fr.insee + klw3bb9m-VROP + 1 + + + + fr.insee + klw3bb9m-GI + 1 + GenerationInstruction + + + fr.insee + klw3bb9m-GOP + 1 + OutParameter + + + fr.insee + klw3bb9m-VROP + 1 + OutParameter + + + + + + + + fr.insee + kmdb0l68 + 1 + + liHPHc2 + + + liHPHc2 + + + fr.insee + kmdb0l68-VROP + 1 + + + + fr.insee + kmdb0l68-GI + 1 + GenerationInstruction + + + fr.insee + kmdb0l68-GOP + 1 + OutParameter + + + fr.insee + kmdb0l68-VROP + 1 + OutParameter + + + + + + + + fr.insee + kmdbjrqx + 1 + + libHSTa + + + libHSTa + + + fr.insee + kmdbjrqx-VROP + 1 + + + + fr.insee + kmdbjrqx-GI + 1 + GenerationInstruction + + + fr.insee + kmdbjrqx-GOP + 1 + OutParameter + + + fr.insee + kmdbjrqx-VROP + 1 + OutParameter + + + + + + + + fr.insee + kmdc1r1x + 1 + + libHSTp + + + libHSTp + + + fr.insee + kmdc1r1x-VROP + 1 + + + + fr.insee + kmdc1r1x-GI + 1 + GenerationInstruction + + + fr.insee + kmdc1r1x-GOP + 1 + OutParameter + + + fr.insee + kmdc1r1x-VROP + 1 + OutParameter + + + + + + + + fr.insee + kmddimy7 + 1 + + libHSTc + + + libHSTc + + + fr.insee + kmddimy7-VROP + 1 + + + + fr.insee + kmddimy7-GI + 1 + GenerationInstruction + + + fr.insee + kmddimy7-GOP + 1 + OutParameter + + + fr.insee + kmddimy7-VROP + 1 + OutParameter + + + + + + + + fr.insee + kmdi456r + 1 + + libHTLC + + + libHTLC + + + fr.insee + kmdi456r-VROP + 1 + + + + fr.insee + kmdi456r-GI + 1 + GenerationInstruction + + + fr.insee + kmdi456r-GOP + 1 + OutParameter + + + fr.insee + kmdi456r-VROP + 1 + OutParameter + + + + + + + + fr.insee + kmdiz1lc + 1 + + libKSMI + + + libKSMI + + + fr.insee + kmdiz1lc-VROP + 1 + + + + fr.insee + kmdiz1lc-GI + 1 + GenerationInstruction + + + fr.insee + kmdiz1lc-GOP + 1 + OutParameter + + + fr.insee + kmdiz1lc-VROP + 1 + OutParameter + + + + + + + + fr.insee + kmdjrrtc + 1 + + libKSJPI + + + libKSJPI + + + fr.insee + kmdjrrtc-VROP + 1 + + + + fr.insee + kmdjrrtc-GI + 1 + GenerationInstruction + + + fr.insee + kmdjrrtc-GOP + 1 + OutParameter + + + fr.insee + kmdjrrtc-VROP + 1 + OutParameter + + + + + + + + fr.insee + knomuvz7 + 1 + + libSTOC1 + + + libSTOC1 + + + fr.insee + knomuvz7-VROP + 1 + + + + fr.insee + knomuvz7-GI + 1 + GenerationInstruction + + + fr.insee + knomuvz7-GOP + 1 + OutParameter + + + fr.insee + knomuvz7-VROP + 1 + OutParameter + + + + + + + + fr.insee + ko9vg9v8 + 1 + + libMOISENQ + + + libMOISENQ + + + fr.insee + ko9vg9v8-VROP + 1 + + + + fr.insee + ko9vg9v8-GI + 1 + GenerationInstruction + + + fr.insee + ko9vg9v8-GOP + 1 + OutParameter + + + fr.insee + ko9vg9v8-VROP + 1 + OutParameter + + + + + + + + fr.insee + ko9w77fo + 1 + + persmaj + + + persmaj + + + fr.insee + ko9w77fo-VROP + 1 + + + + fr.insee + ko9w77fo-GI + 1 + GenerationInstruction + + + fr.insee + ko9w77fo-GOP + 1 + OutParameter + + + fr.insee + ko9w77fo-VROP + 1 + OutParameter + + + + + + 0 + 1 + + Decimal + + + + + fr.insee + kocm65ii + 1 + + ANNEENQmoins4 + + + ANNEENQmoins4 + + + fr.insee + kocm65ii-VROP + 1 + + + + fr.insee + kocm65ii-GI + 1 + GenerationInstruction + + + fr.insee + kocm65ii-GOP + 1 + OutParameter + + + fr.insee + kocm65ii-VROP + 1 + OutParameter + + + + + + 0 + 3000 + + Decimal + + + + + fr.insee + kowl65lm + 1 + + iDEPENDANCE + + + iDEPENDANCE + + + fr.insee + kowl65lm-VROP + 1 + + + + fr.insee + kowl65lm-GI + 1 + GenerationInstruction + + + fr.insee + kowl65lm-GOP + 1 + OutParameter + + + fr.insee + kowl65lm-VROP + 1 + OutParameter + + + + + + + + fr.insee + kp4cwk1f + 1 + + libIAATC + + + libIAATC + + + fr.insee + kp4cwk1f-VROP + 1 + + + + fr.insee + kp4cwk1f-GI + 1 + GenerationInstruction + + + fr.insee + kp4cwk1f-GOP + 1 + OutParameter + + + fr.insee + kp4cwk1f-VROP + 1 + OutParameter + + + + + + + + fr.insee + kp58o9de + 1 + + persconj + + + Conjoint du répondant (persconj) + + + fr.insee + kp58o9de-VROP + 1 + + + + fr.insee + kp58o9de-GI + 1 + GenerationInstruction + + + fr.insee + kp58o9de-GOP + 1 + OutParameter + + + fr.insee + kp58o9de-VROP + 1 + OutParameter + + + + + + 0 + 1 + + Decimal + + + + + fr.insee + kp5a9j4t + 1 + + persparent + + + Parents du répondant (persparent) + + + fr.insee + kp5a9j4t-VROP + 1 + + + + fr.insee + kp5a9j4t-GI + 1 + GenerationInstruction + + + fr.insee + kp5a9j4t-GOP + 1 + OutParameter + + + fr.insee + kp5a9j4t-VROP + 1 + OutParameter + + + + + + 0 + 1 + + Decimal + + + + + fr.insee + kp5n3jf8 + 1 + + STOCA + + + STOCA + + + fr.insee + kp5n3jf8-VROP + 1 + + + + fr.insee + kp5n3jf8-GI + 1 + GenerationInstruction + + + fr.insee + kp5n3jf8-GOP + 1 + OutParameter + + + fr.insee + kp5n3jf8-VROP + 1 + OutParameter + + + + + + + + fr.insee + kp5scxxo + 1 + + HebEnfant + + + HebEnfant + + + fr.insee + kp5scxxo-VROP + 1 + + + + fr.insee + kp5scxxo-GI + 1 + GenerationInstruction + + + fr.insee + kp5scxxo-GOP + 1 + OutParameter + + + fr.insee + kp5scxxo-VROP + 1 + OutParameter + + + + + + 0 + 1 + + Decimal + + + + + fr.insee + kp5skfkj + 1 + + persplus25TR + + + TRANCHE AGE Personne de plus de 25 ans (persplus25TR) + + + fr.insee + kp5skfkj-VROP + 1 + + + + fr.insee + kp5skfkj-GI + 1 + GenerationInstruction + + + fr.insee + kp5skfkj-GOP + 1 + OutParameter + + + fr.insee + kp5skfkj-VROP + 1 + OutParameter + + + + + + + + fr.insee + kp5y6ung + 1 + + HEB + + + HEB + + + fr.insee + kp5y6ung-VROP + 1 + + + + fr.insee + kp5y6ung-GI + 1 + GenerationInstruction + + + fr.insee + kp5y6ung-GOP + 1 + OutParameter + + + fr.insee + kp5y6ung-VROP + 1 + OutParameter + + + + + + 0 + 1 + + Decimal + + + + + fr.insee + koead7in + 1 + + libVFLA + + + libVFLA + + + fr.insee + koead7in-VROP + 1 + + + + fr.insee + koead7in-GI + 1 + GenerationInstruction + + + fr.insee + koead7in-GOP + 1 + OutParameter + + + fr.insee + koead7in-VROP + 1 + OutParameter + + + + + + + + fr.insee + koea9dru + 1 + + libVFFH + + + libVFFH + + + fr.insee + koea9dru-VROP + 1 + + + + fr.insee + koea9dru-GI + 1 + GenerationInstruction + + + fr.insee + koea9dru-GOP + 1 + OutParameter + + + fr.insee + koea9dru-VROP + 1 + OutParameter + + + + + + + + fr.insee + koeauvkr + 1 + + libVBILLOG1 + + + libVBILLOG1 + + + fr.insee + koeauvkr-VROP + 1 + + + + fr.insee + koeauvkr-GI + 1 + GenerationInstruction + + + fr.insee + koeauvkr-GOP + 1 + OutParameter + + + fr.insee + koeauvkr-VROP + 1 + OutParameter + + + + + + + + fr.insee + koeb5lcn + 1 + + libVBILLOG2 + + + libVBILLOG2 + + + fr.insee + koeb5lcn-VROP + 1 + + + + fr.insee + koeb5lcn-GI + 1 + GenerationInstruction + + + fr.insee + koeb5lcn-GOP + 1 + OutParameter + + + fr.insee + koeb5lcn-VROP + 1 + OutParameter + + + + + + + + fr.insee + kpauiid9 + 1 + + PRENOMREF + + + Prenom de référence (PRENOMREF) + + + fr.insee + kpauiid9-VROP + 1 + + + + fr.insee + kpauiid9-GI + 1 + GenerationInstruction + + + fr.insee + kpauiid9-GOP + 1 + OutParameter + + + fr.insee + kpauiid9-VROP + 1 + OutParameter + + + + + + + + fr.insee + kpbaad5q + 1 + + libSDT + + + cette ou ces situations (libSDT) + + + fr.insee + kpbaad5q-VROP + 1 + + + + fr.insee + kpbaad5q-GI + 1 + GenerationInstruction + + + fr.insee + kpbaad5q-GOP + 1 + OutParameter + + + fr.insee + kpbaad5q-VROP + 1 + OutParameter + + + + + + + + fr.insee + kpcqbqrk + 1 + + INDconj + + + INDconj + + + fr.insee + kpcqbqrk-VROP + 1 + + + + fr.insee + kpcqbqrk-GI + 1 + GenerationInstruction + + + fr.insee + kpcqbqrk-GOP + 1 + OutParameter + + + fr.insee + kpcqbqrk-VROP + 1 + OutParameter + + + + + + + + fr.insee + kpo86epq + 1 + + libENVS1 + + + consigne bouton envoi (libENVS1) + + + fr.insee + kpo86epq-VROP + 1 + + + + fr.insee + kpo86epq-GI + 1 + GenerationInstruction + + + fr.insee + kpo86epq-GOP + 1 + OutParameter + + + fr.insee + kpo86epq-VROP + 1 + OutParameter + + + + + + + + fr.insee + kpo88v55 + 1 + + libFINS1 + + + libFINS1 + + + fr.insee + kpo88v55-VROP + 1 + + + + fr.insee + kpo88v55-GI + 1 + GenerationInstruction + + + fr.insee + kpo88v55-GOP + 1 + OutParameter + + + fr.insee + kpo88v55-VROP + 1 + OutParameter + + + + + + + + fr.insee + kpo8i6mz + 1 + + libFINS12 + + + libFINS12 + + + fr.insee + kpo8i6mz-VROP + 1 + + + + fr.insee + kpo8i6mz-GI + 1 + GenerationInstruction + + + fr.insee + kpo8i6mz-GOP + 1 + OutParameter + + + fr.insee + kpo8i6mz-VROP + 1 + OutParameter + + + + + + + + fr.insee + kpolrd46 + 1 + + HC + + + HC + + + fr.insee + kpolrd46-VROP + 1 + + + + fr.insee + kpolrd46-GI + 1 + GenerationInstruction + + + fr.insee + kpolrd46-GOP + 1 + OutParameter + + + fr.insee + kpolrd46-VROP + 1 + OutParameter + + + + + + + + fr.insee + kq7uo7yd + 1 + + PRENOM + + + PRENOM + + + fr.insee + kq7uo7yd-VROP + 1 + + + + fr.insee + kq7uo7yd-GI + 1 + GenerationInstruction + + + fr.insee + kq7uo7yd-GOP + 1 + OutParameter + + + fr.insee + kq7uo7yd-VROP + 1 + OutParameter + + + + + + + + fr.insee + kq98eqln + 1 + + nbpersmaj + + + nbpersmaj + + + fr.insee + kq98eqln-VROP + 1 + + + + fr.insee + kq98eqln-GI + 1 + GenerationInstruction + + + fr.insee + kq98eqln-GOP + 1 + OutParameter + + + fr.insee + kq98eqln-VROP + 1 + OutParameter + + + + + + 0 + 15 + + Decimal + + + + + fr.insee + kq98c6z3 + 1 + + nbpersconj + + + nbpersconj + + + fr.insee + kq98c6z3-VROP + 1 + + + + fr.insee + kq98c6z3-GI + 1 + GenerationInstruction + + + fr.insee + kq98c6z3-GOP + 1 + OutParameter + + + fr.insee + kq98c6z3-VROP + 1 + OutParameter + + + + + + 0 + 15 + + Decimal + + + + + fr.insee + kq9a8xpe + 1 + + nbpersparent + + + nbpersparent + + + fr.insee + kq9a8xpe-VROP + 1 + + + + fr.insee + kq9a8xpe-GI + 1 + GenerationInstruction + + + fr.insee + kq9a8xpe-GOP + 1 + OutParameter + + + fr.insee + kq9a8xpe-VROP + 1 + OutParameter + + + + + + 0 + 15 + + Decimal + + + + + fr.insee + kq9m5zgb + 1 + + libINTROPRENOM + + + libINTROPRENOM + + + fr.insee + kq9m5zgb-VROP + 1 + + + + fr.insee + kq9m5zgb-GI + 1 + GenerationInstruction + + + fr.insee + kq9m5zgb-GOP + 1 + OutParameter + + + fr.insee + kq9m5zgb-VROP + 1 + OutParameter + + + + + + + + fr.insee + kq9lw5x7 + 1 + + libINTROPRENOM2 + + + libINTROPRENOM2 + + + fr.insee + kq9lw5x7-VROP + 1 + + + + fr.insee + kq9lw5x7-GI + 1 + GenerationInstruction + + + fr.insee + kq9lw5x7-GOP + 1 + OutParameter + + + fr.insee + kq9lw5x7-VROP + 1 + OutParameter + + + + + + + + fr.insee + kq9wr9le + 1 + + nb_HebEnfant + + + nb_HebEnfant + + + fr.insee + kq9wr9le-VROP + 1 + + + + fr.insee + kq9wr9le-GI + 1 + GenerationInstruction + + + fr.insee + kq9wr9le-GOP + 1 + OutParameter + + + fr.insee + kq9wr9le-VROP + 1 + OutParameter + + + + + + 0 + 15 + + Decimal + + + + + fr.insee + kq9x0bof + 1 + + nb_HEB + + + nb_HEB + + + fr.insee + kq9x0bof-VROP + 1 + + + + fr.insee + kq9x0bof-GI + 1 + GenerationInstruction + + + fr.insee + kq9x0bof-GOP + 1 + OutParameter + + + fr.insee + kq9x0bof-VROP + 1 + OutParameter + + + + + + 0 + 15 + + Decimal + + + + + fr.insee + kq9z7frj + 1 + + persXRP + + + pour S3 (persXRP) + + + fr.insee + kq9z7frj-VROP + 1 + + + + fr.insee + kq9z7frj-GI + 1 + GenerationInstruction + + + fr.insee + kq9z7frj-GOP + 1 + OutParameter + + + fr.insee + kq9z7frj-VROP + 1 + OutParameter + + + + + + 0 + 1 + + Decimal + + + + + fr.insee + kq9z3mja + 1 + + nbpersXRP + + + nbpersXRP + + + fr.insee + kq9z3mja-VROP + 1 + + + + fr.insee + kq9z3mja-GI + 1 + GenerationInstruction + + + fr.insee + kq9z3mja-GOP + 1 + OutParameter + + + fr.insee + kq9z3mja-VROP + 1 + OutParameter + + + + + + 0 + 15 + + Decimal + + + + + fr.insee + kq9zfu8d + 1 + + filtre_XRP + + + filtre_XRP + + + fr.insee + kq9zfu8d-VROP + 1 + + + + fr.insee + kq9zfu8d-GI + 1 + GenerationInstruction + + + fr.insee + kq9zfu8d-GOP + 1 + OutParameter + + + fr.insee + kq9zfu8d-VROP + 1 + OutParameter + + + + + + + + fr.insee + kqgra7ib + 1 + + FUTURANNIVERSAIRE + + + booleen anniversaire à venir dans l'annee (FUTURANNIVERSAIRE) + + + fr.insee + kqgra7ib-VROP + 1 + + + + fr.insee + kqgra7ib-GI + 1 + GenerationInstruction + + + fr.insee + kqgra7ib-GOP + 1 + OutParameter + + + fr.insee + kqgra7ib-VROP + 1 + OutParameter + + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kqgr5vey + 1 + + AGEMILLESIME + + + Age en millesime (AGEMILLESIME) + + + fr.insee + kqgr5vey-VROP + 1 + + + + fr.insee + kqgr5vey-GI + 1 + GenerationInstruction + + + fr.insee + kqgr5vey-GOP + 1 + OutParameter + + + fr.insee + kqgr5vey-VROP + 1 + OutParameter + + + + + + 0 + 125 + + Decimal + + + + + fr.insee + kqi7gwzb + 1 + + EMPLOI + + + Personne en emploi (EMPLOI) + + + fr.insee + kqi7gwzb-VROP + 1 + + + + fr.insee + kqi7gwzb-GI + 1 + GenerationInstruction + + + fr.insee + kqi7gwzb-GOP + 1 + OutParameter + + + fr.insee + kqi7gwzb-VROP + 1 + OutParameter + + + + + + + + fr.insee + kqqit5hr + 1 + + persplus25AGE + + + AGE Personne de plus de 25 ans (persplus25AGE) + + + fr.insee + kqqit5hr-VROP + 1 + + + + fr.insee + kqqit5hr-GI + 1 + GenerationInstruction + + + fr.insee + kqqit5hr-GOP + 1 + OutParameter + + + fr.insee + kqqit5hr-VROP + 1 + OutParameter + + + + + + + + fr.insee + kr0o550i + 1 + + libCHGNC + + + libCHGNC + + + fr.insee + kr0o550i-VROP + 1 + + + + fr.insee + kr0o550i-GI + 1 + GenerationInstruction + + + fr.insee + kr0o550i-GOP + 1 + OutParameter + + + fr.insee + kr0o550i-VROP + 1 + OutParameter + + + + + + + + fr.insee + krd6p7hy + 1 + + persplus18TR + + + tranche age personne majeur (persplus18TR) + + + fr.insee + krd6p7hy-VROP + 1 + + + + fr.insee + krd6p7hy-GI + 1 + GenerationInstruction + + + fr.insee + krd6p7hy-GOP + 1 + OutParameter + + + fr.insee + krd6p7hy-VROP + 1 + OutParameter + + + + + + + + fr.insee + krd6rkdl + 1 + + persplus18AGE + + + AGE personne de plus de 18 ans (persplus18AGE) + + + fr.insee + krd6rkdl-VROP + 1 + + + + fr.insee + krd6rkdl-GI + 1 + GenerationInstruction + + + fr.insee + krd6rkdl-GOP + 1 + OutParameter + + + fr.insee + krd6rkdl-VROP + 1 + OutParameter + + + + + + + + fr.insee + krdj37bc + 1 + + nbperstelet + + + nbperstelet + + + fr.insee + krdj37bc-VROP + 1 + + + + fr.insee + krdj37bc-GI + 1 + GenerationInstruction + + + fr.insee + krdj37bc-GOP + 1 + OutParameter + + + fr.insee + krdj37bc-VROP + 1 + OutParameter + + + + + + 0 + 15 + + Decimal + + + + + fr.insee + krnngsmd + 1 + + PRENOMVIDE + + + PRENOMVIDE + + + fr.insee + krnngsmd-VROP + 1 + + + + fr.insee + krnngsmd-GI + 1 + GenerationInstruction + + + fr.insee + krnngsmd-GOP + 1 + OutParameter + + + fr.insee + krnngsmd-VROP + 1 + OutParameter + + + + + + + + fr.insee + krux4bjr + 1 + + ANNEENQmoins1 + + + ANNEENQmoins1 + + + fr.insee + krux4bjr-VROP + 1 + + + + fr.insee + krux4bjr-GI + 1 + GenerationInstruction + + + fr.insee + krux4bjr-GOP + 1 + OutParameter + + + fr.insee + krux4bjr-VROP + 1 + OutParameter + + + + + + 0 + 3000 + + Decimal + + + + + fr.insee + kruxbmdg + 1 + + ANNEENQmoins8 + + + ANNEENQmoins8 + + + fr.insee + kruxbmdg-VROP + 1 + + + + fr.insee + kruxbmdg-GI + 1 + GenerationInstruction + + + fr.insee + kruxbmdg-GOP + 1 + OutParameter + + + fr.insee + kruxbmdg-VROP + 1 + OutParameter + + + + + + 0 + 3000 + + Decimal + + + + + fr.insee + kruxdj1k + 1 + + ANNEENQmoins12 + + + ANNEENQmoins12 + + + fr.insee + kruxdj1k-VROP + 1 + + + + fr.insee + kruxdj1k-GI + 1 + GenerationInstruction + + + fr.insee + kruxdj1k-GOP + 1 + OutParameter + + + fr.insee + kruxdj1k-VROP + 1 + OutParameter + + + + + + 0 + 3000 + + Decimal + + + + + fr.insee + kryp58r5 + 1 + + SEXEREF + + + Sexe de la personne de référence (SEXEREF) + + + fr.insee + kryp58r5-VROP + 1 + + + + fr.insee + kryp58r5-GI + 1 + GenerationInstruction + + + fr.insee + kryp58r5-GOP + 1 + OutParameter + + + fr.insee + kryp58r5-VROP + 1 + OutParameter + + + + + + + + fr.insee + ksew6khf + 1 + + persplus15AGE + + + persplus15AGE + + + fr.insee + ksew6khf-VROP + 1 + + + + fr.insee + ksew6khf-GI + 1 + GenerationInstruction + + + fr.insee + ksew6khf-GOP + 1 + OutParameter + + + fr.insee + ksew6khf-VROP + 1 + OutParameter + + + + + + + + fr.insee + ksyg41dk + 1 + + STOCC + + + STOCC + + + fr.insee + ksyg41dk-VROP + 1 + + + + fr.insee + ksyg41dk-GI + 1 + GenerationInstruction + + + fr.insee + ksyg41dk-GOP + 1 + OutParameter + + + fr.insee + ksyg41dk-VROP + 1 + OutParameter + + + + + + + + fr.insee + kudv8i2p + 1 + + filtre_SIT + + + filtre_SIT + + + fr.insee + kudv8i2p-VROP + 1 + + + + fr.insee + kudv8i2p-GI + 1 + GenerationInstruction + + + fr.insee + kudv8i2p-GOP + 1 + OutParameter + + + fr.insee + kudv8i2p-VROP + 1 + OutParameter + + + + + + + + fr.insee + kue3s3bo + 1 + + perstelet + + + perstelet + + + fr.insee + kue3s3bo-VROP + 1 + + + + fr.insee + kue3s3bo-GI + 1 + GenerationInstruction + + + fr.insee + kue3s3bo-GOP + 1 + OutParameter + + + fr.insee + kue3s3bo-VROP + 1 + OutParameter + + + + + + 0 + 1 + + Decimal + + + + + fr.insee + kue5ccwr + 1 + + filtre_autrepers + + + filtre_autrepers + + + fr.insee + kue5ccwr-VROP + 1 + + + + fr.insee + kue5ccwr-GI + 1 + GenerationInstruction + + + fr.insee + kue5ccwr-GOP + 1 + OutParameter + + + fr.insee + kue5ccwr-VROP + 1 + OutParameter + + + + + + + + fr.insee + kuh4aklr + 1 + + NOMOCC2 + + + NOMOCC2 + + + fr.insee + kuh4aklr-VROP + 1 + + + + fr.insee + kuh4aklr-GI + 1 + GenerationInstruction + + + fr.insee + kuh4aklr-GOP + 1 + OutParameter + + + fr.insee + kuh4aklr-VROP + 1 + OutParameter + + + + + + + + fr.insee + kvqulqx8 + 1 + + persACTIF_REF + + + persACTIF_REF + + + fr.insee + kvqulqx8-VROP + 1 + + + + fr.insee + kvqulqx8-GI + 1 + GenerationInstruction + + + fr.insee + kvqulqx8-GOP + 1 + OutParameter + + + fr.insee + kvqulqx8-VROP + 1 + OutParameter + + + + + + 0 + 1 + + Decimal + + + + + fr.insee + kvqvwwch + 1 + + persACTIF_REFCJ + + + persACTIF_REFCJ + + + fr.insee + kvqvwwch-VROP + 1 + + + + fr.insee + kvqvwwch-GI + 1 + GenerationInstruction + + + fr.insee + kvqvwwch-GOP + 1 + OutParameter + + + fr.insee + kvqvwwch-VROP + 1 + OutParameter + + + + + + 0 + 1 + + Decimal + + + + + fr.insee + kvqvxps1 + 1 + + nbACTIF_REFCJ + + + nbACTIF_REFCJ + + + fr.insee + kvqvxps1-VROP + 1 + + + + fr.insee + kvqvxps1-GI + 1 + GenerationInstruction + + + fr.insee + kvqvxps1-GOP + 1 + OutParameter + + + fr.insee + kvqvxps1-VROP + 1 + OutParameter + + + + + + 0 + 15 + + Decimal + + + + + fr.insee + kvqwkeg7 + 1 + + ACTIF_REFCJ + + + ACTIF_REFCJ + + + fr.insee + kvqwkeg7-VROP + 1 + + + + fr.insee + kvqwkeg7-GI + 1 + GenerationInstruction + + + fr.insee + kvqwkeg7-GOP + 1 + OutParameter + + + fr.insee + kvqwkeg7-VROP + 1 + OutParameter + + + + + + + + fr.insee + kvqxk7tg + 1 + + nbACTIF_REF + + + nbACTIF_REF + + + fr.insee + kvqxk7tg-VROP + 1 + + + + fr.insee + kvqxk7tg-GI + 1 + GenerationInstruction + + + fr.insee + kvqxk7tg-GOP + 1 + OutParameter + + + fr.insee + kvqxk7tg-VROP + 1 + OutParameter + + + + + + 0 + 15 + + Decimal + + + + + fr.insee + kvqxfkc8 + 1 + + ACTIF_REF + + + ACTIF_REF + + + fr.insee + kvqxfkc8-VROP + 1 + + + + fr.insee + kvqxfkc8-GI + 1 + GenerationInstruction + + + fr.insee + kvqxfkc8-GOP + 1 + OutParameter + + + fr.insee + kvqxfkc8-VROP + 1 + OutParameter + + + + + + + + fr.insee + kw0tn1tp + 1 + + intro_STOC + + + intro_STOC + + + fr.insee + kw0tn1tp-VROP + 1 + + + + fr.insee + kw0tn1tp-GI + 1 + GenerationInstruction + + + fr.insee + kw0tn1tp-GOP + 1 + OutParameter + + + fr.insee + kw0tn1tp-VROP + 1 + OutParameter + + + + + + + + fr.insee + kw3s7rxu + 1 + + filtre_HebEnfant + + + filtre_HebEnfant + + + fr.insee + kw3s7rxu-VROP + 1 + + + + fr.insee + kw3s7rxu-GI + 1 + GenerationInstruction + + + fr.insee + kw3s7rxu-GOP + 1 + OutParameter + + + fr.insee + kw3s7rxu-VROP + 1 + OutParameter + + + + + + + + fr.insee + kw3shdld + 1 + + filtre_HEB + + + filtre_HEB + + + fr.insee + kw3shdld-VROP + 1 + + + + fr.insee + kw3shdld-GI + 1 + GenerationInstruction + + + fr.insee + kw3shdld-GOP + 1 + OutParameter + + + fr.insee + kw3shdld-VROP + 1 + OutParameter + + + + + + + + fr.insee + kwnvdyzo + 1 + + INDSEXECJ1 + + + INDSEXECJ1 + + + fr.insee + kwnvdyzo-VROP + 1 + + + + fr.insee + kwnvdyzo-GI + 1 + GenerationInstruction + + + fr.insee + kwnvdyzo-GOP + 1 + OutParameter + + + fr.insee + kwnvdyzo-VROP + 1 + OutParameter + + + + + + 0 + 1 + + Decimal + + + + + fr.insee + kwnviscn + 1 + + INDSEXECJ2 + + + INDSEXECJ2 + + + fr.insee + kwnviscn-VROP + 1 + + + + fr.insee + kwnviscn-GI + 1 + GenerationInstruction + + + fr.insee + kwnviscn-GOP + 1 + OutParameter + + + fr.insee + kwnviscn-VROP + 1 + OutParameter + + + + + + 0 + 1 + + Decimal + + + + + fr.insee + kwnvruc5 + 1 + + SEXECJ1 + + + SEXECJ1 + + + fr.insee + kwnvruc5-VROP + 1 + + + + fr.insee + kwnvruc5-GI + 1 + GenerationInstruction + + + fr.insee + kwnvruc5-GOP + 1 + OutParameter + + + fr.insee + kwnvruc5-VROP + 1 + OutParameter + + + + + + 0 + 15 + + Decimal + + + + + fr.insee + kwnw94o4 + 1 + + SEXECJ2 + + + SEXECJ2 + + + fr.insee + kwnw94o4-VROP + 1 + + + + fr.insee + kwnw94o4-GI + 1 + GenerationInstruction + + + fr.insee + kwnw94o4-GOP + 1 + OutParameter + + + fr.insee + kwnw94o4-VROP + 1 + OutParameter + + + + + + 0 + 15 + + Decimal + + + + + fr.insee + kwnwikvh + 1 + + SEXECJ_E + + + SEXECJ_E + + + fr.insee + kwnwikvh-VROP + 1 + + + + fr.insee + kwnwikvh-GI + 1 + GenerationInstruction + + + fr.insee + kwnwikvh-GOP + 1 + OutParameter + + + fr.insee + kwnwikvh-VROP + 1 + OutParameter + + + + + + + + fr.insee + kwnxlh9z + 1 + + SEXECJ_IEL + + + SEXECJ_IEL + + + fr.insee + kwnxlh9z-VROP + 1 + + + + fr.insee + kwnxlh9z-GI + 1 + GenerationInstruction + + + fr.insee + kwnxlh9z-GOP + 1 + OutParameter + + + fr.insee + kwnxlh9z-VROP + 1 + OutParameter + + + + + + + + fr.insee + kwpbocnz + 1 + + INDENF + + + INDENF + + + fr.insee + kwpbocnz-VROP + 1 + + + + fr.insee + kwpbocnz-GI + 1 + GenerationInstruction + + + fr.insee + kwpbocnz-GOP + 1 + OutParameter + + + fr.insee + kwpbocnz-VROP + 1 + OutParameter + + + + + + + + fr.insee + kwpbdw81 + 1 + + nbpersenf + + + nbpersenf + + + fr.insee + kwpbdw81-VROP + 1 + + + + fr.insee + kwpbdw81-GI + 1 + GenerationInstruction + + + fr.insee + kwpbdw81-GOP + 1 + OutParameter + + + fr.insee + kwpbdw81-VROP + 1 + OutParameter + + + + + + 0 + 15 + + Decimal + + + + + fr.insee + kwpbfyg6 + 1 + + persenf + + + persenf + + + fr.insee + kwpbfyg6-VROP + 1 + + + + fr.insee + kwpbfyg6-GI + 1 + GenerationInstruction + + + fr.insee + kwpbfyg6-GOP + 1 + OutParameter + + + fr.insee + kwpbfyg6-VROP + 1 + OutParameter + + + + + + 0 + 1 + + Decimal + + + + + fr.insee + kybu3ze7 + 1 + + JOURENQ + + + JOURENQ + + + fr.insee + kybu3ze7-VROP + 1 + + + + fr.insee + kybu3ze7-GI + 1 + GenerationInstruction + + + fr.insee + kybu3ze7-GOP + 1 + OutParameter + + + fr.insee + kybu3ze7-VROP + 1 + OutParameter + + + + + + + + fr.insee + l3ykn00w + 1 + + libSDEJA + + + libSDEJA + + + fr.insee + l3ykn00w-VROP + 1 + + + + fr.insee + l3ykn00w-GI + 1 + GenerationInstruction + + + fr.insee + l3ykn00w-GOP + 1 + OutParameter + + + fr.insee + l3ykn00w-VROP + 1 + OutParameter + + + + + + + + fr.insee + l3yldwrr + 1 + + avecenfant + + + avecenfant + + + fr.insee + l3yldwrr-VROP + 1 + + + + fr.insee + l3yldwrr-GI + 1 + GenerationInstruction + + + fr.insee + l3yldwrr-GOP + 1 + OutParameter + + + fr.insee + l3yldwrr-VROP + 1 + OutParameter + + + + + + 0 + 1 + + Decimal + + + + + fr.insee + l3yln6g1 + 1 + + nbenfant + + + nbenfant + + + fr.insee + l3yln6g1-VROP + 1 + + + + fr.insee + l3yln6g1-GI + 1 + GenerationInstruction + + + fr.insee + l3yln6g1-GOP + 1 + OutParameter + + + fr.insee + l3yln6g1-VROP + 1 + OutParameter + + + + + + 0 + 15 + + Decimal + + + + + fr.insee + l7j3cepd + 1 + + persamiscoloc + + + persamiscoloc + + + fr.insee + l7j3cepd-VROP + 1 + + + + fr.insee + l7j3cepd-GI + 1 + GenerationInstruction + + + fr.insee + l7j3cepd-GOP + 1 + OutParameter + + + fr.insee + l7j3cepd-VROP + 1 + OutParameter + + + + + + 0 + 1 + + Decimal + + + + + fr.insee + l7j3nlde + 1 + + nbpersamiscoloc + + + nbpersamiscoloc + + + fr.insee + l7j3nlde-VROP + 1 + + + + fr.insee + l7j3nlde-GI + 1 + GenerationInstruction + + + fr.insee + l7j3nlde-GOP + 1 + OutParameter + + + fr.insee + l7j3nlde-VROP + 1 + OutParameter + + + + + + 0 + 20 + + Decimal + + + + + fr.insee + lftfquwn + 1 + + nbpers15 + + + nbpers15 + + + fr.insee + lftfquwn-VROP + 1 + + + + fr.insee + lftfquwn-GI + 1 + GenerationInstruction + + + fr.insee + lftfquwn-GOP + 1 + OutParameter + + + fr.insee + lftfquwn-VROP + 1 + OutParameter + + + + + + 0 + 15 + + Decimal + + + + + fr.insee + lfwlwjes + 1 + + persplus15TR + + + TRANCHE AGE Personne de plus de 15 ans (persplus15TR) + + + fr.insee + lfwlwjes-VROP + 1 + + + + fr.insee + lfwlwjes-GI + 1 + GenerationInstruction + + + fr.insee + lfwlwjes-GOP + 1 + OutParameter + + + fr.insee + lfwlwjes-VROP + 1 + OutParameter + + + + + + + + fr.insee + lg0s2yxc + 1 + + persplus15 + + + persplus15 + + + fr.insee + lg0s2yxc-VROP + 1 + + + + fr.insee + lg0s2yxc-GI + 1 + GenerationInstruction + + + fr.insee + lg0s2yxc-GOP + 1 + OutParameter + + + fr.insee + lg0s2yxc-VROP + 1 + OutParameter + + + + + + 0 + 1 + + Decimal + + + + + fr.insee + kr0yx2co + 1 + + NUMTH + + + Numéro de rue (NUMTH) + + + + + + + fr.insee + kr0yud7y + 1 + + ADR + + + Libellé de l'adresse (ADR) + + + + + + + fr.insee + kr0z63cm + 1 + + CADRTH + + + Complément d'adresse (CADRTH) + + + + + + + fr.insee + kr0ytbep + 1 + + CODEPOST1 + + + Code postal (CODEPOST1) + + + + + + + fr.insee + kr0ysp9q + 1 + + LIBCOM + + + Nom de la commune (LIBCOM) + + + + + + + fr.insee + kr0z91yq + 1 + + CIV_D1 + + + Civilité correspondant (CIV_D1) + + + + + + + fr.insee + kr0ytkz0 + 1 + + PREN_D1 + + + Prénom correspondant (PREN_D1) + + + + + + + fr.insee + kr0ypa5a + 1 + + NOMVOUS_D1 + + + Nom correspondant (NOMVOUS_D1) + + + + + + + fr.insee + kr1twdtu + 1 + + CIV_D2 + + + Civilité correspondant (CIV_D2) + + + + + + + fr.insee + kr1u63qm + 1 + + PREN_D2 + + + Prénom correspondant (PREN_D2) + + + + + + + fr.insee + kr1tph4j + 1 + + NOMVOUS_D2 + + + Nom correspondant (NOMVOUS_D2) + + + + + + + fr.insee + krm7ey4p + 1 + + CADR + + + CADR label + + + fr.insee + kb9hlpdc-QOP-kb9ht73s + 1 + OutParameter + + + fr.insee + kb9hlpdc + 1 + QuestionItem + + + + + fr.insee + kb9ht98f + 1 + CodeList + + + + + + fr.insee + kqgn61x8 + 1 + + NUMTH_COLL + + + NUMTH_COLL label + + + fr.insee + kbakywwy-QOP-kbal9bh5 + 1 + OutParameter + + + fr.insee + kbakywwy + 1 + QuestionItem + + + + + + + fr.insee + kqgn79pg + 1 + + ADR_COLL + + + ADR_COLL label + + + fr.insee + kbal4bzb-QOP-kbalgoim + 1 + OutParameter + + + fr.insee + kbal4bzb + 1 + QuestionItem + + + + + + + fr.insee + kqgolu9w + 1 + + CADRTH_COLL + + + CADRTH_COLL label + + + fr.insee + kbalhn4i-QOP-kbalr9gi + 1 + OutParameter + + + fr.insee + kbalhn4i + 1 + QuestionItem + + + + + + + fr.insee + kqgn9je2 + 1 + + CODEPOST1_COLL + + + CODEPOST1_COLL label + + + fr.insee + kbal8crw-QOP-kbaldkpe + 1 + OutParameter + + + fr.insee + kbal8crw + 1 + QuestionItem + + + + + + + fr.insee + kqgn4sa3 + 1 + + LIBCOM_COLL + + + LIBCOM_COLL label + + + fr.insee + kbal9dwk-QOP-kbalr921 + 1 + OutParameter + + + fr.insee + kbal9dwk + 1 + QuestionItem + + + + + + + fr.insee + kr0ppql7 + 1 + + INDNVOCC + + + INDNVOCC label + + + fr.insee + kqweh61i-QOP-kqwet1gs + 1 + OutParameter + + + fr.insee + kqweh61i + 1 + QuestionItem + + + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + fr.insee + kr0p6ln7 + 1 + + NOMNVOCC1 + + + NOMNVOCC1 label + + + fr.insee + kqwga16w-QOP-kqwfqy15 + 1 + OutParameter + + + fr.insee + kqwga16w + 1 + QuestionItem + + + + + + + fr.insee + kr0pg9pm + 1 + + PRENOMNVOCC1 + + + PRENOMNVOCC1 label + + + fr.insee + kqwfswjj-QOP-kqwftx5y + 1 + OutParameter + + + fr.insee + kqwfswjj + 1 + QuestionItem + + + + + + + fr.insee + kr0pbcxz + 1 + + NOMNVOCC2 + + + NOMNVOCC2 label + + + fr.insee + kqwfedoy-QOP-kqwfzgnh + 1 + OutParameter + + + fr.insee + kqwfedoy + 1 + QuestionItem + + + + + + + fr.insee + kr0po7ze + 1 + + PRENOMNVOCC2 + + + PRENOMNVOCC2 label + + + fr.insee + kqwg9azb-QOP-kqwg8mj6 + 1 + OutParameter + + + fr.insee + kqwg9azb + 1 + QuestionItem + + + + + + + fr.insee + kr0pk1f6 + 1 + + TELNVOCC + + + TELNVOCC label + + + fr.insee + kr0e0pav-QOP-kr0ecbx1 + 1 + OutParameter + + + fr.insee + kr0e0pav + 1 + QuestionItem + + + + + + + fr.insee + kr0pdobs + 1 + + MAILNVOCC + + + MAILNVOCC label + + + fr.insee + kr0ee3u2-QOP-kr0erk52 + 1 + OutParameter + + + fr.insee + kr0ee3u2 + 1 + QuestionItem + + + + + + + fr.insee + km0sy84b + 1 + + NBHAB + + + Nombre d'habitants déclaré (NBHAB) + + + fr.insee + kbc1b4k2-QOP-kbc1oors + 1 + OutParameter + + + fr.insee + kbc1b4k2 + 1 + QuestionItem + + + + + 1 + 15 + + Decimal + + + + + fr.insee + kq96og1u + 1 + + G_PRENOM + + + G_PRENOM label + + + fr.insee + kmno1n7m-QOP-kmno8tbs + 1 + OutParameter + + + fr.insee + kmno1n7m + 1 + QuestionItem + + + + + + + fr.insee + ks4f5ex4 + 1 + + SEXE + + + SEXE label + + + fr.insee + kmoo2fiy-QOP-kmoon375 + 1 + OutParameter + + + fr.insee + kmoo2fiy + 1 + QuestionItem + + + + + fr.insee + kmolikl4 + 1 + CodeList + + + + + + fr.insee + kwf0tev6 + 1 + + DATENAIS + + + DATENAIS label + + + fr.insee + kmoouamz-QOP-kmoow49z + 1 + OutParameter + + + fr.insee + kmoouamz + 1 + QuestionItem + + + + YYYY-MM-DD + date + + 1900-01-01 + 2022-12-31 + + + + + + fr.insee + kqi4mcwj + 1 + + TRAGE + + + Tranche d'âge (TRAGE) + + + fr.insee + kmx6w6n5-QOP-kmx7770w + 1 + OutParameter + + + fr.insee + kmx6w6n5 + 1 + QuestionItem + + + + + fr.insee + kmx6szo6 + 1 + CodeList + + + + + + fr.insee + kmoopvvz + 1 + + LNAIS + + + Lieu de naissance (LNAIS) + + + fr.insee + kmookacu-QOP-kmop5us3 + 1 + OutParameter + + + fr.insee + kmookacu + 1 + QuestionItem + + + + + fr.insee + kmomiwx3 + 1 + CodeList + + + + + + fr.insee + lgrk002o + 1 + + DEPNAIS + + + DEPNAIS label + + + fr.insee + kmor2z1x-QOP-lgrjrpiq + 1 + OutParameter + + + fr.insee + kmor2z1x + 1 + QuestionItem + + + + + + + fr.insee + lgrjly7i + 1 + + PAYSNAIS + + + PAYSNAIS label + + + fr.insee + kmorege9-QOP-lgrk5smv + 1 + OutParameter + + + fr.insee + kmorege9 + 1 + QuestionItem + + + + + + + fr.insee + kmosbfeg + 1 + + NATIO1N1 + + + Française de naissance (NATIO1N1) + + + fr.insee + kmort6x9-QOP-kmosa98y + 1 + OutParameter + + + fr.insee + kmort6x9 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kmoryx4q + 1 + + NATIO1N2 + + + Française par naturalisation (NATIO1N2) + + + fr.insee + kmort6x9-QOP-kmos360k + 1 + OutParameter + + + fr.insee + kmort6x9 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kmos0mpz + 1 + + NATIO1N3 + + + Étrangère (NATIO1N3) + + + fr.insee + kmort6x9-QOP-kmos37e1 + 1 + OutParameter + + + fr.insee + kmort6x9 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kmosao80 + 1 + + NATIO1N4 + + + Apatride (NATIO1N4) + + + fr.insee + kmort6x9-QOP-kmorue9c + 1 + OutParameter + + + fr.insee + kmort6x9 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lgrjwuys + 1 + + NATIO2N + + + NATIO2N label + + + fr.insee + kmos2yo6-QOP-lgrjx1rt + 1 + OutParameter + + + fr.insee + kmos2yo6 + 1 + QuestionItem + + + + + + + fr.insee + lerah1nk + 1 + + LIEN + + + LIEN label + + + fr.insee + kmw4revw-QOP-kmw5mxph + 1 + OutParameter + + + fr.insee + kmw4revw + 1 + QuestionItem + + + + + fr.insee + kmw56gjz + 1 + CodeList + + + + + + fr.insee + kod281bk + 1 + + COUPLE + + + Vie en couple (COUPLE) + + + fr.insee + kod271pp-QOP-kod2650j + 1 + OutParameter + + + fr.insee + kod271pp + 1 + QuestionItem + + + + + fr.insee + kod1mvxo + 1 + CodeList + + + + + + fr.insee + kqi0kw9s + 1 + + SITUMATRI1 + + + Personne mariée (SITUMATRI1) + + + fr.insee + kmw5h275-QOP-kqi51gzp + 1 + OutParameter + + + fr.insee + kmw5h275 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kqi0xs8k + 1 + + SITUMATRI2 + + + Personne pacsée (SITUMATRI2) + + + fr.insee + kmw5h275-QOP-kqi557ae + 1 + OutParameter + + + fr.insee + kmw5h275 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kqi0ncqs + 1 + + SITUMATRI3 + + + Personne en union libre (SITUMATRI3) + + + fr.insee + kmw5h275-QOP-kqi572vy + 1 + OutParameter + + + fr.insee + kmw5h275 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kqi0zud6 + 1 + + SITUMATRI4 + + + Personne veuve (SITUMATRI4) + + + fr.insee + kmw5h275-QOP-kqi54qj5 + 1 + OutParameter + + + fr.insee + kmw5h275 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kqi0j9jx + 1 + + SITUMATRI5 + + + Personne en rupture du conjoint (SITUMATRI5) + + + fr.insee + kmw5h275-QOP-kqi5ewaq + 1 + OutParameter + + + fr.insee + kmw5h275 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kqi0ysi5 + 1 + + SITUMATRI6 + + + Personne célibataire (SITUMATRI6) + + + fr.insee + kmw5h275-QOP-kqi5h0rk + 1 + OutParameter + + + fr.insee + kmw5h275 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kn8zw3tw + 1 + + UNLOG + + + Unicité logement (UNLOG) + + + fr.insee + kmx8sgeu-QOP-kn8zvq0g + 1 + OutParameter + + + fr.insee + kmx8sgeu + 1 + QuestionItem + + + + + fr.insee + kn8zodpk + 1 + CodeList + + + + + + fr.insee + kmx992cg + 1 + + DURLOG + + + Durée d'occupation (DURLOG) + + + fr.insee + kmx97ttc-QOP-kmx93bw6 + 1 + OutParameter + + + fr.insee + kmx97ttc + 1 + QuestionItem + + + + + fr.insee + kmukmzpq + 1 + CodeList + + + + + + fr.insee + kx4xtdg6 + 1 + + LOGENQ + + + LOGENQ label + + + fr.insee + kmx97tz1-QOP-kmx95xeo + 1 + OutParameter + + + fr.insee + kmx97tz1 + 1 + QuestionItem + + + + + fr.insee + kmx96qdc + 1 + CodeList + + + + + + fr.insee + kx4y82og + 1 + + LOGAUT + + + LOGAUT label + + + fr.insee + kmx93med-QOP-kmx9mse6 + 1 + OutParameter + + + fr.insee + kmx93med + 1 + QuestionItem + + + + + fr.insee + kmx9jj4a + 1 + CodeList + + + + + + fr.insee + kmx9sdps + 1 + + GARDE + + + Enfant en garde alternée (GARDE) + + + fr.insee + kmx9punx-QOP-kmx9hqtj + 1 + OutParameter + + + fr.insee + kmx9punx + 1 + QuestionItem + + + + + fr.insee + k1qjtfk1 + 1 + CodeList + + + + + + fr.insee + kna1wd13 + 1 + + DORM + + + Nuitée (DORM) + + + fr.insee + kmx9im0b-QOP-kna1mw8t + 1 + OutParameter + + + fr.insee + kmx9im0b + 1 + QuestionItem + + + + + fr.insee + kna1qses + 1 + CodeList + + + + + + fr.insee + kqi5s6xp + 1 + + LOGCO + + + Chambre en structure collective (LOGCO) + + + fr.insee + kqi4zdkk-QOP-kqi52gbh + 1 + OutParameter + + + fr.insee + kqi4zdkk + 1 + QuestionItem + + + + + fr.insee + k1qjtfk1 + 1 + CodeList + + + + + + fr.insee + kmx9o0jb + 1 + + TYPLOGCO + + + Structure collective (TYPLOGCO) + + + fr.insee + kmx9pvyn-QOP-kmx9nkw7 + 1 + OutParameter + + + fr.insee + kmx9pvyn + 1 + QuestionItem + + + + + fr.insee + kmx7yjsk + 1 + CodeList + + + + + + fr.insee + kmxflats + 1 + + SITUA + + + SITUA label + + + fr.insee + kmxfqrb1-QOP-kmxfw3tj + 1 + OutParameter + + + fr.insee + kmxfqrb1 + 1 + QuestionItem + + + + + fr.insee + kmxfw3sx + 1 + CodeList + + + + + + fr.insee + kmxftept + 1 + + TRAVAIL + + + TRAVAIL label + + + fr.insee + kmxg8ci7-QOP-kmxg0ml3 + 1 + OutParameter + + + fr.insee + kmxg8ci7 + 1 + QuestionItem + + + + + fr.insee + k1qjtfk1 + 1 + CodeList + + + + + + fr.insee + kqi82iu1 + 1 + + GRDIPA + + + Niveau de diplôme (GRDIPA) + + + fr.insee + kmxgftfs-QOP-kmxggoi3 + 1 + OutParameter + + + fr.insee + kmxgftfs + 1 + QuestionItem + + + + + fr.insee + kmxf03ss + 1 + CodeList + + + + + + fr.insee + kqi8s2pw + 1 + + GRDIPB + + + Faible niveau d'études (GRDIPB) + + + fr.insee + kqi8s71l-QOP-kqi8oy4y + 1 + OutParameter + + + fr.insee + kqi8s71l + 1 + QuestionItem + + + + + fr.insee + kqi895gg + 1 + CodeList + + + + + + fr.insee + kqi8cva7 + 1 + + GRDIPC + + + Hautes études (GRDIPC) + + + fr.insee + kqi8mfos-QOP-kqi8kfm4 + 1 + OutParameter + + + fr.insee + kqi8mfos + 1 + QuestionItem + + + + + fr.insee + kqi8rie2 + 1 + CodeList + + + + + + fr.insee + kvjb5etp + 1 + + TELET + + + TELET label + + + fr.insee + kp4dw3br-QOP-kp4dj5dc + 1 + OutParameter + + + fr.insee + kp4dw3br + 1 + QuestionItem + + + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + fr.insee + kwkcn7zn + 1 + + TELETNJ + + + TELETNJ label + + + fr.insee + kvjb8q33-QOP-kvjbdo0x + 1 + OutParameter + + + fr.insee + kvjb8q33 + 1 + QuestionItem + + + + jours + + 0 + 7 + + Decimal + + + + + fr.insee + lgmchql7 + 1 + + PRACT_NOM + + + PRACT_NOM label + + + fr.insee + lgmc7929-QOP-lgmddhd1 + 1 + OutParameter + + + fr.insee + lgmc7929 + 1 + QuestionItem + + + + + + + fr.insee + kmdnmxfj + 1 + + HTLC1 + + + HTLC1 label + + + fr.insee + kd8qd4ou-QOP-kd8q0swm + 1 + OutParameter + + + fr.insee + kd8qd4ou + 1 + QuestionItem + + + + + fr.insee + kd8q4yja + 1 + CodeList + + + + + + fr.insee + l7kayr4b + 1 + + NIVEAU + + + NIVEAU label + + + fr.insee + l7kb07wt-QOP-l7kaurt5 + 1 + OutParameter + + + fr.insee + l7kb07wt + 1 + QuestionItem + + + + + 1 + 99 + + Decimal + + + + + fr.insee + kp4bi87b + 1 + + FOYPAGEES + + + FOYPAGEES label + + + fr.insee + kp4b8f63-QOP-kp4buj00 + 1 + OutParameter + + + fr.insee + kp4b8f63 + 1 + QuestionItem + + + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + fr.insee + kp4bp50q + 1 + + RESAUTO + + + RESAUTO label + + + fr.insee + kp4bwrb9-QOP-kp4bvh3q + 1 + OutParameter + + + fr.insee + kp4bwrb9 + 1 + QuestionItem + + + + + fr.insee + kp4bs9c4 + 1 + CodeList + + + + + + fr.insee + kbgifaaz + 1 + + INDCOLL + + + Logement dans immeuble + + + fr.insee + kbgi5n3g-QOP-kbgif8i8 + 1 + OutParameter + + + fr.insee + kbgi5n3g + 1 + QuestionItem + + + + + fr.insee + k1qjtfk1 + 1 + CodeList + + + + + + fr.insee + kbgijjye + 1 + + IMI + + + Type maison + + + fr.insee + kbgigljc-QOP-kbgif1cj + 1 + OutParameter + + + fr.insee + kbgigljc + 1 + QuestionItem + + + + + fr.insee + kbgi2ogb + 1 + CodeList + + + + + + fr.insee + kbgifbcr + 1 + + ICOI + + + Maison en résidence + + + fr.insee + kbgim4v3-QOP-kbgin5q4 + 1 + OutParameter + + + fr.insee + kbgim4v3 + 1 + QuestionItem + + + + + fr.insee + k1qjtfk1 + 1 + CodeList + + + + + + fr.insee + kbgifxoq + 1 + + IAS + + + Présence d'ascenseur + + + fr.insee + kbgidvnm-QOP-kbgis9ja + 1 + OutParameter + + + fr.insee + kbgidvnm + 1 + QuestionItem + + + + + fr.insee + k1qjtfk1 + 1 + CodeList + + + + + + fr.insee + kbgikmsh + 1 + + IEL + + + Numéro étage + + + fr.insee + kbgigafp-QOP-kbgikgba + 1 + OutParameter + + + fr.insee + kbgigafp + 1 + QuestionItem + + + + + 0 + 99 + + Decimal + + + + + fr.insee + kbghyaq0 + 1 + + IAATC + + + Période d'achèvement + + + fr.insee + kbghszh6-QOP-kbgi0wp8 + 1 + OutParameter + + + fr.insee + kbghszh6 + 1 + QuestionItem + + + + + fr.insee + kbgiawbm + 1 + CodeList + + + + + + fr.insee + lgqots96 + 1 + + IAATCD + + + IAATCD label + + + fr.insee + kbghz7mp-QOP-leradyld + 1 + OutParameter + + + fr.insee + kbghz7mp + 1 + QuestionItem + + + + + + + fr.insee + klut3nax + 1 + + STOC1 + + + STOC1 label + + + fr.insee + jn0cttir-QOP-jn0dct54 + 1 + OutParameter + + + fr.insee + jn0cttir + 1 + QuestionItem + + + + + fr.insee + jn0cd476 + 1 + CodeList + + + + + + fr.insee + klutbmso + 1 + + STOC2 + + + STOC2 label + + + fr.insee + klusnxnh-QOP-klut950c + 1 + OutParameter + + + fr.insee + klusnxnh + 1 + QuestionItem + + + + + fr.insee + klut8zly + 1 + CodeList + + + + + + fr.insee + l7j27kvr + 1 + + COLOC + + + COLOC label + + + fr.insee + l7j247p7-QOP-l7j3o6fg + 1 + OutParameter + + + fr.insee + l7j247p7 + 1 + QuestionItem + + + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + fr.insee + l95eveg6 + 1 + + LBA + + + LBA label + + + fr.insee + l95euppt-QOP-l95eseii + 1 + OutParameter + + + fr.insee + l95euppt + 1 + QuestionItem + + + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + fr.insee + jn0e3lhq + 1 + + STOCP + + + STOCP label + + + fr.insee + jn0e3nhg-QOP-jn0dupyf + 1 + OutParameter + + + fr.insee + jn0e3nhg + 1 + QuestionItem + + + + + fr.insee + jn0dummd + 1 + CodeList + + + + + + fr.insee + ko9tk25n + 1 + + STOCA12 + + + STOCA12 label + + + fr.insee + ko9tiu0f-QOP-ko9t7khn + 1 + OutParameter + + + fr.insee + ko9tiu0f + 1 + QuestionItem + + + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + fr.insee + ko9t8lr0 + 1 + + STOCA3 + + + STOCA3 label + + + fr.insee + ko9r0alc-QOP-ko9qvhh3 + 1 + OutParameter + + + fr.insee + ko9r0alc + 1 + QuestionItem + + + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + fr.insee + ko9tmcu8 + 1 + + STOCA4 + + + STOCA4 label + + + fr.insee + ko9t45t9-QOP-ko9sybca + 1 + OutParameter + + + fr.insee + ko9t45t9 + 1 + QuestionItem + + + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + fr.insee + knoq3j67 + 1 + + STOCB1 + + + STOCB1 label + + + fr.insee + knoqewds-QOP-knoq13l0 + 1 + OutParameter + + + fr.insee + knoqewds + 1 + QuestionItem + + + + + fr.insee + knoq1iew + 1 + CodeList + + + + + + fr.insee + kp5x078b + 1 + + EPAS1 + + + EPAS1 label + + + fr.insee + joh8lowu-QOP-kp5vmw5r + 1 + OutParameter + + + fr.insee + joh8lowu + 1 + QuestionItem + + + + + fr.insee + kp5vfffj + 1 + CodeList + + + + + + fr.insee + kppmk0mg + 1 + + ERETOUR + + + ERETOUR label + + + fr.insee + kppmespv-QOP-kppmi2n2 + 1 + OutParameter + + + fr.insee + kppmespv + 1 + QuestionItem + + + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + fr.insee + joh9hbxn + 1 + + EPASB + + + EPASB label + + + fr.insee + joh8ixt2-QOP-joh9guc7 + 1 + OutParameter + + + fr.insee + joh8ixt2 + 1 + QuestionItem + + + + + fr.insee + joh8kni7 + 1 + CodeList + + + + + + fr.insee + kcncj70c + 1 + + EPASC + + + EPASC label + + + fr.insee + kcnccgjg-QOP-kcnch682 + 1 + OutParameter + + + fr.insee + kcnccgjg + 1 + QuestionItem + + + + + fr.insee + joh9gxwq + 1 + CodeList + + + + + + fr.insee + kwqkp3p2 + 1 + + ERET11 + + + 1 - Changement de situation professionnelle (lieu de travail, perte d'emploi...) + + + fr.insee + knorcs48-QOP-kwqpl9t4 + 1 + OutParameter + + + fr.insee + knorcs48 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kwqkm2qv + 1 + + ERET12 + + + 2 - Séparations familiales + + + fr.insee + knorcs48-QOP-kwqplt17 + 1 + OutParameter + + + fr.insee + knorcs48 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kwqkmpb9 + 1 + + ERET13 + + + 3 - Difficultés financières + + + fr.insee + knorcs48-QOP-kwqpx010 + 1 + OutParameter + + + fr.insee + knorcs48 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kwqkbr0b + 1 + + ERET14 + + + 4 - Fin des études ou études en cours + + + fr.insee + knorcs48-QOP-kwqpvqw9 + 1 + OutParameter + + + fr.insee + knorcs48 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kwqkay07 + 1 + + ERET15 + + + 5 - Raisons de santé ou pour s'occuper d'un membre du ménage + + + fr.insee + knorcs48-QOP-kwqprhw6 + 1 + OutParameter + + + fr.insee + knorcs48 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kwqksrzu + 1 + + ERET16 + + + 6 - Autre + + + fr.insee + knorcs48-QOP-kwqq04zh + 1 + OutParameter + + + fr.insee + knorcs48 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kp5vtv99 + 1 + + ECOVID + + + ECOVID label + + + fr.insee + kp5vtjh4-QOP-kp5w4s1s + 1 + OutParameter + + + fr.insee + kp5vtjh4 + 1 + QuestionItem + + + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + fr.insee + knpntilb + 1 + + EPROJ + + + EPROJ label + + + fr.insee + joirni0x-QOP-joirzvfg + 1 + OutParameter + + + fr.insee + joirni0x + 1 + QuestionItem + + + + + fr.insee + joirusc3 + 1 + CodeList + + + + + + fr.insee + joirtq9l + 1 + + EPROJB + + + EPROJB label + + + fr.insee + joirve2f-QOP-jois1vwn + 1 + OutParameter + + + fr.insee + joirve2f + 1 + QuestionItem + + + + + fr.insee + joirox38 + 1 + CodeList + + + + + + fr.insee + jois2zfa + 1 + + EPROJC + + + EPROJC label + + + fr.insee + joirtz3j-QOP-joirpdmw + 1 + OutParameter + + + fr.insee + joirtz3j + 1 + QuestionItem + + + + + fr.insee + joirox38 + 1 + CodeList + + + + + + fr.insee + joit0351 + 1 + + EPROJD + + + EPROJD label + + + fr.insee + joisp3u9-QOP-joit4rln + 1 + OutParameter + + + fr.insee + joisp3u9 + 1 + QuestionItem + + + + + fr.insee + joisst25 + 1 + CodeList + + + + + + fr.insee + joisc9ua + 1 + + EAMIA + + + EAMIA label + + + fr.insee + joisq6l3-QOP-joisit3j + 1 + OutParameter + + + fr.insee + joisq6l3 + 1 + QuestionItem + + + + + fr.insee + joh9gxwq + 1 + CodeList + + + + + + fr.insee + l3d7qp26 + 1 + + EAMID11 + + + 1 - En couple avec l'un des membres du ménage + + + fr.insee + knpolbu3-QOP-l3d88g6a + 1 + OutParameter + + + fr.insee + knpolbu3 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l3d7wr74 + 1 + + EAMID12 + + + 2 - Changement de situation professionnelle (lieu de travail, perte d'emploi...) + + + fr.insee + knpolbu3-QOP-l3d8efe0 + 1 + OutParameter + + + fr.insee + knpolbu3 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l3d7id7m + 1 + + EAMID13 + + + 3 - Séparation familiale + + + fr.insee + knpolbu3-QOP-l3d8iii6 + 1 + OutParameter + + + fr.insee + knpolbu3 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l3d7qlgr + 1 + + EAMID14 + + + 4 - Difficultés financières + + + fr.insee + knpolbu3-QOP-l3d8aqcq + 1 + OutParameter + + + fr.insee + knpolbu3 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l3d7yqxt + 1 + + EAMID15 + + + 7 - Fin des études ou études en cours + + + fr.insee + knpolbu3-QOP-l3d8e08c + 1 + OutParameter + + + fr.insee + knpolbu3 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l3d7hb7k + 1 + + EAMID16 + + + 5 - Raisons de santé ou pour s'occuper d'un membre du ménage + + + fr.insee + knpolbu3-QOP-l3d896r3 + 1 + OutParameter + + + fr.insee + knpolbu3 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l3d7jgv0 + 1 + + EAMID17 + + + 6 - Je rends service à quelqu'un qui n'a pas d'autre solution d'hébergement + + + fr.insee + knpolbu3-QOP-l3d87rh5 + 1 + OutParameter + + + fr.insee + knpolbu3 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kpppx8tb + 1 + + ECOVID2 + + + ECOVID2 label + + + fr.insee + kppptqlu-QOP-kpppq7ha + 1 + OutParameter + + + fr.insee + kppptqlu + 1 + QuestionItem + + + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + fr.insee + kcnjw6pt + 1 + + EAMIH + + + EAMIH label + + + fr.insee + joismxwd-QOP-joisy91r + 1 + OutParameter + + + fr.insee + joismxwd + 1 + QuestionItem + + + + + fr.insee + joirusc3 + 1 + CodeList + + + + + + fr.insee + kqv44ftz + 1 + + EAMIK + + + EAMIK label + + + fr.insee + kqv3atis-QOP-kqv47xde + 1 + OutParameter + + + fr.insee + kqv3atis + 1 + QuestionItem + + + + + fr.insee + kqv3pa7u + 1 + CodeList + + + + + + fr.insee + kqv468d5 + 1 + + EAMIL + + + EAMIL label + + + fr.insee + kqv44b8j-QOP-kqv4akc6 + 1 + OutParameter + + + fr.insee + kqv44b8j + 1 + QuestionItem + + + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + fr.insee + lgp3bfj8 + 1 + + MAA2A + + + MAA2A label + + + fr.insee + jojtbo85-QOP-lera9at4 + 1 + OutParameter + + + fr.insee + jojtbo85 + 1 + QuestionItem + + + + + + + fr.insee + kp6iwknx + 1 + + MAA2AT_Q + + + MAA2AT_Q label + + + fr.insee + kp6iwd90-QOP-kp6iwdcb + 1 + OutParameter + + + fr.insee + kp6iwd90 + 1 + QuestionItem + + + + + fr.insee + kp6iy3xk + 1 + CodeList + + + + + + fr.insee + kf71mrxw + 1 + + MAA2M + + + MAA2M label + + + fr.insee + jojt16mt-QOP-kf71i6tz + 1 + OutParameter + + + fr.insee + jojt16mt + 1 + QuestionItem + + + + + fr.insee + kf71urf1 + 1 + CodeList + + + + + + fr.insee + jojtmmcp + 1 + + MARRIVC + + + MARRIVC label + + + fr.insee + jojt3qxp-QOP-jojtagah + 1 + OutParameter + + + fr.insee + jojt3qxp + 1 + QuestionItem + + + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + fr.insee + lgp3974g + 1 + + MAA2AC + + + MAA2AC label + + + fr.insee + jojtnq9z-QOP-leraafbf + 1 + OutParameter + + + fr.insee + jojtnq9z + 1 + QuestionItem + + + + + + + fr.insee + kp6karsm + 1 + + MAA2ATC_Q + + + MAA2ATC_Q label + + + fr.insee + kp6ja40b-QOP-kp6j1a25 + 1 + OutParameter + + + fr.insee + kp6ja40b + 1 + QuestionItem + + + + + fr.insee + kp6iy3xk + 1 + CodeList + + + + + + fr.insee + kf722urp + 1 + + MAA2MC + + + MAA2MC label + + + fr.insee + jor73af6-QOP-kf71reoh + 1 + OutParameter + + + fr.insee + jor73af6 + 1 + QuestionItem + + + + + fr.insee + kf71urf1 + 1 + CodeList + + + + + + fr.insee + jojtd97l + 1 + + MAA3 + + + MAA3 label + + + fr.insee + jojtsgsr-QOP-jojtrf8n + 1 + OutParameter + + + fr.insee + jojtsgsr + 1 + QuestionItem + + + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + fr.insee + lgp3qwcx + 1 + + MAA3A + + + MAA3A label + + + fr.insee + jojtutyy-QOP-leranvj5 + 1 + OutParameter + + + fr.insee + jojtutyy + 1 + QuestionItem + + + + + + + fr.insee + kf71lvot + 1 + + MAA3M + + + MAA3M label + + + fr.insee + jojtizrx-QOP-kf71m9y7 + 1 + OutParameter + + + fr.insee + jojtizrx + 1 + QuestionItem + + + + + fr.insee + kf71urf1 + 1 + CodeList + + + + + + fr.insee + l3ykbe8f + 1 + + SDEJA + + + SDEJA label + + + fr.insee + l3yket2i-QOP-l3yknw6r + 1 + OutParameter + + + fr.insee + l3yket2i + 1 + QuestionItem + + + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + fr.insee + km24than + 1 + + KCU1 + + + KCU1 label + + + fr.insee + jojuueml-QOP-jojumdxu + 1 + OutParameter + + + fr.insee + jojuueml + 1 + QuestionItem + + + + + fr.insee + jojv0g6x + 1 + CodeList + + + + + + fr.insee + jojupxj3 + 1 + + KCU2 + + + KCU2 label + + + fr.insee + jojuno0d-QOP-jojuz9du + 1 + OutParameter + + + fr.insee + jojuno0d + 1 + QuestionItem + + + + + fr.insee + jojum3uu + 1 + CodeList + + + + + + fr.insee + l3ioimd4 + 1 + + HUTCOND + + + HUTCOND label + + + fr.insee + klv34du0-QOP-l3irjta2 + 1 + OutParameter + + + fr.insee + klv34du0 + 1 + QuestionItem + + + + + 0 + 10 + + Decimal + + + + + fr.insee + l3ioi4z8 + 1 + + HUTDEF1 + + + 1 - Bruit + + + fr.insee + l3io7e8f-QOP-l3irxifk + 1 + OutParameter + + + fr.insee + l3io7e8f + 1 + QuestionGrid + + + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + fr.insee + l3io8xk7 + 1 + + HUTDEF2 + + + 2 - Absence d'une pièce dédiée au télétravail + + + fr.insee + l3io7e8f-QOP-l3irkq5a + 1 + OutParameter + + + fr.insee + l3io7e8f + 1 + QuestionGrid + + + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + fr.insee + l3io3i1z + 1 + + HUTDEF3 + + + 3 - Manque de place + + + fr.insee + l3io7e8f-QOP-l3irr1yx + 1 + OutParameter + + + fr.insee + l3io7e8f + 1 + QuestionGrid + + + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + fr.insee + l3iohmbv + 1 + + HUTDEF4 + + + 4 - Problème de connexion Internet + + + fr.insee + l3io7e8f-QOP-l3irjbx5 + 1 + OutParameter + + + fr.insee + l3io7e8f + 1 + QuestionGrid + + + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + fr.insee + jojuqqg0 + 1 + + HUP + + + HUP label + + + fr.insee + jojuwst2-QOP-jojv5zcs + 1 + OutParameter + + + fr.insee + jojuwst2 + 1 + QuestionItem + + + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + fr.insee + jojuunvc + 1 + + HPP + + + HPP label + + + fr.insee + jojv1e5e-QOP-jojuuvbp + 1 + OutParameter + + + fr.insee + jojv1e5e + 1 + QuestionItem + + + + + 1 + 9 + + Decimal + + + + + fr.insee + kwkd92gt + 1 + + HSP + + + HSP label + + + fr.insee + jojuz9k3-QOP-jojv0jt2 + 1 + OutParameter + + + fr.insee + jojuz9k3 + 1 + QuestionItem + + + + mètres carrés + + 1 + 997 + + Decimal + + + + + fr.insee + jojusauf + 1 + + HUA + + + HUA label + + + fr.insee + jojv79ut-QOP-jojv12lo + 1 + OutParameter + + + fr.insee + jojv79ut + 1 + QuestionItem + + + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + fr.insee + kkqp2j1d + 1 + + HPA + + + HPA label + + + fr.insee + jojv3ha7-QOP-jojusenw + 1 + OutParameter + + + fr.insee + jojv3ha7 + 1 + QuestionItem + + + + + 1 + 9 + + Decimal + + + + + fr.insee + kmd71wle + 1 + + HULHUI1 + + + HULHUI1 label + + + fr.insee + kmd6o006-QOP-kmd6yr7w + 1 + OutParameter + + + fr.insee + kmd6o006 + 1 + QuestionItem + + + + + fr.insee + kmd70xef + 1 + CodeList + + + + + + fr.insee + kmd80s25 + 1 + + HULHUI21 + + + 1 - Louées, sous-louées ou prêtées à des tiers. + + + fr.insee + kmcdiwdv-QOP-kmd9jdka + 1 + OutParameter + + + fr.insee + kmcdiwdv + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kmd84vg3 + 1 + + HULHUI22 + + + 2 - Réservées à votre usage personnel + + + fr.insee + kmcdiwdv-QOP-kmd9qoms + 1 + OutParameter + + + fr.insee + kmcdiwdv + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kmd7sxny + 1 + + HULHUI23 + + + 3 - À l'usage d'un salarié à votre service (employé, jeune au pair..) + + + fr.insee + kmcdiwdv-QOP-kmd988n2 + 1 + OutParameter + + + fr.insee + kmcdiwdv + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + klv4iu5l + 1 + + HPI1 + + + HPI1 label + + + fr.insee + jojuzbus-QOP-jojv8tjf + 1 + OutParameter + + + fr.insee + jojuzbus + 1 + QuestionItem + + + + + 1 + 9 + + Decimal + + + + + fr.insee + klv4t7se + 1 + + HPI2 + + + HPI2 label + + + fr.insee + klv4iusu-QOP-klv4mlgz + 1 + OutParameter + + + fr.insee + klv4iusu + 1 + QuestionItem + + + + + 1 + 9 + + Decimal + + + + + fr.insee + kycvsbre + 1 + + HSI1 + + + HSI1 label + + + fr.insee + jojv5bnw-QOP-jojuywkz + 1 + OutParameter + + + fr.insee + jojv5bnw + 1 + QuestionItem + + + + mètres carrés + + 1 + 999 + + Decimal + + + + + fr.insee + kycvrlft + 1 + + HSI2 + + + HSI2 label + + + fr.insee + klw36l7v-QOP-klw34351 + 1 + OutParameter + + + fr.insee + klw36l7v + 1 + QuestionItem + + + + mètres carrés + + 1 + 999 + + Decimal + + + + + fr.insee + kycvr8qf + 1 + + HPH + + + HPH label + + + fr.insee + jojvgfei-QOP-jojvjmis + 1 + OutParameter + + + fr.insee + jojvgfei + 1 + QuestionItem + + + + + 1 + 100 + + Decimal + + + + + fr.insee + kycvqn8e + 1 + + HCHA + + + HCHA label + + + fr.insee + jojv4yqe-QOP-jojveb38 + 1 + OutParameter + + + fr.insee + jojv4yqe + 1 + QuestionItem + + + + + 0 + 100 + + Decimal + + + + + fr.insee + kwkduxho + 1 + + HST + + + HST label + + + fr.insee + jojvc0vt-QOP-jojv2uvg + 1 + OutParameter + + + fr.insee + jojvc0vt + 1 + QuestionItem + + + + mètres carrés + + 1 + 1000 + + Decimal + + + + + fr.insee + jojve9fu + 1 + + HPEUP + + + HPEUP label + + + fr.insee + jojv1ux1-QOP-jojvggis + 1 + OutParameter + + + fr.insee + jojv1ux1 + 1 + QuestionItem + + + + + fr.insee + jojvev63 + 1 + CodeList + + + + + + fr.insee + kv29e4km + 1 + + HAUT + + + HAUT label + + + fr.insee + kv29cjdq-QOP-kv29rcjs + 1 + OutParameter + + + fr.insee + kv29cjdq + 1 + QuestionItem + + + + + fr.insee + jojvm75x + 1 + CodeList + + + + + + fr.insee + jrupwwi7 + 1 + + KVE + + + KVE label + + + fr.insee + jrupq1i5-QOP-jrupywt4 + 1 + OutParameter + + + fr.insee + jrupq1i5 + 1 + QuestionItem + + + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + fr.insee + kycvstc6 + 1 + + KSV + + + KSV label + + + fr.insee + jrupsr80-QOP-jrupxa50 + 1 + OutParameter + + + fr.insee + jrupsr80 + 1 + QuestionItem + + + + mètres carrés + + 1 + 999 + + Decimal + + + + + fr.insee + jrupxrwb + 1 + + KSV1 + + + KSV1 label + + + fr.insee + jrupy93h-QOP-jrupnl2c + 1 + OutParameter + + + fr.insee + jrupy93h + 1 + QuestionItem + + + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + fr.insee + jrupt0ur + 1 + + KBA + + + KBA label + + + fr.insee + jrupzl7m-QOP-jruppxki + 1 + OutParameter + + + fr.insee + jrupzl7m + 1 + QuestionItem + + + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + fr.insee + kycvqfbg + 1 + + KSB + + + KSB label + + + fr.insee + jrupx7iz-QOP-jruq3o9c + 1 + OutParameter + + + fr.insee + jrupx7iz + 1 + QuestionItem + + + + mètres carrés + + 1 + 999 + + Decimal + + + + + fr.insee + jrupwd1k + 1 + + KJA + + + KJA label + + + fr.insee + jruq98v2-QOP-jruq36wn + 1 + OutParameter + + + fr.insee + jruq98v2 + 1 + QuestionItem + + + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + fr.insee + kycw6iix + 1 + + KSJPI + + + KSJPI label + + + fr.insee + jruq8x6e-QOP-jruq3zg9 + 1 + OutParameter + + + fr.insee + jruq8x6e + 1 + QuestionItem + + + + mètres carrés + + 1 + 100000 + + Decimal + + + + + fr.insee + kd8v17b1 + 1 + + KSJPIT + + + KSJPIT label + + + fr.insee + jruq85av-QOP-kd8uw761 + 1 + OutParameter + + + fr.insee + jruq85av + 1 + QuestionItem + + + + + fr.insee + jruq09km + 1 + CodeList + + + + + + fr.insee + kycx9mkh + 1 + + KSMI + + + KSMI label + + + fr.insee + jruq4was-QOP-jruq4wnm + 1 + OutParameter + + + fr.insee + jruq4was + 1 + QuestionItem + + + + mètres carrés + + 1 + 99999 + + Decimal + + + + + fr.insee + kycxer12 + 1 + + KSJPC + + + KSJPC label + + + fr.insee + jruq6fv0-QOP-jruq3lzc + 1 + OutParameter + + + fr.insee + jruq6fv0 + 1 + QuestionItem + + + + mètres carrés + + 1 + 99999 + + Decimal + + + + + fr.insee + jruqlp4e + 1 + + KJC + + + KJC label + + + fr.insee + jruqlf39-QOP-jruqc60v + 1 + OutParameter + + + fr.insee + jruqlf39 + 1 + QuestionItem + + + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + fr.insee + kd8wl7m1 + 1 + + KSJC + + + KSJC label + + + fr.insee + jrusmgfq-QOP-kd8wm7rc + 1 + OutParameter + + + fr.insee + jrusmgfq + 1 + QuestionItem + + + + + fr.insee + jruscsna + 1 + CodeList + + + + + + fr.insee + l3irm90u + 1 + + GVOIT + + + GVOIT label + + + fr.insee + l3irva5g-QOP-l3is6e23 + 1 + OutParameter + + + fr.insee + l3irva5g + 1 + QuestionItem + + + + + fr.insee + l3is40qi + 1 + CodeList + + + + + + fr.insee + jrusrp45 + 1 + + KGA1 + + + 1 - Oui, un garage ou u nbox + + + fr.insee + jrusjpqy-QOP-kf8972di + 1 + OutParameter + + + fr.insee + jrusjpqy + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + jrusyukj + 1 + + KGA2 + + + 2 - Oui, un parking souterrain + + + fr.insee + jrusjpqy-QOP-kf893sen + 1 + OutParameter + + + fr.insee + jrusjpqy + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + jruspgnz + 1 + + KGA3 + + + 3 - Oui, un parking en plein air + + + fr.insee + jrusjpqy-QOP-kf89737h + 1 + OutParameter + + + fr.insee + jrusjpqy + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + jruswkr3 + 1 + + KGA4 + + + 4 - Non, ni garage, ni box, ni parking + + + fr.insee + jrusjpqy-QOP-kf89ei4h + 1 + OutParameter + + + fr.insee + jrusjpqy + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + jrusz90d + 1 + + KGA11 + + + 1 - Oui, un garage ou un box + + + fr.insee + jrut4vl7-QOP-kf8913r1 + 1 + OutParameter + + + fr.insee + jrut4vl7 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + jrusxk5i + 1 + + KGA12 + + + 2 - Oui, un parking souterrain + + + fr.insee + jrut4vl7-QOP-kf89c33b + 1 + OutParameter + + + fr.insee + jrut4vl7 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + jrut5rs4 + 1 + + KGA13 + + + 3 - Oui, un parking en plein air + + + fr.insee + jrut4vl7-QOP-kf899mmw + 1 + OutParameter + + + fr.insee + jrut4vl7 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + jrusvxw1 + 1 + + KGA14 + + + 4 - Non, ni garage, ni box, ni parking + + + fr.insee + jrut4vl7-QOP-kf8931vm + 1 + OutParameter + + + fr.insee + jrut4vl7 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + jrutat73 + 1 + + KCA + + + KCA label + + + fr.insee + jrut0i0j-QOP-jrut3e99 + 1 + OutParameter + + + fr.insee + jrut0i0j + 1 + QuestionItem + + + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + fr.insee + kmdllzgd + 1 + + KVELO + + + KVELO label + + + fr.insee + jrusu349-QOP-kd91gp0d + 1 + OutParameter + + + fr.insee + jrusu349 + 1 + QuestionItem + + + + + fr.insee + joirusc3 + 1 + CodeList + + + + + + fr.insee + koiozi77 + 1 + + KGRA + + + KGRA label + + + fr.insee + jrutj5co-QOP-jrutza0y + 1 + OutParameter + + + fr.insee + jrutj5co + 1 + QuestionItem + + + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + fr.insee + jrutqxjn + 1 + + KSOA + + + KSOA label + + + fr.insee + jruu4ry3-QOP-jruu5wfk + 1 + OutParameter + + + fr.insee + jruu4ry3 + 1 + QuestionItem + + + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + fr.insee + jruul7hb + 1 + + KPISC + + + KPISC label + + + fr.insee + jruue197-QOP-jruui69o + 1 + OutParameter + + + fr.insee + jruue197 + 1 + QuestionItem + + + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + fr.insee + jruu4qwz + 1 + + KGRAA + + + KGRAA label + + + fr.insee + jruubukg-QOP-jruuibm5 + 1 + OutParameter + + + fr.insee + jruubukg + 1 + QuestionItem + + + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + fr.insee + kmdsauvj + 1 + + KAO1 + + + KAO1 label + + + fr.insee + jruuncm0-QOP-kmdshzqk + 1 + OutParameter + + + fr.insee + jruuncm0 + 1 + QuestionItem + + + + + fr.insee + kmdsf01l + 1 + CodeList + + + + + + fr.insee + kdabf33q + 1 + + KWC1 + + + KWC1 label + + + fr.insee + jruv1cla-QOP-kdabltlu + 1 + OutParameter + + + fr.insee + jruv1cla + 1 + QuestionItem + + + + + fr.insee + jruv7r7y + 1 + CodeList + + + + + + fr.insee + lfjeifdt + 1 + + KWCID + + + KWCID label + + + fr.insee + kmeu61l4-QOP-lfjenhhf + 1 + OutParameter + + + fr.insee + kmeu61l4 + 1 + QuestionItem + + + + + 0 + 9 + + Decimal + + + + + fr.insee + lfjgozaz + 1 + + KWCIDB + + + KWCIDB label + + + fr.insee + lfjgw27o-QOP-lfjgw5h9 + 1 + OutParameter + + + fr.insee + lfjgw27o + 1 + QuestionItem + + + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + fr.insee + lfjeehxy + 1 + + KWCID2 + + + KWCID2 label + + + fr.insee + lfjel2zf-QOP-lfjeoq03 + 1 + OutParameter + + + fr.insee + lfjel2zf + 1 + QuestionItem + + + + + 0 + 9 + + Decimal + + + + + fr.insee + jruvg7ju + 1 + + KBD + + + KBD label + + + fr.insee + jruva8uu-QOP-jruuzwyy + 1 + OutParameter + + + fr.insee + jruva8uu + 1 + QuestionItem + + + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + fr.insee + lfjenaet + 1 + + KSE + + + KSE label + + + fr.insee + kksgd6fv-QOP-lfjf0wd7 + 1 + OutParameter + + + fr.insee + kksgd6fv + 1 + QuestionItem + + + + + 0 + 9 + + Decimal + + + + + fr.insee + lfjgt4a1 + 1 + + KSEB + + + KSEB label + + + fr.insee + lfjgy3we-QOP-lfjglmww + 1 + OutParameter + + + fr.insee + lfjgy3we + 1 + QuestionItem + + + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + fr.insee + lfjeoa22 + 1 + + KSE2 + + + KSE2 label + + + fr.insee + lfjedybr-QOP-lfjesou2 + 1 + OutParameter + + + fr.insee + lfjedybr + 1 + QuestionItem + + + + + 0 + 9 + + Decimal + + + + + fr.insee + kmf0ywla + 1 + + KDLK1 + + + KDLK1 label + + + fr.insee + kmf0xcox-QOP-kmf17z2u + 1 + OutParameter + + + fr.insee + kmf0xcox + 1 + QuestionItem + + + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + fr.insee + kmf0znd7 + 1 + + KDLK2 + + + KDLK2 label + + + fr.insee + jruv164k-QOP-kdaas2sy + 1 + OutParameter + + + fr.insee + jruv164k + 1 + QuestionItem + + + + + fr.insee + jruvifd2 + 1 + CodeList + + + + + + fr.insee + kcui3ym0 + 1 + + OLA + + + OLA label + + + fr.insee + joicolgp-QOP-joicybdw + 1 + OutParameter + + + fr.insee + joicolgp + 1 + QuestionItem + + + + + fr.insee + joico0rb + 1 + CodeList + + + + + + fr.insee + joicxlh4 + 1 + + OLAD + + + OLAD label + + + fr.insee + joiccm1l-QOP-jslhf6kb + 1 + OutParameter + + + fr.insee + joiccm1l + 1 + QuestionItem + + + + + 1 + 10 + + Decimal + + + + + fr.insee + l8bcd93y + 1 + + OLAR11 + + + 1 - Pas d'eau chaude + + + fr.insee + knio1w9d-QOP-l8bbx7nd + 1 + OutParameter + + + fr.insee + knio1w9d + 1 + QuestionGrid + + + + + fr.insee + joidufam + 1 + CodeList + + + + + + fr.insee + l8bcdwlk + 1 + + OLAR12 + + + 2 - Pas de chauffage central ou électrique + + + fr.insee + knio1w9d-QOP-l8bc28f0 + 1 + OutParameter + + + fr.insee + knio1w9d + 1 + QuestionGrid + + + + + fr.insee + joidufam + 1 + CodeList + + + + + + fr.insee + l8bc5gu4 + 1 + + OLAR13 + + + 3 - Toit percé, humidité, infiltrations + + + fr.insee + knio1w9d-QOP-l8bccet1 + 1 + OutParameter + + + fr.insee + knio1w9d + 1 + QuestionGrid + + + + + fr.insee + joidufam + 1 + CodeList + + + + + + fr.insee + l8bc5mej + 1 + + OLAR14 + + + 4 - Logement bruyant + + + fr.insee + knio1w9d-QOP-l8bbz1zl + 1 + OutParameter + + + fr.insee + knio1w9d + 1 + QuestionGrid + + + + + fr.insee + joidufam + 1 + CodeList + + + + + + fr.insee + l7j1r0z9 + 1 + + OLAR1DIF1 + + + 1 - pour accéder au logement ou s’y déplacer ? + + + fr.insee + l7j1k2un-QOP-l7j1nesf + 1 + OutParameter + + + fr.insee + l7j1k2un + 1 + QuestionGrid + + + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + fr.insee + l7j1iifa + 1 + + OLAR1DIF2 + + + 2 - pour accomplir les tâches du quotidien dans leur logement (cuisiner, se laver, fermer les volets, etc.) ? + + + fr.insee + l7j1k2un-QOP-l7j1n6nb + 1 + OutParameter + + + fr.insee + l7j1k2un + 1 + QuestionGrid + + + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + fr.insee + l7j1si95 + 1 + + OLAR1DIFCO1 + + + 1 - pour accéder au logement ou s’y déplacer ? + + + fr.insee + l7j1y65o-QOP-l7j1x8s4 + 1 + OutParameter + + + fr.insee + l7j1y65o + 1 + QuestionGrid + + + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + fr.insee + l7j1ye16 + 1 + + OLAR1DIFCO2 + + + 2 - pour accomplir les tâches du quotidien dans leur logement (cuisiner, se laver, fermer les volets, etc.) ? + + + fr.insee + l7j1y65o-QOP-l7j1mfn2 + 1 + OutParameter + + + fr.insee + l7j1y65o + 1 + QuestionGrid + + + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + fr.insee + l7j1utvh + 1 + + OLAR1DIFCO3 + + + 3 - pour accéder aux parties communes de l’immeuble ? + + + fr.insee + l7j1y65o-QOP-l7j1stx0 + 1 + OutParameter + + + fr.insee + l7j1y65o + 1 + QuestionGrid + + + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + fr.insee + ko3w2bxw + 1 + + OLAR21 + + + 1 - Trop sombre + + + fr.insee + kninrf3p-QOP-ko3x6kz1 + 1 + OutParameter + + + fr.insee + kninrf3p + 1 + QuestionGrid + + + + + fr.insee + joidufam + 1 + CodeList + + + + + + fr.insee + ko3vokyj + 1 + + OLAR22 + + + 2 - Trop petit + + + fr.insee + kninrf3p-QOP-ko3wyuod + 1 + OutParameter + + + fr.insee + kninrf3p + 1 + QuestionGrid + + + + + fr.insee + joidufam + 1 + CodeList + + + + + + fr.insee + ko3vwv7a + 1 + + OLAR23 + + + 3 - Trop difficile ou trop coûteux à chauffer + + + fr.insee + kninrf3p-QOP-ko3xdviu + 1 + OutParameter + + + fr.insee + kninrf3p + 1 + QuestionGrid + + + + + fr.insee + joidufam + 1 + CodeList + + + + + + fr.insee + ko3w348b + 1 + + OLAR24 + + + 4 - Trop chaud (trop difficile ou coûteux à climatiser) + + + fr.insee + kninrf3p-QOP-ko3xbz9m + 1 + OutParameter + + + fr.insee + kninrf3p + 1 + QuestionGrid + + + + + fr.insee + joidufam + 1 + CodeList + + + + + + fr.insee + ko3w0jql + 1 + + OLAR25 + + + 5 - Trop cher + + + fr.insee + kninrf3p-QOP-ko3x1rx5 + 1 + OutParameter + + + fr.insee + kninrf3p + 1 + QuestionGrid + + + + + fr.insee + joidufam + 1 + CodeList + + + + + + fr.insee + l7kggzyr + 1 + + OLAR31 + + + 1 - Problèmes de pollution + + + fr.insee + knioggcs-QOP-l7kmxkga + 1 + OutParameter + + + fr.insee + knioggcs + 1 + QuestionGrid + + + + + fr.insee + joidufam + 1 + CodeList + + + + + + fr.insee + l7kgfi7w + 1 + + OLAR32 + + + 2 - Problèmes de délinquance, violence ou vandalisme dans les environs + + + fr.insee + knioggcs-QOP-l7kmxnbz + 1 + OutParameter + + + fr.insee + knioggcs + 1 + QuestionGrid + + + + + fr.insee + joidufam + 1 + CodeList + + + + + + fr.insee + l7kg4e0c + 1 + + OLAR33 + + + 3 - Services médicaux insuffisants + + + fr.insee + knioggcs-QOP-l7knhcad + 1 + OutParameter + + + fr.insee + knioggcs + 1 + QuestionGrid + + + + + fr.insee + joidufam + 1 + CodeList + + + + + + fr.insee + l7kgku7a + 1 + + OLAR34 + + + 4 - Services publics insuffisants + + + fr.insee + knioggcs-QOP-l7kn7vvm + 1 + OutParameter + + + fr.insee + knioggcs + 1 + QuestionGrid + + + + + fr.insee + joidufam + 1 + CodeList + + + + + + fr.insee + l7kg81bv + 1 + + OLAR35 + + + 5 - Manque de végétation + + + fr.insee + knioggcs-QOP-l7knchw6 + 1 + OutParameter + + + fr.insee + knioggcs + 1 + QuestionGrid + + + + + fr.insee + joidufam + 1 + CodeList + + + + + + fr.insee + l3yl99ds + 1 + + OLAR4 + + + OLAR4 label + + + fr.insee + l3yli2im-QOP-l3ylipbg + 1 + OutParameter + + + fr.insee + l3yli2im + 1 + QuestionItem + + + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + fr.insee + ks4l98bk + 1 + + OQA + + + OQA label + + + fr.insee + kniwyjy0-QOP-knixdt6f + 1 + OutParameter + + + fr.insee + kniwyjy0 + 1 + QuestionItem + + + + + fr.insee + joirusc3 + 1 + CodeList + + + + + + fr.insee + kniwsz0y + 1 + + OQAD + + + OQAD label + + + fr.insee + joidpl4s-QOP-jslihsyh + 1 + OutParameter + + + fr.insee + joidpl4s + 1 + QuestionItem + + + + + 1 + 10 + + Decimal + + + + + fr.insee + ljvx2z41 + 1 + + SDL11 + + + 1 - Hébergement contraint chez d'autres personnes + + + fr.insee + joinz4wo-QOP-ljvxgvru + 1 + OutParameter + + + fr.insee + joinz4wo + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + ljvxagy6 + 1 + + SDL12 + + + 2 - Chambre d’hôtel (hors tourisme) + + + fr.insee + joinz4wo-QOP-ljvxk44t + 1 + OutParameter + + + fr.insee + joinz4wo + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + ljvx7dgb + 1 + + SDL13 + + + 3 - Logement payé par une association ou un organisme d’aide + + + fr.insee + joinz4wo-QOP-ljvxgmyh + 1 + OutParameter + + + fr.insee + joinz4wo + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + ljvx2686 + 1 + + SDL14 + + + 4 - Séjour en centre d'hébergement (Centre d'hébergement d'urgence, CHRS, centre maternel, centre d'hébergement pour demandeurs d'asile ou réfugiés...Foyers ou hébergements de la DDASS, DDCS, ASE, PJJ...) + + + fr.insee + joinz4wo-QOP-ljvxbn8w + 1 + OutParameter + + + fr.insee + joinz4wo + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + ljvx4oqr + 1 + + SDL15 + + + 5 - Séjour dans un logement sans autorisation du propriétaire (squat) + + + fr.insee + joinz4wo-QOP-ljvxplyt + 1 + OutParameter + + + fr.insee + joinz4wo + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + ljvwqn5l + 1 + + SDL16 + + + 6 - Séjour dans un lieu non prévu pour l’habitation (rue, véhicule, abri de fortune...) + + + fr.insee + joinz4wo-QOP-ljvxncns + 1 + OutParameter + + + fr.insee + joinz4wo + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + ljvwqe7r + 1 + + SDL17 + + + 7 - Logement contraint en habitation mobile (caravane, péniche) hors tourisme + + + fr.insee + joinz4wo-QOP-ljvxcc4t + 1 + OutParameter + + + fr.insee + joinz4wo + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + ljvx7dtp + 1 + + SDL18 + + + 8 - Aucune de ces situations + + + fr.insee + joinz4wo-QOP-ljvxobb5 + 1 + OutParameter + + + fr.insee + joinz4wo + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kqr1gig2 + 1 + + SDL2 + + + SDL2 label + + + fr.insee + kqr0kx1e-QOP-kqr0rhwq + 1 + OutParameter + + + fr.insee + kqr0kx1e + 1 + QuestionItem + + + + + fr.insee + kqr0x5ml + 1 + CodeList + + + + + + fr.insee + kpb8rrpp + 1 + + SDL4 + + + SDL4 label + + + fr.insee + kpb8b0vw-QOP-kpb8gc24 + 1 + OutParameter + + + fr.insee + kpb8b0vw + 1 + QuestionItem + + + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + fr.insee + kpb8odq8 + 1 + + SDN1 + + + SDN1 label + + + fr.insee + joio5w41-QOP-kpb93tlo + 1 + OutParameter + + + fr.insee + joio5w41 + 1 + QuestionItem + + + + + fr.insee + kpb8y2tb + 1 + CodeList + + + + + + fr.insee + kzfuty83 + 1 + + SDT1 + + + SDT1 label + + + fr.insee + joioebt6-QOP-joiot0f2 + 1 + OutParameter + + + fr.insee + joioebt6 + 1 + QuestionItem + + + + + fr.insee + joiodz52 + 1 + CodeList + + + + + + fr.insee + kw10ohak + 1 + + SDL_SIT1 + + + SDL_SIT1 label + + + fr.insee + kudultmi-QOP-kw112u99 + 1 + OutParameter + + + fr.insee + kudultmi + 1 + QuestionItem + + + + + fr.insee + kw10q170 + 1 + CodeList + + + + + + fr.insee + lgp3idvc + 1 + + SDTAD + + + SDTAD label + + + fr.insee + joo0yx5k-QOP-lerabv6d + 1 + OutParameter + + + fr.insee + joo0yx5k + 1 + QuestionItem + + + + + + + fr.insee + kpbcfjwd + 1 + + SDT2 + + + SDT2 label + + + fr.insee + joo1m3x2-QOP-kpbc6p3x + 1 + OutParameter + + + fr.insee + joo1m3x2 + 1 + QuestionItem + + + + + fr.insee + joiodz52 + 1 + CodeList + + + + + + fr.insee + kw10kba9 + 1 + + SDL_SIT2 + + + SDL_SIT2 label + + + fr.insee + kudvobyc-QOP-kudvddn0 + 1 + OutParameter + + + fr.insee + kudvobyc + 1 + QuestionItem + + + + + fr.insee + kw10q170 + 1 + CodeList + + + + + + fr.insee + lgp3kba4 + 1 + + SDTAD_SIT2 + + + SDTAD_SIT2 label + + + fr.insee + kudvxpft-QOP-lerb71l0 + 1 + OutParameter + + + fr.insee + kudvxpft + 1 + QuestionItem + + + + + + + fr.insee + kuguebox + 1 + + SDT2_SIT2 + + + SDT2_SIT2 label + + + fr.insee + kudwrcyp-QOP-kudwbquk + 1 + OutParameter + + + fr.insee + kudwrcyp + 1 + QuestionItem + + + + + fr.insee + joiodz52 + 1 + CodeList + + + + + + fr.insee + kx6danaj + 1 + + VMODM1 + + + 1 - Arrivée d'un ou plusieurs enfants + + + fr.insee + joo1h434-QOP-kx6fakgl + 1 + OutParameter + + + fr.insee + joo1h434 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kx6d9hz0 + 1 + + VMODM2 + + + 2 - Survenue d'un ou plusieurs décès + + + fr.insee + joo1h434-QOP-kx6f2koy + 1 + OutParameter + + + fr.insee + joo1h434 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kx6dmkot + 1 + + VMODM3 + + + 3 - Départ d'un ou plusieurs enfants + + + fr.insee + joo1h434-QOP-kx6f0lvo + 1 + OutParameter + + + fr.insee + joo1h434 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kx6ds7l5 + 1 + + VMODM4 + + + 4 - Arrivée d'une ou plusieurs personnes du fait d'une mise en couple + + + fr.insee + joo1h434-QOP-kx6eypbj + 1 + OutParameter + + + fr.insee + joo1h434 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kx6dbabe + 1 + + VMODM5 + + + 5 - Départ d'une ou plusieurs personnes du fait d'une séparation + + + fr.insee + joo1h434-QOP-kx6ey11w + 1 + OutParameter + + + fr.insee + joo1h434 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kx6dpiga + 1 + + VMODM6 + + + 6 - Autre évolution de la composition du ménage + + + fr.insee + joo1h434-QOP-kx6f2xy1 + 1 + OutParameter + + + fr.insee + joo1h434 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kx6dl3wb + 1 + + VMODM7 + + + 7 - Aucune modification + + + fr.insee + joo1h434-QOP-kx6fe1ev + 1 + OutParameter + + + fr.insee + joo1h434 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lex4d3r3 + 1 + + VMODP11 + + + 3 - Entrée en activité ou reprise d’activité + + + fr.insee + joo22fbd-QOP-lex5m47r + 1 + OutParameter + + + fr.insee + joo22fbd + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lex4isof + 1 + + VMODP12 + + + 1 - Perte de son emploi + + + fr.insee + joo22fbd-QOP-lex5fzlx + 1 + OutParameter + + + fr.insee + joo22fbd + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lex4lx0t + 1 + + VMODP13 + + + 2 - Passage à la retraite, préretraite ou décision d’arrêter de travailler + + + fr.insee + joo22fbd-QOP-lex5ok5v + 1 + OutParameter + + + fr.insee + joo22fbd + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lex48qey + 1 + + VMODP14 + + + 4 - Aucune modification de ce type + + + fr.insee + joo22fbd-QOP-lex5grsp + 1 + OutParameter + + + fr.insee + joo22fbd + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + koe0hkq6 + 1 + + VMODP21 + + + 1 - Changement d’entreprise ou d’employeur + + + fr.insee + koe0u2zg-QOP-koe0ya2t + 1 + OutParameter + + + fr.insee + koe0u2zg + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + koe0tx5v + 1 + + VMODP22 + + + 2 - Changement d’établissement au sein de la même entreprise + + + fr.insee + koe0u2zg-QOP-koe12q3u + 1 + OutParameter + + + fr.insee + koe0u2zg + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + koe0kdpd + 1 + + VMODP23 + + + 3 - Aucune modification de ce type + + + fr.insee + koe0u2zg-QOP-koe0vlva + 1 + OutParameter + + + fr.insee + koe0u2zg + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + joph55si + 1 + + VVENDL + + + VVENDL label + + + fr.insee + jopgtrq1-QOP-joph3nia + 1 + OutParameter + + + fr.insee + jopgtrq1 + 1 + QuestionItem + + + + + fr.insee + joph1lnb + 1 + CodeList + + + + + + fr.insee + jopgywd6 + 1 + + VFFH + + + VFFH label + + + fr.insee + jopgvwb0-QOP-joph5rt8 + 1 + OutParameter + + + fr.insee + jopgvwb0 + 1 + QuestionItem + + + + + fr.insee + jopgr6lb + 1 + CodeList + + + + + + fr.insee + kpbdceom + 1 + + VFLA + + + VFLA label + + + fr.insee + jopgzovi-QOP-joph67ad + 1 + OutParameter + + + fr.insee + jopgzovi + 1 + QuestionItem + + + + + fr.insee + jncy00q3 + 1 + CodeList + + + + + + fr.insee + koeaf3w8 + 1 + + VACHAL + + + VACHAL label + + + fr.insee + koeabibm-QOP-koebfojq + 1 + OutParameter + + + fr.insee + koeabibm + 1 + QuestionItem + + + + + fr.insee + joph1lnb + 1 + CodeList + + + + + + fr.insee + jophl1ay + 1 + + VBILLOG + + + VBILLOG label + + + fr.insee + joph9za3-QOP-jophbp5b + 1 + OutParameter + + + fr.insee + joph9za3 + 1 + QuestionItem + + + + + fr.insee + joph7hjs + 1 + CodeList + + + + + + fr.insee + kwzcaigg + 1 + + VLR + + + VLR label + + + fr.insee + jopkquw3-QOP-jopl57w1 + 1 + OutParameter + + + fr.insee + jopkquw3 + 1 + QuestionItem + + + + + fr.insee + jopkxxc6 + 1 + CodeList + + + + + + fr.insee + lgrk1tun + 1 + + COMMUNEPASSEE + + + COMMUNEPASSEE label + + + fr.insee + jopl7p41-QOP-lgrjy0k9 + 1 + OutParameter + + + fr.insee + jopl7p41 + 1 + QuestionItem + + + + + + + fr.insee + lgrjlmvu + 1 + + DEPART + + + DEPART label + + + fr.insee + joplihpv-QOP-lgrjy7me + 1 + OutParameter + + + fr.insee + joplihpv + 1 + QuestionItem + + + + + + + fr.insee + koebzx5n + 1 + + VCRCOM + + + VCRCOM label + + + fr.insee + joplkxrd-QOP-joplrr4n + 1 + OutParameter + + + fr.insee + joplkxrd + 1 + QuestionItem + + + + + + + fr.insee + lgrk2ip4 + 1 + + VPRA + + + VPRA label + + + fr.insee + jopldlvn-QOP-joplnmbl + 1 + OutParameter + + + fr.insee + jopldlvn + 1 + QuestionItem + + + + + + + fr.insee + kpbflvzr + 1 + + VLA1 + + + VLA1 label + + + fr.insee + joplorns-QOP-joplwq56 + 1 + OutParameter + + + fr.insee + joplorns + 1 + QuestionItem + + + + + fr.insee + joplgdcw + 1 + CodeList + + + + + + fr.insee + kv6q8dbw + 1 + + VSO1 + + + VSO1 label + + + fr.insee + joplzrmo-QOP-jopm22x3 + 1 + OutParameter + + + fr.insee + joplzrmo + 1 + QuestionItem + + + + + fr.insee + joplsxki + 1 + CodeList + + + + + + fr.insee + joprwp5e + 1 + + VSY + + + VSY label + + + fr.insee + jopri4xh-QOP-joprppxd + 1 + OutParameter + + + fr.insee + jopri4xh + 1 + QuestionItem + + + + + fr.insee + joprlb0a + 1 + CodeList + + + + + + fr.insee + kw2gkwc0 + 1 + + VLOYER + + + VLOYER label + + + fr.insee + joprsm9u-QOP-joprtstn + 1 + OutParameter + + + fr.insee + joprsm9u + 1 + QuestionItem + + + + + + 0 + 1000000 + + Decimal + + + + + fr.insee + jops6h5f + 1 + + VAID + + + VAID label + + + fr.insee + joprlyql-QOP-jops8mhm + 1 + OutParameter + + + fr.insee + joprlyql + 1 + QuestionItem + + + + + fr.insee + joidufam + 1 + CodeList + + + + + + fr.insee + jops1khv + 1 + + VIN + + + VIN label + + + fr.insee + joprp441-QOP-jops9bgj + 1 + OutParameter + + + fr.insee + joprp441 + 1 + QuestionItem + + + + + 1 + 24 + + Decimal + + + + + fr.insee + kpbnb2ji + 1 + + VTL1 + + + VTL1 label + + + fr.insee + jopruzlo-QOP-jopskga3 + 1 + OutParameter + + + fr.insee + jopruzlo + 1 + QuestionItem + + + + + fr.insee + joprub8u + 1 + CodeList + + + + + + fr.insee + kyd74l5b + 1 + + VSURF + + + VSURF label + + + fr.insee + jopsc29x-QOP-jopspuot + 1 + OutParameter + + + fr.insee + jopsc29x + 1 + QuestionItem + + + + mètres carrés + + 1 + 999 + + Decimal + + + + + fr.insee + kwqppd2c + 1 + + VPI + + + VPI label + + + fr.insee + jops4c0x-QOP-jopsp5li + 1 + OutParameter + + + fr.insee + jops4c0x + 1 + QuestionItem + + + + + 1 + 20 + + Decimal + + + + + fr.insee + kwf30i1n + 1 + + VANCIEN + + + VANCIEN label + + + fr.insee + jopsjl1n-QOP-jopsq146 + 1 + OutParameter + + + fr.insee + jopsjl1n + 1 + QuestionItem + + + + années + + 0 + 100 + + Decimal + + + + + fr.insee + jopspcqh + 1 + + VOP + + + VOP label + + + fr.insee + jopsiigq-QOP-jopsucph + 1 + OutParameter + + + fr.insee + jopsiigq + 1 + QuestionItem + + + + + fr.insee + jopsh9ng + 1 + CodeList + + + + + + fr.insee + kovfq1kr + 1 + + VND + + + VND label + + + fr.insee + jopsrdb3-QOP-jopt3q7k + 1 + OutParameter + + + fr.insee + jopsrdb3 + 1 + QuestionItem + + + + + 0 + 9 + + Decimal + + + + + fr.insee + kovg7s7r + 1 + + VLRD + + + VLRD label + + + fr.insee + joptkb9d-QOP-joptyklz + 1 + OutParameter + + + fr.insee + joptkb9d + 1 + QuestionItem + + + + + fr.insee + joptnagd + 1 + CodeList + + + + + + fr.insee + kovgkxii + 1 + + VLAB1 + + + VLAB1 label + + + fr.insee + jopu7wfr-QOP-jopueeyk + 1 + OutParameter + + + fr.insee + jopu7wfr + 1 + QuestionItem + + + + + fr.insee + jopu65h0 + 1 + CodeList + + + + + + fr.insee + kw2gvhjo + 1 + + VDD1 + + + VDD1 label + + + fr.insee + jopua1hn-QOP-jopuivt4 + 1 + OutParameter + + + fr.insee + jopua1hn + 1 + QuestionItem + + + + + fr.insee + joplsxki + 1 + CodeList + + + + + + fr.insee + jopuhwhs + 1 + + VDSY + + + VDSY label + + + fr.insee + jopuofnr-QOP-jopur7zt + 1 + OutParameter + + + fr.insee + jopuofnr + 1 + QuestionItem + + + + + fr.insee + jopur3k1 + 1 + CodeList + + + + + + fr.insee + kx35g3oc + 1 + + VTLD1 + + + VTLD1 label + + + fr.insee + jopuhzbr-QOP-jopuwk7u + 1 + OutParameter + + + fr.insee + jopuhzbr + 1 + QuestionItem + + + + + fr.insee + joprub8u + 1 + CodeList + + + + + + fr.insee + kwkeb00s + 1 + + VSURFD + + + VSURFD label + + + fr.insee + jopukm75-QOP-jopurvqk + 1 + OutParameter + + + fr.insee + jopukm75 + 1 + QuestionItem + + + + mètres carrés + + 1 + 997 + + Decimal + + + + + fr.insee + kovhaucj + 1 + + VPID + + + VPID label + + + fr.insee + joputbjc-QOP-joput4wx + 1 + OutParameter + + + fr.insee + joputbjc + 1 + QuestionItem + + + + + 1 + 20 + + Decimal + + + + + fr.insee + l3isg7nm + 1 + + VRAIS1 + + + VRAIS1 label + + + fr.insee + jopvzl28-QOP-l3iyeb2s + 1 + OutParameter + + + fr.insee + jopvzl28 + 1 + QuestionItem + + + + + fr.insee + kovj0vbo + 1 + CodeList + + + + + + fr.insee + lgqrcqfr + 1 + + VRAIS21 + + + 1 - Oui, mise en couple ou mariage + + + fr.insee + kovj0a8h-QOP-lgqs0z70 + 1 + OutParameter + + + fr.insee + kovj0a8h + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lgqrccma + 1 + + VRAIS22 + + + 2 - Oui, naissance + + + fr.insee + kovj0a8h-QOP-lgqs316l + 1 + OutParameter + + + fr.insee + kovj0a8h + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lgqrd9wl + 1 + + VRAIS23 + + + 3 - Oui, séparation, divorce, veuvage + + + fr.insee + kovj0a8h-QOP-lgqscpq0 + 1 + OutParameter + + + fr.insee + kovj0a8h + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lgqre9xa + 1 + + VRAIS24 + + + 4 - Oui, départ de chez vos parents + + + fr.insee + kovj0a8h-QOP-lgqs6idu + 1 + OutParameter + + + fr.insee + kovj0a8h + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lgqrl4yl + 1 + + VRAIS25 + + + 5 - Oui, départ des enfants + + + fr.insee + kovj0a8h-QOP-lgqrxc96 + 1 + OutParameter + + + fr.insee + kovj0a8h + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lgqrrxaf + 1 + + VRAIS26 + + + 6 - Oui, en raison d'un problème de santé, d'un handicap ou d'une perte d'autonomie au sein du ménage + + + fr.insee + kovj0a8h-QOP-lgqs60bf + 1 + OutParameter + + + fr.insee + kovj0a8h + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lgqrgiwu + 1 + + VRAIS27 + + + 7 - Non, aucune de ces situations + + + fr.insee + kovj0a8h-QOP-lgqs27ee + 1 + OutParameter + + + fr.insee + kovj0a8h + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + koviwqxd + 1 + + VRAIS31 + + + 1 - Oui, pour avoir un logement de meilleure qualité + + + fr.insee + kovirkvq-QOP-kovj6smk + 1 + OutParameter + + + fr.insee + kovirkvq + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kovj5fdc + 1 + + VRAIS32 + + + 2 - Oui, pour avoir un logement plus grand ou plus petit + + + fr.insee + kovirkvq-QOP-kovj16ho + 1 + OutParameter + + + fr.insee + kovirkvq + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kovj7be1 + 1 + + VRAIS33 + + + 3 - Oui, pour avoir un logement plus adapté à la perte d'autonomie ou au handicap + + + fr.insee + kovirkvq-QOP-koviym9y + 1 + OutParameter + + + fr.insee + kovirkvq + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kovj8j8m + 1 + + VRAIS34 + + + 4 - Oui, pour changer d'environnement + + + fr.insee + kovirkvq-QOP-kovjetbt + 1 + OutParameter + + + fr.insee + kovirkvq + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kovj6qby + 1 + + VRAIS35 + + + 5 - Oui, pour avoir un loyer plus bas ou un logement moins cher à entretenir + + + fr.insee + kovirkvq-QOP-kovj1rc6 + 1 + OutParameter + + + fr.insee + kovirkvq + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kovjbr8b + 1 + + VRAIS36 + + + 6 - Non, aucune de ces situations + + + fr.insee + kovirkvq-QOP-kovj8oex + 1 + OutParameter + + + fr.insee + kovirkvq + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kovjbzl4 + 1 + + VRAIS41 + + + 1 - Oui, de votre lieu de travail ou du lieu de travail d'une personne du ménage + + + fr.insee + kovj5q33-QOP-kovj5e5b + 1 + OutParameter + + + fr.insee + kovj5q33 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kovjdxc0 + 1 + + VRAIS42 + + + 2 - Oui, de l'école des enfants + + + fr.insee + kovj5q33-QOP-kovj1u7h + 1 + OutParameter + + + fr.insee + kovj5q33 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kovj2w62 + 1 + + VRAIS43 + + + 3 - Oui, des commerces, des centres de santé, de la gare, ... + + + fr.insee + kovj5q33-QOP-kovj9p1r + 1 + OutParameter + + + fr.insee + kovj5q33 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kovj476f + 1 + + VRAIS44 + + + 4 - Oui, de la famille, des amis ou de la région d'origine + + + fr.insee + kovj5q33-QOP-kovj8tl5 + 1 + OutParameter + + + fr.insee + kovj5q33 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kovj0swx + 1 + + VRAIS45 + + + 5 - Non, aucune de ces situations + + + fr.insee + kovj5q33-QOP-kovj34ma + 1 + OutParameter + + + fr.insee + kovj5q33 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lgnvgzaa + 1 + + VRAIS5 + + + VRAIS5 label + + + fr.insee + lgmgi33v-QOP-lgmg7py5 + 1 + OutParameter + + + fr.insee + lgmgi33v + 1 + QuestionItem + + + + + fr.insee + lgmga7g1 + 1 + CodeList + + + + + + fr.insee + kp5b57zt + 1 + + TELFIXE + + + TELFIXE label + + + fr.insee + kp5apvf3-QOP-kp5ay97j + 1 + OutParameter + + + fr.insee + kp5apvf3 + 1 + QuestionItem + + + + + fr.insee + kp5afd7f + 1 + CodeList + + + + + + fr.insee + kp5bkum2 + 1 + + TELMOB + + + TELMOB label + + + fr.insee + kp5au0iu-QOP-kp5bnv1m + 1 + OutParameter + + + fr.insee + kp5au0iu + 1 + QuestionItem + + + + + fr.insee + kp5b81ae + 1 + CodeList + + + + + + fr.insee + kp5bf8kw + 1 + + UWEB + + + UWEB label + + + fr.insee + kp5bjbzg-QOP-kp5bdswc + 1 + OutParameter + + + fr.insee + kp5bjbzg + 1 + QuestionItem + + + + + fr.insee + kp5bdcd2 + 1 + CodeList + + + + + + fr.insee + kbamo67f + 1 + + CHGNC + + + Destinataire du courrier + + + fr.insee + kbamkrlv-QOP-kbamirtb + 1 + OutParameter + + + fr.insee + kbamkrlv + 1 + QuestionItem + + + + + fr.insee + k1qjtfk1 + 1 + CodeList + + + + + + fr.insee + kuh4iw0i + 1 + + CIVCOLL + + + CIVCOLL label + + + fr.insee + kbaxq9l0-QOP-knefys19 + 1 + OutParameter + + + fr.insee + kbaxq9l0 + 1 + QuestionItem + + + + + fr.insee + kneexxy3 + 1 + CodeList + + + + + + fr.insee + kr0g0725 + 1 + + PRENOMCOLL + + + Prénom destinataire + + + fr.insee + kr0fw3n6-QOP-kr0fwd91 + 1 + OutParameter + + + fr.insee + kr0fw3n6 + 1 + QuestionItem + + + + + + + fr.insee + kr0fw68t + 1 + + NOMCOLL + + + Nom destinataire + + + fr.insee + kr0fn06f-QOP-kr0fwk40 + 1 + OutParameter + + + fr.insee + kr0fn06f + 1 + QuestionItem + + + + + + + fr.insee + kwjjwc87 + 1 + + CHGNC2 + + + CHGNC2 label + + + fr.insee + kwjivaa1-QOP-kwjixod8 + 1 + OutParameter + + + fr.insee + kwjivaa1 + 1 + QuestionItem + + + + + fr.insee + ko8uzwua + 1 + CodeList + + + + + + fr.insee + kuh49jbb + 1 + + CIVCOLL2 + + + CIVCOLL2 label + + + fr.insee + kr0fr82y-QOP-kr0fen5r + 1 + OutParameter + + + fr.insee + kr0fr82y + 1 + QuestionItem + + + + + fr.insee + kneexxy3 + 1 + CodeList + + + + + + fr.insee + kr0fk106 + 1 + + PRENOMCOLL2 + + + PRENOMCOLL2 label + + + fr.insee + kbbzjgn8-QOP-kbbzo5z9 + 1 + OutParameter + + + fr.insee + kbbzjgn8 + 1 + QuestionItem + + + + + + + fr.insee + kr0fuxdc + 1 + + NOMCOLL2 + + + NOMCOLL2 label + + + fr.insee + kbbzhtx3-QOP-kbbzny35 + 1 + OutParameter + + + fr.insee + kbbzhtx3 + 1 + QuestionItem + + + + + + + fr.insee + kqwjplxa + 1 + + NOTELCOLL + + + NOTELCOLL label + + + fr.insee + kbay0xfi-QOP-kbay0dcb + 1 + OutParameter + + + fr.insee + kbay0xfi + 1 + QuestionItem + + + + + + + fr.insee + kmnolkxb-vg + 1 + + + fr.insee + kmnolkxb + 1 + Loop + + + fr.insee + kmooeas1 + 1 + Loop + + + fr.insee + kmw4iq4w + 1 + Loop + + + fr.insee + kmx8gebp + 1 + Loop + + + fr.insee + kmx9wphw + 1 + Loop + + + fr.insee + kl809dku + 1 + Loop + + + fr.insee + koka314y + 1 + Loop + + + fr.insee + koka0f5v + 1 + Loop + + + fr.insee + kkcc8cqi + 1 + Loop + + + Loop + + BOUCLE_PRENOMS + + + fr.insee + kmook912 + 1 + Variable + + + fr.insee + kmoofc72 + 1 + Variable + + + fr.insee + kmw4vrul + 1 + Variable + + + fr.insee + kmw5a7qq + 1 + Variable + + + fr.insee + kmw4w899 + 1 + Variable + + + fr.insee + kmw527m3 + 1 + Variable + + + fr.insee + kmw5hke3 + 1 + Variable + + + fr.insee + kmx8i16l + 1 + Variable + + + fr.insee + kmx86dk5 + 1 + Variable + + + fr.insee + kf5dz367 + 1 + Variable + + + fr.insee + ko9w77fo + 1 + Variable + + + fr.insee + kp58o9de + 1 + Variable + + + fr.insee + kp5a9j4t + 1 + Variable + + + fr.insee + kp5n3jf8 + 1 + Variable + + + fr.insee + kp5scxxo + 1 + Variable + + + fr.insee + kp5skfkj + 1 + Variable + + + fr.insee + kp5y6ung + 1 + Variable + + + fr.insee + kpbaad5q + 1 + Variable + + + fr.insee + kq7uo7yd + 1 + Variable + + + fr.insee + kq9z7frj + 1 + Variable + + + fr.insee + kqgra7ib + 1 + Variable + + + fr.insee + kqgr5vey + 1 + Variable + + + fr.insee + kqi7gwzb + 1 + Variable + + + fr.insee + kqqit5hr + 1 + Variable + + + fr.insee + krd6p7hy + 1 + Variable + + + fr.insee + krd6rkdl + 1 + Variable + + + fr.insee + ksew6khf + 1 + Variable + + + fr.insee + ksyg41dk + 1 + Variable + + + fr.insee + kudv8i2p + 1 + Variable + + + fr.insee + kue3s3bo + 1 + Variable + + + fr.insee + kvqulqx8 + 1 + Variable + + + fr.insee + kvqvwwch + 1 + Variable + + + fr.insee + kwnvdyzo + 1 + Variable + + + fr.insee + kwnviscn + 1 + Variable + + + fr.insee + kwpbfyg6 + 1 + Variable + + + fr.insee + l3yldwrr + 1 + Variable + + + fr.insee + l7j3cepd + 1 + Variable + + + fr.insee + lfwlwjes + 1 + Variable + + + fr.insee + lg0s2yxc + 1 + Variable + + + fr.insee + kq96og1u + 1 + Variable + + + fr.insee + ks4f5ex4 + 1 + Variable + + + fr.insee + kwf0tev6 + 1 + Variable + + + fr.insee + kqi4mcwj + 1 + Variable + + + fr.insee + kmoopvvz + 1 + Variable + + + fr.insee + lgrk002o + 1 + Variable + + + fr.insee + lgrjly7i + 1 + Variable + + + fr.insee + kmosbfeg + 1 + Variable + + + fr.insee + kmoryx4q + 1 + Variable + + + fr.insee + kmos0mpz + 1 + Variable + + + fr.insee + kmosao80 + 1 + Variable + + + fr.insee + lgrjwuys + 1 + Variable + + + fr.insee + lerah1nk + 1 + Variable + + + fr.insee + kod281bk + 1 + Variable + + + fr.insee + kqi0kw9s + 1 + Variable + + + fr.insee + kqi0xs8k + 1 + Variable + + + fr.insee + kqi0ncqs + 1 + Variable + + + fr.insee + kqi0zud6 + 1 + Variable + + + fr.insee + kqi0j9jx + 1 + Variable + + + fr.insee + kqi0ysi5 + 1 + Variable + + + fr.insee + kn8zw3tw + 1 + Variable + + + fr.insee + kmx992cg + 1 + Variable + + + fr.insee + kx4xtdg6 + 1 + Variable + + + fr.insee + kx4y82og + 1 + Variable + + + fr.insee + kmx9sdps + 1 + Variable + + + fr.insee + kna1wd13 + 1 + Variable + + + fr.insee + kqi5s6xp + 1 + Variable + + + fr.insee + kmx9o0jb + 1 + Variable + + + fr.insee + kmxflats + 1 + Variable + + + fr.insee + kmxftept + 1 + Variable + + + fr.insee + kqi82iu1 + 1 + Variable + + + fr.insee + kqi8s2pw + 1 + Variable + + + fr.insee + kqi8cva7 + 1 + Variable + + + fr.insee + kvjb5etp + 1 + Variable + + + fr.insee + kwkcn7zn + 1 + Variable + + + fr.insee + ko9tk25n + 1 + Variable + + + fr.insee + ko9t8lr0 + 1 + Variable + + + fr.insee + ko9tmcu8 + 1 + Variable + + + fr.insee + knoq3j67 + 1 + Variable + + + fr.insee + kp5x078b + 1 + Variable + + + fr.insee + kppmk0mg + 1 + Variable + + + fr.insee + joh9hbxn + 1 + Variable + + + fr.insee + kcncj70c + 1 + Variable + + + fr.insee + kwqkp3p2 + 1 + Variable + + + fr.insee + kwqkm2qv + 1 + Variable + + + fr.insee + kwqkmpb9 + 1 + Variable + + + fr.insee + kwqkbr0b + 1 + Variable + + + fr.insee + kwqkay07 + 1 + Variable + + + fr.insee + kwqksrzu + 1 + Variable + + + fr.insee + kp5vtv99 + 1 + Variable + + + fr.insee + knpntilb + 1 + Variable + + + fr.insee + joirtq9l + 1 + Variable + + + fr.insee + jois2zfa + 1 + Variable + + + fr.insee + joit0351 + 1 + Variable + + + fr.insee + joisc9ua + 1 + Variable + + + fr.insee + l3d7qp26 + 1 + Variable + + + fr.insee + l3d7wr74 + 1 + Variable + + + fr.insee + l3d7id7m + 1 + Variable + + + fr.insee + l3d7qlgr + 1 + Variable + + + fr.insee + l3d7yqxt + 1 + Variable + + + fr.insee + l3d7hb7k + 1 + Variable + + + fr.insee + l3d7jgv0 + 1 + Variable + + + fr.insee + kpppx8tb + 1 + Variable + + + fr.insee + kcnjw6pt + 1 + Variable + + + fr.insee + kqv44ftz + 1 + Variable + + + fr.insee + kqv468d5 + 1 + Variable + + + fr.insee + ljvx2z41 + 1 + Variable + + + fr.insee + ljvxagy6 + 1 + Variable + + + fr.insee + ljvx7dgb + 1 + Variable + + + fr.insee + ljvx2686 + 1 + Variable + + + fr.insee + ljvx4oqr + 1 + Variable + + + fr.insee + ljvwqn5l + 1 + Variable + + + fr.insee + ljvwqe7r + 1 + Variable + + + fr.insee + ljvx7dtp + 1 + Variable + + + fr.insee + kqr1gig2 + 1 + Variable + + + fr.insee + kpb8rrpp + 1 + Variable + + + fr.insee + kpb8odq8 + 1 + Variable + + + fr.insee + kzfuty83 + 1 + Variable + + + fr.insee + kw10ohak + 1 + Variable + + + fr.insee + lgp3idvc + 1 + Variable + + + fr.insee + kpbcfjwd + 1 + Variable + + + fr.insee + kw10kba9 + 1 + Variable + + + fr.insee + lgp3kba4 + 1 + Variable + + + fr.insee + kuguebox + 1 + Variable + + + + fr.insee + INSEE-Instrument-llxh9g6g-vg + 1 + + + fr.insee + Instrument-llxh9g6g + 1 + Instrument + + + Questionnaire + + m1 + + + fr.insee + kcoks7di + 1 + Variable + + + fr.insee + kcolhi30 + 1 + Variable + + + fr.insee + kcom3tr9 + 1 + Variable + + + fr.insee + kconppt9 + 1 + Variable + + + fr.insee + koegmz7o + 1 + Variable + + + fr.insee + kbjjncl4 + 1 + Variable + + + fr.insee + kbkesufu + 1 + Variable + + + fr.insee + kbkispr8 + 1 + Variable + + + fr.insee + kbkitdek + 1 + Variable + + + fr.insee + kbmb2qvv + 1 + Variable + + + fr.insee + kbmb6u1h + 1 + Variable + + + fr.insee + kcotuys2 + 1 + Variable + + + fr.insee + kcp0yph2 + 1 + Variable + + + fr.insee + kd4q6heg + 1 + Variable + + + fr.insee + kd5x12n1 + 1 + Variable + + + fr.insee + kd5wsv3n + 1 + Variable + + + fr.insee + kd5x03yf + 1 + Variable + + + fr.insee + kd5xwi4p + 1 + Variable + + + fr.insee + kd7fq6ld + 1 + Variable + + + fr.insee + kd7h7u8j + 1 + Variable + + + fr.insee + kd8qhmj5 + 1 + Variable + + + fr.insee + kd8qo38q + 1 + Variable + + + fr.insee + kd8yarle + 1 + Variable + + + fr.insee + kd91m689 + 1 + Variable + + + fr.insee + kd9dm2z8 + 1 + Variable + + + fr.insee + klutbpfw + 1 + Variable + + + fr.insee + klw3bb9m + 1 + Variable + + + fr.insee + kmdb0l68 + 1 + Variable + + + fr.insee + kmdbjrqx + 1 + Variable + + + fr.insee + kmdc1r1x + 1 + Variable + + + fr.insee + kmddimy7 + 1 + Variable + + + fr.insee + kmdi456r + 1 + Variable + + + fr.insee + kmdiz1lc + 1 + Variable + + + fr.insee + kmdjrrtc + 1 + Variable + + + fr.insee + knomuvz7 + 1 + Variable + + + fr.insee + ko9vg9v8 + 1 + Variable + + + fr.insee + kocm65ii + 1 + Variable + + + fr.insee + kowl65lm + 1 + Variable + + + fr.insee + kp4cwk1f + 1 + Variable + + + fr.insee + koead7in + 1 + Variable + + + fr.insee + koea9dru + 1 + Variable + + + fr.insee + koeauvkr + 1 + Variable + + + fr.insee + koeb5lcn + 1 + Variable + + + fr.insee + kpauiid9 + 1 + Variable + + + fr.insee + kpcqbqrk + 1 + Variable + + + fr.insee + kpo86epq + 1 + Variable + + + fr.insee + kpo88v55 + 1 + Variable + + + fr.insee + kpo8i6mz + 1 + Variable + + + fr.insee + kpolrd46 + 1 + Variable + + + fr.insee + kq98eqln + 1 + Variable + + + fr.insee + kq98c6z3 + 1 + Variable + + + fr.insee + kq9a8xpe + 1 + Variable + + + fr.insee + kq9m5zgb + 1 + Variable + + + fr.insee + kq9lw5x7 + 1 + Variable + + + fr.insee + kq9wr9le + 1 + Variable + + + fr.insee + kq9x0bof + 1 + Variable + + + fr.insee + kq9z3mja + 1 + Variable + + + fr.insee + kq9zfu8d + 1 + Variable + + + fr.insee + kr0o550i + 1 + Variable + + + fr.insee + krdj37bc + 1 + Variable + + + fr.insee + krnngsmd + 1 + Variable + + + fr.insee + krux4bjr + 1 + Variable + + + fr.insee + kruxbmdg + 1 + Variable + + + fr.insee + kruxdj1k + 1 + Variable + + + fr.insee + kryp58r5 + 1 + Variable + + + fr.insee + kue5ccwr + 1 + Variable + + + fr.insee + kuh4aklr + 1 + Variable + + + fr.insee + kvqvxps1 + 1 + Variable + + + fr.insee + kvqwkeg7 + 1 + Variable + + + fr.insee + kvqxk7tg + 1 + Variable + + + fr.insee + kvqxfkc8 + 1 + Variable + + + fr.insee + kw0tn1tp + 1 + Variable + + + fr.insee + kw3s7rxu + 1 + Variable + + + fr.insee + kw3shdld + 1 + Variable + + + fr.insee + kwnvruc5 + 1 + Variable + + + fr.insee + kwnw94o4 + 1 + Variable + + + fr.insee + kwnwikvh + 1 + Variable + + + fr.insee + kwnxlh9z + 1 + Variable + + + fr.insee + kwpbocnz + 1 + Variable + + + fr.insee + kwpbdw81 + 1 + Variable + + + fr.insee + kybu3ze7 + 1 + Variable + + + fr.insee + l3ykn00w + 1 + Variable + + + fr.insee + l3yln6g1 + 1 + Variable + + + fr.insee + l7j3nlde + 1 + Variable + + + fr.insee + lftfquwn + 1 + Variable + + + fr.insee + kr0yx2co + 1 + Variable + + + fr.insee + kr0yud7y + 1 + Variable + + + fr.insee + kr0z63cm + 1 + Variable + + + fr.insee + kr0ytbep + 1 + Variable + + + fr.insee + kr0ysp9q + 1 + Variable + + + fr.insee + kr0z91yq + 1 + Variable + + + fr.insee + kr0ytkz0 + 1 + Variable + + + fr.insee + kr0ypa5a + 1 + Variable + + + fr.insee + kr1twdtu + 1 + Variable + + + fr.insee + kr1u63qm + 1 + Variable + + + fr.insee + kr1tph4j + 1 + Variable + + + fr.insee + krm7ey4p + 1 + Variable + + + fr.insee + kqgn61x8 + 1 + Variable + + + fr.insee + kqgn79pg + 1 + Variable + + + fr.insee + kqgolu9w + 1 + Variable + + + fr.insee + kqgn9je2 + 1 + Variable + + + fr.insee + kqgn4sa3 + 1 + Variable + + + fr.insee + kr0ppql7 + 1 + Variable + + + fr.insee + kr0p6ln7 + 1 + Variable + + + fr.insee + kr0pg9pm + 1 + Variable + + + fr.insee + kr0pbcxz + 1 + Variable + + + fr.insee + kr0po7ze + 1 + Variable + + + fr.insee + kr0pk1f6 + 1 + Variable + + + fr.insee + kr0pdobs + 1 + Variable + + + fr.insee + km0sy84b + 1 + Variable + + + fr.insee + lgmchql7 + 1 + Variable + + + fr.insee + kmdnmxfj + 1 + Variable + + + fr.insee + l7kayr4b + 1 + Variable + + + fr.insee + kp4bi87b + 1 + Variable + + + fr.insee + kp4bp50q + 1 + Variable + + + fr.insee + kbgifaaz + 1 + Variable + + + fr.insee + kbgijjye + 1 + Variable + + + fr.insee + kbgifbcr + 1 + Variable + + + fr.insee + kbgifxoq + 1 + Variable + + + fr.insee + kbgikmsh + 1 + Variable + + + fr.insee + kbghyaq0 + 1 + Variable + + + fr.insee + lgqots96 + 1 + Variable + + + fr.insee + klut3nax + 1 + Variable + + + fr.insee + klutbmso + 1 + Variable + + + fr.insee + l7j27kvr + 1 + Variable + + + fr.insee + l95eveg6 + 1 + Variable + + + fr.insee + jn0e3lhq + 1 + Variable + + + fr.insee + lgp3bfj8 + 1 + Variable + + + fr.insee + kp6iwknx + 1 + Variable + + + fr.insee + kf71mrxw + 1 + Variable + + + fr.insee + jojtmmcp + 1 + Variable + + + fr.insee + lgp3974g + 1 + Variable + + + fr.insee + kp6karsm + 1 + Variable + + + fr.insee + kf722urp + 1 + Variable + + + fr.insee + jojtd97l + 1 + Variable + + + fr.insee + lgp3qwcx + 1 + Variable + + + fr.insee + kf71lvot + 1 + Variable + + + fr.insee + l3ykbe8f + 1 + Variable + + + fr.insee + km24than + 1 + Variable + + + fr.insee + jojupxj3 + 1 + Variable + + + fr.insee + l3ioimd4 + 1 + Variable + + + fr.insee + l3ioi4z8 + 1 + Variable + + + fr.insee + l3io8xk7 + 1 + Variable + + + fr.insee + l3io3i1z + 1 + Variable + + + fr.insee + l3iohmbv + 1 + Variable + + + fr.insee + jojuqqg0 + 1 + Variable + + + fr.insee + jojuunvc + 1 + Variable + + + fr.insee + kwkd92gt + 1 + Variable + + + fr.insee + jojusauf + 1 + Variable + + + fr.insee + kkqp2j1d + 1 + Variable + + + fr.insee + kmd71wle + 1 + Variable + + + fr.insee + kmd80s25 + 1 + Variable + + + fr.insee + kmd84vg3 + 1 + Variable + + + fr.insee + kmd7sxny + 1 + Variable + + + fr.insee + klv4iu5l + 1 + Variable + + + fr.insee + klv4t7se + 1 + Variable + + + fr.insee + kycvsbre + 1 + Variable + + + fr.insee + kycvrlft + 1 + Variable + + + fr.insee + kycvr8qf + 1 + Variable + + + fr.insee + kycvqn8e + 1 + Variable + + + fr.insee + kwkduxho + 1 + Variable + + + fr.insee + jojve9fu + 1 + Variable + + + fr.insee + kv29e4km + 1 + Variable + + + fr.insee + jrupwwi7 + 1 + Variable + + + fr.insee + kycvstc6 + 1 + Variable + + + fr.insee + jrupxrwb + 1 + Variable + + + fr.insee + jrupt0ur + 1 + Variable + + + fr.insee + kycvqfbg + 1 + Variable + + + fr.insee + jrupwd1k + 1 + Variable + + + fr.insee + kycw6iix + 1 + Variable + + + fr.insee + kd8v17b1 + 1 + Variable + + + fr.insee + kycx9mkh + 1 + Variable + + + fr.insee + kycxer12 + 1 + Variable + + + fr.insee + jruqlp4e + 1 + Variable + + + fr.insee + kd8wl7m1 + 1 + Variable + + + fr.insee + l3irm90u + 1 + Variable + + + fr.insee + jrusrp45 + 1 + Variable + + + fr.insee + jrusyukj + 1 + Variable + + + fr.insee + jruspgnz + 1 + Variable + + + fr.insee + jruswkr3 + 1 + Variable + + + fr.insee + jrusz90d + 1 + Variable + + + fr.insee + jrusxk5i + 1 + Variable + + + fr.insee + jrut5rs4 + 1 + Variable + + + fr.insee + jrusvxw1 + 1 + Variable + + + fr.insee + jrutat73 + 1 + Variable + + + fr.insee + kmdllzgd + 1 + Variable + + + fr.insee + koiozi77 + 1 + Variable + + + fr.insee + jrutqxjn + 1 + Variable + + + fr.insee + jruul7hb + 1 + Variable + + + fr.insee + jruu4qwz + 1 + Variable + + + fr.insee + kmdsauvj + 1 + Variable + + + fr.insee + kdabf33q + 1 + Variable + + + fr.insee + lfjeifdt + 1 + Variable + + + fr.insee + lfjgozaz + 1 + Variable + + + fr.insee + lfjeehxy + 1 + Variable + + + fr.insee + jruvg7ju + 1 + Variable + + + fr.insee + lfjenaet + 1 + Variable + + + fr.insee + lfjgt4a1 + 1 + Variable + + + fr.insee + lfjeoa22 + 1 + Variable + + + fr.insee + kmf0ywla + 1 + Variable + + + fr.insee + kmf0znd7 + 1 + Variable + + + fr.insee + kcui3ym0 + 1 + Variable + + + fr.insee + joicxlh4 + 1 + Variable + + + fr.insee + l8bcd93y + 1 + Variable + + + fr.insee + l8bcdwlk + 1 + Variable + + + fr.insee + l8bc5gu4 + 1 + Variable + + + fr.insee + l8bc5mej + 1 + Variable + + + fr.insee + l7j1r0z9 + 1 + Variable + + + fr.insee + l7j1iifa + 1 + Variable + + + fr.insee + l7j1si95 + 1 + Variable + + + fr.insee + l7j1ye16 + 1 + Variable + + + fr.insee + l7j1utvh + 1 + Variable + + + fr.insee + ko3w2bxw + 1 + Variable + + + fr.insee + ko3vokyj + 1 + Variable + + + fr.insee + ko3vwv7a + 1 + Variable + + + fr.insee + ko3w348b + 1 + Variable + + + fr.insee + ko3w0jql + 1 + Variable + + + fr.insee + l7kggzyr + 1 + Variable + + + fr.insee + l7kgfi7w + 1 + Variable + + + fr.insee + l7kg4e0c + 1 + Variable + + + fr.insee + l7kgku7a + 1 + Variable + + + fr.insee + l7kg81bv + 1 + Variable + + + fr.insee + l3yl99ds + 1 + Variable + + + fr.insee + ks4l98bk + 1 + Variable + + + fr.insee + kniwsz0y + 1 + Variable + + + fr.insee + kx6danaj + 1 + Variable + + + fr.insee + kx6d9hz0 + 1 + Variable + + + fr.insee + kx6dmkot + 1 + Variable + + + fr.insee + kx6ds7l5 + 1 + Variable + + + fr.insee + kx6dbabe + 1 + Variable + + + fr.insee + kx6dpiga + 1 + Variable + + + fr.insee + kx6dl3wb + 1 + Variable + + + fr.insee + lex4d3r3 + 1 + Variable + + + fr.insee + lex4isof + 1 + Variable + + + fr.insee + lex4lx0t + 1 + Variable + + + fr.insee + lex48qey + 1 + Variable + + + fr.insee + koe0hkq6 + 1 + Variable + + + fr.insee + koe0tx5v + 1 + Variable + + + fr.insee + koe0kdpd + 1 + Variable + + + fr.insee + joph55si + 1 + Variable + + + fr.insee + jopgywd6 + 1 + Variable + + + fr.insee + kpbdceom + 1 + Variable + + + fr.insee + koeaf3w8 + 1 + Variable + + + fr.insee + jophl1ay + 1 + Variable + + + fr.insee + kwzcaigg + 1 + Variable + + + fr.insee + lgrk1tun + 1 + Variable + + + fr.insee + lgrjlmvu + 1 + Variable + + + fr.insee + koebzx5n + 1 + Variable + + + fr.insee + lgrk2ip4 + 1 + Variable + + + fr.insee + kpbflvzr + 1 + Variable + + + fr.insee + kv6q8dbw + 1 + Variable + + + fr.insee + joprwp5e + 1 + Variable + + + fr.insee + kw2gkwc0 + 1 + Variable + + + fr.insee + jops6h5f + 1 + Variable + + + fr.insee + jops1khv + 1 + Variable + + + fr.insee + kpbnb2ji + 1 + Variable + + + fr.insee + kyd74l5b + 1 + Variable + + + fr.insee + kwqppd2c + 1 + Variable + + + fr.insee + kwf30i1n + 1 + Variable + + + fr.insee + jopspcqh + 1 + Variable + + + fr.insee + kovfq1kr + 1 + Variable + + + fr.insee + kovg7s7r + 1 + Variable + + + fr.insee + kovgkxii + 1 + Variable + + + fr.insee + kw2gvhjo + 1 + Variable + + + fr.insee + jopuhwhs + 1 + Variable + + + fr.insee + kx35g3oc + 1 + Variable + + + fr.insee + kwkeb00s + 1 + Variable + + + fr.insee + kovhaucj + 1 + Variable + + + fr.insee + l3isg7nm + 1 + Variable + + + fr.insee + lgqrcqfr + 1 + Variable + + + fr.insee + lgqrccma + 1 + Variable + + + fr.insee + lgqrd9wl + 1 + Variable + + + fr.insee + lgqre9xa + 1 + Variable + + + fr.insee + lgqrl4yl + 1 + Variable + + + fr.insee + lgqrrxaf + 1 + Variable + + + fr.insee + lgqrgiwu + 1 + Variable + + + fr.insee + koviwqxd + 1 + Variable + + + fr.insee + kovj5fdc + 1 + Variable + + + fr.insee + kovj7be1 + 1 + Variable + + + fr.insee + kovj8j8m + 1 + Variable + + + fr.insee + kovj6qby + 1 + Variable + + + fr.insee + kovjbr8b + 1 + Variable + + + fr.insee + kovjbzl4 + 1 + Variable + + + fr.insee + kovjdxc0 + 1 + Variable + + + fr.insee + kovj2w62 + 1 + Variable + + + fr.insee + kovj476f + 1 + Variable + + + fr.insee + kovj0swx + 1 + Variable + + + fr.insee + lgnvgzaa + 1 + Variable + + + fr.insee + kp5b57zt + 1 + Variable + + + fr.insee + kp5bkum2 + 1 + Variable + + + fr.insee + kp5bf8kw + 1 + Variable + + + fr.insee + kbamo67f + 1 + Variable + + + fr.insee + kuh4iw0i + 1 + Variable + + + fr.insee + kr0g0725 + 1 + Variable + + + fr.insee + kr0fw68t + 1 + Variable + + + fr.insee + kwjjwc87 + 1 + Variable + + + fr.insee + kuh49jbb + 1 + Variable + + + fr.insee + kr0fk106 + 1 + Variable + + + fr.insee + kr0fuxdc + 1 + Variable + + + fr.insee + kqwjplxa + 1 + Variable + + + fr.insee + kmnolkxb-vg + 1 + VariableGroup + + + + + fr.insee + INSEE-SIMPSONS-PIS-1 + 1 + + SIMPSONS + + + Processing instructions of the Simpsons questionnaire + + + fr.insee + kcoks7di-GI + 1 + + fr.insee + kr0yx2co + 1 + Variable + + + fr.insee + kr0yud7y + 1 + Variable + + + fr.insee + kr0z63cm + 1 + Variable + + + fr.insee + kr0ytbep + 1 + Variable + + + fr.insee + kr0ysp9q + 1 + Variable + + + + vtl + + fr.insee + kcoks7di-IP-1 + 1 + + NUMTH + + + + fr.insee + kcoks7di-IP-2 + 1 + + ADR + + + + fr.insee + kcoks7di-IP-3 + 1 + + CADRTH + + + + fr.insee + kcoks7di-IP-4 + 1 + + CODEPOST1 + + + + fr.insee + kcoks7di-IP-5 + 1 + + LIBCOM + + + + fr.insee + kcoks7di-GOP + 1 + + + + fr.insee + NUMTH + 1 + InParameter + + + fr.insee + kcoks7di-IP-1 + 1 + InParameter + + + + + fr.insee + ADR + 1 + InParameter + + + fr.insee + kcoks7di-IP-2 + 1 + InParameter + + + + + fr.insee + CADRTH + 1 + InParameter + + + fr.insee + kcoks7di-IP-3 + 1 + InParameter + + + + + fr.insee + CODEPOST1 + 1 + InParameter + + + fr.insee + kcoks7di-IP-4 + 1 + InParameter + + + + + fr.insee + LIBCOM + 1 + InParameter + + + fr.insee + kcoks7di-IP-5 + 1 + InParameter + + + (if (isnull(kcoks7di-IP-1)) then "" else kcoks7di-IP-1) || " " || (if (isnull(kcoks7di-IP-2)) then "" else kcoks7di-IP-2) || " " || (if (isnull(kcoks7di-IP-3)) then "" else kcoks7di-IP-3) || " " || (if (isnull(kcoks7di-IP-4)) then "" else kcoks7di-IP-4) || " " || (if (isnull(kcoks7di-IP-5)) then "" else kcoks7di-IP-5) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kcolhi30-GI + 1 + + fr.insee + kb9hlpdc + 1 + QuestionItem + + + fr.insee + kbakywwy + 1 + QuestionItem + + + fr.insee + kbal4bzb + 1 + QuestionItem + + + fr.insee + kbalhn4i + 1 + QuestionItem + + + fr.insee + kbal8crw + 1 + QuestionItem + + + fr.insee + kbal9dwk + 1 + QuestionItem + + + fr.insee + kcoks7di + 1 + Variable + + + fr.insee + krm7ey4p + 1 + Variable + + + fr.insee + kqgn61x8 + 1 + Variable + + + fr.insee + kqgn79pg + 1 + Variable + + + fr.insee + kqgolu9w + 1 + Variable + + + fr.insee + kqgn9je2 + 1 + Variable + + + fr.insee + kqgn4sa3 + 1 + Variable + + + + vtl + + fr.insee + kcolhi30-IP-1 + 1 + + ADRESSE + + + + fr.insee + kcolhi30-IP-2 + 1 + + CADR + + + + fr.insee + kcolhi30-IP-3 + 1 + + NUMTH_COLL + + + + fr.insee + kcolhi30-IP-4 + 1 + + ADR_COLL + + + + fr.insee + kcolhi30-IP-5 + 1 + + CADRTH_COLL + + + + fr.insee + kcolhi30-IP-6 + 1 + + CODEPOST1_COLL + + + + fr.insee + kcolhi30-IP-7 + 1 + + LIBCOM_COLL + + + + fr.insee + kcolhi30-GOP + 1 + + + + fr.insee + kcoks7di-GOP + 1 + OutParameter + + + fr.insee + kcolhi30-IP-1 + 1 + InParameter + + + + + fr.insee + kb9hlpdc-QOP-kb9ht73s + 1 + OutParameter + + + fr.insee + kcolhi30-IP-2 + 1 + InParameter + + + + + fr.insee + kbakywwy-QOP-kbal9bh5 + 1 + OutParameter + + + fr.insee + kcolhi30-IP-3 + 1 + InParameter + + + + + fr.insee + kbal4bzb-QOP-kbalgoim + 1 + OutParameter + + + fr.insee + kcolhi30-IP-4 + 1 + InParameter + + + + + fr.insee + kbalhn4i-QOP-kbalr9gi + 1 + OutParameter + + + fr.insee + kcolhi30-IP-5 + 1 + InParameter + + + + + fr.insee + kbal8crw-QOP-kbaldkpe + 1 + OutParameter + + + fr.insee + kcolhi30-IP-6 + 1 + InParameter + + + + + fr.insee + kbal9dwk-QOP-kbalr921 + 1 + OutParameter + + + fr.insee + kcolhi30-IP-7 + 1 + InParameter + + + if (isnull(kcolhi30-IP-2) or kcolhi30-IP-2="1" or kcolhi30-IP-2="3" or kcolhi30-IP-2="4") then kcolhi30-IP-1 else (if (isnull(kcolhi30-IP-3)) then "" else kcolhi30-IP-3) || " " || (if (isnull(kcolhi30-IP-4)) then "" else kcolhi30-IP-4) || " " || (if (isnull(kcolhi30-IP-5)) then "" else kcolhi30-IP-5) || " " || (if (isnull(kcolhi30-IP-6)) then "" else kcolhi30-IP-6) || " " || (if (isnull(kcolhi30-IP-7)) then "" else kcolhi30-IP-7) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kcom3tr9-GI + 1 + + fr.insee + kr0z91yq + 1 + Variable + + + fr.insee + kr0ytkz0 + 1 + Variable + + + fr.insee + kr0ypa5a + 1 + Variable + + + + vtl + + fr.insee + kcom3tr9-IP-1 + 1 + + CIV_D1 + + + + fr.insee + kcom3tr9-IP-2 + 1 + + PREN_D1 + + + + fr.insee + kcom3tr9-IP-3 + 1 + + NOMVOUS_D1 + + + + fr.insee + kcom3tr9-GOP + 1 + + + + fr.insee + CIV_D1 + 1 + InParameter + + + fr.insee + kcom3tr9-IP-1 + 1 + InParameter + + + + + fr.insee + PREN_D1 + 1 + InParameter + + + fr.insee + kcom3tr9-IP-2 + 1 + InParameter + + + + + fr.insee + NOMVOUS_D1 + 1 + InParameter + + + fr.insee + kcom3tr9-IP-3 + 1 + InParameter + + + (if (isnull(kcom3tr9-IP-1)) then "" else kcom3tr9-IP-1 || " ") || ( if (isnull(kcom3tr9-IP-2)) then "" else kcom3tr9-IP-2 || " ") || (if (isnull(kcom3tr9-IP-3)) then "" else kcom3tr9-IP-3) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kconppt9-GI + 1 + + fr.insee + kbamkrlv + 1 + QuestionItem + + + fr.insee + kbaxq9l0 + 1 + QuestionItem + + + fr.insee + kr0fw3n6 + 1 + QuestionItem + + + fr.insee + kr0fn06f + 1 + QuestionItem + + + fr.insee + kr0fr82y + 1 + QuestionItem + + + fr.insee + kbbzjgn8 + 1 + QuestionItem + + + fr.insee + kbbzhtx3 + 1 + QuestionItem + + + fr.insee + kcom3tr9 + 1 + Variable + + + fr.insee + kuh4aklr + 1 + Variable + + + fr.insee + kbamo67f + 1 + Variable + + + fr.insee + kuh4iw0i + 1 + Variable + + + fr.insee + kr0g0725 + 1 + Variable + + + fr.insee + kr0fw68t + 1 + Variable + + + fr.insee + kuh49jbb + 1 + Variable + + + fr.insee + kr0fk106 + 1 + Variable + + + fr.insee + kr0fuxdc + 1 + Variable + + + + vtl + + fr.insee + kconppt9-IP-1 + 1 + + NOMOCC1 + + + + fr.insee + kconppt9-IP-2 + 1 + + NOMOCC2 + + + + fr.insee + kconppt9-IP-3 + 1 + + CHGNC + + + + fr.insee + kconppt9-IP-4 + 1 + + CIVCOLL + + + + fr.insee + kconppt9-IP-5 + 1 + + PRENOMCOLL + + + + fr.insee + kconppt9-IP-6 + 1 + + NOMCOLL + + + + fr.insee + kconppt9-IP-7 + 1 + + CIVCOLL2 + + + + fr.insee + kconppt9-IP-8 + 1 + + PRENOMCOLL2 + + + + fr.insee + kconppt9-IP-9 + 1 + + NOMCOLL2 + + + + fr.insee + kconppt9-GOP + 1 + + + + fr.insee + kcom3tr9-GOP + 1 + OutParameter + + + fr.insee + kconppt9-IP-1 + 1 + InParameter + + + + + fr.insee + kuh4aklr-GOP + 1 + OutParameter + + + fr.insee + kconppt9-IP-2 + 1 + InParameter + + + + + fr.insee + kbamkrlv-QOP-kbamirtb + 1 + OutParameter + + + fr.insee + kconppt9-IP-3 + 1 + InParameter + + + + + fr.insee + kbaxq9l0-QOP-knefys19 + 1 + OutParameter + + + fr.insee + kconppt9-IP-4 + 1 + InParameter + + + + + fr.insee + kr0fw3n6-QOP-kr0fwd91 + 1 + OutParameter + + + fr.insee + kconppt9-IP-5 + 1 + InParameter + + + + + fr.insee + kr0fn06f-QOP-kr0fwk40 + 1 + OutParameter + + + fr.insee + kconppt9-IP-6 + 1 + InParameter + + + + + fr.insee + kr0fr82y-QOP-kr0fen5r + 1 + OutParameter + + + fr.insee + kconppt9-IP-7 + 1 + InParameter + + + + + fr.insee + kbbzjgn8-QOP-kbbzo5z9 + 1 + OutParameter + + + fr.insee + kconppt9-IP-8 + 1 + InParameter + + + + + fr.insee + kbbzhtx3-QOP-kbbzny35 + 1 + OutParameter + + + fr.insee + kconppt9-IP-9 + 1 + InParameter + + + if (kconppt9-IP-3 = "1" or isnull(kconppt9-IP-3)) then kconppt9-IP-1 || ", " || kconppt9-IP-2 else (kconppt9-IP-4 || " " || kconppt9-IP-5 || " " || kconppt9-IP-6 || ( if (not(isnull(kconppt9-IP-9)) and kconppt9-IP-9<>"" ) then "" else ", " || kconppt9-IP-7 || " " || kconppt9-IP-8 || " " || kconppt9-IP-9) ) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kmook912-GI + 1 + + fr.insee + kmoo2fiy + 1 + QuestionItem + + + fr.insee + ks4f5ex4 + 1 + Variable + + + + vtl + + fr.insee + kmook912-IP-1 + 1 + + SEXE + + + + fr.insee + kmook912-GOP + 1 + + + + fr.insee + kmoo2fiy-QOP-kmoon375 + 1 + OutParameter + + + fr.insee + kmook912-IP-1 + 1 + InParameter + + + if (isnull(kmook912-IP-1)) then "" else (if (kmook912-IP-1 = "2") then "e" else "") + + + + fr.insee + kmnolkxb + 1 + Loop + + + + fr.insee + kmoofc72-GI + 1 + + fr.insee + kqgra7ib + 1 + Variable + + + fr.insee + kqgr5vey + 1 + Variable + + + + vtl + + fr.insee + kmoofc72-IP-1 + 1 + + FUTURANNIVERSAIRE + + + + fr.insee + kmoofc72-IP-2 + 1 + + AGEMILLESIME + + + + fr.insee + kmoofc72-GOP + 1 + + + + fr.insee + kqgra7ib-GOP + 1 + OutParameter + + + fr.insee + kmoofc72-IP-1 + 1 + InParameter + + + + + fr.insee + kqgr5vey-GOP + 1 + OutParameter + + + fr.insee + kmoofc72-IP-2 + 1 + InParameter + + + if (kmoofc72-IP-1) then cast((cast(kmoofc72-IP-2,integer) - 1),integer) else cast(kmoofc72-IP-2,integer) + + + + fr.insee + kmnolkxb + 1 + Loop + + + + fr.insee + kmw4vrul-GI + 1 + + fr.insee + kmoo2fiy + 1 + QuestionItem + + + fr.insee + ks4f5ex4 + 1 + Variable + + + + vtl + + fr.insee + kmw4vrul-IP-1 + 1 + + SEXE + + + + fr.insee + kmw4vrul-GOP + 1 + + + + fr.insee + kmoo2fiy-QOP-kmoon375 + 1 + OutParameter + + + fr.insee + kmw4vrul-IP-1 + 1 + InParameter + + + if (isnull(kmw4vrul-IP-1)) then "Votre parent, votre beau-parent" else (if (kmw4vrul-IP-1 = "2") then "Votre mère, votre belle-mère" else (if (kmw4vrul-IP-1 = "1") then "Votre père, votre beau-père" else "Votre parent, votre beau-parent")) + + + + fr.insee + kmnolkxb + 1 + Loop + + + + fr.insee + kmw5a7qq-GI + 1 + + fr.insee + kmoo2fiy + 1 + QuestionItem + + + fr.insee + ks4f5ex4 + 1 + Variable + + + + vtl + + fr.insee + kmw5a7qq-IP-1 + 1 + + SEXE + + + + fr.insee + kmw5a7qq-GOP + 1 + + + + fr.insee + kmoo2fiy-QOP-kmoon375 + 1 + OutParameter + + + fr.insee + kmw5a7qq-IP-1 + 1 + InParameter + + + if (isnull(kmw5a7qq-IP-1)) then "Votre enfant, votre bel-enfant" else (if (kmw5a7qq-IP-1 = "2") then "Votre fille, votre belle-fille" else (if (kmw5a7qq-IP-1 = "1") then "Votre fils, votre beau-fils" else "Votre enfant, votre bel-enfant")) + + + + fr.insee + kmnolkxb + 1 + Loop + + + + fr.insee + kmw4w899-GI + 1 + + fr.insee + kmoo2fiy + 1 + QuestionItem + + + fr.insee + ks4f5ex4 + 1 + Variable + + + + vtl + + fr.insee + kmw4w899-IP-1 + 1 + + SEXE + + + + fr.insee + kmw4w899-GOP + 1 + + + + fr.insee + kmoo2fiy-QOP-kmoon375 + 1 + OutParameter + + + fr.insee + kmw4w899-IP-1 + 1 + InParameter + + + if (isnull(kmw4w899-IP-1)) then "Votre grand-parent, votre beau-grand-parent" else (if (kmw4w899-IP-1 = "2") then "Votre grand-mère, votre belle-grand-mère" else (if (kmw4w899-IP-1 = "1") then "Votre grand-père, votre beau-grand-père" else "Votre grand-parent, votre beau-grand-parent")) + + + + fr.insee + kmnolkxb + 1 + Loop + + + + fr.insee + kmw527m3-GI + 1 + + fr.insee + kmoo2fiy + 1 + QuestionItem + + + fr.insee + ks4f5ex4 + 1 + Variable + + + + vtl + + fr.insee + kmw527m3-IP-1 + 1 + + SEXE + + + + fr.insee + kmw527m3-GOP + 1 + + + + fr.insee + kmoo2fiy-QOP-kmoon375 + 1 + OutParameter + + + fr.insee + kmw527m3-IP-1 + 1 + InParameter + + + if (isnull(kmw527m3-IP-1)) then "Votre petit-enfant, votre beau-petit-enfant" else (if (kmw527m3-IP-1 = "2") then "Votre petite-fille, votre belle-petite-fille" else (if (kmw527m3-IP-1 = "1") then "Votre petit-fils, votre beau-petit-fils" else "Votre petit-enfant, votre beau-petit-enfant")) + + + + fr.insee + kmnolkxb + 1 + Loop + + + + fr.insee + kmw5hke3-GI + 1 + + fr.insee + kmoo2fiy + 1 + QuestionItem + + + fr.insee + ks4f5ex4 + 1 + Variable + + + + vtl + + fr.insee + kmw5hke3-IP-1 + 1 + + SEXE + + + + fr.insee + kmw5hke3-GOP + 1 + + + + fr.insee + kmoo2fiy-QOP-kmoon375 + 1 + OutParameter + + + fr.insee + kmw5hke3-IP-1 + 1 + InParameter + + + if (isnull(kmw5hke3-IP-1)) then "Veuf, conjoint(e) décédé(e)" else (if (kmw5hke3-IP-1 = "2") then "Veuve, conjoint(e) décédé(e)" else "Veuf, conjoint(e) décédé(e)") + + + + fr.insee + kmnolkxb + 1 + Loop + + + + fr.insee + kmx8i16l-GI + 1 + + fr.insee + kmoo2fiy + 1 + QuestionItem + + + fr.insee + ks4f5ex4 + 1 + Variable + + + + vtl + + fr.insee + kmx8i16l-IP-1 + 1 + + SEXE + + + + fr.insee + kmx8i16l-GOP + 1 + + + + fr.insee + kmoo2fiy-QOP-kmoon375 + 1 + OutParameter + + + fr.insee + kmx8i16l-IP-1 + 1 + InParameter + + + if (isnull(kmx8i16l-IP-1)) then "il" else (if (kmx8i16l-IP-1 = "2") then "elle" else "il") + + + + fr.insee + kmnolkxb + 1 + Loop + + + + fr.insee + kmx86dk5-GI + 1 + + fr.insee + kmoo2fiy + 1 + QuestionItem + + + fr.insee + ks4f5ex4 + 1 + Variable + + + + vtl + + fr.insee + kmx86dk5-IP-1 + 1 + + SEXE + + + + fr.insee + kmx86dk5-GOP + 1 + + + + fr.insee + kmoo2fiy-QOP-kmoon375 + 1 + OutParameter + + + fr.insee + kmx86dk5-IP-1 + 1 + InParameter + + + if (isnull(kmx86dk5-IP-1)) then "lui" else (if (kmx86dk5-IP-1 = "2") then "elle" else "lui") + + + + fr.insee + kmnolkxb + 1 + Loop + + + + fr.insee + koegmz7o-GI + 1 + + fr.insee + kbc1b4k2 + 1 + QuestionItem + + + fr.insee + km0sy84b + 1 + Variable + + + + vtl + + fr.insee + koegmz7o-IP-1 + 1 + + NBHAB + + + + fr.insee + koegmz7o-GOP + 1 + + + + fr.insee + kbc1b4k2-QOP-kbc1oors + 1 + OutParameter + + + fr.insee + koegmz7o-IP-1 + 1 + InParameter + + + if (nvl(koegmz7o-IP-1,0)=0) then 1 else cast(koegmz7o-IP-1,integer) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kbjjncl4-GI + 1 + + fr.insee + jojtbo85 + 1 + QuestionItem + + + fr.insee + kp6iwd90 + 1 + QuestionItem + + + fr.insee + jojt16mt + 1 + QuestionItem + + + fr.insee + kbmb6u1h + 1 + Variable + + + fr.insee + kocm65ii + 1 + Variable + + + fr.insee + krux4bjr + 1 + Variable + + + fr.insee + kruxbmdg + 1 + Variable + + + fr.insee + kruxdj1k + 1 + Variable + + + fr.insee + lgp3bfj8 + 1 + Variable + + + fr.insee + kp6iwknx + 1 + Variable + + + fr.insee + kf71mrxw + 1 + Variable + + + + vtl + + fr.insee + kbjjncl4-IP-1 + 1 + + MOISENQ + + + + fr.insee + kbjjncl4-IP-2 + 1 + + ANNEENQmoins4 + + + + fr.insee + kbjjncl4-IP-3 + 1 + + ANNEENQmoins1 + + + + fr.insee + kbjjncl4-IP-4 + 1 + + ANNEENQmoins8 + + + + fr.insee + kbjjncl4-IP-5 + 1 + + ANNEENQmoins12 + + + + fr.insee + kbjjncl4-IP-6 + 1 + + MAA2A + + + + fr.insee + kbjjncl4-IP-7 + 1 + + MAA2AT_Q + + + + fr.insee + kbjjncl4-IP-8 + 1 + + MAA2M + + + + fr.insee + kbjjncl4-GOP + 1 + + + + fr.insee + kbmb6u1h-GOP + 1 + OutParameter + + + fr.insee + kbjjncl4-IP-1 + 1 + InParameter + + + + + fr.insee + kocm65ii-GOP + 1 + OutParameter + + + fr.insee + kbjjncl4-IP-2 + 1 + InParameter + + + + + fr.insee + krux4bjr-GOP + 1 + OutParameter + + + fr.insee + kbjjncl4-IP-3 + 1 + InParameter + + + + + fr.insee + kruxbmdg-GOP + 1 + OutParameter + + + fr.insee + kbjjncl4-IP-4 + 1 + InParameter + + + + + fr.insee + kruxdj1k-GOP + 1 + OutParameter + + + fr.insee + kbjjncl4-IP-5 + 1 + InParameter + + + + + fr.insee + jojtbo85-QOP-lera9at4 + 1 + OutParameter + + + fr.insee + kbjjncl4-IP-6 + 1 + InParameter + + + + + fr.insee + kp6iwd90-QOP-kp6iwdcb + 1 + OutParameter + + + fr.insee + kbjjncl4-IP-7 + 1 + InParameter + + + + + fr.insee + jojt16mt-QOP-kf71i6tz + 1 + OutParameter + + + fr.insee + kbjjncl4-IP-8 + 1 + InParameter + + + (if (not(isnull(kbjjncl4-IP-7))) then kbjjncl4-IP-7 else (if (isnull(kbjjncl4-IP-6)) then "" else (if ( ( cast(kbjjncl4-IP-6,integer) > cast(kbjjncl4-IP-3,integer) ) or ( (cast(kbjjncl4-IP-6,integer) = cast(kbjjncl4-IP-3,integer) ) and (cast(kbjjncl4-IP-8,integer) > cast(kbjjncl4-IP-1,integer)) and not(isnull(kbjjncl4-IP-8)) ) or ( (cast(kbjjncl4-IP-6,integer) = cast(kbjjncl4-IP-3,integer)) and isnull(kbjjncl4-IP-8) and (cast(kbjjncl4-IP-1,integer) <=6) )) then "1" else (if ( ( cast(kbjjncl4-IP-6,integer) > cast(kbjjncl4-IP-2,integer) ) or ( (cast(kbjjncl4-IP-6,integer) = cast(kbjjncl4-IP-2,integer)) and (cast(kbjjncl4-IP-8,integer) > cast(kbjjncl4-IP-1,integer)) and not(isnull(kbjjncl4-IP-8)) ) or ( (cast(kbjjncl4-IP-6,integer) = cast(kbjjncl4-IP-2,integer)) and isnull(kbjjncl4-IP-8) and (cast(kbjjncl4-IP-1,integer)<=6) )) then "2" else (if ( cast(kbjjncl4-IP-6,integer) > cast(kbjjncl4-IP-4,integer) ) then "3" else (if ( cast(kbjjncl4-IP-6,integer) > cast(kbjjncl4-IP-5,integer)) then "4" else (if (not(isnull(kbjjncl4-IP-6))) then "5" else ""))))))) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kbkesufu-GI + 1 + + fr.insee + jojt3qxp + 1 + QuestionItem + + + fr.insee + jojtnq9z + 1 + QuestionItem + + + fr.insee + kp6ja40b + 1 + QuestionItem + + + fr.insee + jor73af6 + 1 + QuestionItem + + + fr.insee + kbjjncl4 + 1 + Variable + + + fr.insee + kbmb6u1h + 1 + Variable + + + fr.insee + kocm65ii + 1 + Variable + + + fr.insee + krux4bjr + 1 + Variable + + + fr.insee + kruxbmdg + 1 + Variable + + + fr.insee + kruxdj1k + 1 + Variable + + + fr.insee + jojtmmcp + 1 + Variable + + + fr.insee + lgp3974g + 1 + Variable + + + fr.insee + kp6karsm + 1 + Variable + + + fr.insee + kf722urp + 1 + Variable + + + + vtl + + fr.insee + kbkesufu-IP-1 + 1 + + MAA2AT + + + + fr.insee + kbkesufu-IP-2 + 1 + + MOISENQ + + + + fr.insee + kbkesufu-IP-3 + 1 + + ANNEENQmoins4 + + + + fr.insee + kbkesufu-IP-4 + 1 + + ANNEENQmoins1 + + + + fr.insee + kbkesufu-IP-5 + 1 + + ANNEENQmoins8 + + + + fr.insee + kbkesufu-IP-6 + 1 + + ANNEENQmoins12 + + + + fr.insee + kbkesufu-IP-7 + 1 + + MARRIVC + + + + fr.insee + kbkesufu-IP-8 + 1 + + MAA2AC + + + + fr.insee + kbkesufu-IP-9 + 1 + + MAA2ATC_Q + + + + fr.insee + kbkesufu-IP-10 + 1 + + MAA2MC + + + + fr.insee + kbkesufu-GOP + 1 + + + + fr.insee + kbjjncl4-GOP + 1 + OutParameter + + + fr.insee + kbkesufu-IP-1 + 1 + InParameter + + + + + fr.insee + kbmb6u1h-GOP + 1 + OutParameter + + + fr.insee + kbkesufu-IP-2 + 1 + InParameter + + + + + fr.insee + kocm65ii-GOP + 1 + OutParameter + + + fr.insee + kbkesufu-IP-3 + 1 + InParameter + + + + + fr.insee + krux4bjr-GOP + 1 + OutParameter + + + fr.insee + kbkesufu-IP-4 + 1 + InParameter + + + + + fr.insee + kruxbmdg-GOP + 1 + OutParameter + + + fr.insee + kbkesufu-IP-5 + 1 + InParameter + + + + + fr.insee + kruxdj1k-GOP + 1 + OutParameter + + + fr.insee + kbkesufu-IP-6 + 1 + InParameter + + + + + fr.insee + jojt3qxp-QOP-jojtagah + 1 + OutParameter + + + fr.insee + kbkesufu-IP-7 + 1 + InParameter + + + + + fr.insee + jojtnq9z-QOP-leraafbf + 1 + OutParameter + + + fr.insee + kbkesufu-IP-8 + 1 + InParameter + + + + + fr.insee + kp6ja40b-QOP-kp6j1a25 + 1 + OutParameter + + + fr.insee + kbkesufu-IP-9 + 1 + InParameter + + + + + fr.insee + jor73af6-QOP-kf71reoh + 1 + OutParameter + + + fr.insee + kbkesufu-IP-10 + 1 + InParameter + + + if ( not(isnull(kbkesufu-IP-7)) and kbkesufu-IP-7= "1") then kbkesufu-IP-1 else (if (not(isnull(kbkesufu-IP-9))) then kbkesufu-IP-9 else (if (isnull(kbkesufu-IP-8)) then "" else (if ( ( cast(kbkesufu-IP-8,integer) > cast(kbkesufu-IP-4,integer)) or ( (cast(kbkesufu-IP-8,integer) = cast(kbkesufu-IP-4,integer)) and (cast(kbkesufu-IP-10,integer) > cast(kbkesufu-IP-2,integer)) and not(isnull(kbkesufu-IP-10)) ) or ( (cast(kbkesufu-IP-8,integer) =cast(kbkesufu-IP-4,integer)) and isnull(kbkesufu-IP-10) and (cast(kbkesufu-IP-2,integer)<=6) )) then "1" else (if ( ( cast(kbkesufu-IP-8,integer) > cast(kbkesufu-IP-3,integer) ) or ( (cast(kbkesufu-IP-8,integer) = cast(kbkesufu-IP-3,integer)) and (cast(kbkesufu-IP-10,integer) > cast(kbkesufu-IP-2,integer)) and not(isnull(kbkesufu-IP-10)) ) or ( (cast(kbkesufu-IP-8,integer) = cast(kbkesufu-IP-3,integer)) and isnull(kbkesufu-IP-10) and (cast(kbkesufu-IP-2,integer)<=6) )) then "2" else (if ( cast(kbkesufu-IP-8,integer) > cast(kbkesufu-IP-5,integer) ) then "3" else (if ( cast(kbkesufu-IP-8,integer) > cast(kbkesufu-IP-6,integer) ) then "4" else (if (not(isnull(kbkesufu-IP-8))) then "5" else ""))))))) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kbkispr8-GI + 1 + + fr.insee + jojtutyy + 1 + QuestionItem + + + fr.insee + jojtizrx + 1 + QuestionItem + + + fr.insee + kbmb6u1h + 1 + Variable + + + fr.insee + kocm65ii + 1 + Variable + + + fr.insee + krux4bjr + 1 + Variable + + + fr.insee + kruxbmdg + 1 + Variable + + + fr.insee + kruxdj1k + 1 + Variable + + + fr.insee + lgp3qwcx + 1 + Variable + + + fr.insee + kf71lvot + 1 + Variable + + + + vtl + + fr.insee + kbkispr8-IP-1 + 1 + + MOISENQ + + + + fr.insee + kbkispr8-IP-2 + 1 + + ANNEENQmoins4 + + + + fr.insee + kbkispr8-IP-3 + 1 + + ANNEENQmoins1 + + + + fr.insee + kbkispr8-IP-4 + 1 + + ANNEENQmoins8 + + + + fr.insee + kbkispr8-IP-5 + 1 + + ANNEENQmoins12 + + + + fr.insee + kbkispr8-IP-6 + 1 + + MAA3A + + + + fr.insee + kbkispr8-IP-7 + 1 + + MAA3M + + + + fr.insee + kbkispr8-GOP + 1 + + + + fr.insee + kbmb6u1h-GOP + 1 + OutParameter + + + fr.insee + kbkispr8-IP-1 + 1 + InParameter + + + + + fr.insee + kocm65ii-GOP + 1 + OutParameter + + + fr.insee + kbkispr8-IP-2 + 1 + InParameter + + + + + fr.insee + krux4bjr-GOP + 1 + OutParameter + + + fr.insee + kbkispr8-IP-3 + 1 + InParameter + + + + + fr.insee + kruxbmdg-GOP + 1 + OutParameter + + + fr.insee + kbkispr8-IP-4 + 1 + InParameter + + + + + fr.insee + kruxdj1k-GOP + 1 + OutParameter + + + fr.insee + kbkispr8-IP-5 + 1 + InParameter + + + + + fr.insee + jojtutyy-QOP-leranvj5 + 1 + OutParameter + + + fr.insee + kbkispr8-IP-6 + 1 + InParameter + + + + + fr.insee + jojtizrx-QOP-kf71m9y7 + 1 + OutParameter + + + fr.insee + kbkispr8-IP-7 + 1 + InParameter + + + if (isnull(kbkispr8-IP-6)) then "" else (if ( (cast(kbkispr8-IP-6,integer) > cast(kbkispr8-IP-3,integer)) or ( (cast(kbkispr8-IP-6,integer) = cast(kbkispr8-IP-3,integer)) and (cast(kbkispr8-IP-7,integer) > cast(kbkispr8-IP-1,integer)) and not(isnull(kbkispr8-IP-7)) ) or ( (cast(kbkispr8-IP-6,integer) = cast(kbkispr8-IP-3,integer)) and isnull(kbkispr8-IP-7) and (cast(kbkispr8-IP-1,integer)<=6) )) then "1" else (if ( (cast(kbkispr8-IP-6,integer) > cast(kbkispr8-IP-2,integer)) or ( (cast(kbkispr8-IP-6,integer) = cast(kbkispr8-IP-2,integer)) and (cast(kbkispr8-IP-7,integer) > cast(kbkispr8-IP-1,integer)) and not(isnull(kbkispr8-IP-7)) ) or ( (cast(kbkispr8-IP-6,integer) = cast(kbkispr8-IP-2,integer)) and isnull(kbkispr8-IP-7) and (cast(kbkispr8-IP-1,integer)<=6) )) then "2" else (if ( cast(kbkispr8-IP-6,integer) > cast(kbkispr8-IP-4,integer) ) then "3" else (if ( cast(kbkispr8-IP-6,integer) > cast(kbkispr8-IP-5,integer)) then "4" else (if (not(isnull(kbkispr8-IP-6))) then "5" else ""))))) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kbkitdek-GI + 1 + + fr.insee + jojt3qxp + 1 + QuestionItem + + + fr.insee + jojtsgsr + 1 + QuestionItem + + + fr.insee + kbjjncl4 + 1 + Variable + + + fr.insee + kbkesufu + 1 + Variable + + + fr.insee + kbkispr8 + 1 + Variable + + + fr.insee + jojtmmcp + 1 + Variable + + + fr.insee + jojtd97l + 1 + Variable + + + + vtl + + fr.insee + kbkitdek-IP-1 + 1 + + MAA2AT + + + + fr.insee + kbkitdek-IP-2 + 1 + + MAA2ATC + + + + fr.insee + kbkitdek-IP-3 + 1 + + MAA3AT + + + + fr.insee + kbkitdek-IP-4 + 1 + + MARRIVC + + + + fr.insee + kbkitdek-IP-5 + 1 + + MAA3 + + + + fr.insee + kbkitdek-GOP + 1 + + + + fr.insee + kbjjncl4-GOP + 1 + OutParameter + + + fr.insee + kbkitdek-IP-1 + 1 + InParameter + + + + + fr.insee + kbkesufu-GOP + 1 + OutParameter + + + fr.insee + kbkitdek-IP-2 + 1 + InParameter + + + + + fr.insee + kbkispr8-GOP + 1 + OutParameter + + + fr.insee + kbkitdek-IP-3 + 1 + InParameter + + + + + fr.insee + jojt3qxp-QOP-jojtagah + 1 + OutParameter + + + fr.insee + kbkitdek-IP-4 + 1 + InParameter + + + + + fr.insee + jojtsgsr-QOP-jojtrf8n + 1 + OutParameter + + + fr.insee + kbkitdek-IP-5 + 1 + InParameter + + + if (not(isnull(kbkitdek-IP-1)) and isnull(kbkitdek-IP-2) and isnull(kbkitdek-IP-3) ) then kbkitdek-IP-1 else (if (not(isnull(kbkitdek-IP-1)) and not(isnull(kbkitdek-IP-2)) and isnull(kbkitdek-IP-3) ) then (if ((cast(kbkitdek-IP-1,integer)<cast(kbkitdek-IP-2,integer)) and kbkitdek-IP-4="2" ) then kbkitdek-IP-2 else kbkitdek-IP-1) else (if (not(isnull(kbkitdek-IP-1)) and isnull(kbkitdek-IP-2) and not(isnull(kbkitdek-IP-3)) ) then (if ((cast(kbkitdek-IP-1,integer)<cast(kbkitdek-IP-3,integer)) and kbkitdek-IP-5="1" ) then kbkitdek-IP-3 else kbkitdek-IP-1) else (if (not(isnull(kbkitdek-IP-1)) and not(isnull(kbkitdek-IP-2)) and not(isnull(kbkitdek-IP-3)) ) then (if ((cast(kbkitdek-IP-1,integer)<cast(kbkitdek-IP-3,integer)) and kbkitdek-IP-5="1" ) then (if (cast(kbkitdek-IP-3,integer)<cast(kbkitdek-IP-2,integer) and kbkitdek-IP-4="2") then kbkitdek-IP-2 else kbkitdek-IP-3 ) else (if ((cast(kbkitdek-IP-1,integer)<cast(kbkitdek-IP-2,integer)) and kbkitdek-IP-4="2") then kbkitdek-IP-2 else kbkitdek-IP-1 ) ) else "" ))) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kbmb2qvv-GI + 1 + + + vtl + + fr.insee + kbmb2qvv-GOP + 1 + + cast(current_date(),string,"YYYY") + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kbmb6u1h-GI + 1 + + + vtl + + fr.insee + kbmb6u1h-GOP + 1 + + cast(current_date(),string,"MM") + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kcotuys2-GI + 1 + + fr.insee + jojtbo85 + 1 + QuestionItem + + + fr.insee + jojt16mt + 1 + QuestionItem + + + fr.insee + jojt3qxp + 1 + QuestionItem + + + fr.insee + jojtnq9z + 1 + QuestionItem + + + fr.insee + jor73af6 + 1 + QuestionItem + + + fr.insee + kbjjncl4 + 1 + Variable + + + fr.insee + kbkesufu + 1 + Variable + + + fr.insee + lgp3bfj8 + 1 + Variable + + + fr.insee + kf71mrxw + 1 + Variable + + + fr.insee + jojtmmcp + 1 + Variable + + + fr.insee + lgp3974g + 1 + Variable + + + fr.insee + kf722urp + 1 + Variable + + + + vtl + + fr.insee + kcotuys2-IP-1 + 1 + + MAA2AT + + + + fr.insee + kcotuys2-IP-2 + 1 + + MAA2ATC + + + + fr.insee + kcotuys2-IP-3 + 1 + + MAA2A + + + + fr.insee + kcotuys2-IP-4 + 1 + + MAA2M + + + + fr.insee + kcotuys2-IP-5 + 1 + + MARRIVC + + + + fr.insee + kcotuys2-IP-6 + 1 + + MAA2AC + + + + fr.insee + kcotuys2-IP-7 + 1 + + MAA2MC + + + + fr.insee + kcotuys2-GOP + 1 + + + + fr.insee + kbjjncl4-GOP + 1 + OutParameter + + + fr.insee + kcotuys2-IP-1 + 1 + InParameter + + + + + fr.insee + kbkesufu-GOP + 1 + OutParameter + + + fr.insee + kcotuys2-IP-2 + 1 + InParameter + + + + + fr.insee + jojtbo85-QOP-lera9at4 + 1 + OutParameter + + + fr.insee + kcotuys2-IP-3 + 1 + InParameter + + + + + fr.insee + jojt16mt-QOP-kf71i6tz + 1 + OutParameter + + + fr.insee + kcotuys2-IP-4 + 1 + InParameter + + + + + fr.insee + jojt3qxp-QOP-jojtagah + 1 + OutParameter + + + fr.insee + kcotuys2-IP-5 + 1 + InParameter + + + + + fr.insee + jojtnq9z-QOP-leraafbf + 1 + OutParameter + + + fr.insee + kcotuys2-IP-6 + 1 + InParameter + + + + + fr.insee + jor73af6-QOP-kf71reoh + 1 + OutParameter + + + fr.insee + kcotuys2-IP-7 + 1 + InParameter + + + if ((not(isnull(kcotuys2-IP-3)) and not(isnull(kcotuys2-IP-5)) and (kcotuys2-IP-5="2") ) and not(isnull(kcotuys2-IP-6)) and ( (kcotuys2-IP-6<kcotuys2-IP-3) or (kcotuys2-IP-6=kcotuys2-IP-3 and kcotuys2-IP-7<kcotuys2-IP-4 and not(isnull(kcotuys2-IP-7)) and not(isnull(kcotuys2-IP-4)) )) ) then "l'arrivée de votre conjoint(e) en " || cast(kcotuys2-IP-6,string) else (if (not(isnull(kcotuys2-IP-1)) and not(isnull(kcotuys2-IP-2)) and cast(kcotuys2-IP-2,integer)>cast(kcotuys2-IP-1,integer)) then "l'arrivée de votre conjoint(e)" else (if (not(isnull(kcotuys2-IP-3))) then "votre arrivée en " || cast(kcotuys2-IP-3,string) else "votre arrivée")) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kcp0yph2-GI + 1 + + fr.insee + jojv1e5e + 1 + QuestionItem + + + fr.insee + jojuunvc + 1 + Variable + + + + vtl + + fr.insee + kcp0yph2-IP-1 + 1 + + HPP + + + + fr.insee + kcp0yph2-GOP + 1 + + + + fr.insee + jojv1e5e-QOP-jojuuvbp + 1 + OutParameter + + + fr.insee + kcp0yph2-IP-1 + 1 + InParameter + + + if (isnull(kcp0yph2-IP-1)) then "vos pièces" else ( if (cast(kcp0yph2-IP-1,integer) = 1) then "votre pièce" else "vos pièces") + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kd4q6heg-GI + 1 + + fr.insee + jojv3ha7 + 1 + QuestionItem + + + fr.insee + kmcdiwdv + 1 + QuestionGrid + + + fr.insee + jojuzbus + 1 + QuestionItem + + + fr.insee + kkqp2j1d + 1 + Variable + + + fr.insee + kmd84vg3 + 1 + Variable + + + fr.insee + klv4iu5l + 1 + Variable + + + + vtl + + fr.insee + kd4q6heg-IP-1 + 1 + + HPA + + + + fr.insee + kd4q6heg-IP-2 + 1 + + HULHUI22 + + + + fr.insee + kd4q6heg-IP-3 + 1 + + HPI1 + + + + fr.insee + kd4q6heg-GOP + 1 + + + + fr.insee + jojv3ha7-QOP-jojusenw + 1 + OutParameter + + + fr.insee + kd4q6heg-IP-1 + 1 + InParameter + + + + + fr.insee + kmcdiwdv-QOP-kmd9qoms + 1 + OutParameter + + + fr.insee + kd4q6heg-IP-2 + 1 + InParameter + + + + + fr.insee + jojuzbus-QOP-jojv8tjf + 1 + OutParameter + + + fr.insee + kd4q6heg-IP-3 + 1 + InParameter + + + if (isnull(kd4q6heg-IP-3) and isnull(kd4q6heg-IP-1)) then "ces pièces annexes réservées" else (if (isnull(kd4q6heg-IP-3) and not(isnull(kd4q6heg-IP-2)) and (kd4q6heg-IP-2)) then "ces pièces annexes réservées" else (if ((cast(kd4q6heg-IP-3,integer) = 1) or (cast(kd4q6heg-IP-1,integer) = 1)) then "cette pièce annexe réservée" else (if (cast(kd4q6heg-IP-3,integer)>0) then "ces " || cast(kd4q6heg-IP-3,string) || " pièces annexes réservées" else "ces pièces annexes réservées"))) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kd5x12n1-GI + 1 + + fr.insee + jojv79ut + 1 + QuestionItem + + + fr.insee + jojusauf + 1 + Variable + + + + vtl + + fr.insee + kd5x12n1-IP-1 + 1 + + HUA + + + + fr.insee + kd5x12n1-GOP + 1 + + + + fr.insee + jojv79ut-QOP-jojv12lo + 1 + OutParameter + + + fr.insee + kd5x12n1-IP-1 + 1 + InParameter + + + if (isnull(kd5x12n1-IP-1)) then "" else if (kd5x12n1-IP-1="1") then "pièce annexe, " else "" + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kd5wsv3n-GI + 1 + + fr.insee + jojuwst2 + 1 + QuestionItem + + + fr.insee + jojuqqg0 + 1 + Variable + + + + vtl + + fr.insee + kd5wsv3n-IP-1 + 1 + + HUP + + + + fr.insee + kd5wsv3n-GOP + 1 + + + + fr.insee + jojuwst2-QOP-jojv5zcs + 1 + OutParameter + + + fr.insee + kd5wsv3n-IP-1 + 1 + InParameter + + + if (isnull(kd5wsv3n-IP-1)) then "" else (if (kd5wsv3n-IP-1="1") then "pièce exclusivement professionnelle, " else "") + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kd5x03yf-GI + 1 + + fr.insee + jojuueml + 1 + QuestionItem + + + fr.insee + km24than + 1 + Variable + + + + vtl + + fr.insee + kd5x03yf-IP-1 + 1 + + KCU1 + + + + fr.insee + kd5x03yf-GOP + 1 + + + + fr.insee + jojuueml-QOP-jojumdxu + 1 + OutParameter + + + fr.insee + kd5x03yf-IP-1 + 1 + InParameter + + + if (isnull(kd5x03yf-IP-1)) then "" else if (kd5x03yf-IP-1="1") then "cuisine, " else "" + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kd5xwi4p-GI + 1 + + fr.insee + jojv1e5e + 1 + QuestionItem + + + fr.insee + jojv3ha7 + 1 + QuestionItem + + + fr.insee + kmdbjrqx + 1 + Variable + + + fr.insee + kmdc1r1x + 1 + Variable + + + fr.insee + jojuunvc + 1 + Variable + + + fr.insee + kkqp2j1d + 1 + Variable + + + + vtl + + fr.insee + kd5xwi4p-IP-1 + 1 + + libHSTa + + + + fr.insee + kd5xwi4p-IP-2 + 1 + + libHSTp + + + + fr.insee + kd5xwi4p-IP-3 + 1 + + HPP + + + + fr.insee + kd5xwi4p-IP-4 + 1 + + HPA + + + + fr.insee + kd5xwi4p-GOP + 1 + + + + fr.insee + kmdbjrqx-GOP + 1 + OutParameter + + + fr.insee + kd5xwi4p-IP-1 + 1 + InParameter + + + + + fr.insee + kmdc1r1x-GOP + 1 + OutParameter + + + fr.insee + kd5xwi4p-IP-2 + 1 + InParameter + + + + + fr.insee + jojv1e5e-QOP-jojuuvbp + 1 + OutParameter + + + fr.insee + kd5xwi4p-IP-3 + 1 + InParameter + + + + + fr.insee + jojv3ha7-QOP-jojusenw + 1 + OutParameter + + + fr.insee + kd5xwi4p-IP-4 + 1 + InParameter + + + if (isnull(kd5xwi4p-IP-3) and isnull(kd5xwi4p-IP-4)) then " " else (if (not(isnull(kd5xwi4p-IP-3)) and not(isnull(kd5xwi4p-IP-4))) then ", en dehors " || kd5xwi4p-IP-2 || " et " || kd5xwi4p-IP-1 else (if (not(isnull(kd5xwi4p-IP-3))) then ", en dehors " || kd5xwi4p-IP-2 else ( if (not(isnull(kd5xwi4p-IP-4))) then ", en dehors " || kd5xwi4p-IP-1 else " "))) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kd7fq6ld-GI + 1 + + fr.insee + jojvgfei + 1 + QuestionItem + + + fr.insee + jojvc0vt + 1 + QuestionItem + + + fr.insee + kycvr8qf + 1 + Variable + + + fr.insee + kwkduxho + 1 + Variable + + + + vtl + + fr.insee + kd7fq6ld-IP-1 + 1 + + HPH + + + + fr.insee + kd7fq6ld-IP-2 + 1 + + HST + + + + fr.insee + kd7fq6ld-GOP + 1 + + + + fr.insee + jojvgfei-QOP-jojvjmis + 1 + OutParameter + + + fr.insee + kd7fq6ld-IP-1 + 1 + InParameter + + + + + fr.insee + jojvc0vt-QOP-jojv2uvg + 1 + OutParameter + + + fr.insee + kd7fq6ld-IP-2 + 1 + InParameter + + + round( (cast(kd7fq6ld-IP-2,integer) / cast(kd7fq6ld-IP-1,integer)) ) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kd7h7u8j-GI + 1 + + fr.insee + jojvgfei + 1 + QuestionItem + + + fr.insee + jojvc0vt + 1 + QuestionItem + + + fr.insee + kycvr8qf + 1 + Variable + + + fr.insee + kwkduxho + 1 + Variable + + + + vtl + + fr.insee + kd7h7u8j-IP-1 + 1 + + HPH + + + + fr.insee + kd7h7u8j-IP-2 + 1 + + HST + + + + fr.insee + kd7h7u8j-GOP + 1 + + + + fr.insee + jojvgfei-QOP-jojvjmis + 1 + OutParameter + + + fr.insee + kd7h7u8j-IP-1 + 1 + InParameter + + + + + fr.insee + jojvc0vt-QOP-jojv2uvg + 1 + OutParameter + + + fr.insee + kd7h7u8j-IP-2 + 1 + InParameter + + + round( (cast(kd7h7u8j-IP-2,integer) / (cast(kd7h7u8j-IP-1,integer) +1)) ) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kd8qhmj5-GI + 1 + + fr.insee + kmdi456r + 1 + Variable + + + + vtl + + fr.insee + kd8qhmj5-IP-1 + 1 + + libHTLC + + + + fr.insee + kd8qhmj5-GOP + 1 + + + + fr.insee + kmdi456r-GOP + 1 + OutParameter + + + fr.insee + kd8qhmj5-IP-1 + 1 + InParameter + + + if (isnull(kd8qhmj5-IP-1)) then "" else (if (cast(kd8qhmj5-IP-1,string)="collectif") then ", des terrasses" else "") + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kd8qo38q-GI + 1 + + fr.insee + kd8qd4ou + 1 + QuestionItem + + + fr.insee + kmdnmxfj + 1 + Variable + + + + vtl + + fr.insee + kd8qo38q-IP-1 + 1 + + HTLC1 + + + + fr.insee + kd8qo38q-GOP + 1 + + + + fr.insee + kd8qd4ou-QOP-kd8q0swm + 1 + OutParameter + + + fr.insee + kd8qo38q-IP-1 + 1 + InParameter + + + if (isnull(kd8qo38q-IP-1)) then "Avez-vous" else (if (kd8qo38q-IP-1="2") then "Dans votre résidence, avez-vous" else "Avez-vous") + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kd8yarle-GI + 1 + + fr.insee + kd8qd4ou + 1 + QuestionItem + + + fr.insee + kbgi5n3g + 1 + QuestionItem + + + fr.insee + kmdnmxfj + 1 + Variable + + + fr.insee + kbgifaaz + 1 + Variable + + + + vtl + + fr.insee + kd8yarle-IP-1 + 1 + + HTLC1 + + + + fr.insee + kd8yarle-IP-2 + 1 + + INDCOLL + + + + fr.insee + kd8yarle-GOP + 1 + + + + fr.insee + kd8qd4ou-QOP-kd8q0swm + 1 + OutParameter + + + fr.insee + kd8yarle-IP-1 + 1 + InParameter + + + + + fr.insee + kbgi5n3g-QOP-kbgif8i8 + 1 + OutParameter + + + fr.insee + kd8yarle-IP-2 + 1 + InParameter + + + if (isnull(kd8yarle-IP-1) and isnull(kd8yarle-IP-1) and isnull(kd8yarle-IP-2)) then "votre logement" else (if ((kd8yarle-IP-1="1" and not(isnull(kd8yarle-IP-1))) or (kd8yarle-IP-1="5" and not(isnull(kd8yarle-IP-1))) or (kd8yarle-IP-2="2" and not(isnull(kd8yarle-IP-2))) ) then "la propriété" else "l'immeuble") + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kd91m689-GI + 1 + + fr.insee + kbgim4v3 + 1 + QuestionItem + + + fr.insee + kbgifbcr + 1 + Variable + + + + vtl + + fr.insee + kd91m689-IP-1 + 1 + + ICOI + + + + fr.insee + kd91m689-GOP + 1 + + + + fr.insee + kbgim4v3-QOP-kbgin5q4 + 1 + OutParameter + + + fr.insee + kd91m689-IP-1 + 1 + InParameter + + + if (isnull(kd91m689-IP-1)) then "l'immeuble" else (if (kd91m689-IP-1="1") then "la copropriété" else "l'immeuble") + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kd9dm2z8-GI + 1 + + fr.insee + jojv79ut + 1 + QuestionItem + + + fr.insee + kmd6o006 + 1 + QuestionItem + + + fr.insee + kmcdiwdv + 1 + QuestionGrid + + + fr.insee + jojusauf + 1 + Variable + + + fr.insee + kmd71wle + 1 + Variable + + + fr.insee + kmd84vg3 + 1 + Variable + + + fr.insee + kmd7sxny + 1 + Variable + + + + vtl + + fr.insee + kd9dm2z8-IP-1 + 1 + + HUA + + + + fr.insee + kd9dm2z8-IP-2 + 1 + + HULHUI1 + + + + fr.insee + kd9dm2z8-IP-3 + 1 + + HULHUI22 + + + + fr.insee + kd9dm2z8-IP-4 + 1 + + HULHUI23 + + + + fr.insee + kd9dm2z8-GOP + 1 + + + + fr.insee + jojv79ut-QOP-jojv12lo + 1 + OutParameter + + + fr.insee + kd9dm2z8-IP-1 + 1 + InParameter + + + + + fr.insee + kmd6o006-QOP-kmd6yr7w + 1 + OutParameter + + + fr.insee + kd9dm2z8-IP-2 + 1 + InParameter + + + + + fr.insee + kmcdiwdv-QOP-kmd9qoms + 1 + OutParameter + + + fr.insee + kd9dm2z8-IP-3 + 1 + InParameter + + + + + fr.insee + kmcdiwdv-QOP-kmd988n2 + 1 + OutParameter + + + fr.insee + kd9dm2z8-IP-4 + 1 + InParameter + + + if (isnull(kd9dm2z8-IP-1)) then "" else if (kd9dm2z8-IP-1="1" and isnull(kd9dm2z8-IP-2) and isnull(kd9dm2z8-IP-3) and isnull(kd9dm2z8-IP-4) ) then "" else if (kd9dm2z8-IP-1="1" and (kd9dm2z8-IP-2 ="2" or kd9dm2z8-IP-2 ="3")) then "Sans oublier la pièce annexe" else if (kd9dm2z8-IP-1="1" and (nvl(kd9dm2z8-IP-3,false)=true or nvl(kd9dm2z8-IP-4,false)=true)) then "Sans oublier les pièces annexes." else "" + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kf5dz367-GI + 1 + + fr.insee + kmoo2fiy + 1 + QuestionItem + + + fr.insee + ks4f5ex4 + 1 + Variable + + + + vtl + + fr.insee + kf5dz367-IP-1 + 1 + + SEXE + + + + fr.insee + kf5dz367-GOP + 1 + + + + fr.insee + kmoo2fiy-QOP-kmoon375 + 1 + OutParameter + + + fr.insee + kf5dz367-IP-1 + 1 + InParameter + + + if (isnull(kf5dz367-IP-1)) then "er" else (if (kf5dz367-IP-1 ="2") then "ère" else "er") + + + + fr.insee + kmnolkxb + 1 + Loop + + + + fr.insee + klutbpfw-GI + 1 + + fr.insee + jn0cttir + 1 + QuestionItem + + + fr.insee + klusnxnh + 1 + QuestionItem + + + fr.insee + klut3nax + 1 + Variable + + + fr.insee + klutbmso + 1 + Variable + + + + vtl + + fr.insee + klutbpfw-IP-1 + 1 + + STOC1 + + + + fr.insee + klutbpfw-IP-2 + 1 + + STOC2 + + + + fr.insee + klutbpfw-GOP + 1 + + + + fr.insee + jn0cttir-QOP-jn0dct54 + 1 + OutParameter + + + fr.insee + klutbpfw-IP-1 + 1 + InParameter + + + + + fr.insee + klusnxnh-QOP-klut950c + 1 + OutParameter + + + fr.insee + klutbpfw-IP-2 + 1 + InParameter + + + if (isnull(klutbpfw-IP-2)) then klutbpfw-IP-1 else (if (klutbpfw-IP-2 = "1") then "1" else (if (klutbpfw-IP-2 = "2") then "2" else klutbpfw-IP-1)) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + klw3bb9m-GI + 1 + + fr.insee + jojv3ha7 + 1 + QuestionItem + + + fr.insee + kmcdiwdv + 1 + QuestionGrid + + + fr.insee + klv4iusu + 1 + QuestionItem + + + fr.insee + kkqp2j1d + 1 + Variable + + + fr.insee + kmd7sxny + 1 + Variable + + + fr.insee + klv4t7se + 1 + Variable + + + + vtl + + fr.insee + klw3bb9m-IP-1 + 1 + + HPA + + + + fr.insee + klw3bb9m-IP-2 + 1 + + HULHUI23 + + + + fr.insee + klw3bb9m-IP-3 + 1 + + HPI2 + + + + fr.insee + klw3bb9m-GOP + 1 + + + + fr.insee + jojv3ha7-QOP-jojusenw + 1 + OutParameter + + + fr.insee + klw3bb9m-IP-1 + 1 + InParameter + + + + + fr.insee + kmcdiwdv-QOP-kmd988n2 + 1 + OutParameter + + + fr.insee + klw3bb9m-IP-2 + 1 + InParameter + + + + + fr.insee + klv4iusu-QOP-klv4mlgz + 1 + OutParameter + + + fr.insee + klw3bb9m-IP-3 + 1 + InParameter + + + if (isnull(klw3bb9m-IP-3) and isnull(klw3bb9m-IP-1)) then "ces pièces annexes réservées" else (if (isnull(klw3bb9m-IP-3) and not(isnull(klw3bb9m-IP-2))) then "ces pièces annexes réservées" else (if ((cast(klw3bb9m-IP-3,integer) = 1) or (cast(klw3bb9m-IP-1,integer) = 1)) then "cette pièce annexe réservée" else (if (cast(klw3bb9m-IP-3,integer)>0) then "ces " || cast(klw3bb9m-IP-3,string) || " pièces annexes réservées" else "ces pièces annexes réservées"))) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kmdb0l68-GI + 1 + + fr.insee + jojuueml + 1 + QuestionItem + + + fr.insee + km24than + 1 + Variable + + + + vtl + + fr.insee + kmdb0l68-IP-1 + 1 + + KCU1 + + + + fr.insee + kmdb0l68-GOP + 1 + + + + fr.insee + jojuueml-QOP-jojumdxu + 1 + OutParameter + + + fr.insee + kmdb0l68-IP-1 + 1 + InParameter + + + if (isnull(kmdb0l68-IP-1)) then "" else if (kmdb0l68-IP-1="2" or kmdb0l68-IP-1="3") then "Compter comme une pièce votre salon si la cuisine est ouverte (cuisine américaine)." else "" + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kmdbjrqx-GI + 1 + + fr.insee + jojv3ha7 + 1 + QuestionItem + + + fr.insee + kkqp2j1d + 1 + Variable + + + + vtl + + fr.insee + kmdbjrqx-IP-1 + 1 + + HPA + + + + fr.insee + kmdbjrqx-GOP + 1 + + + + fr.insee + jojv3ha7-QOP-jojusenw + 1 + OutParameter + + + fr.insee + kmdbjrqx-IP-1 + 1 + InParameter + + + if (isnull(kmdbjrqx-IP-1)) then "" else (if (cast(kmdbjrqx-IP-1,integer)=1) then "de la pièce annexe" else (if (cast(kmdbjrqx-IP-1,integer)>1) then "des pièces annexes" else "")) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kmdc1r1x-GI + 1 + + fr.insee + jojv1e5e + 1 + QuestionItem + + + fr.insee + jojuunvc + 1 + Variable + + + + vtl + + fr.insee + kmdc1r1x-IP-1 + 1 + + HPP + + + + fr.insee + kmdc1r1x-GOP + 1 + + + + fr.insee + jojv1e5e-QOP-jojuuvbp + 1 + OutParameter + + + fr.insee + kmdc1r1x-IP-1 + 1 + InParameter + + + if (isnull(kmdc1r1x-IP-1)) then "" else (if (cast(kmdc1r1x-IP-1,integer)=1) then "de la pièce professionnelle" else (if (cast(kmdc1r1x-IP-1,integer)>1) then "des pièces professionnelles" else "")) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kmddimy7-GI + 1 + + fr.insee + jojuueml + 1 + QuestionItem + + + fr.insee + km24than + 1 + Variable + + + + vtl + + fr.insee + kmddimy7-IP-1 + 1 + + KCU1 + + + + fr.insee + kmddimy7-GOP + 1 + + + + fr.insee + jojuueml-QOP-jojumdxu + 1 + OutParameter + + + fr.insee + kmddimy7-IP-1 + 1 + InParameter + + + if (isnull(kmddimy7-IP-1)) then "" else (if (kmddimy7-IP-1="1") then "(et une cuisine)" else "") + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kmdi456r-GI + 1 + + fr.insee + kd8qd4ou + 1 + QuestionItem + + + fr.insee + kbgi5n3g + 1 + QuestionItem + + + fr.insee + kmdnmxfj + 1 + Variable + + + fr.insee + kbgifaaz + 1 + Variable + + + + vtl + + fr.insee + kmdi456r-IP-1 + 1 + + HTLC1 + + + + fr.insee + kmdi456r-IP-2 + 1 + + INDCOLL + + + + fr.insee + kmdi456r-GOP + 1 + + + + fr.insee + kd8qd4ou-QOP-kd8q0swm + 1 + OutParameter + + + fr.insee + kmdi456r-IP-1 + 1 + InParameter + + + + + fr.insee + kbgi5n3g-QOP-kbgif8i8 + 1 + OutParameter + + + fr.insee + kmdi456r-IP-2 + 1 + InParameter + + + if (isnull(kmdi456r-IP-1)) then "" else (if (kmdi456r-IP-1="1" or kmdi456r-IP-1="5" or (kmdi456r-IP-2="2" and not(isnull(kmdi456r-IP-2))) ) then "individuel" else ( if (kmdi456r-IP-1="2" or kmdi456r-IP-1="3" or kmdi456r-IP-1="4" or (kmdi456r-IP-2="1" and not(isnull(kmdi456r-IP-2))) ) then "collectif" else "")) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kmdiz1lc-GI + 1 + + fr.insee + jrupq1i5 + 1 + QuestionItem + + + fr.insee + jrupwwi7 + 1 + Variable + + + + vtl + + fr.insee + kmdiz1lc-IP-1 + 1 + + KVE + + + + fr.insee + kmdiz1lc-GOP + 1 + + + + fr.insee + jrupq1i5-QOP-jrupywt4 + 1 + OutParameter + + + fr.insee + kmdiz1lc-IP-1 + 1 + InParameter + + + if (isnull(kmdiz1lc-IP-1)) then " et de la véranda" else if (kmdiz1lc-IP-1<>"2") then " et de la véranda" else "" + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kmdjrrtc-GI + 1 + + fr.insee + jojuwst2 + 1 + QuestionItem + + + fr.insee + jojuqqg0 + 1 + Variable + + + + vtl + + fr.insee + kmdjrrtc-IP-1 + 1 + + HUP + + + + fr.insee + kmdjrrtc-GOP + 1 + + + + fr.insee + jojuwst2-QOP-jojv5zcs + 1 + OutParameter + + + fr.insee + kmdjrrtc-IP-1 + 1 + InParameter + + + if (isnull(kmdjrrtc-IP-1)) then "" else if (kmdjrrtc-IP-1="1") then "(sans usage exclusivement professionnel) " else "" + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + knomuvz7-GI + 1 + + fr.insee + kbc1b4k2 + 1 + QuestionItem + + + fr.insee + km0sy84b + 1 + Variable + + + + vtl + + fr.insee + knomuvz7-IP-1 + 1 + + NBHAB + + + + fr.insee + knomuvz7-GOP + 1 + + + + fr.insee + kbc1b4k2-QOP-kbc1oors + 1 + OutParameter + + + fr.insee + knomuvz7-IP-1 + 1 + InParameter + + + if (isnull(knomuvz7-IP-1)) then "Un ménage peut être composé d'une seule personne." else (if (cast(knomuvz7-IP-1,integer) < 2) then "Un ménage peut être composé d'une seule personne." else "") + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + ko9vg9v8-GI + 1 + + fr.insee + kbmb6u1h + 1 + Variable + + + + vtl + + fr.insee + ko9vg9v8-IP-1 + 1 + + MOISENQ + + + + fr.insee + ko9vg9v8-GOP + 1 + + + + fr.insee + kbmb6u1h-GOP + 1 + OutParameter + + + fr.insee + ko9vg9v8-IP-1 + 1 + InParameter + + + if (isnull(ko9vg9v8-IP-1)) then "" else (if (ko9vg9v8-IP-1="01") then "janvier" else (if (ko9vg9v8-IP-1="02") then "février" else (if (ko9vg9v8-IP-1="03") then "mars" else (if (ko9vg9v8-IP-1="04") then "avril" else (if (ko9vg9v8-IP-1="05") then "mai" else (if (ko9vg9v8-IP-1="06") then "juin" else (if (ko9vg9v8-IP-1="07") then "juillet" else (if (ko9vg9v8-IP-1="08") then "août" else (if (ko9vg9v8-IP-1="09") then "septembre" else (if (ko9vg9v8-IP-1="10") then "octobre" else (if (ko9vg9v8-IP-1="11") then "novembre" else (if (ko9vg9v8-IP-1="12") then "décembre" else "" )))))))))))) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + ko9w77fo-GI + 1 + + fr.insee + krd6p7hy + 1 + Variable + + + fr.insee + krd6rkdl + 1 + Variable + + + + vtl + + fr.insee + ko9w77fo-IP-1 + 1 + + persplus18TR + + + + fr.insee + ko9w77fo-IP-2 + 1 + + persplus18AGE + + + + fr.insee + ko9w77fo-GOP + 1 + + + + fr.insee + krd6p7hy-GOP + 1 + OutParameter + + + fr.insee + ko9w77fo-IP-1 + 1 + InParameter + + + + + fr.insee + krd6rkdl-GOP + 1 + OutParameter + + + fr.insee + ko9w77fo-IP-2 + 1 + InParameter + + + if ((not(isnull(ko9w77fo-IP-2)) and ko9w77fo-IP-2="1") or (not(isnull(ko9w77fo-IP-1)) and ko9w77fo-IP-1="1")) then 1 else 0 + + + + fr.insee + kmnolkxb + 1 + Loop + + + + fr.insee + kocm65ii-GI + 1 + + fr.insee + kbmb2qvv + 1 + Variable + + + + vtl + + fr.insee + kocm65ii-IP-1 + 1 + + ANNEENQ + + + + fr.insee + kocm65ii-GOP + 1 + + + + fr.insee + kbmb2qvv-GOP + 1 + OutParameter + + + fr.insee + kocm65ii-IP-1 + 1 + InParameter + + + (cast(kocm65ii-IP-1,integer)) - 4 + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kowl65lm-GI + 1 + + fr.insee + jrupq1i5 + 1 + QuestionItem + + + fr.insee + jrupzl7m + 1 + QuestionItem + + + fr.insee + jruq98v2 + 1 + QuestionItem + + + fr.insee + jruqlf39 + 1 + QuestionItem + + + fr.insee + jrusjpqy + 1 + QuestionGrid + + + fr.insee + jrut0i0j + 1 + QuestionItem + + + fr.insee + jrusu349 + 1 + QuestionItem + + + fr.insee + jrutj5co + 1 + QuestionItem + + + fr.insee + jruu4ry3 + 1 + QuestionItem + + + fr.insee + jruue197 + 1 + QuestionItem + + + fr.insee + jruubukg + 1 + QuestionItem + + + fr.insee + jrupwwi7 + 1 + Variable + + + fr.insee + jrupt0ur + 1 + Variable + + + fr.insee + jrupwd1k + 1 + Variable + + + fr.insee + jruqlp4e + 1 + Variable + + + fr.insee + jrusrp45 + 1 + Variable + + + fr.insee + jrusyukj + 1 + Variable + + + fr.insee + jruspgnz + 1 + Variable + + + fr.insee + jrutat73 + 1 + Variable + + + fr.insee + kmdllzgd + 1 + Variable + + + fr.insee + koiozi77 + 1 + Variable + + + fr.insee + jrutqxjn + 1 + Variable + + + fr.insee + jruul7hb + 1 + Variable + + + fr.insee + jruu4qwz + 1 + Variable + + + + vtl + + fr.insee + kowl65lm-IP-1 + 1 + + KVE + + + + fr.insee + kowl65lm-IP-2 + 1 + + KBA + + + + fr.insee + kowl65lm-IP-3 + 1 + + KJA + + + + fr.insee + kowl65lm-IP-4 + 1 + + KJC + + + + fr.insee + kowl65lm-IP-5 + 1 + + KGA1 + + + + fr.insee + kowl65lm-IP-6 + 1 + + KGA2 + + + + fr.insee + kowl65lm-IP-7 + 1 + + KGA3 + + + + fr.insee + kowl65lm-IP-8 + 1 + + KCA + + + + fr.insee + kowl65lm-IP-9 + 1 + + KVELO + + + + fr.insee + kowl65lm-IP-10 + 1 + + KGRA + + + + fr.insee + kowl65lm-IP-11 + 1 + + KSOA + + + + fr.insee + kowl65lm-IP-12 + 1 + + KPISC + + + + fr.insee + kowl65lm-IP-13 + 1 + + KGRAA + + + + fr.insee + kowl65lm-GOP + 1 + + + + fr.insee + jrupq1i5-QOP-jrupywt4 + 1 + OutParameter + + + fr.insee + kowl65lm-IP-1 + 1 + InParameter + + + + + fr.insee + jrupzl7m-QOP-jruppxki + 1 + OutParameter + + + fr.insee + kowl65lm-IP-2 + 1 + InParameter + + + + + fr.insee + jruq98v2-QOP-jruq36wn + 1 + OutParameter + + + fr.insee + kowl65lm-IP-3 + 1 + InParameter + + + + + fr.insee + jruqlf39-QOP-jruqc60v + 1 + OutParameter + + + fr.insee + kowl65lm-IP-4 + 1 + InParameter + + + + + fr.insee + jrusjpqy-QOP-kf8972di + 1 + OutParameter + + + fr.insee + kowl65lm-IP-5 + 1 + InParameter + + + + + fr.insee + jrusjpqy-QOP-kf893sen + 1 + OutParameter + + + fr.insee + kowl65lm-IP-6 + 1 + InParameter + + + + + fr.insee + jrusjpqy-QOP-kf89737h + 1 + OutParameter + + + fr.insee + kowl65lm-IP-7 + 1 + InParameter + + + + + fr.insee + jrut0i0j-QOP-jrut3e99 + 1 + OutParameter + + + fr.insee + kowl65lm-IP-8 + 1 + InParameter + + + + + fr.insee + jrusu349-QOP-kd91gp0d + 1 + OutParameter + + + fr.insee + kowl65lm-IP-9 + 1 + InParameter + + + + + fr.insee + jrutj5co-QOP-jrutza0y + 1 + OutParameter + + + fr.insee + kowl65lm-IP-10 + 1 + InParameter + + + + + fr.insee + jruu4ry3-QOP-jruu5wfk + 1 + OutParameter + + + fr.insee + kowl65lm-IP-11 + 1 + InParameter + + + + + fr.insee + jruue197-QOP-jruui69o + 1 + OutParameter + + + fr.insee + kowl65lm-IP-12 + 1 + InParameter + + + + + fr.insee + jruubukg-QOP-jruuibm5 + 1 + OutParameter + + + fr.insee + kowl65lm-IP-13 + 1 + InParameter + + + if ((not(isnull(kowl65lm-IP-1)) and kowl65lm-IP-1="1") or (not(isnull(kowl65lm-IP-2)) and kowl65lm-IP-2="1") or (not(isnull(kowl65lm-IP-3)) and kowl65lm-IP-3="1") or (not(isnull(kowl65lm-IP-4)) and kowl65lm-IP-4="1") or (nvl(kowl65lm-IP-5,false)=true) or (nvl(kowl65lm-IP-6,false)=true) or (nvl(kowl65lm-IP-7,false)=true) or (not(isnull(kowl65lm-IP-8)) and kowl65lm-IP-8="1") or (not(isnull(kowl65lm-IP-9)) and kowl65lm-IP-9="1") or (not(isnull(kowl65lm-IP-10)) and kowl65lm-IP-10="1") or (not(isnull(kowl65lm-IP-11)) and kowl65lm-IP-11="1") or (not(isnull(kowl65lm-IP-13)) and kowl65lm-IP-13="1") or (not(isnull(kowl65lm-IP-12)) and kowl65lm-IP-12="1")) then "1" else "0" + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kp4cwk1f-GI + 1 + + fr.insee + kd8qd4ou + 1 + QuestionItem + + + fr.insee + kbgi5n3g + 1 + QuestionItem + + + fr.insee + kmdnmxfj + 1 + Variable + + + fr.insee + kbgifaaz + 1 + Variable + + + + vtl + + fr.insee + kp4cwk1f-IP-1 + 1 + + HTLC1 + + + + fr.insee + kp4cwk1f-IP-2 + 1 + + INDCOLL + + + + fr.insee + kp4cwk1f-GOP + 1 + + + + fr.insee + kd8qd4ou-QOP-kd8q0swm + 1 + OutParameter + + + fr.insee + kp4cwk1f-IP-1 + 1 + InParameter + + + + + fr.insee + kbgi5n3g-QOP-kbgif8i8 + 1 + OutParameter + + + fr.insee + kp4cwk1f-IP-2 + 1 + InParameter + + + if (isnull(kp4cwk1f-IP-1)) then "du logement" else (if (kp4cwk1f-IP-1="1" or kp4cwk1f-IP-1="5" or (kp4cwk1f-IP-2="2" and not(isnull(kp4cwk1f-IP-2)))) then "de la maison" else ( if (kp4cwk1f-IP-1="2" or kp4cwk1f-IP-1="3" or kp4cwk1f-IP-1="4" or (kp4cwk1f-IP-2="1" and not(isnull(kp4cwk1f-IP-2)))) then "de l'immeuble" else "du logement")) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kp58o9de-GI + 1 + + fr.insee + kmw4revw + 1 + QuestionItem + + + fr.insee + lerah1nk + 1 + Variable + + + + vtl + + fr.insee + kp58o9de-IP-1 + 1 + + LIEN + + + + fr.insee + kp58o9de-GOP + 1 + + + + fr.insee + kmw4revw-QOP-kmw5mxph + 1 + OutParameter + + + fr.insee + kp58o9de-IP-1 + 1 + InParameter + + + if (nvl(kp58o9de-IP-1,"")="") then 0 else (if (kp58o9de-IP-1="1") then 1 else 0) + + + + fr.insee + kmnolkxb + 1 + Loop + + + + fr.insee + kp5a9j4t-GI + 1 + + fr.insee + kmw4revw + 1 + QuestionItem + + + fr.insee + lerah1nk + 1 + Variable + + + + vtl + + fr.insee + kp5a9j4t-IP-1 + 1 + + LIEN + + + + fr.insee + kp5a9j4t-GOP + 1 + + + + fr.insee + kmw4revw-QOP-kmw5mxph + 1 + OutParameter + + + fr.insee + kp5a9j4t-IP-1 + 1 + InParameter + + + if (nvl(kp5a9j4t-IP-1,"")="") then 0 else (if (kp5a9j4t-IP-1="2") then 1 else 0) + + + + fr.insee + kmnolkxb + 1 + Loop + + + + fr.insee + kp5n3jf8-GI + 1 + + fr.insee + ko9tiu0f + 1 + QuestionItem + + + fr.insee + ko9r0alc + 1 + QuestionItem + + + fr.insee + ko9t45t9 + 1 + QuestionItem + + + fr.insee + ksyg41dk + 1 + Variable + + + fr.insee + ko9tk25n + 1 + Variable + + + fr.insee + ko9t8lr0 + 1 + Variable + + + fr.insee + ko9tmcu8 + 1 + Variable + + + + vtl + + fr.insee + kp5n3jf8-IP-1 + 1 + + STOCC + + + + fr.insee + kp5n3jf8-IP-2 + 1 + + STOCA12 + + + + fr.insee + kp5n3jf8-IP-3 + 1 + + STOCA3 + + + + fr.insee + kp5n3jf8-IP-4 + 1 + + STOCA4 + + + + fr.insee + kp5n3jf8-GOP + 1 + + + + fr.insee + ksyg41dk-GOP + 1 + OutParameter + + + fr.insee + kp5n3jf8-IP-1 + 1 + InParameter + + + + + fr.insee + ko9tiu0f-QOP-ko9t7khn + 1 + OutParameter + + + fr.insee + kp5n3jf8-IP-2 + 1 + InParameter + + + + + fr.insee + ko9r0alc-QOP-ko9qvhh3 + 1 + OutParameter + + + fr.insee + kp5n3jf8-IP-3 + 1 + InParameter + + + + + fr.insee + ko9t45t9-QOP-ko9sybca + 1 + OutParameter + + + fr.insee + kp5n3jf8-IP-4 + 1 + InParameter + + + if (isnull(kp5n3jf8-IP-1)) then "9" else (if (isnull(kp5n3jf8-IP-2) and isnull(kp5n3jf8-IP-3) and isnull(kp5n3jf8-IP-4)) then "9" else (if ((kp5n3jf8-IP-2="1" and not(isnull(kp5n3jf8-IP-2))) or (kp5n3jf8-IP-3="1" and not(isnull(kp5n3jf8-IP-3))) or (kp5n3jf8-IP-4="1" and not(isnull(kp5n3jf8-IP-4)))) then "1" else "2")) + + + + fr.insee + kmnolkxb + 1 + Loop + + + + fr.insee + kp5scxxo-GI + 1 + + fr.insee + kmw4revw + 1 + QuestionItem + + + fr.insee + kmx97ttc + 1 + QuestionItem + + + fr.insee + kmx97tz1 + 1 + QuestionItem + + + fr.insee + kmx93med + 1 + QuestionItem + + + fr.insee + knoqewds + 1 + QuestionItem + + + fr.insee + kp5n3jf8 + 1 + Variable + + + fr.insee + kp5skfkj + 1 + Variable + + + fr.insee + kqqit5hr + 1 + Variable + + + fr.insee + lerah1nk + 1 + Variable + + + fr.insee + kmx992cg + 1 + Variable + + + fr.insee + kx4xtdg6 + 1 + Variable + + + fr.insee + kx4y82og + 1 + Variable + + + fr.insee + knoq3j67 + 1 + Variable + + + + vtl + + fr.insee + kp5scxxo-IP-1 + 1 + + STOCA + + + + fr.insee + kp5scxxo-IP-2 + 1 + + persplus25TR + + + + fr.insee + kp5scxxo-IP-3 + 1 + + persplus25AGE + + + + fr.insee + kp5scxxo-IP-4 + 1 + + LIEN + + + + fr.insee + kp5scxxo-IP-5 + 1 + + DURLOG + + + + fr.insee + kp5scxxo-IP-6 + 1 + + LOGENQ + + + + fr.insee + kp5scxxo-IP-7 + 1 + + LOGAUT + + + + fr.insee + kp5scxxo-IP-8 + 1 + + STOCB1 + + + + fr.insee + kp5scxxo-GOP + 1 + + + + fr.insee + kp5n3jf8-GOP + 1 + OutParameter + + + fr.insee + kp5scxxo-IP-1 + 1 + InParameter + + + + + fr.insee + kp5skfkj-GOP + 1 + OutParameter + + + fr.insee + kp5scxxo-IP-2 + 1 + InParameter + + + + + fr.insee + kqqit5hr-GOP + 1 + OutParameter + + + fr.insee + kp5scxxo-IP-3 + 1 + InParameter + + + + + fr.insee + kmw4revw-QOP-kmw5mxph + 1 + OutParameter + + + fr.insee + kp5scxxo-IP-4 + 1 + InParameter + + + + + fr.insee + kmx97ttc-QOP-kmx93bw6 + 1 + OutParameter + + + fr.insee + kp5scxxo-IP-5 + 1 + InParameter + + + + + fr.insee + kmx97tz1-QOP-kmx95xeo + 1 + OutParameter + + + fr.insee + kp5scxxo-IP-6 + 1 + InParameter + + + + + fr.insee + kmx93med-QOP-kmx9mse6 + 1 + OutParameter + + + fr.insee + kp5scxxo-IP-7 + 1 + InParameter + + + + + fr.insee + knoqewds-QOP-knoq13l0 + 1 + OutParameter + + + fr.insee + kp5scxxo-IP-8 + 1 + InParameter + + + if ((kp5scxxo-IP-2="1" or kp5scxxo-IP-3="1") and (kp5scxxo-IP-1="2" and not(isnull(kp5scxxo-IP-1))) and (isnull(kp5scxxo-IP-8) or kp5scxxo-IP-8<>"1") and ((kp5scxxo-IP-4="3" or kp5scxxo-IP-4="5") and not(isnull(kp5scxxo-IP-4)) ) and (isnull(kp5scxxo-IP-6) or kp5scxxo-IP-6<>"5") and (isnull(kp5scxxo-IP-7) or kp5scxxo-IP-7<>"1") and (isnull(kp5scxxo-IP-5) or kp5scxxo-IP-5<>"3") ) then 1 else 0 + + + + fr.insee + kmnolkxb + 1 + Loop + + + + fr.insee + kp5skfkj-GI + 1 + + fr.insee + kmx6w6n5 + 1 + QuestionItem + + + fr.insee + kqi4mcwj + 1 + Variable + + + + vtl + + fr.insee + kp5skfkj-IP-1 + 1 + + TRAGE + + + + fr.insee + kp5skfkj-GOP + 1 + + + + fr.insee + kmx6w6n5-QOP-kmx7770w + 1 + OutParameter + + + fr.insee + kp5skfkj-IP-1 + 1 + InParameter + + + if (isnull(kp5skfkj-IP-1) or kp5skfkj-IP-1 = "1" or kp5skfkj-IP-1 = "2" or kp5skfkj-IP-1 = "4") then "0" else "1" + + + + fr.insee + kmnolkxb + 1 + Loop + + + + fr.insee + kp5y6ung-GI + 1 + + fr.insee + kmw4revw + 1 + QuestionItem + + + fr.insee + kmx97ttc + 1 + QuestionItem + + + fr.insee + kmx97tz1 + 1 + QuestionItem + + + fr.insee + kmx93med + 1 + QuestionItem + + + fr.insee + kmxfqrb1 + 1 + QuestionItem + + + fr.insee + knoqewds + 1 + QuestionItem + + + fr.insee + ko9w77fo + 1 + Variable + + + fr.insee + kp5n3jf8 + 1 + Variable + + + fr.insee + kpauiid9 + 1 + Variable + + + fr.insee + kq7uo7yd + 1 + Variable + + + fr.insee + lerah1nk + 1 + Variable + + + fr.insee + kmx992cg + 1 + Variable + + + fr.insee + kx4xtdg6 + 1 + Variable + + + fr.insee + kx4y82og + 1 + Variable + + + fr.insee + kmxflats + 1 + Variable + + + fr.insee + knoq3j67 + 1 + Variable + + + + vtl + + fr.insee + kp5y6ung-IP-1 + 1 + + persmaj + + + + fr.insee + kp5y6ung-IP-2 + 1 + + STOCA + + + + fr.insee + kp5y6ung-IP-3 + 1 + + PRENOMREF + + + + fr.insee + kp5y6ung-IP-4 + 1 + + PRENOM + + + + fr.insee + kp5y6ung-IP-5 + 1 + + LIEN + + + + fr.insee + kp5y6ung-IP-6 + 1 + + DURLOG + + + + fr.insee + kp5y6ung-IP-7 + 1 + + LOGENQ + + + + fr.insee + kp5y6ung-IP-8 + 1 + + LOGAUT + + + + fr.insee + kp5y6ung-IP-9 + 1 + + SITUA + + + + fr.insee + kp5y6ung-IP-10 + 1 + + STOCB1 + + + + fr.insee + kp5y6ung-GOP + 1 + + + + fr.insee + ko9w77fo-GOP + 1 + OutParameter + + + fr.insee + kp5y6ung-IP-1 + 1 + InParameter + + + + + fr.insee + kp5n3jf8-GOP + 1 + OutParameter + + + fr.insee + kp5y6ung-IP-2 + 1 + InParameter + + + + + fr.insee + kpauiid9-GOP + 1 + OutParameter + + + fr.insee + kp5y6ung-IP-3 + 1 + InParameter + + + + + fr.insee + kq7uo7yd-GOP + 1 + OutParameter + + + fr.insee + kp5y6ung-IP-4 + 1 + InParameter + + + + + fr.insee + kmw4revw-QOP-kmw5mxph + 1 + OutParameter + + + fr.insee + kp5y6ung-IP-5 + 1 + InParameter + + + + + fr.insee + kmx97ttc-QOP-kmx93bw6 + 1 + OutParameter + + + fr.insee + kp5y6ung-IP-6 + 1 + InParameter + + + + + fr.insee + kmx97tz1-QOP-kmx95xeo + 1 + OutParameter + + + fr.insee + kp5y6ung-IP-7 + 1 + InParameter + + + + + fr.insee + kmx93med-QOP-kmx9mse6 + 1 + OutParameter + + + fr.insee + kp5y6ung-IP-8 + 1 + InParameter + + + + + fr.insee + kmxfqrb1-QOP-kmxfw3tj + 1 + OutParameter + + + fr.insee + kp5y6ung-IP-9 + 1 + InParameter + + + + + fr.insee + knoqewds-QOP-knoq13l0 + 1 + OutParameter + + + fr.insee + kp5y6ung-IP-10 + 1 + InParameter + + + if (kp5y6ung-IP-4<>kp5y6ung-IP-3 and (cast(kp5y6ung-IP-1,integer)=1) and (not(isnull(kp5y6ung-IP-2)) and kp5y6ung-IP-2="2") and (kp5y6ung-IP-10<>"1" or isnull(kp5y6ung-IP-10)) and (nvl(kp5y6ung-IP-5,"")="" or (kp5y6ung-IP-5<>"1" and kp5y6ung-IP-5<>"3" and kp5y6ung-IP-5<>"5")) and (isnull(kp5y6ung-IP-9) or kp5y6ung-IP-9<>"5") and (isnull(kp5y6ung-IP-7) or kp5y6ung-IP-7<>"5") and (isnull(kp5y6ung-IP-8) or kp5y6ung-IP-8<>"1") and (isnull(kp5y6ung-IP-6) or kp5y6ung-IP-6<>"3")) then 1 else 0 + + + + fr.insee + kmnolkxb + 1 + Loop + + + + fr.insee + koead7in-GI + 1 + + fr.insee + jopgtrq1 + 1 + QuestionItem + + + fr.insee + joph55si + 1 + Variable + + + + vtl + + fr.insee + koead7in-IP-1 + 1 + + VVENDL + + + + fr.insee + koead7in-GOP + 1 + + + + fr.insee + jopgtrq1-QOP-joph3nia + 1 + OutParameter + + + fr.insee + koead7in-IP-1 + 1 + InParameter + + + if (isnull(koead7in-IP-1)) then "L'un de ces logements maintenant vendus" else ( if (koead7in-IP-1 = "1") then "Ce logement maintenant vendu" else "L'un de ces logements maintenant vendus") + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + koea9dru-GI + 1 + + fr.insee + jopgtrq1 + 1 + QuestionItem + + + fr.insee + joph55si + 1 + Variable + + + + vtl + + fr.insee + koea9dru-IP-1 + 1 + + VVENDL + + + + fr.insee + koea9dru-GOP + 1 + + + + fr.insee + jopgtrq1-QOP-joph3nia + 1 + OutParameter + + + fr.insee + koea9dru-IP-1 + 1 + InParameter + + + if (isnull(koea9dru-IP-1)) then "" else if (koea9dru-IP-1 ="2") then "Considérer le logement vendu pour le prix le plus élevé." else "" + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + koeauvkr-GI + 1 + + fr.insee + jopgtrq1 + 1 + QuestionItem + + + fr.insee + joph55si + 1 + Variable + + + + vtl + + fr.insee + koeauvkr-IP-1 + 1 + + VVENDL + + + + fr.insee + koeauvkr-GOP + 1 + + + + fr.insee + jopgtrq1-QOP-joph3nia + 1 + OutParameter + + + fr.insee + koeauvkr-IP-1 + 1 + InParameter + + + if (isnull(koeauvkr-IP-1)) then "logement vendu" else (if (koeauvkr-IP-1="2") then "total des logements vendus" else "logement vendu") + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + koeb5lcn-GI + 1 + + fr.insee + koeabibm + 1 + QuestionItem + + + fr.insee + koeaf3w8 + 1 + Variable + + + + vtl + + fr.insee + koeb5lcn-IP-1 + 1 + + VACHAL + + + + fr.insee + koeb5lcn-GOP + 1 + + + + fr.insee + koeabibm-QOP-koebfojq + 1 + OutParameter + + + fr.insee + koeb5lcn-IP-1 + 1 + InParameter + + + if (isnull(koeb5lcn-IP-1)) then "logement acheté" else (if (koeb5lcn-IP-1="2") then "total des logements achetés" else "logement acheté") + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kpauiid9-GI + 1 + + fr.insee + kmno1n7m + 1 + QuestionItem + + + fr.insee + kq96og1u + 1 + Variable + + + + vtl + + fr.insee + kpauiid9-IP-1 + 1 + + G_PRENOM + + + + fr.insee + kpauiid9-GOP + 1 + + + + fr.insee + kmno1n7m-QOP-kmno8tbs + 1 + OutParameter + + + fr.insee + kpauiid9-IP-1 + 1 + InParameter + + + first_value(kpauiid9-IP-1 over()) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kpbaad5q-GI + 1 + + fr.insee + joio5w41 + 1 + QuestionItem + + + fr.insee + kpb8odq8 + 1 + Variable + + + + vtl + + fr.insee + kpbaad5q-IP-1 + 1 + + SDN1 + + + + fr.insee + kpbaad5q-GOP + 1 + + + + fr.insee + joio5w41-QOP-kpb93tlo + 1 + OutParameter + + + fr.insee + kpbaad5q-IP-1 + 1 + InParameter + + + if (isnull(kpbaad5q-IP-1)) then "ces situations" else if (kpbaad5q-IP-1="1") then "cette situation" else "ces situations" + + + + fr.insee + kmnolkxb + 1 + Loop + + + + fr.insee + kpcqbqrk-GI + 1 + + fr.insee + kq98c6z3 + 1 + Variable + + + + vtl + + fr.insee + kpcqbqrk-IP-1 + 1 + + nbpersconj + + + + fr.insee + kpcqbqrk-GOP + 1 + + + + fr.insee + kq98c6z3-GOP + 1 + OutParameter + + + fr.insee + kpcqbqrk-IP-1 + 1 + InParameter + + + if (isnull(kpcqbqrk-IP-1)) then "0" else (if (cast(kpcqbqrk-IP-1,integer)>0) then "1" else "0") + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kpo86epq-GI + 1 + + fr.insee + kb9hlpdc + 1 + QuestionItem + + + fr.insee + krm7ey4p + 1 + Variable + + + + vtl + + fr.insee + kpo86epq-IP-1 + 1 + + CADR + + + + fr.insee + kpo86epq-GOP + 1 + + + + fr.insee + kb9hlpdc-QOP-kb9ht73s + 1 + OutParameter + + + fr.insee + kpo86epq-IP-1 + 1 + InParameter + + + if (isnull(kpo86epq-IP-1)) then "pour transmettre votre questionnaire à l'Insee." else ( if (kpo86epq-IP-1="3" or kpo86epq-IP-1="4") then "pour transmettre cette information à l'Insee afin que vous ne soyez pas relancés." else "pour transmettre votre questionnaire à l'Insee.") + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kpo88v55-GI + 1 + + fr.insee + kb9hlpdc + 1 + QuestionItem + + + fr.insee + krm7ey4p + 1 + Variable + + + + vtl + + fr.insee + kpo88v55-IP-1 + 1 + + CADR + + + + fr.insee + kpo88v55-GOP + 1 + + + + fr.insee + kb9hlpdc-QOP-kb9ht73s + 1 + OutParameter + + + fr.insee + kpo88v55-IP-1 + 1 + InParameter + + + if (isnull(kpo88v55-IP-1)) then "Vous êtes arrivés à la fin de ce questionnaire." else (if (kpo88v55-IP-1="3" or kpo88v55-IP-1="4") then "Nous vous remercions de votre participation, mais l’enquête se termine ici, puisque vous n’habitez pas dans le logement enquêté." else "Vous êtes arrivés à la fin de ce questionnaire. Nous vous remercions de votre participation.") + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kpo8i6mz-GI + 1 + + fr.insee + kb9hlpdc + 1 + QuestionItem + + + fr.insee + krm7ey4p + 1 + Variable + + + + vtl + + fr.insee + kpo8i6mz-IP-1 + 1 + + CADR + + + + fr.insee + kpo8i6mz-GOP + 1 + + + + fr.insee + kb9hlpdc-QOP-kb9ht73s + 1 + OutParameter + + + fr.insee + kpo8i6mz-IP-1 + 1 + InParameter + + + if (isnull(kpo8i6mz-IP-1)) then "Vous serez contactés à nouveau dans quelques semaines pour participer à l’enquête, consacrée aux coûts du logement." else if (kpo8i6mz-IP-1="3" or kpo8i6mz-IP-1="4") then "" else "Vous serez contactés à nouveau dans quelques semaines pour participer à la deuxième partie de l’enquête, consacrée aux coûts du logement." + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kpolrd46-GI + 1 + + fr.insee + kb9hlpdc + 1 + QuestionItem + + + fr.insee + krm7ey4p + 1 + Variable + + + + vtl + + fr.insee + kpolrd46-IP-1 + 1 + + CADR + + + + fr.insee + kpolrd46-GOP + 1 + + + + fr.insee + kb9hlpdc-QOP-kb9ht73s + 1 + OutParameter + + + fr.insee + kpolrd46-IP-1 + 1 + InParameter + + + if (isnull(kpolrd46-IP-1) or kpolrd46-IP-1= "1" or kpolrd46-IP-1= "2") then "0" else "1" + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kq7uo7yd-GI + 1 + + fr.insee + kmno1n7m + 1 + QuestionItem + + + fr.insee + krnngsmd + 1 + Variable + + + fr.insee + kq96og1u + 1 + Variable + + + + vtl + + fr.insee + kq7uo7yd-IP-1 + 1 + + PRENOMVIDE + + + + fr.insee + kq7uo7yd-IP-2 + 1 + + G_PRENOM + + + + fr.insee + kq7uo7yd-GOP + 1 + + + + fr.insee + krnngsmd-GOP + 1 + OutParameter + + + fr.insee + kq7uo7yd-IP-1 + 1 + InParameter + + + + + fr.insee + kmno1n7m-QOP-kmno8tbs + 1 + OutParameter + + + fr.insee + kq7uo7yd-IP-2 + 1 + InParameter + + + if (isnull(kq7uo7yd-IP-2)) then kq7uo7yd-IP-1 else kq7uo7yd-IP-2 + + + + fr.insee + kmnolkxb + 1 + Loop + + + + fr.insee + kq98eqln-GI + 1 + + fr.insee + ko9w77fo + 1 + Variable + + + + vtl + + fr.insee + kq98eqln-IP-1 + 1 + + persmaj + + + + fr.insee + kq98eqln-GOP + 1 + + + + fr.insee + ko9w77fo-GOP + 1 + OutParameter + + + fr.insee + kq98eqln-IP-1 + 1 + InParameter + + + sum(cast(kq98eqln-IP-1,integer)) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kq98c6z3-GI + 1 + + fr.insee + kp58o9de + 1 + Variable + + + + vtl + + fr.insee + kq98c6z3-IP-1 + 1 + + persconj + + + + fr.insee + kq98c6z3-GOP + 1 + + + + fr.insee + kp58o9de-GOP + 1 + OutParameter + + + fr.insee + kq98c6z3-IP-1 + 1 + InParameter + + + sum(cast(kq98c6z3-IP-1,integer)) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kq9a8xpe-GI + 1 + + fr.insee + kp5a9j4t + 1 + Variable + + + + vtl + + fr.insee + kq9a8xpe-IP-1 + 1 + + persparent + + + + fr.insee + kq9a8xpe-GOP + 1 + + + + fr.insee + kp5a9j4t-GOP + 1 + OutParameter + + + fr.insee + kq9a8xpe-IP-1 + 1 + InParameter + + + sum(cast(kq9a8xpe-IP-1,integer)) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kq9m5zgb-GI + 1 + + fr.insee + kbc1b4k2 + 1 + QuestionItem + + + fr.insee + km0sy84b + 1 + Variable + + + + vtl + + fr.insee + kq9m5zgb-IP-1 + 1 + + NBHAB + + + + fr.insee + kq9m5zgb-GOP + 1 + + + + fr.insee + kbc1b4k2-QOP-kbc1oors + 1 + OutParameter + + + fr.insee + kq9m5zgb-IP-1 + 1 + InParameter + + + if (isnull(kq9m5zgb-IP-1) or (cast(kq9m5zgb-IP-1,integer)<2)) then "Nous allons vous interroger sur votre état civil, votre situation familiale et professionnelle avant de passer à la description de votre logement." else "En commençant par vous, indiquez les prénoms des habitants du logement." + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kq9lw5x7-GI + 1 + + fr.insee + kbc1b4k2 + 1 + QuestionItem + + + fr.insee + km0sy84b + 1 + Variable + + + + vtl + + fr.insee + kq9lw5x7-IP-1 + 1 + + NBHAB + + + + fr.insee + kq9lw5x7-GOP + 1 + + + + fr.insee + kbc1b4k2-QOP-kbc1oors + 1 + OutParameter + + + fr.insee + kq9lw5x7-IP-1 + 1 + InParameter + + + if (isnull(kq9lw5x7-IP-1) or (cast(kq9lw5x7-IP-1,integer)<2)) then "" else "Si des personnes portent le même prénom, ajoutez un chiffre pour les distinguer." + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kq9wr9le-GI + 1 + + fr.insee + kp5scxxo + 1 + Variable + + + + vtl + + fr.insee + kq9wr9le-IP-1 + 1 + + HebEnfant + + + + fr.insee + kq9wr9le-GOP + 1 + + + + fr.insee + kp5scxxo-GOP + 1 + OutParameter + + + fr.insee + kq9wr9le-IP-1 + 1 + InParameter + + + sum(cast(kq9wr9le-IP-1,integer)) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kq9x0bof-GI + 1 + + fr.insee + kp5y6ung + 1 + Variable + + + + vtl + + fr.insee + kq9x0bof-IP-1 + 1 + + HEB + + + + fr.insee + kq9x0bof-GOP + 1 + + + + fr.insee + kp5y6ung-GOP + 1 + OutParameter + + + fr.insee + kq9x0bof-IP-1 + 1 + InParameter + + + sum(cast(kq9x0bof-IP-1,integer)) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kq9z7frj-GI + 1 + + fr.insee + kmoouamz + 1 + QuestionItem + + + fr.insee + kmw4revw + 1 + QuestionItem + + + fr.insee + kmxfqrb1 + 1 + QuestionItem + + + fr.insee + kmoofc72 + 1 + Variable + + + fr.insee + kpauiid9 + 1 + Variable + + + fr.insee + kq7uo7yd + 1 + Variable + + + fr.insee + kwf0tev6 + 1 + Variable + + + fr.insee + lerah1nk + 1 + Variable + + + fr.insee + kmxflats + 1 + Variable + + + + vtl + + fr.insee + kq9z7frj-IP-1 + 1 + + AGE + + + + fr.insee + kq9z7frj-IP-2 + 1 + + PRENOMREF + + + + fr.insee + kq9z7frj-IP-3 + 1 + + PRENOM + + + + fr.insee + kq9z7frj-IP-4 + 1 + + DATENAIS + + + + fr.insee + kq9z7frj-IP-5 + 1 + + LIEN + + + + fr.insee + kq9z7frj-IP-6 + 1 + + SITUA + + + + fr.insee + kq9z7frj-GOP + 1 + + + + fr.insee + kmoofc72-GOP + 1 + OutParameter + + + fr.insee + kq9z7frj-IP-1 + 1 + InParameter + + + + + fr.insee + kpauiid9-GOP + 1 + OutParameter + + + fr.insee + kq9z7frj-IP-2 + 1 + InParameter + + + + + fr.insee + kq7uo7yd-GOP + 1 + OutParameter + + + fr.insee + kq9z7frj-IP-3 + 1 + InParameter + + + + + fr.insee + kmoouamz-QOP-kmoow49z + 1 + OutParameter + + + fr.insee + kq9z7frj-IP-4 + 1 + InParameter + + + + + fr.insee + kmw4revw-QOP-kmw5mxph + 1 + OutParameter + + + fr.insee + kq9z7frj-IP-5 + 1 + InParameter + + + + + fr.insee + kmxfqrb1-QOP-kmxfw3tj + 1 + OutParameter + + + fr.insee + kq9z7frj-IP-6 + 1 + InParameter + + + if (isnull(kq9z7frj-IP-4)) then 0 else (if (not(isnull(kq9z7frj-IP-3)) and kq9z7frj-IP-3="PRÉNOM") then 0 else (if (not(isnull(kq9z7frj-IP-3)) and kq9z7frj-IP-3=kq9z7frj-IP-2 and ( isnull(kq9z7frj-IP-6) or ((kq9z7frj-IP-6<>"3") and (kq9z7frj-IP-6<>"6")) ) and (not(isnull(kq9z7frj-IP-4)) and cast(kq9z7frj-IP-1,integer)>60 ) ) then 1 else (if (kq9z7frj-IP-5="1" and not(isnull(kq9z7frj-IP-5)) and ( isnull(kq9z7frj-IP-6) or ((kq9z7frj-IP-6<>"3") and (kq9z7frj-IP-6<>"6")) ) and (not(isnull(kq9z7frj-IP-4)) and cast(kq9z7frj-IP-1,integer)>60 ) ) then 1 else 0))) + + + + fr.insee + kmnolkxb + 1 + Loop + + + + fr.insee + kq9z3mja-GI + 1 + + fr.insee + kq9z7frj + 1 + Variable + + + + vtl + + fr.insee + kq9z3mja-IP-1 + 1 + + persXRP + + + + fr.insee + kq9z3mja-GOP + 1 + + + + fr.insee + kq9z7frj-GOP + 1 + OutParameter + + + fr.insee + kq9z3mja-IP-1 + 1 + InParameter + + + sum(cast(kq9z3mja-IP-1,integer)) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kq9zfu8d-GI + 1 + + fr.insee + kq9z3mja + 1 + Variable + + + + vtl + + fr.insee + kq9zfu8d-IP-1 + 1 + + nbpersXRP + + + + fr.insee + kq9zfu8d-GOP + 1 + + + + fr.insee + kq9z3mja-GOP + 1 + OutParameter + + + fr.insee + kq9zfu8d-IP-1 + 1 + InParameter + + + if (isnull(kq9zfu8d-IP-1)) then "0" else (if (cast(kq9zfu8d-IP-1,integer)>=1) then "1" else "0") + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kqgra7ib-GI + 1 + + fr.insee + kmoouamz + 1 + QuestionItem + + + fr.insee + kbmb6u1h + 1 + Variable + + + fr.insee + kybu3ze7 + 1 + Variable + + + fr.insee + kwf0tev6 + 1 + Variable + + + + vtl + + fr.insee + kqgra7ib-IP-1 + 1 + + MOISENQ + + + + fr.insee + kqgra7ib-IP-2 + 1 + + JOURENQ + + + + fr.insee + kqgra7ib-IP-3 + 1 + + DATENAIS + + + + fr.insee + kqgra7ib-GOP + 1 + + + + fr.insee + kbmb6u1h-GOP + 1 + OutParameter + + + fr.insee + kqgra7ib-IP-1 + 1 + InParameter + + + + + fr.insee + kybu3ze7-GOP + 1 + OutParameter + + + fr.insee + kqgra7ib-IP-2 + 1 + InParameter + + + + + fr.insee + kmoouamz-QOP-kmoow49z + 1 + OutParameter + + + fr.insee + kqgra7ib-IP-3 + 1 + InParameter + + + (cast((kqgra7ib-IP-1 || kqgra7ib-IP-2),integer) < cast(substr(cast(kqgra7ib-IP-3,string),6,2) || substr(cast(kqgra7ib-IP-3,string),9,2),integer)) + + + + fr.insee + kmnolkxb + 1 + Loop + + + + fr.insee + kqgr5vey-GI + 1 + + fr.insee + kmoouamz + 1 + QuestionItem + + + fr.insee + kbmb2qvv + 1 + Variable + + + fr.insee + kwf0tev6 + 1 + Variable + + + + vtl + + fr.insee + kqgr5vey-IP-1 + 1 + + ANNEENQ + + + + fr.insee + kqgr5vey-IP-2 + 1 + + DATENAIS + + + + fr.insee + kqgr5vey-GOP + 1 + + + + fr.insee + kbmb2qvv-GOP + 1 + OutParameter + + + fr.insee + kqgr5vey-IP-1 + 1 + InParameter + + + + + fr.insee + kmoouamz-QOP-kmoow49z + 1 + OutParameter + + + fr.insee + kqgr5vey-IP-2 + 1 + InParameter + + + (cast(kqgr5vey-IP-1,integer) - cast(substr(cast(kqgr5vey-IP-2,string),1,4),integer)) + + + + fr.insee + kmnolkxb + 1 + Loop + + + + fr.insee + kqi7gwzb-GI + 1 + + fr.insee + kmxfqrb1 + 1 + QuestionItem + + + fr.insee + kmxg8ci7 + 1 + QuestionItem + + + fr.insee + kmxflats + 1 + Variable + + + fr.insee + kmxftept + 1 + Variable + + + + vtl + + fr.insee + kqi7gwzb-IP-1 + 1 + + SITUA + + + + fr.insee + kqi7gwzb-IP-2 + 1 + + TRAVAIL + + + + fr.insee + kqi7gwzb-GOP + 1 + + + + fr.insee + kmxfqrb1-QOP-kmxfw3tj + 1 + OutParameter + + + fr.insee + kqi7gwzb-IP-1 + 1 + InParameter + + + + + fr.insee + kmxg8ci7-QOP-kmxg0ml3 + 1 + OutParameter + + + fr.insee + kqi7gwzb-IP-2 + 1 + InParameter + + + if (isnull(kqi7gwzb-IP-1)) then "0" else (if (kqi7gwzb-IP-1 ="1") then "1" else (if (isnull(kqi7gwzb-IP-2)) then "0" else (if (kqi7gwzb-IP-2 = "1") then "1" else "0"))) + + + + fr.insee + kmnolkxb + 1 + Loop + + + + fr.insee + kqqit5hr-GI + 1 + + fr.insee + kmoouamz + 1 + QuestionItem + + + fr.insee + kmoofc72 + 1 + Variable + + + fr.insee + kwf0tev6 + 1 + Variable + + + + vtl + + fr.insee + kqqit5hr-IP-1 + 1 + + AGE + + + + fr.insee + kqqit5hr-IP-2 + 1 + + DATENAIS + + + + fr.insee + kqqit5hr-GOP + 1 + + + + fr.insee + kmoofc72-GOP + 1 + OutParameter + + + fr.insee + kqqit5hr-IP-1 + 1 + InParameter + + + + + fr.insee + kmoouamz-QOP-kmoow49z + 1 + OutParameter + + + fr.insee + kqqit5hr-IP-2 + 1 + InParameter + + + if (nvl(kqqit5hr-IP-2,"")="" or cast(kqqit5hr-IP-1,integer) < 25) then "0" else "1" + + + + fr.insee + kmnolkxb + 1 + Loop + + + + fr.insee + kr0o550i-GI + 1 + + fr.insee + kcom3tr9 + 1 + Variable + + + fr.insee + kuh4aklr + 1 + Variable + + + fr.insee + kr1tph4j + 1 + Variable + + + + vtl + + fr.insee + kr0o550i-IP-1 + 1 + + NOMOCC1 + + + + fr.insee + kr0o550i-IP-2 + 1 + + NOMOCC2 + + + + fr.insee + kr0o550i-IP-3 + 1 + + NOMVOUS_D2 + + + + fr.insee + kr0o550i-GOP + 1 + + + + fr.insee + kcom3tr9-GOP + 1 + OutParameter + + + fr.insee + kr0o550i-IP-1 + 1 + InParameter + + + + + fr.insee + kuh4aklr-GOP + 1 + OutParameter + + + fr.insee + kr0o550i-IP-2 + 1 + InParameter + + + + + fr.insee + NOMVOUS_D2 + 1 + InParameter + + + fr.insee + kr0o550i-IP-3 + 1 + InParameter + + + if (isnull(kr0o550i-IP-3) or kr0o550i-IP-3="") then kr0o550i-IP-1 else kr0o550i-IP-1 || " et " || kr0o550i-IP-2 + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + krd6p7hy-GI + 1 + + fr.insee + kmx6w6n5 + 1 + QuestionItem + + + fr.insee + kqi4mcwj + 1 + Variable + + + + vtl + + fr.insee + krd6p7hy-IP-1 + 1 + + TRAGE + + + + fr.insee + krd6p7hy-GOP + 1 + + + + fr.insee + kmx6w6n5-QOP-kmx7770w + 1 + OutParameter + + + fr.insee + krd6p7hy-IP-1 + 1 + InParameter + + + if (isnull(krd6p7hy-IP-1) or krd6p7hy-IP-1 = "1" or krd6p7hy-IP-1 = "4") then "0" else "1" + + + + fr.insee + kmnolkxb + 1 + Loop + + + + fr.insee + krd6rkdl-GI + 1 + + fr.insee + kmoouamz + 1 + QuestionItem + + + fr.insee + kmoofc72 + 1 + Variable + + + fr.insee + kwf0tev6 + 1 + Variable + + + + vtl + + fr.insee + krd6rkdl-IP-1 + 1 + + AGE + + + + fr.insee + krd6rkdl-IP-2 + 1 + + DATENAIS + + + + fr.insee + krd6rkdl-GOP + 1 + + + + fr.insee + kmoofc72-GOP + 1 + OutParameter + + + fr.insee + krd6rkdl-IP-1 + 1 + InParameter + + + + + fr.insee + kmoouamz-QOP-kmoow49z + 1 + OutParameter + + + fr.insee + krd6rkdl-IP-2 + 1 + InParameter + + + if (nvl(krd6rkdl-IP-2,"")="" or (cast(krd6rkdl-IP-1,integer) < 18)) then "0" else "1" + + + + fr.insee + kmnolkxb + 1 + Loop + + + + fr.insee + krdj37bc-GI + 1 + + fr.insee + kue3s3bo + 1 + Variable + + + + vtl + + fr.insee + krdj37bc-IP-1 + 1 + + perstelet + + + + fr.insee + krdj37bc-GOP + 1 + + + + fr.insee + kue3s3bo-GOP + 1 + OutParameter + + + fr.insee + krdj37bc-IP-1 + 1 + InParameter + + + sum(cast(krdj37bc-IP-1,integer)) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + krnngsmd-GI + 1 + + + vtl + + fr.insee + krnngsmd-GOP + 1 + + "PRÉNOM" + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + krux4bjr-GI + 1 + + fr.insee + kbmb2qvv + 1 + Variable + + + + vtl + + fr.insee + krux4bjr-IP-1 + 1 + + ANNEENQ + + + + fr.insee + krux4bjr-GOP + 1 + + + + fr.insee + kbmb2qvv-GOP + 1 + OutParameter + + + fr.insee + krux4bjr-IP-1 + 1 + InParameter + + + (cast(krux4bjr-IP-1,integer)) - 1 + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kruxbmdg-GI + 1 + + fr.insee + kbmb2qvv + 1 + Variable + + + + vtl + + fr.insee + kruxbmdg-IP-1 + 1 + + ANNEENQ + + + + fr.insee + kruxbmdg-GOP + 1 + + + + fr.insee + kbmb2qvv-GOP + 1 + OutParameter + + + fr.insee + kruxbmdg-IP-1 + 1 + InParameter + + + (cast(kruxbmdg-IP-1,integer)) - 8 + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kruxdj1k-GI + 1 + + fr.insee + kbmb2qvv + 1 + Variable + + + + vtl + + fr.insee + kruxdj1k-IP-1 + 1 + + ANNEENQ + + + + fr.insee + kruxdj1k-GOP + 1 + + + + fr.insee + kbmb2qvv-GOP + 1 + OutParameter + + + fr.insee + kruxdj1k-IP-1 + 1 + InParameter + + + (cast(kruxdj1k-IP-1,integer)) - 12 + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kryp58r5-GI + 1 + + fr.insee + kmoo2fiy + 1 + QuestionItem + + + fr.insee + ks4f5ex4 + 1 + Variable + + + + vtl + + fr.insee + kryp58r5-IP-1 + 1 + + SEXE + + + + fr.insee + kryp58r5-GOP + 1 + + + + fr.insee + kmoo2fiy-QOP-kmoon375 + 1 + OutParameter + + + fr.insee + kryp58r5-IP-1 + 1 + InParameter + + + first_value(kryp58r5-IP-1 over()) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + ksew6khf-GI + 1 + + fr.insee + kmoouamz + 1 + QuestionItem + + + fr.insee + kmoofc72 + 1 + Variable + + + fr.insee + kwf0tev6 + 1 + Variable + + + + vtl + + fr.insee + ksew6khf-IP-1 + 1 + + AGE + + + + fr.insee + ksew6khf-IP-2 + 1 + + DATENAIS + + + + fr.insee + ksew6khf-GOP + 1 + + + + fr.insee + kmoofc72-GOP + 1 + OutParameter + + + fr.insee + ksew6khf-IP-1 + 1 + InParameter + + + + + fr.insee + kmoouamz-QOP-kmoow49z + 1 + OutParameter + + + fr.insee + ksew6khf-IP-2 + 1 + InParameter + + + if (isnull(ksew6khf-IP-2) or (cast(ksew6khf-IP-1,integer) < 15)) then "0" else "1" + + + + fr.insee + kmnolkxb + 1 + Loop + + + + fr.insee + ksyg41dk-GI + 1 + + fr.insee + klutbpfw + 1 + Variable + + + + vtl + + fr.insee + ksyg41dk-IP-1 + 1 + + STOC + + + + fr.insee + ksyg41dk-GOP + 1 + + + + fr.insee + klutbpfw-GOP + 1 + OutParameter + + + fr.insee + ksyg41dk-IP-1 + 1 + InParameter + + + if (isnull(ksyg41dk-IP-1)) then "0" else ksyg41dk-IP-1 + + + + fr.insee + kmnolkxb + 1 + Loop + + + + fr.insee + kudv8i2p-GI + 1 + + fr.insee + joinz4wo + 1 + QuestionGrid + + + fr.insee + ljvx2z41 + 1 + Variable + + + fr.insee + ljvxagy6 + 1 + Variable + + + fr.insee + ljvx7dgb + 1 + Variable + + + fr.insee + ljvx2686 + 1 + Variable + + + fr.insee + ljvx4oqr + 1 + Variable + + + fr.insee + ljvwqn5l + 1 + Variable + + + fr.insee + ljvwqe7r + 1 + Variable + + + + vtl + + fr.insee + kudv8i2p-IP-1 + 1 + + SDL11 + + + + fr.insee + kudv8i2p-IP-2 + 1 + + SDL12 + + + + fr.insee + kudv8i2p-IP-3 + 1 + + SDL13 + + + + fr.insee + kudv8i2p-IP-4 + 1 + + SDL14 + + + + fr.insee + kudv8i2p-IP-5 + 1 + + SDL15 + + + + fr.insee + kudv8i2p-IP-6 + 1 + + SDL16 + + + + fr.insee + kudv8i2p-IP-7 + 1 + + SDL17 + + + + fr.insee + kudv8i2p-GOP + 1 + + + + fr.insee + joinz4wo-QOP-ljvxgvru + 1 + OutParameter + + + fr.insee + kudv8i2p-IP-1 + 1 + InParameter + + + + + fr.insee + joinz4wo-QOP-ljvxk44t + 1 + OutParameter + + + fr.insee + kudv8i2p-IP-2 + 1 + InParameter + + + + + fr.insee + joinz4wo-QOP-ljvxgmyh + 1 + OutParameter + + + fr.insee + kudv8i2p-IP-3 + 1 + InParameter + + + + + fr.insee + joinz4wo-QOP-ljvxbn8w + 1 + OutParameter + + + fr.insee + kudv8i2p-IP-4 + 1 + InParameter + + + + + fr.insee + joinz4wo-QOP-ljvxplyt + 1 + OutParameter + + + fr.insee + kudv8i2p-IP-5 + 1 + InParameter + + + + + fr.insee + joinz4wo-QOP-ljvxncns + 1 + OutParameter + + + fr.insee + kudv8i2p-IP-6 + 1 + InParameter + + + + + fr.insee + joinz4wo-QOP-ljvxcc4t + 1 + OutParameter + + + fr.insee + kudv8i2p-IP-7 + 1 + InParameter + + + if ((nvl(kudv8i2p-IP-1,false)=false and nvl(kudv8i2p-IP-2,false)=false and nvl(kudv8i2p-IP-3,false)=false and nvl(kudv8i2p-IP-4,false)=false and nvl(kudv8i2p-IP-5,false)=false and nvl(kudv8i2p-IP-6,false)=false) or (nvl(kudv8i2p-IP-2,false)=false and nvl(kudv8i2p-IP-3,false)=false and nvl(kudv8i2p-IP-4,false)=false and nvl(kudv8i2p-IP-5,false)=false and nvl(kudv8i2p-IP-6,false)=false and nvl(kudv8i2p-IP-7,false)=false) or (nvl(kudv8i2p-IP-1,false)=false and nvl(kudv8i2p-IP-3,false)=false and nvl(kudv8i2p-IP-4,false)=false and nvl(kudv8i2p-IP-5,false)=false and nvl(kudv8i2p-IP-6,false)=false and nvl(kudv8i2p-IP-7,false)=false) or (nvl(kudv8i2p-IP-1,false)=false and nvl(kudv8i2p-IP-2,false)=false and nvl(kudv8i2p-IP-4,false)=false and nvl(kudv8i2p-IP-5,false)=false and nvl(kudv8i2p-IP-6,false)=false and nvl(kudv8i2p-IP-7,false)=false) or (nvl(kudv8i2p-IP-1,false)=false and nvl(kudv8i2p-IP-2,false)=false and nvl(kudv8i2p-IP-3,false)=false and nvl(kudv8i2p-IP-5,false)=false and nvl(kudv8i2p-IP-6,false)=false and nvl(kudv8i2p-IP-7,false)=false) or (nvl(kudv8i2p-IP-1,false)=false and nvl(kudv8i2p-IP-2,false)=false and nvl(kudv8i2p-IP-3,false)=false and nvl(kudv8i2p-IP-4,false)=false and nvl(kudv8i2p-IP-6,false)=false and nvl(kudv8i2p-IP-7,false)=false) or (nvl(kudv8i2p-IP-1,false)=false and nvl(kudv8i2p-IP-2,false)=false and nvl(kudv8i2p-IP-3,false)=false and nvl(kudv8i2p-IP-4,false)=false and nvl(kudv8i2p-IP-5,false)=false and nvl(kudv8i2p-IP-7,false)=false)) then "0" else "1" + + + + fr.insee + kmnolkxb + 1 + Loop + + + + fr.insee + kue3s3bo-GI + 1 + + fr.insee + kp4dw3br + 1 + QuestionItem + + + fr.insee + kvjb5etp + 1 + Variable + + + + vtl + + fr.insee + kue3s3bo-IP-1 + 1 + + TELET + + + + fr.insee + kue3s3bo-GOP + 1 + + + + fr.insee + kp4dw3br-QOP-kp4dj5dc + 1 + OutParameter + + + fr.insee + kue3s3bo-IP-1 + 1 + InParameter + + + if (isnull(kue3s3bo-IP-1) or kue3s3bo-IP-1="2") then 0 else 1 + + + + fr.insee + kmnolkxb + 1 + Loop + + + + fr.insee + kue5ccwr-GI + 1 + + fr.insee + kpcqbqrk + 1 + Variable + + + fr.insee + kq98eqln + 1 + Variable + + + + vtl + + fr.insee + kue5ccwr-IP-1 + 1 + + INDconj + + + + fr.insee + kue5ccwr-IP-2 + 1 + + nbpersmaj + + + + fr.insee + kue5ccwr-GOP + 1 + + + + fr.insee + kpcqbqrk-GOP + 1 + OutParameter + + + fr.insee + kue5ccwr-IP-1 + 1 + InParameter + + + + + fr.insee + kq98eqln-GOP + 1 + OutParameter + + + fr.insee + kue5ccwr-IP-2 + 1 + InParameter + + + if (isnull(kue5ccwr-IP-1) or kue5ccwr-IP-1="0") then ( if (cast(kue5ccwr-IP-2,integer) > 1) then "1" else "0" ) else ( if (cast(kue5ccwr-IP-2,integer) > 2) then "1" else "0" ) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kuh4aklr-GI + 1 + + fr.insee + kr1twdtu + 1 + Variable + + + fr.insee + kr1u63qm + 1 + Variable + + + fr.insee + kr1tph4j + 1 + Variable + + + + vtl + + fr.insee + kuh4aklr-IP-1 + 1 + + CIV_D2 + + + + fr.insee + kuh4aklr-IP-2 + 1 + + PREN_D2 + + + + fr.insee + kuh4aklr-IP-3 + 1 + + NOMVOUS_D2 + + + + fr.insee + kuh4aklr-GOP + 1 + + + + fr.insee + CIV_D2 + 1 + InParameter + + + fr.insee + kuh4aklr-IP-1 + 1 + InParameter + + + + + fr.insee + PREN_D2 + 1 + InParameter + + + fr.insee + kuh4aklr-IP-2 + 1 + InParameter + + + + + fr.insee + NOMVOUS_D2 + 1 + InParameter + + + fr.insee + kuh4aklr-IP-3 + 1 + InParameter + + + (if (isnull(kuh4aklr-IP-1)) then "" else kuh4aklr-IP-1 || " ") || ( if (isnull(kuh4aklr-IP-2)) then "" else kuh4aklr-IP-2 || " ") || (if (isnull(kuh4aklr-IP-3)) then "" else kuh4aklr-IP-3) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kvqulqx8-GI + 1 + + fr.insee + kmxfqrb1 + 1 + QuestionItem + + + fr.insee + kmxg8ci7 + 1 + QuestionItem + + + fr.insee + kpauiid9 + 1 + Variable + + + fr.insee + kq7uo7yd + 1 + Variable + + + fr.insee + kmxflats + 1 + Variable + + + fr.insee + kmxftept + 1 + Variable + + + + vtl + + fr.insee + kvqulqx8-IP-1 + 1 + + PRENOMREF + + + + fr.insee + kvqulqx8-IP-2 + 1 + + PRENOM + + + + fr.insee + kvqulqx8-IP-3 + 1 + + SITUA + + + + fr.insee + kvqulqx8-IP-4 + 1 + + TRAVAIL + + + + fr.insee + kvqulqx8-GOP + 1 + + + + fr.insee + kpauiid9-GOP + 1 + OutParameter + + + fr.insee + kvqulqx8-IP-1 + 1 + InParameter + + + + + fr.insee + kq7uo7yd-GOP + 1 + OutParameter + + + fr.insee + kvqulqx8-IP-2 + 1 + InParameter + + + + + fr.insee + kmxfqrb1-QOP-kmxfw3tj + 1 + OutParameter + + + fr.insee + kvqulqx8-IP-3 + 1 + InParameter + + + + + fr.insee + kmxg8ci7-QOP-kmxg0ml3 + 1 + OutParameter + + + fr.insee + kvqulqx8-IP-4 + 1 + InParameter + + + if ((kvqulqx8-IP-2=kvqulqx8-IP-1) and ((not(isnull(kvqulqx8-IP-3)) and kvqulqx8-IP-3="1") or (not(isnull(kvqulqx8-IP-4)) and kvqulqx8-IP-4="1"))) then 1 else 0 + + + + fr.insee + kmnolkxb + 1 + Loop + + + + fr.insee + kvqvwwch-GI + 1 + + fr.insee + kmw4revw + 1 + QuestionItem + + + fr.insee + kmxfqrb1 + 1 + QuestionItem + + + fr.insee + kmxg8ci7 + 1 + QuestionItem + + + fr.insee + lerah1nk + 1 + Variable + + + fr.insee + kmxflats + 1 + Variable + + + fr.insee + kmxftept + 1 + Variable + + + + vtl + + fr.insee + kvqvwwch-IP-1 + 1 + + LIEN + + + + fr.insee + kvqvwwch-IP-2 + 1 + + SITUA + + + + fr.insee + kvqvwwch-IP-3 + 1 + + TRAVAIL + + + + fr.insee + kvqvwwch-GOP + 1 + + + + fr.insee + kmw4revw-QOP-kmw5mxph + 1 + OutParameter + + + fr.insee + kvqvwwch-IP-1 + 1 + InParameter + + + + + fr.insee + kmxfqrb1-QOP-kmxfw3tj + 1 + OutParameter + + + fr.insee + kvqvwwch-IP-2 + 1 + InParameter + + + + + fr.insee + kmxg8ci7-QOP-kmxg0ml3 + 1 + OutParameter + + + fr.insee + kvqvwwch-IP-3 + 1 + InParameter + + + if (not(isnull(kvqvwwch-IP-1)) and kvqvwwch-IP-1="1" and ((not(isnull(kvqvwwch-IP-2)) and kvqvwwch-IP-2="1") or (not(isnull(kvqvwwch-IP-3)) and kvqvwwch-IP-3="1"))) then 1 else 0 + + + + fr.insee + kmnolkxb + 1 + Loop + + + + fr.insee + kvqvxps1-GI + 1 + + fr.insee + kvqvwwch + 1 + Variable + + + + vtl + + fr.insee + kvqvxps1-IP-1 + 1 + + persACTIF_REFCJ + + + + fr.insee + kvqvxps1-GOP + 1 + + + + fr.insee + kvqvwwch-GOP + 1 + OutParameter + + + fr.insee + kvqvxps1-IP-1 + 1 + InParameter + + + sum(cast(kvqvxps1-IP-1,integer)) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kvqwkeg7-GI + 1 + + fr.insee + kvqvxps1 + 1 + Variable + + + + vtl + + fr.insee + kvqwkeg7-IP-1 + 1 + + nbACTIF_REFCJ + + + + fr.insee + kvqwkeg7-GOP + 1 + + + + fr.insee + kvqvxps1-GOP + 1 + OutParameter + + + fr.insee + kvqwkeg7-IP-1 + 1 + InParameter + + + if (not(isnull(kvqwkeg7-IP-1)) and cast(kvqwkeg7-IP-1,integer)>0) then "1" else "0" + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kvqxk7tg-GI + 1 + + fr.insee + kvqulqx8 + 1 + Variable + + + + vtl + + fr.insee + kvqxk7tg-IP-1 + 1 + + persACTIF_REF + + + + fr.insee + kvqxk7tg-GOP + 1 + + + + fr.insee + kvqulqx8-GOP + 1 + OutParameter + + + fr.insee + kvqxk7tg-IP-1 + 1 + InParameter + + + sum(cast(kvqxk7tg-IP-1,integer)) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kvqxfkc8-GI + 1 + + fr.insee + kvqxk7tg + 1 + Variable + + + + vtl + + fr.insee + kvqxfkc8-IP-1 + 1 + + nbACTIF_REF + + + + fr.insee + kvqxfkc8-GOP + 1 + + + + fr.insee + kvqxk7tg-GOP + 1 + OutParameter + + + fr.insee + kvqxfkc8-IP-1 + 1 + InParameter + + + if (not(isnull(kvqxfkc8-IP-1)) and cast(kvqxfkc8-IP-1,integer)>0) then "1" else "0" + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kw0tn1tp-GI + 1 + + fr.insee + kbc1b4k2 + 1 + QuestionItem + + + fr.insee + kq98eqln + 1 + Variable + + + fr.insee + km0sy84b + 1 + Variable + + + + vtl + + fr.insee + kw0tn1tp-IP-1 + 1 + + nbpersmaj + + + + fr.insee + kw0tn1tp-IP-2 + 1 + + NBHAB + + + + fr.insee + kw0tn1tp-GOP + 1 + + + + fr.insee + kq98eqln-GOP + 1 + OutParameter + + + fr.insee + kw0tn1tp-IP-1 + 1 + InParameter + + + + + fr.insee + kbc1b4k2-QOP-kbc1oors + 1 + OutParameter + + + fr.insee + kw0tn1tp-IP-2 + 1 + InParameter + + + if (isnull(kw0tn1tp-IP-2)) then "le statut d'occupation de votre ménage" else (if (cast(kw0tn1tp-IP-2,integer)=1) then "votre statut d'occupation" else (if (not(isnull(kw0tn1tp-IP-1)) and cast(kw0tn1tp-IP-1,integer)>1) then "le statut d'occupation de votre ménage, les statuts d'occupation individuels des occupants du logement" else "le statut d'occupation de votre ménage" ) ) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kw3s7rxu-GI + 1 + + fr.insee + kq9wr9le + 1 + Variable + + + + vtl + + fr.insee + kw3s7rxu-IP-1 + 1 + + nb_HebEnfant + + + + fr.insee + kw3s7rxu-GOP + 1 + + + + fr.insee + kq9wr9le-GOP + 1 + OutParameter + + + fr.insee + kw3s7rxu-IP-1 + 1 + InParameter + + + if (not(isnull(kw3s7rxu-IP-1)) and cast(kw3s7rxu-IP-1,integer)>0 ) then "1" else "0" + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kw3shdld-GI + 1 + + fr.insee + kq9x0bof + 1 + Variable + + + + vtl + + fr.insee + kw3shdld-IP-1 + 1 + + nb_HEB + + + + fr.insee + kw3shdld-GOP + 1 + + + + fr.insee + kq9x0bof-GOP + 1 + OutParameter + + + fr.insee + kw3shdld-IP-1 + 1 + InParameter + + + if (not(isnull(kw3shdld-IP-1)) and cast(kw3shdld-IP-1,integer)>0 ) then "1" else "0" + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kwnvdyzo-GI + 1 + + fr.insee + kmoo2fiy + 1 + QuestionItem + + + fr.insee + kmw4revw + 1 + QuestionItem + + + fr.insee + ks4f5ex4 + 1 + Variable + + + fr.insee + lerah1nk + 1 + Variable + + + + vtl + + fr.insee + kwnvdyzo-IP-1 + 1 + + SEXE + + + + fr.insee + kwnvdyzo-IP-2 + 1 + + LIEN + + + + fr.insee + kwnvdyzo-GOP + 1 + + + + fr.insee + kmoo2fiy-QOP-kmoon375 + 1 + OutParameter + + + fr.insee + kwnvdyzo-IP-1 + 1 + InParameter + + + + + fr.insee + kmw4revw-QOP-kmw5mxph + 1 + OutParameter + + + fr.insee + kwnvdyzo-IP-2 + 1 + InParameter + + + if (nvl(kwnvdyzo-IP-2,"")="1") then (if (nvl(kwnvdyzo-IP-1,"")="1") then 1 else 0) else 0 + + + + fr.insee + kmnolkxb + 1 + Loop + + + + fr.insee + kwnviscn-GI + 1 + + fr.insee + kmoo2fiy + 1 + QuestionItem + + + fr.insee + kmw4revw + 1 + QuestionItem + + + fr.insee + ks4f5ex4 + 1 + Variable + + + fr.insee + lerah1nk + 1 + Variable + + + + vtl + + fr.insee + kwnviscn-IP-1 + 1 + + SEXE + + + + fr.insee + kwnviscn-IP-2 + 1 + + LIEN + + + + fr.insee + kwnviscn-GOP + 1 + + + + fr.insee + kmoo2fiy-QOP-kmoon375 + 1 + OutParameter + + + fr.insee + kwnviscn-IP-1 + 1 + InParameter + + + + + fr.insee + kmw4revw-QOP-kmw5mxph + 1 + OutParameter + + + fr.insee + kwnviscn-IP-2 + 1 + InParameter + + + if (nvl(kwnviscn-IP-2,"")="1") then (if (nvl(kwnviscn-IP-1,"")="2") then 1 else 0) else 0 + + + + fr.insee + kmnolkxb + 1 + Loop + + + + fr.insee + kwnvruc5-GI + 1 + + fr.insee + kwnvdyzo + 1 + Variable + + + + vtl + + fr.insee + kwnvruc5-IP-1 + 1 + + INDSEXECJ1 + + + + fr.insee + kwnvruc5-GOP + 1 + + + + fr.insee + kwnvdyzo-GOP + 1 + OutParameter + + + fr.insee + kwnvruc5-IP-1 + 1 + InParameter + + + sum(cast(kwnvruc5-IP-1,integer)) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kwnw94o4-GI + 1 + + fr.insee + kwnviscn + 1 + Variable + + + + vtl + + fr.insee + kwnw94o4-IP-1 + 1 + + INDSEXECJ2 + + + + fr.insee + kwnw94o4-GOP + 1 + + + + fr.insee + kwnviscn-GOP + 1 + OutParameter + + + fr.insee + kwnw94o4-IP-1 + 1 + InParameter + + + sum(cast(kwnw94o4-IP-1,integer)) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kwnwikvh-GI + 1 + + fr.insee + kwnvruc5 + 1 + Variable + + + fr.insee + kwnw94o4 + 1 + Variable + + + + vtl + + fr.insee + kwnwikvh-IP-1 + 1 + + SEXECJ1 + + + + fr.insee + kwnwikvh-IP-2 + 1 + + SEXECJ2 + + + + fr.insee + kwnwikvh-GOP + 1 + + + + fr.insee + kwnvruc5-GOP + 1 + OutParameter + + + fr.insee + kwnwikvh-IP-1 + 1 + InParameter + + + + + fr.insee + kwnw94o4-GOP + 1 + OutParameter + + + fr.insee + kwnwikvh-IP-2 + 1 + InParameter + + + if (cast(kwnwikvh-IP-2,integer)>0) then "e" else (if (cast(kwnwikvh-IP-1,integer)>0) then "" else "(e)") + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kwnxlh9z-GI + 1 + + fr.insee + kwnvruc5 + 1 + Variable + + + fr.insee + kwnw94o4 + 1 + Variable + + + + vtl + + fr.insee + kwnxlh9z-IP-1 + 1 + + SEXECJ1 + + + + fr.insee + kwnxlh9z-IP-2 + 1 + + SEXECJ2 + + + + fr.insee + kwnxlh9z-GOP + 1 + + + + fr.insee + kwnvruc5-GOP + 1 + OutParameter + + + fr.insee + kwnxlh9z-IP-1 + 1 + InParameter + + + + + fr.insee + kwnw94o4-GOP + 1 + OutParameter + + + fr.insee + kwnxlh9z-IP-2 + 1 + InParameter + + + if (cast(kwnxlh9z-IP-2,integer)>0) then "elle" else (if (cast(kwnxlh9z-IP-1,integer)>0) then "il" else "il/elle") + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kwpbocnz-GI + 1 + + fr.insee + kwpbdw81 + 1 + Variable + + + + vtl + + fr.insee + kwpbocnz-IP-1 + 1 + + nbpersenf + + + + fr.insee + kwpbocnz-GOP + 1 + + + + fr.insee + kwpbdw81-GOP + 1 + OutParameter + + + fr.insee + kwpbocnz-IP-1 + 1 + InParameter + + + if (isnull(kwpbocnz-IP-1)) then "0" else (if (cast(kwpbocnz-IP-1,integer)>0) then "1" else "0") + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kwpbdw81-GI + 1 + + fr.insee + kwpbfyg6 + 1 + Variable + + + + vtl + + fr.insee + kwpbdw81-IP-1 + 1 + + persenf + + + + fr.insee + kwpbdw81-GOP + 1 + + + + fr.insee + kwpbfyg6-GOP + 1 + OutParameter + + + fr.insee + kwpbdw81-IP-1 + 1 + InParameter + + + sum(cast(kwpbdw81-IP-1,integer)) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + kwpbfyg6-GI + 1 + + fr.insee + kmw4revw + 1 + QuestionItem + + + fr.insee + lerah1nk + 1 + Variable + + + + vtl + + fr.insee + kwpbfyg6-IP-1 + 1 + + LIEN + + + + fr.insee + kwpbfyg6-GOP + 1 + + + + fr.insee + kmw4revw-QOP-kmw5mxph + 1 + OutParameter + + + fr.insee + kwpbfyg6-IP-1 + 1 + InParameter + + + if (nvl(kwpbfyg6-IP-1,"")="") then 0 else (if (kwpbfyg6-IP-1="3") then 1 else 0) + + + + fr.insee + kmnolkxb + 1 + Loop + + + + fr.insee + kybu3ze7-GI + 1 + + + vtl + + fr.insee + kybu3ze7-GOP + 1 + + cast(current_date(),string,"DD") + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + l3ykn00w-GI + 1 + + fr.insee + kpcqbqrk + 1 + Variable + + + + vtl + + fr.insee + l3ykn00w-IP-1 + 1 + + INDconj + + + + fr.insee + l3ykn00w-GOP + 1 + + + + fr.insee + kpcqbqrk-GOP + 1 + OutParameter + + + fr.insee + l3ykn00w-IP-1 + 1 + InParameter + + + if (isnull(l3ykn00w-IP-1)) then "" else (if(l3ykn00w-IP-1="1") then ", vous ou votre conjoint," else "") + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + l3yldwrr-GI + 1 + + fr.insee + kmw4revw + 1 + QuestionItem + + + fr.insee + lerah1nk + 1 + Variable + + + + vtl + + fr.insee + l3yldwrr-IP-1 + 1 + + LIEN + + + + fr.insee + l3yldwrr-GOP + 1 + + + + fr.insee + kmw4revw-QOP-kmw5mxph + 1 + OutParameter + + + fr.insee + l3yldwrr-IP-1 + 1 + InParameter + + + if (nvl(l3yldwrr-IP-1,"")="") then 0 else (if (l3yldwrr-IP-1="3" or l3yldwrr-IP-1="5") then 1 else 0) + + + + fr.insee + kmnolkxb + 1 + Loop + + + + fr.insee + l3yln6g1-GI + 1 + + fr.insee + l3yldwrr + 1 + Variable + + + + vtl + + fr.insee + l3yln6g1-IP-1 + 1 + + avecenfant + + + + fr.insee + l3yln6g1-GOP + 1 + + + + fr.insee + l3yldwrr-GOP + 1 + OutParameter + + + fr.insee + l3yln6g1-IP-1 + 1 + InParameter + + + sum(cast(l3yln6g1-IP-1,integer)) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + l7j3cepd-GI + 1 + + fr.insee + kmw4revw + 1 + QuestionItem + + + fr.insee + lerah1nk + 1 + Variable + + + + vtl + + fr.insee + l7j3cepd-IP-1 + 1 + + LIEN + + + + fr.insee + l7j3cepd-GOP + 1 + + + + fr.insee + kmw4revw-QOP-kmw5mxph + 1 + OutParameter + + + fr.insee + l7j3cepd-IP-1 + 1 + InParameter + + + if (nvl(l7j3cepd-IP-1,"")="") then 0 else (if (l7j3cepd-IP-1="7") then 1 else 0) + + + + fr.insee + kmnolkxb + 1 + Loop + + + + fr.insee + l7j3nlde-GI + 1 + + fr.insee + l7j3cepd + 1 + Variable + + + + vtl + + fr.insee + l7j3nlde-IP-1 + 1 + + persamiscoloc + + + + fr.insee + l7j3nlde-GOP + 1 + + + + fr.insee + l7j3cepd-GOP + 1 + OutParameter + + + fr.insee + l7j3nlde-IP-1 + 1 + InParameter + + + sum(cast(l7j3nlde-IP-1,integer)) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + lftfquwn-GI + 1 + + fr.insee + lg0s2yxc + 1 + Variable + + + + vtl + + fr.insee + lftfquwn-IP-1 + 1 + + persplus15 + + + + fr.insee + lftfquwn-GOP + 1 + + + + fr.insee + lg0s2yxc-GOP + 1 + OutParameter + + + fr.insee + lftfquwn-IP-1 + 1 + InParameter + + + sum(cast(lftfquwn-IP-1,integer)) + + + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + fr.insee + lfwlwjes-GI + 1 + + fr.insee + kmx6w6n5 + 1 + QuestionItem + + + fr.insee + kqi4mcwj + 1 + Variable + + + + vtl + + fr.insee + lfwlwjes-IP-1 + 1 + + TRAGE + + + + fr.insee + lfwlwjes-GOP + 1 + + + + fr.insee + kmx6w6n5-QOP-kmx7770w + 1 + OutParameter + + + fr.insee + lfwlwjes-IP-1 + 1 + InParameter + + + if (isnull(lfwlwjes-IP-1) or lfwlwjes-IP-1 = "4") then "0" else "1" + + + + fr.insee + kmnolkxb + 1 + Loop + + + + fr.insee + lg0s2yxc-GI + 1 + + fr.insee + ksew6khf + 1 + Variable + + + fr.insee + lfwlwjes + 1 + Variable + + + + vtl + + fr.insee + lg0s2yxc-IP-1 + 1 + + persplus15AGE + + + + fr.insee + lg0s2yxc-IP-2 + 1 + + persplus15TR + + + + fr.insee + lg0s2yxc-GOP + 1 + + + + fr.insee + ksew6khf-GOP + 1 + OutParameter + + + fr.insee + lg0s2yxc-IP-1 + 1 + InParameter + + + + + fr.insee + lfwlwjes-GOP + 1 + OutParameter + + + fr.insee + lg0s2yxc-IP-2 + 1 + InParameter + + + if ((not(isnull(lg0s2yxc-IP-1)) and lg0s2yxc-IP-1="1") or (not(isnull(lg0s2yxc-IP-2)) and lg0s2yxc-IP-2="1")) then 1 else 0 + + + + fr.insee + kmnolkxb + 1 + Loop + + + + + fr.insee + INSEE-SIMPSONS-MRS + 1 + + Liste de formats numériques et dates de + l'enquête + Numeric and DateTime list for the survey + + + fr.insee + INSEE-COMMUN-MNR-DateTimedate-YYYY-MM-DD + 1 + YYYY-MM-DD + date + + 1900-01-01 + format-date(current-date(),'[Y0001]-[M01]-[D01]') + + + + + + fr.insee + StudyUnit-llxh9g6g + 1 + + + fr.insee + DataCollection-llxh9g6g + 1 + + fr.insee + QuestionScheme-llxh9g6g + 1 + QuestionScheme + + + fr.insee + ControlConstructScheme-llxh9g6g + 1 + ControlConstructScheme + + + fr.insee + InterviewerInstructionScheme-llxh9g6g + 1 + InterviewerInstructionScheme + + + fr.insee + InstrumentScheme-llxh9g6g + 1 + + fr.insee + Instrument-llxh9g6g + 1 + + m1 + + + VraiQuest - Enquête Logement - Séquence 1 (ENL en 2023 sur Internet) questionnaire + + A définir + + fr.insee + Sequence-llxh9g6g + 1 + Sequence + + + + + + diff --git a/eno-core/src/test/resources/functional/ddi/pagination/ddi-lnycjn6n.xml b/eno-core/src/test/resources/functional/ddi/pagination/ddi-lnycjn6n.xml new file mode 100644 index 000000000..f0e89f00d --- /dev/null +++ b/eno-core/src/test/resources/functional/ddi/pagination/ddi-lnycjn6n.xml @@ -0,0 +1,139156 @@ + + + fr.insee + INSEE-lnycjn6n + 1 + + + VraiQuest - Enquête Familles 2024 V6 Livraison + + + + fr.insee + RessourcePackage-lnycjn6n + 1 + + fr.insee + InterviewerInstructionScheme-lnycjn6n + 1 + + A définir + + + fr.insee + l473latk-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l2sstox3 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Vous allez remplir le questionnaire de l'enquête Familles de "|| nvl(¤ll2aimkg-GOP¤,"cette personne") || "." + + + + fr.insee + ll2aimkg-GOP + 1 + OutParameter + + + + + + fr.insee + kwq9wijq-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre date de naissance." + + + + + fr.insee + kwq9y19w-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l15159qb + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Cochez une seule case" + + + + + fr.insee + l0qkj23a-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l34fbn76 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", nous allons maintenant vous interroger sur votre " || (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then "conjoint(e) actuel(le). " else "dernier(ère) conjoint(e) si vous n'êtes plus en couple. ") + + + + fr.insee + ll2aimkg-GOP + 1 + OutParameter + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + + + + fr.insee + l34grb6h-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + l155z8f9 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Votre " || (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then " conjoint(e) actuel(le) " else " dernier(ère) conjoint(e) ") || nvl(¤l34grb6h-QOP-l34guyz9¤,"") + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + + + fr.insee + l34grb6h-QOP-l34guyz9 + 1 + OutParameter + + + + + + fr.insee + kwqa0ism-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer la date attendue." + + + + + fr.insee + kwqabjga-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4pa18h0 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l4o59ei7-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4o5rn9i + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez le dans la liste." + + + + + + fr.insee + l0quikkt-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4o5lb2p + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez le dans la liste." + + + + + + fr.insee + l4o57595-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l7ywou64-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4o5bu87 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le libellé de profession recherché et sélectionnez le dans la liste." +"Si vous ne le trouvez pas, passez à la question suivante." + + + + + fr.insee + l7ykp7bx + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez bien la dernière profession connue." + + + + + fr.insee + lldoqdme + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le libellé de profession recherché et sélectionnez le dans la liste." +"Si vous ne le trouvez pas, passez à la question suivante." + + + + + fr.insee + lldoyoi4 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez bien la dernière profession connue." + + + + + fr.insee + l43zea6v-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + l0quphwx-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + llgt315z-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + llgt75zv-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + llde3pgg-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lldp0f22 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + lldpi629-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lldpcfe1 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez le dans la liste." + + + + + + fr.insee + lldp8203-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lldp3of6 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez le dans la liste." + + + + + + fr.insee + lldpejfa-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lldqco3p-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4qu3r4l + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le libellé de profession recherché et sélectionnez le dans la liste." +"Si vous ne le trouvez pas, passez à la question suivante." + + + + + fr.insee + l7yku2q0 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez bien la dernière profession connue." + + + + + fr.insee + lldp9mst + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le libellé de profession recherché et sélectionnez le dans la liste." +"Si vous ne le trouvez pas, passez à la question suivante." + + + + + fr.insee + lldpdl3w + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez bien la dernière profession connue." + + + + + fr.insee + lldqd2sd-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + llmhdvun-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + llmhi6fd-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + llnh2qpm-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l27ezxol + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", nous allons maintenant décrire les étapes de votre " || if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤ ="2") then " vie en couple actuelle." else " dernière période de vie en couple." + + + + fr.insee + ll2aimkg-GOP + 1 + OutParameter + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + + + + fr.insee + l27dlmvl-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l27dlmvl-CI-1-II-1 + 1 + + warning + + + + "L'année de mise en couple ne peut pas être antérieure à votre année de naissance." + + + + + fr.insee + l27dlmvl-CI-2-II-2 + 1 + + warning + + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre mise en couple, est-ce que vous confirmez ?" + + + + + fr.insee + l27dlmvl-CI-3-II-3 + 1 + + warning + + + + "L'année de mise en couple est comprise entre 1920 et 2024." + + + + + fr.insee + l157fqi8 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "(même si vous vous êtes marié" || (if ((nvl(¤llde3pgg-QOP-lldeidzi¤,"")="") and (nvl(¤kwqabjga-QOP-kwqai8pk¤,"")="")) then "s)" else (if (¤llde3pgg-QOP-lldeidzi¤ ="2" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) then "es)" else "s)")) + + + + fr.insee + kwqabjga-QOP-kwqai8pk + 1 + OutParameter + + + + + fr.insee + llde3pgg-QOP-lldeidzi + 1 + OutParameter + + + + + + fr.insee + kwqa4zjf-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l0qu7e2g-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l0qu7e2g-CI-1-II-1 + 1 + + warning + + + + "L'année du pacs ne peut pas être antérieure à l'année de mise en couple." + + + + + fr.insee + l0qu7e2g-CI-2-II-2 + 1 + + warning + + + + "L'année du pacs ne peut pas être antérieure à votre année de naissance." + + + + + fr.insee + l0qu7e2g-CI-3-II-3 + 1 + + warning + + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre pacs, est-ce que vous confirmez ?" + + + + + fr.insee + l0qu7e2g-CI-4-II-4 + 1 + + warning + + + + "L'année du pacs est comprise entre 1999 et 2024." + + + + + fr.insee + l0qujqzn-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l0qul94p-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l0qul94p-CI-1-II-1 + 1 + + warning + + + + "L'année du mariage ne peut pas être antérieure à l'année de mise en couple." + + + + + fr.insee + l0qul94p-CI-2-II-2 + 1 + + warning + + + + "L'année du mariage ne peut pas être antérieure à l'année du pacs." + + + + + fr.insee + l0qul94p-CI-3-II-3 + 1 + + warning + + + + "L'année du mariage ne peut pas être antérieure à votre année de naissance." + + + + + fr.insee + l0qul94p-CI-4-II-4 + 1 + + warning + + + + "Il semble y avoir peu d'écart entre votre date de naissance et celle de votre mariage, est-ce que vous confirmez ?" + + + + + fr.insee + l0qul94p-CI-5-II-5 + 1 + + warning + + + + "L'année du mariage est comprise entre 1920 et 2024." + + + + + fr.insee + l5kszr2f-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l27dzhpw-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l27dzhpw-CI-1-II-1 + 1 + + warning + + + + "L'année de la séparation ne peut pas être antérieure à l'année de mise en couple." + + + + + fr.insee + l27dzhpw-CI-2-II-2 + 1 + + warning + + + + "L'année de la séparation ne peut pas être antérieure à votre année de naissance." + + + + + fr.insee + l27dzhpw-CI-3-II-3 + 1 + + warning + + + + "L'année de la séparation est comprise entre 1920 et 2024." + + + + + fr.insee + l155mqhc-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l155mqhc-CI-1-II-1 + 1 + + warning + + + + "L'année du décès de votre conjoint(e) ne peut pas être antérieure à l'année de mise en couple." + + + + + fr.insee + l155mqhc-CI-2-II-2 + 1 + + warning + + + + "L'année du décès de votre conjoint(e) ne peut pas être antérieure à votre année de naissance." + + + + + fr.insee + l155mqhc-CI-3-II-3 + 1 + + warning + + + + "L'année du décès de votre conjoint(e) est comprise entre 1920 et 2024." + + + + + fr.insee + l43u9qqf-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l43u4x96-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + l5jnmvs2-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + liiz5sj3 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Si aucun, notez 0." + + + + + fr.insee + l43why6c-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + l43why6c-CI-1-II-1 + 1 + + warning + + + + "Le nombre d’enfants venus vivre avec vous ne peut pas être supérieur au nombre total d’enfants." + + + + + fr.insee + l8lz0355-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l484uyl9 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles s’il y a plusieurs enfants." + + + + + fr.insee + l43xg8do-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix". + + + + + fr.insee + l43xg8do-CI-1-II-1 + 1 + + warning + + + + "Vous ne pouvez pas cocher Non et une autre réponse." + + + + + fr.insee + l15131wu-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l43x1amr-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + lldrbrp9 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + Nous allons maintenant décrire vos précédentes périodes de vie en couple. + + + + + fr.insee + l34i4s3k + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", nous allons maintenant décrire les étapes de votre première période de vie en couple (pendant au moins six mois sous le même toit, avec ou sans mariage)." + + + + fr.insee + ll2aimkg-GOP + 1 + OutParameter + + + + + + fr.insee + kwqa53jx-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + l4p8skko-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lldenssh-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l34fzu5m-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l34fzu5m-CI-1-II-1 + 1 + + warning + + + + "L'année de première mise en couple ne peut pas être postérieure à l'année de mise en couple." + + + + + fr.insee + l34fzu5m-CI-2-II-2 + 1 + + warning + + + + "L'année de première mise en couple ne peut pas être antérieure à votre année de naissance." + + + + + fr.insee + l34fzu5m-CI-3-II-3 + 1 + + warning + + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre première mise en couple, est-ce que vous confirmez ?" + + + + + fr.insee + l34fzu5m-CI-4-II-4 + 1 + + warning + + + + "L'année de première mise en couple est comprise entre 1920 et 2023." + + + + + + + fr.insee + l27e0i68 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "(même si vous vous êtes marié" || (if ((nvl(¤lldenssh-QOP-lldeceld¤,"")="") and (nvl(¤l4p8skko-QOP-l4p8w47s¤,"")="")) then "s)" else (if (¤lldenssh-QOP-lldeceld¤ ="2" and isnull(¤l4p8skko-QOP-l4p8w47s¤)) then "es)" else "s)")) + + + + fr.insee + l4p8skko-QOP-l4p8w47s + 1 + OutParameter + + + + + fr.insee + lldenssh-QOP-lldeceld + 1 + OutParameter + + + + + + fr.insee + l27dlnmq-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l27dns8a-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l27dns8a-CI-1-II-1 + 1 + + warning + + + + "L'année du premier pacs ne peut pas être antérieure à l'année de première mise en couple." + + + + + fr.insee + l27dns8a-CI-2-II-2 + 1 + + warning + + + + "L'année du premier pacs ne peut pas être antérieure à votre année de naissance." + + + + + fr.insee + l27dns8a-CI-3-II-3 + 1 + + warning + + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre premier pacs, est-ce que vous confirmez ?" + + + + + fr.insee + l27dns8a-CI-4-II-4 + 1 + + warning + + + + "L'année du premier pacs ne peut pas être postérieure à l'année du pacs." + + + + + fr.insee + l27dns8a-CI-5-II-5 + 1 + + warning + + + + "L'année du premier pacs est comprise entre 1999 et 2023." + + + + + fr.insee + l27duust-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l27e50tv-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l27e50tv-CI-1-II-1 + 1 + + warning + + + + "L'année du premier mariage ne peut pas être antérieure à l'année de première mise en couple." + + + + + fr.insee + l27e50tv-CI-2-II-2 + 1 + + warning + + + + "L'année du premier mariage ne peut pas être antérieure à l'année du premier pacs." + + + + + fr.insee + l27e50tv-CI-3-II-3 + 1 + + warning + + + + "L'année du premier mariage ne peut pas être antérieure à votre année de naissance." + + + + + fr.insee + l27e50tv-CI-4-II-4 + 1 + + warning + + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre premier mariage, est-ce que vous confirmez ?" + + + + + fr.insee + l27e50tv-CI-5-II-5 + 1 + + warning + + + + "L'année du premier mariage ne peut pas être postérieure à l'année du mariage." + + + + + fr.insee + l27e50tv-CI-6-II-6 + 1 + + warning + + + + "L'année du premier mariage est comprise entre 1920 et 2023." + + + + + fr.insee + l5ktf1wn-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l27dzhzv-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l27dzhzv-CI-1-II-1 + 1 + + warning + + + + "L'année de la première séparation ne peut pas être antérieure à l'année de première mise en couple." + + + + + fr.insee + l27dzhzv-CI-2-II-2 + 1 + + warning + + + + "L'année de votre première séparation ne peut pas être antérieure à votre année de naissance." + + + + + fr.insee + l27dzhzv-CI-3-II-3 + 1 + + warning + + + + "L'année de première séparation est comprise entre 1920 et 2023." + + + + + fr.insee + l27e0qyq-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l27e0qyq-CI-1-II-1 + 1 + + warning + + + + "L'année du décès de votre premier(ère) conjoint(e) ne peut pas être antérieure à l'année de votre première mise en couple." + + + + + fr.insee + l27e0qyq-CI-2-II-2 + 1 + + warning + + + + "L'année du décès de votre premier(ère) conjoint(e) ne peut pas être antérieure à votre année de naissance." + + + + + fr.insee + l27e0qyq-CI-3-II-3 + 1 + + warning + + + + "L'année de décès de votre premier(ère) conjoint(e) est comprise entre 1920 et 2024." + + + + + fr.insee + l4cjg2rp-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4cja8pm-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + l5ilbb89-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + liiz9el9 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Si aucun, notez 0." + + + + + fr.insee + l4o5x7yq-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + l4o5x7yq-CI-1-II-1 + 1 + + warning + + + + "Le nombre d’enfants venus vivre avec vous ne peut pas être supérieur au nombre total d’enfants." + + + + + fr.insee + l9ikp94t + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", nous allons maintenant décrire, si vous le souhaitez, les étapes d'une autre période de vie en couple (pendant au moins six mois sous le même toit, avec ou sans mariage)." + + + + fr.insee + ll2aimkg-GOP + 1 + OutParameter + + + + + + fr.insee + l9il0i0h-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l9ilcol6-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + l9ikne2h-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lldetngg-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l9ikn3ea-CI-0-II-0 + 1 + + warning + + + + "L'année de mise en couple de cette autre union ne peut pas être postérieure à l'année de mise en couple." + + + + + fr.insee + l9ikn3ea-CI-1-II-1 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + + fr.insee + l9ikn3ea-CI-2-II-2 + 1 + + warning + + + + "L'année de mise en couple de cette autre union ne peut pas être antérieure à votre année de naissance." + + + + + fr.insee + l9ikn3ea-CI-3-II-3 + 1 + + warning + + + + "Il semble y avoir peu d'écart entre votre date de naissance et celle de la mise en couple de cette autre union, est-ce que vous confirmez ?" + + + + + fr.insee + l9ikn3ea-CI-4-II-4 + 1 + + warning + + + + "L'année de mise en couple de cette autre union est comprise entre 1920 et 2023." + + + + + fr.insee + l9ikt4wn + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "(même si vous vous êtes marié" || (if ((nvl(¤lldetngg-QOP-lldefr60¤,"")="") and (nvl(¤l9ikne2h-QOP-l9ikmsqc¤,"")="")) then "s)" else (if (¤lldetngg-QOP-lldefr60¤ ="2" and isnull(¤l9ikne2h-QOP-l9ikmsqc¤)) then "es)" else "s)")) + + + + fr.insee + l9ikne2h-QOP-l9ikmsqc + 1 + OutParameter + + + + + fr.insee + lldetngg-QOP-lldefr60 + 1 + OutParameter + + + + + + fr.insee + l9il24ft-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l9ikxoxa-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l9ikxoxa-CI-1-II-1 + 1 + + warning + + + + "L'année du pacs ne peut pas être antérieure à l'année de mise en couple." + + + + + fr.insee + l9ikxoxa-CI-2-II-2 + 1 + + warning + + + + "L'année du pacs de cette autre union ne peut pas être antérieure à votre année de naissance." + + + + + fr.insee + l9ikxoxa-CI-3-II-3 + 1 + + warning + + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle du pacs de cette autre union, est-ce que vous confirmez ?" + + + + + fr.insee + l9ikxoxa-CI-4-II-4 + 1 + + warning + + + + "L'année du pacs de cette autre union ne peut pas être postérieure à l'année du pacs." + + + + + fr.insee + l9ikxoxa-CI-5-II-5 + 1 + + warning + + + + "L'année du pacs de cette autre union est comprise entre 1920 et 2023." + + + + + fr.insee + l9ikvx4n-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l9iklcix-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l9iklcix-CI-1-II-1 + 1 + + warning + + + + "L'année du mariage ne peut pas être antérieure à l'année de mise en couple." + + + + + + + fr.insee + l9iklcix-CI-2-II-2 + 1 + + warning + + + + "L'année du mariage ne peut pas être antérieure à l'année du pacs." + + + + + fr.insee + l9iklcix-CI-3-II-3 + 1 + + warning + + + + "L'année du mariage de cette autre union ne peut pas être antérieure à votre année de naissance." + + + + + fr.insee + l9iklcix-CI-4-II-4 + 1 + + warning + + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle du mariage de cette autre union, est-ce que vous confirmez ?" + + + + + fr.insee + l9iklcix-CI-5-II-5 + 1 + + warning + + + + "L'année du mariage de cette autre union ne peut pas être postérieure à l'année du mariage." + + + + + fr.insee + l9iklcix-CI-6-II-6 + 1 + + warning + + + + "L'année du mariage de cette autre union est comprise entre 1920 et 2023." + + + + + fr.insee + l9ikqlwv-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l9ikze1y-CI-0-II-0 + 1 + + warning + + + + "L'année de la séparation ne peut pas être antérieure à l'année de mise en couple." + + + + + fr.insee + l9ikze1y-CI-1-II-1 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l9ikze1y-CI-2-II-2 + 1 + + warning + + + + "L'année de séparation de cette autre union ne peut pas être antérieure à votre année de naissance." + + + + + fr.insee + l9ikze1y-CI-3-II-3 + 1 + + warning + + + + "L'année de séparation de cette autre union est comprise entre 1920 et 2023." + + + + + fr.insee + l9ikmjqm-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l9ikmjqm-CI-1-II-1 + 1 + + warning + + + + "L'année du décès de votre conjoint(e) ne peut pas être antérieure à l'année de mise en couple de cette autre union." + + + + + fr.insee + l9ikmjqm-CI-2-II-2 + 1 + + warning + + + + "L'année du décès de votre conjoint(e) ne peut pas être antérieure à votre année de naissance." + + + + + fr.insee + l9ikmjqm-CI-3-II-3 + 1 + + warning + + + + "L'année de décès de votre conjoint(e) est comprise entre 1920 et 2024." + + + + + fr.insee + l9ikxndo-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l9ikuqoe-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + l9ikekzu-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + liizbc3w + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Si aucun, notez 0." + + + + + fr.insee + l9iks078-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + l9iks078-CI-1-II-1 + 1 + + warning + + + + "Le nombre d’enfants venus vivre avec vous ne peut pas être supérieur au nombre total d’enfants." + + + + + fr.insee + l34i0o62 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", nous allons maintenant vous poser des questions sur vos enfants, qui vivent avec vous ou non (y compris ceux adoptés ou décédés)." + + + + fr.insee + ll2aimkg-GOP + 1 + OutParameter + + + + + + fr.insee + l1gkoo46 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "(y compris ceux adoptés ou décédés)" + + + + + fr.insee + kwqigxtx-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + kwqi5zsm-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + l5cm1kac + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "(adoption simple ou plénière)" + + + + + fr.insee + l1gkeq97-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l7rltw55 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "(adoption simple ou plénière)" + + + + + fr.insee + l7rlwtef + 1 + + help + + + + "Si aucun n'a été adopté, notez 0." + + + + + fr.insee + l7rlim3p-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + l7rlim3p-CI-1-II-1 + 1 + + warning + + + + "Le nombre d’enfants adoptés ne peut pas être supérieur au nombre total d’enfants." + + + + + fr.insee + laib1x47 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "(exemples : kabyle, breton, LSF, français, italien)" + + + + + fr.insee + laiambix + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le libellé de la langue recherchée et sélectionnez la dans la liste." + + + + + fr.insee + l1gi76wy-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4o6hnbu + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le libellé de la langue recherchée et sélectionnez la dans la liste." + + + + + fr.insee + l445u9x8-CI-0-II-0 + 1 + + warning + + + + "Vous avez sélectionné la même langue que la précédente. Merci à vous de corriger." + + + + + fr.insee + l4idom4o-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lcr3vb-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + l4lcr3vb-CI-1-II-1 + 1 + + warning + + + + "Le nombre d’enfants qui vivent avec vous est supérieur au nombre total d’enfants que vous avez déclarés. Est-ce que vous confirmez ?" + + + + + fr.insee + l447nuda-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l447nuda-CI-1-II-1 + 1 + + warning + + + + "Le nombre d'enfants vivant dans le logement est différent du nombre d'enfants déclarés." + + + + + fr.insee + l4lfzig7-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + l4lfzig7-CI-1-II-1 + 1 + + warning + + + + "Le nombre d'enfants vivant dans le logement, vivant ailleurs ou décédés est différent du nombre total d'enfants. Est-ce que vous confirmez ?" + + + + + fr.insee + l446p7s5 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + if cast(¤l4lcr3vb-QOP-l4lcyzfy¤,integer)=1 then "Décrivez votre enfant qui vit avec vous, même une petite partie du temps seulement." else "Décrivez votre premier enfant qui vit avec vous, même une petite partie du temps seulement, en commençant par l'aîné." + + + + fr.insee + l4lcr3vb-QOP-l4lcyzfy + 1 + OutParameter + + + + + + fr.insee + l4pjpys2 + 1 + + help + + + + if cast(¤l4lcr3vb-QOP-l4lcyzfy¤, integer)>8 then "Décrivez seulement les 8 plus âgés." else "" + + + + fr.insee + l4lcr3vb-QOP-l4lcyzfy + 1 + OutParameter + + + + + + fr.insee + l446nede-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + kwqjk80w-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + kwqjmq2o-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + kwqjmq2o-CI-1-II-1 + 1 + + warning + + + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + + + fr.insee + kwqjmq2o-CI-2-II-2 + 1 + + warning + + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + + + fr.insee + kwqjmq2o-CI-3-II-3 + 1 + + warning + + + + "L'année de naissance de votre enfant est comprise entre 1920 et 2024." + + + + + fr.insee + l4qth2nf + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l4qtls9o-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + kwqjol7e-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4paxo23 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l4iaicn8-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4papcwn + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez le dans la liste." + + + + + fr.insee + l4pav1bd-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4pb5c8v + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez la commune recherchée et sélectionnez la dans la liste." + + + + + fr.insee + l4parilg-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4pbeb5v + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez le dans la liste." + + + + + fr.insee + l4pavrnh-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l1eze0cf + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "(en face à face, téléphone, mail, SMS, appel vidéo, etc.)" + + + + + fr.insee + l1ez78st-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4iain70-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + kwqk3gx2-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + la6ydnyh-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + kwqjmy9d-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l59nppaa + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles" + + + + + fr.insee + l1gia5uh-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l1gia5uh-CI-1-II-1 + 1 + + warning + + + + "Vous ne pouvez pas cocher Non et une autre réponse." + + + + + fr.insee + l4i9118b-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + l4i8zu5m-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4ia7rxn-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l4ia7rxn-CI-1-II-1 + 1 + + warning + + + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + + + fr.insee + l4ia7rxn-CI-2-II-2 + 1 + + warning + + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + + + fr.insee + l4ia7rxn-CI-3-II-3 + 1 + + warning + + + + "L'année de naissance de votre enfant est comprise entre 1920 et 2024." + + + + + fr.insee + l4qtdwhq + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l4qtpg9f-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4iano52-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4pavsqb + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + kwqjmujx-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4pakgkw + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez le dans la liste." + + + + + fr.insee + l4pannoa-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4pat1rt + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez la commune recherchée et sélectionnez la dans la liste." + + + + + fr.insee + l4pasuts-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4pbep5s + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez le dans la liste." + + + + + fr.insee + l4pbc5wa-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4id8tmg + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "(en face à face, téléphone, mail, SMS, appel vidéo, etc.)" + + + + + fr.insee + l4idgpbr-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4486unb-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4ia5o28-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + la6yjh65-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4idgqx9-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l59nvexw + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles" + + + + + fr.insee + l4ia7y0p-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4ia7y0p-CI-1-II-1 + 1 + + warning + + + + "Vous ne pouvez pas cocher Non et une autre réponse." + + + + + fr.insee + l4ld0ziw-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + l4lcp4co-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4ld3y0j-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4ld3y0j-CI-1-II-1 + 1 + + warning + + + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + + + + fr.insee + l4ld3y0j-CI-2-II-2 + 1 + + warning + + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + + + fr.insee + l4ld3y0j-CI-3-II-3 + 1 + + warning + + + + "L'année de naissance de votre enfant est comprise entre 1920 et 2024." + + + + + fr.insee + l4qthko2 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l4qty53i-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lct7cb-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4pawrpv + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l4ld827i-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4pb2s4u + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez le dans la liste." + + + + + fr.insee + l4pat7vx-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4paydhw + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez la commune recherchée et sélectionnez la dans la liste." + + + + + fr.insee + l4pavp6y-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4pbgztm + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez le dans la liste." + + + + + fr.insee + l4pb77tv-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lczwxy + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "(en face à face, téléphone, mail, SMS, appel vidéo, etc.)" + + + + + fr.insee + l4ld15su-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4ld0zmv-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4ld0jea-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + la6y9flo-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lde13h-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l59o0cuh + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles" + + + + + fr.insee + l4lcuoke-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lcuoke-CI-1-II-1 + 1 + + warning + + + + "Vous ne pouvez pas cocher Non et une autre réponse." + + + + + fr.insee + l4lec0rk-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + l4lefdoh-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4le9rs3-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4le9rs3-CI-1-II-1 + 1 + + warning + + + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + + + fr.insee + l4le9rs3-CI-2-II-2 + 1 + + warning + + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + + + fr.insee + l4le9rs3-CI-3-II-3 + 1 + + warning + + + + "L'année de naissance de votre enfant est comprise entre 1920 et 2024." + + + + + fr.insee + l4qty3sm + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l4qtvt71-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4ler7fu-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4paro0f + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l4lemegm-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4paqxkg + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez le dans la liste." + + + + + fr.insee + l4payjff-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4pat094 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez la commune recherchée et sélectionnez la dans la liste." + + + + + fr.insee + l4paz6m4-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4pbe5ur + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez le dans la liste." + + + + + fr.insee + l4pbax4x-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lergdt + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "(en face à face, téléphone, mail, SMS, appel vidéo, etc.)" + + + + + fr.insee + l4letwtq-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4letk9j-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lekh2t-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + la6y7rno-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lexatl-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l59nzdj2 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles" + + + + + fr.insee + l4lec2qz-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lec2qz-CI-1-II-1 + 1 + + warning + + + + "Vous ne pouvez pas cocher Non et une autre réponse." + + + + + fr.insee + l4leulqw-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + l4lem0yg-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lffj1f-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lffj1f-CI-1-II-1 + 1 + + warning + + + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + + + fr.insee + l4lffj1f-CI-2-II-2 + 1 + + warning + + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + + + fr.insee + l4lffj1f-CI-3-II-3 + 1 + + warning + + + + "L'année de naissance de votre enfant est comprise entre 1920 et 2024." + + + + + fr.insee + l4qu07sd + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l4qtm8di-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lfye1g-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4papqg4 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l4lfoek4-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4pb0t6z + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez le dans la liste." + + + + + fr.insee + l4pauqgi-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4paz690 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez la commune recherchée et sélectionnez la dans la liste." + + + + + fr.insee + l4paw4ax-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4pb68fn + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez le dans la liste." + + + + + fr.insee + l4pb234a-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n1urc0 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "(en face à face, téléphone, mail, SMS, appel vidéo, etc.)" + + + + + fr.insee + l8n262ck-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lfr4qa-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lfvape-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + la6yfjnf-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lg25av-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l59np16p + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles" + + + + + fr.insee + l4lfclty-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lfclty-CI-1-II-1 + 1 + + warning + + + + "Vous ne pouvez pas cocher Non et une autre réponse." + + + + + fr.insee + l8n2umnw-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + l8n2e1mr-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n2lctv-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l8n2lctv-CI-1-II-1 + 1 + + warning + + + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + + + fr.insee + l8n2lctv-CI-2-II-2 + 1 + + warning + + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + + + fr.insee + l8n2lctv-CI-3-II-3 + 1 + + warning + + + + "L'année de naissance de votre enfant est comprise entre 1920 et 2024." + + + + + fr.insee + l8n2r8je + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l8n2gmuq-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n2ilpb-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n2g2zx + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l8n1zy7o-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n24jzh + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez le dans la liste." + + + + + fr.insee + l8n2awb0-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n208lx + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez la commune recherchée et sélectionnez la dans la liste." + + + + + fr.insee + l8n1u6yt-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n2b8s7 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez le dans la liste." + + + + + fr.insee + l8n20r8i-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lfskzd + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "(en face à face, téléphone, mail, SMS, appel vidéo, etc.)" + + + + + fr.insee + l4lfnqiq-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n29jww-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n1p0yj-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + la6y7ni0-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n1u2kg-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n2ki4d + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles" + + + + + fr.insee + l8n2hdgw-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n2hdgw-CI-1-II-1 + 1 + + warning + + + + "Vous ne pouvez pas cocher Non et une autre réponse." + + + + + fr.insee + l8n3pb4f-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + l8n3mik2-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n3jmk8-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l8n3jmk8-CI-1-II-1 + 1 + + warning + + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + + + fr.insee + l8n3jmk8-CI-2-II-2 + 1 + + warning + + + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + + + fr.insee + l8n3jmk8-CI-3-II-3 + 1 + + warning + + + + "L'année de naissance de votre enfant est comprise entre 1920 et 2024." + + + + + fr.insee + l8n38zes + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l8n36fv3-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n3ff6s-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n32k1l + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l8n3b7uo-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n3j9rq + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez le dans la liste." + + + + + fr.insee + l8n3fzap-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n33lad + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez la commune recherchée et sélectionnez la dans la liste." + + + + + fr.insee + l8n3485v-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n2z0lq + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez le dans la liste." + + + + + fr.insee + l8n3burz-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n3gpec + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "(en face à face, téléphone, mail, SMS, appel vidéo, etc.)" + + + + + fr.insee + l8n32xk9-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n2x7q4-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n3ary8-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + la6y542q-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n2t39d-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + + fr.insee + l8n3q1k1 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles" + + + + + fr.insee + l8n3bp4o-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n3bp4o-CI-1-II-1 + 1 + + warning + + + + "Vous ne pouvez pas cocher Non et une autre réponse." + + + + + fr.insee + l8n4cayp-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + l8n406m9-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n3tya0-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l8n3tya0-CI-1-II-1 + 1 + + warning + + + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + + + fr.insee + l8n3tya0-CI-2-II-2 + 1 + + warning + + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + + + fr.insee + l8n3tya0-CI-3-II-3 + 1 + + warning + + + + "L'année de naissance de votre enfant est comprise entre 1920 et 2024." + + + + + fr.insee + l8n3xl10 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l8n3vr8b-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n427a2-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n3m622 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l8n41hvu-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n3q2xj + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez le dans la liste." + + + + + fr.insee + l8n41c78-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n3z556 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez la commune recherchée et sélectionnez la dans la liste." + + + + + fr.insee + l8n3tbmd-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n3kcnq + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez le dans la liste." + + + + + fr.insee + l8n40r7t-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n3wl31 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "(en face à face, téléphone, mail, SMS, appel vidéo, etc.)" + + + + + fr.insee + l8n3fpp7-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n3xb0z-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n3tjlw-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + la6v947r-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n3ocd5-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n4a6u7 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles" + + + + + fr.insee + l8n3uqr2-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n3uqr2-CI-1-II-1 + 1 + + warning + + + + "Vous ne pouvez pas cocher Non et une autre réponse." + + + + + fr.insee + l447etvc + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + if cast(¤l4lfzig7-QOP-l4lgbag5¤,integer)=1 then "Décrivez votre enfant qui ne vit pas avec vous ou qui est décédé." else "Décrivez votre premier enfant qui ne vit pas avec vous ou qui est décédé, en commençant par l'aîné." + + + + fr.insee + l4lfzig7-QOP-l4lgbag5 + 1 + OutParameter + + + + + + fr.insee + l4pjmysh + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + if cast(¤l4lfzig7-QOP-l4lgbag5¤, integer)>8 then "Décrivez seulement les 8 plus âgés." else "" + + + + fr.insee + l4lfzig7-QOP-l4lgbag5 + 1 + OutParameter + + + + + + fr.insee + l4idug6p-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + kwqix1j5-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + kwqj561a-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + kwqj561a-CI-1-II-1 + 1 + + warning + + + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + + + fr.insee + kwqj561a-CI-2-II-2 + 1 + + warning + + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + + + fr.insee + kwqj561a-CI-3-II-3 + 1 + + warning + + + + "L'année de naissance de votre enfant est comprise entre 1920 et 2024." + + + + + fr.insee + l4p9roph + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l4cjlk0i-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4cjivdg-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8lzt19v-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4485tkr-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l2eizvoe + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Notez 0 si "||(if(nvl(PRENOM_ENFAIL1,"") = "") then "cet enfant" else PRENOM_ENFAIL1) || (" est") || (if (SEXE_ENFAIL1 = "1" or nvl(SEXE_ENFAIL1,"") = "") then " décédé" else " décédée") || (" avant un an.") + + + + + fr.insee + kwqkh05l-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu." + + + + + fr.insee + kwqkh05l-CI-1-II-1 + 1 + + warning + + + + "L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge." + + + + + fr.insee + kwqk3ki3-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu." + + + + + fr.insee + kwqk3ki3-CI-1-II-1 + 1 + + warning + + + + "L'âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge." + + + + + fr.insee + l4483m6s + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "(en face à face, téléphone, mail, SMS, appel vidéo, etc.)" + + + + + fr.insee + kwqkmusz-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lai6xcya + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + kwqjp9yr-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4paafoh + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez le dans la liste." + + + + + fr.insee + l4onskib-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4pap0it + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez la commune recherchée et sélectionnez la dans la liste." + + + + + fr.insee + l4onsq99-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4panc40 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez le dans la liste." + + + + + fr.insee + l4onsf7y-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + kwqk3a58-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l44849iu-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + kwqj7xh6-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4o74e6d-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l1gknpsx-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l59ny4to + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles" + + + + + fr.insee + l1gi8vrf-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lg1tus-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + l4lgd8bs-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lgjbi8-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l4lgjbi8-CI-1-II-1 + 1 + + warning + + + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + + + fr.insee + l4lgjbi8-CI-2-II-2 + 1 + + warning + + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + + + fr.insee + l4lgjbi8-CI-3-II-3 + 1 + + warning + + + + "L'année de naissance de votre enfant est comprise entre 1920 et 2024." + + + + + fr.insee + l4p9xwnx + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l4lgtwy7-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lgqbdk-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8lzthqx-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lh1bvw-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lh6w99 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Notez 0 si "||(if(nvl(PRENOM_ENFAIL2,"") = "") then "cet enfant" else PRENOM_ENFAIL2) || (" est") || (if (SEXE_ENFAIL2 = "1" or nvl(SEXE_ENFAIL2,"") = "") then " décédé" else " décédée") || (" avant un an.") + + + + + fr.insee + l4lhc03p-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu." + + + + + fr.insee + l4lhc03p-CI-1-II-1 + 1 + + warning + + + + "L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge." + + + + + fr.insee + l4lhkbmw-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu." + + + + + fr.insee + l4lhkbmw-CI-1-II-1 + 1 + + warning + + + + "L'âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge." + + + + + fr.insee + l4liqr1h + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "(en face à face, téléphone, mail, SMS, appel vidéo, etc.)" + + + + + fr.insee + l4liqyis-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lai6wbee + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l4lj22ar-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4paergi + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez le dans la liste." + + + + + fr.insee + l4oo8gk0-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4pa7dpy + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez la commune recherchée et sélectionnez la dans la liste." + + + + + fr.insee + l4oo2unu-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4padk5u + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez le dans la liste." + + + + + fr.insee + l4ooebmj-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4liztyl-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lk1w8p-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4ljkmaj-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4o73m0u-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lmxke4-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l59nu66k + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles" + + + + + fr.insee + l4ljj44i-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lg3j5g-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + l4lg6nx5-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lgenh5-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + + + fr.insee + l4lgenh5-CI-1-II-1 + 1 + + warning + + + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + + + fr.insee + l4lgenh5-CI-2-II-2 + 1 + + warning + + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + + + fr.insee + l4lgenh5-CI-3-II-3 + 1 + + warning + + + + "L'année de naissance de votre enfant est comprise entre 1920 et 2024." + + + + + fr.insee + l4pa7lpq + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l4lh0q7i-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lgysxq-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8m0bu1o-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lh0ofl-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lh8af1 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Notez 0 si "||(if(nvl(PRENOM_ENFAIL3,"") = "") then "cet enfant" else PRENOM_ENFAIL3) || (" est") || (if (SEXE_ENFAIL3 = "1" or nvl(SEXE_ENFAIL3,"") = "") then " décédé" else " décédée") || (" avant un an.") + + + + + fr.insee + l4lhbuxg-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu." + + + + + fr.insee + l4lhbuxg-CI-1-II-1 + 1 + + warning + + + + "L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge." + + + + + fr.insee + l4lhdubm-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu." + + + + + fr.insee + l4lhdubm-CI-1-II-1 + 1 + + warning + + + + "L'âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge." + + + + + fr.insee + l4livqhf + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "(en face à face, téléphone, mail, SMS, appel vidéo, etc.)" + + + + + fr.insee + l4lirpfm-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lai71v9g + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l4lj2cqg-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4paa00m + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez le dans la liste." + + + + + fr.insee + l4oo03nq-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4paiw08 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez la commune recherchée et sélectionnez la dans la liste." + + + + + fr.insee + l4oo41j6-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4pac47a + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez le dans la liste." + + + + + fr.insee + l4ooe2gj-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4ljddzv-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lmjzwd-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4ljm6cp-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4o7gt0n-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lmszob-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l59o0g5r + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles" + + + + + fr.insee + l4ljg7fn-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lg5t9v-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + l4lg3wub-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lgfphb-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l4lgfphb-CI-1-II-1 + 1 + + warning + + + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + + + fr.insee + l4lgfphb-CI-2-II-2 + 1 + + warning + + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + + + fr.insee + l4lgfphb-CI-3-II-3 + 1 + + warning + + + + "L'année de naissance de votre enfant est comprise entre 1920 et 2024." + + + + + fr.insee + l4paawvf + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l4lgr9ny-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lgo4yb-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8m03w7m-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lh1a42-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lh0mk3 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Notez 0 si "||(if(nvl(PRENOM_ENFAIL4,"") = "") then "cet enfant" else PRENOM_ENFAIL4) || (" est") || (if (SEXE_ENFAIL4 = "1" or nvl(SEXE_ENFAIL4,"") = "") then " décédé" else " décédée") || (" avant un an.") + + + + + fr.insee + l4lhbfxh-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu." + + + + + fr.insee + l4lhbfxh-CI-1-II-1 + 1 + + warning + + + + "L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge." + + + + + fr.insee + l4lho0e2-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu." + + + + + fr.insee + l4lho0e2-CI-1-II-1 + 1 + + warning + + + + "L'âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge." + + + + + fr.insee + l4liwkni + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "(en face à face, téléphone, mail, SMS, appel vidéo, etc.)" + + + + + fr.insee + l4lj5kv6-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lai71ft1 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l4lj0iea-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4pa6ogq + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez le dans la liste." + + + + + fr.insee + l4oo4x1t-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4pabom2 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez la commune recherchée et sélectionnez la dans la liste." + + + + + fr.insee + l4onwhrf-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4paauej + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez le dans la liste." + + + + + fr.insee + l4oo1817-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lixcs2-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lms9a0-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4ljmpiu-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4o7jdze-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lmvah7-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l59o5htr + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles" + + + + + fr.insee + l4ljjvig-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lgayon-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + l4lgep4c-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lgp1ft-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l4lgp1ft-CI-1-II-1 + 1 + + warning + + + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + + + fr.insee + l4lgp1ft-CI-2-II-2 + 1 + + warning + + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + + + fr.insee + l4lgp1ft-CI-3-II-3 + 1 + + warning + + + + "L'année de naissance de votre enfant est comprise entre 1920 et 2024." + + + + + fr.insee + l4pabnh2 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l4lgnphx-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lh672z-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8m0ld6c-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lhcdf6-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lh2kwz + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Notez 0 si "||(if(nvl(PRENOM_ENFAIL5,"") = "") then "cet enfant" else PRENOM_ENFAIL5) || (" est") || (if (SEXE_ENFAIL5 = "1" or nvl(SEXE_ENFAIL5,"") = "") then " décédé" else " décédée") || (" avant un an.") + + + + + fr.insee + l4lh8c72-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu." + + + + + fr.insee + l4lh8c72-CI-1-II-1 + 1 + + warning + + + + "L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge." + + + + + fr.insee + l4lhn614-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu." + + + + + fr.insee + l4lhn614-CI-1-II-1 + 1 + + warning + + + + "L'âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge." + + + + + fr.insee + l4lj2zmz + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "(en face à face, téléphone, mail, SMS, appel vidéo, etc.)" + + + + + fr.insee + l4lj98cz-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lai73fre + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l4lijtvo-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4paeclu + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez le dans la liste." + + + + + fr.insee + l4oo7lwi-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4pamdh2 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez la commune recherchée et sélectionnez la dans la liste." + + + + + fr.insee + l4oo41q4-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4paiwz0 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez le dans la liste." + + + + + fr.insee + l4oo5bj9-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lizygc-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lmc52p-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4ljxer7-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4o7vzru-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lms6u4-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l59okksf + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles" + + + + + fr.insee + l4ljcdar-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8oign0h-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + l8oi92w4-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8oi7q9f-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l8oi7q9f-CI-1-II-1 + 1 + + warning + + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + + + fr.insee + l8oi7q9f-CI-2-II-2 + 1 + + warning + + + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + + + fr.insee + l8oi7q9f-CI-3-II-3 + 1 + + warning + + + + "L'année de naissance de votre enfant est comprise entre 1920 et 2024." + + + + + fr.insee + l8oifpiy + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l8oientz-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8oidc2m-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8oib75g-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8ohus0v-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8ohgdgh + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Notez 0 si "||(if(nvl(PRENOM_ENFAIL6,"") = "") then "cet enfant" else PRENOM_ENFAIL6) || (" est") || (if (SEXE_ENFAIL6 = "1" or nvl(SEXE_ENFAIL6,"") = "") then " décédé" else " décédée") || (" avant un an.") + + + + + fr.insee + l8ohrpn7-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu." + + + + + fr.insee + l8ohrpn7-CI-1-II-1 + 1 + + warning + + + + "L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge." + + + + + fr.insee + l8ohwpt9-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu." + + + + + fr.insee + l8ohwpt9-CI-1-II-1 + 1 + + warning + + + + "L'âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge." + + + + + fr.insee + l8oh36w5 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "(en face à face, téléphone, mail, SMS, appel vidéo, etc.)" + + + + + fr.insee + l8oh46rn-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lai78xq9 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l8ogysyp-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8ogoo1k + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez le dans la liste." + + + + + fr.insee + l8ogp9jo-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8ogppom + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez la commune recherchée et sélectionnez la dans la liste." + + + + + fr.insee + l8ogqig3-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8ogttr2 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez le dans la liste." + + + + + fr.insee + l8ogpnbn-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + + fr.insee + l8ogukpt-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8ob0dk4-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8oarkxm-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8oaqbj5-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8oanpzw-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8ob1odl + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles" + + + + + fr.insee + l8oasgat-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + + fr.insee + l8ok9kmj-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + l8okbmv3-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8okh65e-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l8okh65e-CI-1-II-1 + 1 + + warning + + + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + + + fr.insee + l8okh65e-CI-2-II-2 + 1 + + warning + + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + + + fr.insee + l8okh65e-CI-3-II-3 + 1 + + warning + + + + "L'année de naissance de votre enfant est comprise entre 1920 et 2024." + + + + + fr.insee + l8ok97f5 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l8okc5z9-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8okdoof-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8ok0d4y-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8ok0acp-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8ojoix6 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Notez 0 si "||(if(nvl(PRENOM_ENFAIL7,"") = "") then "cet enfant" else PRENOM_ENFAIL7) || (" est") || (if (SEXE_ENFAIL7 = "1" or nvl(SEXE_ENFAIL7,"") = "") then " décédé" else " décédée") || (" avant un an.") + + + + + fr.insee + l8ojs3vl-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu." + + + + + fr.insee + l8ojs3vl-CI-1-II-1 + 1 + + warning + + + + "L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge." + + + + + fr.insee + l8ojuhud-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu." + + + + + fr.insee + l8ojuhud-CI-1-II-1 + 1 + + warning + + + + "L'âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge." + + + + + fr.insee + l8ojt8hw + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "(en face à face, téléphone, mail, SMS, appel vidéo, etc.)" + + + + + fr.insee + l8ojmjws-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lai6ugn5 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l8oj98gw-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8ojdq5t + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez le dans la liste." + + + + + fr.insee + l8ojb4ub-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8oj6my9 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez la commune recherchée et sélectionnez la dans la liste." + + + + + fr.insee + l8ojczfv-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8oj5v82 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez le dans la liste." + + + + + fr.insee + l8ojif3m-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8oja1pz-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8oiinpy-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8oj67fo-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8oiu9ax-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8oicj6e-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8oj4gac + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles" + + + + + fr.insee + l8oizp0r-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8olci32-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + l8olbhxj-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8ol9xy3-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l8ol9xy3-CI-1-II-1 + 1 + + warning + + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + + + fr.insee + l8ol9xy3-CI-2-II-2 + 1 + + warning + + + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + + + fr.insee + l8ol9xy3-CI-3-II-3 + 1 + + warning + + + + "L'année de naissance de votre enfant est comprise entre 1920 et 2024." + + + + + fr.insee + l8okzirz + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l8ola1mr-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8okz45l-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8ol369l-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8ole120-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8oktakr + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Notez 0 si "||(if(nvl(PRENOM_ENFAIL8,"") = "") then "cet enfant" else PRENOM_ENFAIL8) || (" est") || (if (SEXE_ENFAIL8 = "1" or nvl(SEXE_ENFAIL8,"") = "") then " décédé" else " décédée") || (" avant un an.") + + + + + fr.insee + l8olcd8n-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu." + + + + + fr.insee + l8olcd8n-CI-1-II-1 + 1 + + warning + + + + "L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge." + + + + + fr.insee + l8ol84b7-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu." + + + + + fr.insee + l8ol84b7-CI-1-II-1 + 1 + + warning + + + + "L'âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge." + + + + + fr.insee + l8ol6hio + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "(en face à face, téléphone, mail, SMS, appel vidéo, etc.)" + + + + + fr.insee + l8okx7cd-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lai7cpw5 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l8okpxv8-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8okk3ew + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez le dans la liste." + + + + + fr.insee + l8okue2t-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8okkn0x + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez la commune recherchée et sélectionnez la dans la liste." + + + + + fr.insee + l8okjfla-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8okt75e + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez le dans la liste." + + + + + fr.insee + l8okxgwv-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8oksuft-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8okked6-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8okkkef-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8okfvhy-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8okioqc-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8okvidp + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles" + + + + + fr.insee + l8oklb21-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l1f65cp9 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", nous allons maintenant vous poser quelques questions sur vos petits-enfants." + + + + fr.insee + ll2aimkg-GOP + 1 + OutParameter + + + + + + fr.insee + l5iarkhk + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "(enfants de vos enfants)" + + + + + fr.insee + l1f6a3qv-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l1f6dz1j-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante au bon déroulement du questionnaire. Merci d'indiquer le nombre attendu." + + + + + fr.insee + l1f62ww0 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "S'il/elle a moins d'un an, notez 0." + + + + + fr.insee + l1f69ivh-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu." + + + + + fr.insee + l1g38p58 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "(en face à face)" + + + + + fr.insee + l1g3k3v5 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "" || if (cast(¤l1f6dz1j-QOP-l1f6aqky¤,integer)>1 or isnull(¤l1f6dz1j-QOP-l1f6aqky¤)) then "Plusieurs réponses possibles." else "" + + + + fr.insee + l1f6dz1j-QOP-l1f6aqky + 1 + OutParameter + + + + + + fr.insee + l1g3hka7-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l1f4o4x7 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "(téléphone, mail, SMS, appel vidéo, etc.)" + + + + + fr.insee + l1g3h5xf + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "" || if (cast(¤l1f6dz1j-QOP-l1f6aqky¤,integer)>1 or isnull(¤l1f6dz1j-QOP-l1f6aqky¤)) then "Plusieurs réponses possibles." else "" + + + + fr.insee + l1f6dz1j-QOP-l1f6aqky + 1 + OutParameter + + + + + + fr.insee + l1f4yrno-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l1g898c1 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", nous allons maintenant vous poser quelques questions sur les aides apportées ou reçues de votre famille (vivant ou non avec vous) et sur votre entourage." + + + + fr.insee + ll2aimkg-GOP + 1 + OutParameter + + + + + + fr.insee + l1g850jr + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles" + + + + + fr.insee + l1g87t8t-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l1g87t8t-CI-1-II-1 + 1 + + warning + + + + "Vous ne pouvez pas cocher Non et une autre réponse." + + + + + fr.insee + l1ggjolj + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles" + + + + + fr.insee + l1ggssgl-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l1ggq5nj + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles" + + + + + fr.insee + l1ggm06b-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci de d'indiquer votre choix." + + + + + fr.insee + l1ggjqp6 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles" + + + + + fr.insee + l1ggtznr-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lfdg0x + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles" + + + + + fr.insee + l4lf0y9m-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + + + fr.insee + l1g8hmv7 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles" + + + + + fr.insee + l1g8o84g-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l1g8o84g-CI-1-II-1 + 1 + + warning + + + + "Vous ne pouvez pas cocher Non et une autre réponse." + + + + + fr.insee + l1ggnslo + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles" + + + + + fr.insee + l1ggpjd7-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l1gglc9h + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles" + + + + + fr.insee + l1ggp8js-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l1ggm7zg + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles" + + + + + fr.insee + l1gh36ky-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + laians4k + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "(exemples : kabyle, breton, LSF, français, italien)" + + + + + fr.insee + laial6r0 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le libellé de la langue recherchée et sélectionnez la dans la liste." + + + + + fr.insee + l1g8apw2-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4o6rkjz + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le libellé de la langue recherchée et sélectionnez la dans la liste." + + + + + fr.insee + l43tgurz-CI-0-II-0 + 1 + + warning + + + + "Vous avez sélectionné la même langue que la précédente. Merci à vous de corriger." + + + + + fr.insee + l4r7fofh + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", nous allons maintenant vous poser quelques questions sur vos parents, vivants ou non (père, mère, personnes que vous considérez comme tels)." + + + + fr.insee + ll2aimkg-GOP + 1 + OutParameter + + + + + + fr.insee + l0wezuxl + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", décrivez l'un de vos parents, encore en vie ou non (père, mère ou personne que vous considérez comme tel), en commençant par le plus âgé." + + + + fr.insee + ll2aimkg-GOP + 1 + OutParameter + + + + + + fr.insee + l2kjnm8k-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + l6c4w3ax + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Indiquez une année approximative si vous ne savez pas précisément." + + + + + fr.insee + l2kjy49o-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l2kjy49o-CI-1-II-1 + 1 + + warning + + + + "L'année de naissance de votre parent ne peut pas être postérieure à votre année de naissance." + + + + + fr.insee + l2kjy49o-CI-2-II-2 + 1 + + warning + + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre parent, est-ce que vous confirmez ?" + + + + + fr.insee + l2kjy49o-CI-3-II-3 + 1 + + warning + + + + "L'année de naissance de votre parent est comprise entre 1860 et 1991." + + + + + fr.insee + l2kkvar7-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l2kk539f-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l7ywp1vk-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4o5gqap + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le libellé de profession recherché et sélectionnez le dans la liste." +"Si vous ne le trouvez pas, passez à la question suivante." + + + + + fr.insee + l5jp82du + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + Saisissez bien la dernière profession connue. + + + + + fr.insee + l4qzje64 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le libellé de profession recherché et sélectionnez le dans la liste." +"Si vous ne le trouvez pas, passez à la question suivante." + + + + + fr.insee + l5joyl4e + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + Saisissez bien la dernière profession connue. + + + + + fr.insee + l45cjoj7-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + l2kjshy4-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + llgo5n7b-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + llgqspnh-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + laiasuwg + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "(exemples : kabyle, breton, LSF, français, italien)" + + + + + fr.insee + laiaq49f + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le libellé de la langue recherchée et sélectionnez la dans la liste." + + + + + fr.insee + l2kk4seh-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4o6o3qv + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le libellé de la langue recherchée et sélectionnez la dans la liste." + + + + + fr.insee + l447j7cx-CI-0-II-0 + 1 + + warning + + + + "Vous avez sélectionné la même langue que la précédente. Merci à vous de corriger." + + + + + fr.insee + l2kjzugb-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l2kkd59n-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l2kkd59n-CI-1-II-1 + 1 + + warning + + + + "L'année du décès de votre parent ne peut pas être antérieure à son année de naissance." + + + + + fr.insee + l2kkd59n-CI-2-II-2 + 1 + + warning + + + + "L'année du décès de votre parent est comprise entre 1880 et 2024." + + + + + fr.insee + l2kk4snz-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lai78qvl + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l2kkb4xa-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4o88r3u + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez le dans la liste." + + + + + fr.insee + l4o7ufzl-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4onfbps + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez la commune recherchée et sélectionnez la dans la liste." + + + + + fr.insee + l4onhpvd-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4o8fj6f + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez le dans la liste." + + + + + fr.insee + l4o8eale-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l1ez5cei + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "(EHPAD, maison de retraite, etc.)" + + + + + fr.insee + l1ezkqes-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l2kkh5nj + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "(en face à face)" + + + + + fr.insee + l2kkeqsz-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l2kk1ab3 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "(téléphone, mail, SMS, appel vidéo, etc.)" + + + + + fr.insee + l2kk296y-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lojzxg-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l43yap7r-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l5axrwsa-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + las2uh3c + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", décrivez maintenant votre autre parent, encore en vie ou non (père, mère ou personne que vous considérez comme tel)." + + + + fr.insee + ll2aimkg-GOP + 1 + OutParameter + + + + + + fr.insee + l27ijusa-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + l6c4ofs8 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Indiquez une année approximative si vous ne savez pas précisément." + + + + + fr.insee + kwqfufye-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + kwqfufye-CI-1-II-1 + 1 + + warning + + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre parent, est-ce que vous confirmez ?" + + + + + fr.insee + kwqfufye-CI-2-II-2 + 1 + + warning + + + + "L'année de naissance de votre parent ne peut pas être postérieure à votre année de naissance." + + + + + fr.insee + kwqfufye-CI-3-II-3 + 1 + + warning + + + + "L'année de naissance de votre parent est comprise entre 1860 et 1991." + + + + + fr.insee + l27ig4yy-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + kwqfhhge-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l7ywxphs-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4o51lf6 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le libellé de profession recherché et sélectionnez le dans la liste." +"Si vous ne le trouvez pas, passez à la question suivante." + + + + + fr.insee + l5jou9wy + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + Saisissez bien la dernière profession connue. + + + + + fr.insee + l4qzsxov + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le libellé de profession recherché et sélectionnez le dans la liste." +"Si vous ne le trouvez pas, passez à la question suivante." + + + + + fr.insee + l5jp1tz6 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + Saisissez bien la dernière profession connue. + + + + + fr.insee + l444t31z-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + kwqfto3c-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + llgosp3i-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + llgrqyqg-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + laiaof32 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "(exemples : kabyle, breton, LSF, français, italien)" + + + + + fr.insee + laiap5v8 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le libellé de la langue recherchée et sélectionnez la dans la liste." + + + + + fr.insee + l1ezgxe3-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4o6tj9q + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le libellé de la langue recherchée et sélectionnez la dans la liste." + + + + + fr.insee + l444xjux-CI-0-II-0 + 1 + + warning + + + + "Vous avez sélectionné la même langue que la précédente. Merci à vous de corriger." + + + + + fr.insee + kwqhjfzk-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + kwqg35i9-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + kwqg35i9-CI-1-II-1 + 1 + + warning + + + + "L'année du décès de votre parent ne peut pas être antérieure à son année de naissance." + + + + + fr.insee + kwqg35i9-CI-2-II-2 + 1 + + warning + + + + "L'année de décès de votre parent est comprise entre 1880 et 2024." + + + + + fr.insee + lley7g7u + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles" + + + + + fr.insee + kwqgffvw-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + kwqgffvw-CI-1-II-1 + 1 + + warning + + + + "Vous ne pouvez pas cocher Ailleurs et une autre réponse." + + + + + fr.insee + lab6xfk9-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lai7elua + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + kwqgawqp-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4o87prg + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez le dans la liste." + + + + + fr.insee + l4o8co0c-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4ondms9 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez la commune recherchée et sélectionnez la dans la liste." + + + + + fr.insee + l4onk34z-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4o8fiwd + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez le dans la liste." + + + + + fr.insee + l4o8dk7q-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l2kjzgxz + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "(EHPAD, maison de retraite, etc.)" + + + + + fr.insee + l2kkc8s9-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l1gkryh5 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "(en face à face)" + + + + + fr.insee + l1gl4054-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l1ezs1o9 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "(téléphone, mail, SMS, appel vidéo, etc.)" + + + + + fr.insee + l1ezkbsf-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l445itcb-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4cjeqc0-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + llf2bmj4 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", nous allons maintenant vous interroger sur votre parcours de vie." + + + + fr.insee + ll2aimkg-GOP + 1 + OutParameter + + + + + + fr.insee + l4omms3t + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "(vivants ou non, y compris vos demi-frères)" + + + + + fr.insee + l8m20psg + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Si aucun, notez 0." + + + + + fr.insee + l473kp51-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + l5ikk5zq-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4740wd1-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + l4740wd1-CI-1-II-1 + 1 + + warning + + + + "Le nombre de frères vivants ne peut pas être supérieur au nombre total de frères." + + + + + fr.insee + l4omj0xx + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "(vivantes ou non, y compris vos demi-sœurs)" + + + + + fr.insee + l8m2azyh + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Si aucune, notez 0." + + + + + fr.insee + l4742c2v-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + l5ikyrbc-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l473w273-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + l473w273-CI-1-II-1 + 1 + + warning + + + + "Le nombre de soeurs vivantes ne peut pas être supérieur au nombre total de soeurs." + + + + + fr.insee + l1f5lf8v + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Ne comptez pas la pension ou l'internat comme un départ." + + + + + + fr.insee + l4s7ngqv + 1 + + help + + + + "Indiquez 99 ans si vous n'êtes jamais parti" || (if (isnull(¤ln0892lt-GOP¤)) then "" else (if (¤ln0892lt-GOP¤ = "2") then "e" else "")) || "." + + + + + + fr.insee + ln0892lt-GOP + 1 + OutParameter + + + + + fr.insee + TYPE_QUEST + 1 + InParameter + + + + + + fr.insee + l1f5th3i-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu." + + + + + fr.insee + l1f5th3i-CI-1-II-1 + 1 + + warning + + + + "L’âge de départ de chez vos parents ne peut pas être supérieur à votre âge." + + + + + fr.insee + l1f693hk + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Décrivez toutes les situations que vous avez connues." + + + + + fr.insee + l1f61fa3-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l43ttd47-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l43u116f + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles" + + + + + fr.insee + l43u439h-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l1f65zkh-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l1g3mygg + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", nous allons terminer le questionnaire en abordant vos études et votre vie professionnelle." + + + + fr.insee + ll2aimkg-GOP + 1 + OutParameter + + + + + + fr.insee + lletj5dq + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Ne comptez ni les années de césure ni les interruptions d'études de moins d'un an comme un arrêt." + + + + + fr.insee + l1g3unwh-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l1g3yk6q-CI-0-II-0 + 1 + + warning + + + + "L'année de fin d'études ne peut pas être antérieure à votre année de naissance." + + + + + fr.insee + l1g3yk6q-CI-1-II-1 + 1 + + warning + + + + "Il semble y avoir peu d'écart entre votre année de naissance et votre année de fin d'études, est-ce que vous confirmez ?" + + + + + fr.insee + l1g3yk6q-CI-2-II-2 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l1g3yk6q-CI-3-II-3 + 1 + + warning + + + + "L'année de fin d'études est comprise entre 1920 et 2024." + + + + + fr.insee + l1g7pgbn-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l1g4pid1-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l1g4pid1-CI-1-II-1 + 1 + + warning + + + + "L'année de votre premier emploi ne peut pas être antérieure à votre année de naissance." + + + + + fr.insee + l1g4pid1-CI-2-II-2 + 1 + + warning + + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre premier emploi, est-ce que vous confirmez ?" + + + + + fr.insee + l1g4pid1-CI-3-II-3 + 1 + + warning + + + + "L'année de votre premier emploi est comprise entre 1920 et 2024." + + + + + fr.insee + l445x7tq-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l1g7iu0j-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l1g7iu0j-CI-1-II-1 + 1 + + warning + + + + "L'année de cessation d'activité ne peut pas être antérieure à votre année de naissance." + + + + + fr.insee + l1g7iu0j-CI-2-II-2 + 1 + + warning + + + + "L'année de cessation d'activité est comprise entre 1920 et 2024." + + + + + fr.insee + l1g7iu0j-CI-3-II-3 + 1 + + warning + + + + "L'année de cessation d'activité ne peut pas être antérieure à l'année de votre premier emploi." + + + + + fr.insee + l1g7vwo6-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lletbq7t-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lletg3z8 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + if ¤ln0892lt-GOP¤="2" then "(hors congés maternité)" else "" + + + + fr.insee + ln0892lt-GOP + 1 + OutParameter + + + + + fr.insee + TYPE_QUEST + 1 + InParameter + + + + + + fr.insee + lletqevy-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lm50h6kg + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Nous vous remercions vivement de votre réponse. Nous vous proposons dans cette dernière partie, de donner votre avis sur ce questionnaire." + + + + + fr.insee + lm4wbzcj + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles." + + + + + fr.insee + lna2ddml + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles." + + + + + fr.insee + lna2duk7 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles." + + + + + fr.insee + lna1z5hs-CI-0-II-0 + 1 + + warning + + + + "Vous ne pouvez pas cocher Non et une autre réponse." + + + + + fr.insee + lagud3o9 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + if (not(isnull(¤RPNBQUEST¤)) and ¤RPNBQUEST¤ <> "1") then "Merci de votre participation !. Le questionnaire s’arrête là pour cette personne. S'il reste des personnes qui doivent répondre à l'enquête, nous allons passer au questionnaire suivant." else "" + + + + + fr.insee + lagv0rul + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "" || if (nvl(¤RPNBQUEST¤,"0") ="1") then "Merci de votre participation !. Le questionnaire s'arrête là. Pensez-bien à le VALIDER" else "" + + + + + + fr.insee + ControlConstructScheme-lnycjn6n + 1 + + fr.insee + Sequence-lnycjn6n + 1 + + VraiQuest - Enquête Familles 2024 V6 Livraison + + template + + fr.insee + l4idqt1t + 1 + Loop + + + fr.insee + ljmw8vex + 1 + Loop + + + fr.insee + l4ctrkzx + 1 + Sequence + + + + fr.insee + l473bp2x + 1 + + REPONDANT + + + "Les personnes concernées par l'enquête" + + module + + fr.insee + l473latk-QC + 1 + QuestionConstruct + + + fr.insee + l473latk-CI-0 + 1 + ComputationItem + + + + fr.insee + kwq9l9z1 + 1 + + INFO + + + "Informations concernant " || ¤ll2aimkg-GOP¤ + + + fr.insee + l2sstox3 + 1 + Instruction + + module + + fr.insee + ll2amvdo + 1 + IfThenElse + + + fr.insee + kwq9y19w-QC + 1 + QuestionConstruct + + + fr.insee + kwq9y19w-CI-0 + 1 + ComputationItem + + + fr.insee + l151hcqh + 1 + IfThenElse + + + fr.insee + li359fnd + 1 + IfThenElse + + + + fr.insee + kwqaaqd3 + 1 + + CONJOINT + + + "VOTRE " || (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then " CONJOINT(E) ACTUEL(LE) " else " DERNIER(ERE) CONJOINT(E) si vous n'êtes plus en couple ") + + + fr.insee + l34fbn76 + 1 + Instruction + + module + + fr.insee + l34grb6h-QC + 1 + QuestionConstruct + + + fr.insee + l34grb6h-CI-0 + 1 + ComputationItem + + + fr.insee + l154t9l0 + 1 + Sequence + + + fr.insee + l27f5twb + 1 + Sequence + + + fr.insee + ljmotpyk + 1 + Sequence + + + + fr.insee + l154t9l0 + 1 + + DESCRIPTION_C + + + "Votre " || (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then " conjoint(e) actuel(le) " else " dernier(ère) conjoint(e) ") || nvl(¤l34grb6h-QOP-l34guyz9¤,"") + + + fr.insee + l155z8f9 + 1 + Instruction + + submodule + + fr.insee + kwqa0ism-QC + 1 + QuestionConstruct + + + fr.insee + kwqa0ism-CI-0 + 1 + ComputationItem + + + fr.insee + llde8dw2 + 1 + IfThenElse + + + fr.insee + lldq4gfz + 1 + IfThenElse + + + + fr.insee + l27f5twb + 1 + + VIECOUPLE + + + Les étapes de votre vie en couple + + + fr.insee + l27ezxol + 1 + Instruction + + submodule + + fr.insee + l27dlmvl-QC + 1 + QuestionConstruct + + + fr.insee + l27dlmvl-CI-0 + 1 + ComputationItem + + + fr.insee + l27dlmvl-CI-1 + 1 + ComputationItem + + + fr.insee + l27dlmvl-CI-2 + 1 + ComputationItem + + + fr.insee + l27dlmvl-CI-3 + 1 + ComputationItem + + + fr.insee + kwqa4zjf-QC + 1 + QuestionConstruct + + + fr.insee + kwqa4zjf-CI-0 + 1 + ComputationItem + + + fr.insee + l27e5a64 + 1 + IfThenElse + + + fr.insee + l0qujqzn-QC + 1 + QuestionConstruct + + + fr.insee + l0qujqzn-CI-0 + 1 + ComputationItem + + + fr.insee + l27dwvi6 + 1 + IfThenElse + + + fr.insee + l27f7ctt + 1 + IfThenElse + + + + fr.insee + ljmotpyk + 1 + + ENFANTCOUPLE + + + Les enfants de votre couple + + submodule + + fr.insee + l43u9qqf-QC + 1 + QuestionConstruct + + + fr.insee + l43u9qqf-CI-0 + 1 + ComputationItem + + + fr.insee + liiz3gaj + 1 + IfThenElse + + + fr.insee + liiz0knd + 1 + IfThenElse + + + fr.insee + liiyov5q + 1 + IfThenElse + + + fr.insee + l15131wu-QC + 1 + QuestionConstruct + + + fr.insee + l15131wu-CI-0 + 1 + ComputationItem + + + fr.insee + lldroldu + 1 + IfThenElse + + + + fr.insee + lldr8qge + 1 + + PERIODES_COUPLE + + + VOS PRECEDENTES PERIODES DE VIE EN COUPLE + + + fr.insee + lldrbrp9 + 1 + Instruction + + module + + fr.insee + lldrik6o + 1 + IfThenElse + + + fr.insee + l9ikwy74 + 1 + IfThenElse + + + + fr.insee + l15553ya + 1 + + VIECOUPLE1 + + + Votre première période de vie en couple + + + fr.insee + l34i4s3k + 1 + Instruction + + submodule + + fr.insee + kwqa53jx-QC + 1 + QuestionConstruct + + + fr.insee + kwqa53jx-CI-0 + 1 + ComputationItem + + + fr.insee + lldegcfi + 1 + IfThenElse + + + fr.insee + lldeh60s + 1 + IfThenElse + + + fr.insee + l34fzu5m-QC + 1 + QuestionConstruct + + + fr.insee + l34fzu5m-CI-0 + 1 + ComputationItem + + + fr.insee + l34fzu5m-CI-1 + 1 + ComputationItem + + + fr.insee + l34fzu5m-CI-2 + 1 + ComputationItem + + + fr.insee + l34fzu5m-CI-3 + 1 + ComputationItem + + + fr.insee + l34fzu5m-CI-4 + 1 + ComputationItem + + + fr.insee + l27dlnmq-QC + 1 + QuestionConstruct + + + fr.insee + l27dlnmq-CI-0 + 1 + ComputationItem + + + fr.insee + l27dvgfz + 1 + IfThenElse + + + fr.insee + l27duust-QC + 1 + QuestionConstruct + + + fr.insee + l27duust-CI-0 + 1 + ComputationItem + + + fr.insee + l27e9z6f + 1 + IfThenElse + + + fr.insee + l5ktf1wn-QC + 1 + QuestionConstruct + + + fr.insee + l5ktf1wn-CI-0 + 1 + ComputationItem + + + fr.insee + l27dyrt7 + 1 + IfThenElse + + + fr.insee + l27egeg1 + 1 + IfThenElse + + + fr.insee + l4cjg2rp-QC + 1 + QuestionConstruct + + + fr.insee + l4cjg2rp-CI-0 + 1 + ComputationItem + + + fr.insee + l4cjjud7 + 1 + IfThenElse + + + + fr.insee + l9iksl95 + 1 + + VIECOUPLE2 + + + Votre autre période de vie en couple + + + fr.insee + l9ikp94t + 1 + Instruction + + submodule + + fr.insee + l9il0i0h-QC + 1 + QuestionConstruct + + + fr.insee + l9il0i0h-CI-0 + 1 + ComputationItem + + + fr.insee + l9r6arh1 + 1 + IfThenElse + + + + fr.insee + kwqi91j9 + 1 + + ENFANTS + + + VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés) + + + fr.insee + l34i0o62 + 1 + Instruction + + module + + fr.insee + ljmulh27 + 1 + Sequence + + + fr.insee + l4qswa5h + 1 + IfThenElse + + + fr.insee + l4nw2vbq + 1 + IfThenElse + + + fr.insee + l4le5g6d + 1 + IfThenElse + + + fr.insee + l4lf1r7t + 1 + IfThenElse + + + fr.insee + l4lg777d + 1 + IfThenElse + + + fr.insee + l8n313zq + 1 + IfThenElse + + + fr.insee + l8n3phvb + 1 + IfThenElse + + + fr.insee + l8n410d7 + 1 + IfThenElse + + + fr.insee + l4qsy750 + 1 + IfThenElse + + + fr.insee + l4lnzqvx + 1 + IfThenElse + + + fr.insee + l4loausq + 1 + IfThenElse + + + fr.insee + ljoexgb3 + 1 + IfThenElse + + + fr.insee + ljoet34y + 1 + IfThenElse + + + fr.insee + ljoevvfr + 1 + IfThenElse + + + fr.insee + ljofcoik + 1 + IfThenElse + + + fr.insee + ljof97j4 + 1 + IfThenElse + + + + fr.insee + ljmulh27 + 1 + + DESCRIPTION_ENF + + + Description de vos enfants qui vivent avec vous ou non (y compris ceux adoptés ou décédés) + + submodule + + fr.insee + kwqigxtx-QC + 1 + QuestionConstruct + + + fr.insee + kwqigxtx-CI-0 + 1 + ComputationItem + + + fr.insee + kwqijmkn + 1 + IfThenElse + + + + fr.insee + l446h6js + 1 + + VOSENFLOG1 + + + Votre premier enfant qui vit avec vous, même une petite partie du temps seulement + + + fr.insee + l446p7s5 + 1 + Instruction + + + fr.insee + l4pjpys2 + 1 + Instruction + + submodule + + fr.insee + l446nede-QC + 1 + QuestionConstruct + + + fr.insee + l446nede-CI-0 + 1 + ComputationItem + + + fr.insee + kwqjk80w-QC + 1 + QuestionConstruct + + + fr.insee + kwqjk80w-CI-0 + 1 + ComputationItem + + + fr.insee + kwqjmq2o-QC + 1 + QuestionConstruct + + + fr.insee + kwqjmq2o-CI-0 + 1 + ComputationItem + + + fr.insee + kwqjmq2o-CI-1 + 1 + ComputationItem + + + fr.insee + kwqjmq2o-CI-2 + 1 + ComputationItem + + + fr.insee + kwqjmq2o-CI-3 + 1 + ComputationItem + + + fr.insee + l4qtls9o-QC + 1 + QuestionConstruct + + + fr.insee + l4qtls9o-CI-0 + 1 + ComputationItem + + + fr.insee + kwqjol7e-QC + 1 + QuestionConstruct + + + fr.insee + kwqjol7e-CI-0 + 1 + ComputationItem + + + fr.insee + l4471oef + 1 + IfThenElse + + + fr.insee + l1gia5uh-QC + 1 + QuestionConstruct + + + fr.insee + l1gia5uh-CI-0 + 1 + ComputationItem + + + fr.insee + l1gia5uh-CI-1 + 1 + ComputationItem + + + + fr.insee + ljmv0rhg + 1 + + VOSENFLOG2 + + + Votre deuxième enfant qui vit avec vous, même une petite partie du temps seulement + + submodule + + fr.insee + l4i9118b-QC + 1 + QuestionConstruct + + + fr.insee + l4i9118b-CI-0 + 1 + ComputationItem + + + fr.insee + l4i8zu5m-QC + 1 + QuestionConstruct + + + fr.insee + l4i8zu5m-CI-0 + 1 + ComputationItem + + + fr.insee + l4ia7rxn-QC + 1 + QuestionConstruct + + + fr.insee + l4ia7rxn-CI-0 + 1 + ComputationItem + + + fr.insee + l4ia7rxn-CI-1 + 1 + ComputationItem + + + fr.insee + l4ia7rxn-CI-2 + 1 + ComputationItem + + + fr.insee + l4ia7rxn-CI-3 + 1 + ComputationItem + + + fr.insee + l4qtpg9f-QC + 1 + QuestionConstruct + + + fr.insee + l4qtpg9f-CI-0 + 1 + ComputationItem + + + fr.insee + l4iano52-QC + 1 + QuestionConstruct + + + fr.insee + l4iano52-CI-0 + 1 + ComputationItem + + + fr.insee + l4idm31n + 1 + IfThenElse + + + fr.insee + l4ia7y0p-QC + 1 + QuestionConstruct + + + fr.insee + l4ia7y0p-CI-0 + 1 + ComputationItem + + + fr.insee + l4ia7y0p-CI-1 + 1 + ComputationItem + + + + fr.insee + ljmvg6vc + 1 + + VOSENFLOG3 + + + Votre troisième enfant qui vit avec vous, même une petite partie du temps seulement + + submodule + + fr.insee + l4ld0ziw-QC + 1 + QuestionConstruct + + + fr.insee + l4ld0ziw-CI-0 + 1 + ComputationItem + + + fr.insee + l4lcp4co-QC + 1 + QuestionConstruct + + + fr.insee + l4lcp4co-CI-0 + 1 + ComputationItem + + + fr.insee + l4ld3y0j-QC + 1 + QuestionConstruct + + + fr.insee + l4ld3y0j-CI-0 + 1 + ComputationItem + + + fr.insee + l4ld3y0j-CI-1 + 1 + ComputationItem + + + fr.insee + l4ld3y0j-CI-2 + 1 + ComputationItem + + + fr.insee + l4ld3y0j-CI-3 + 1 + ComputationItem + + + fr.insee + l4qty53i-QC + 1 + QuestionConstruct + + + fr.insee + l4qty53i-CI-0 + 1 + ComputationItem + + + fr.insee + l4lct7cb-QC + 1 + QuestionConstruct + + + fr.insee + l4lct7cb-CI-0 + 1 + ComputationItem + + + fr.insee + l4ldkvn7 + 1 + IfThenElse + + + fr.insee + l4lcuoke-QC + 1 + QuestionConstruct + + + fr.insee + l4lcuoke-CI-0 + 1 + ComputationItem + + + fr.insee + l4lcuoke-CI-1 + 1 + ComputationItem + + + + fr.insee + ljmv7iyw + 1 + + VOSENFLOG4 + + + Votre quatrième enfant qui vit avec vous, même une petite partie du temps seulement + + submodule + + fr.insee + l4lec0rk-QC + 1 + QuestionConstruct + + + fr.insee + l4lec0rk-CI-0 + 1 + ComputationItem + + + fr.insee + l4lefdoh-QC + 1 + QuestionConstruct + + + fr.insee + l4lefdoh-CI-0 + 1 + ComputationItem + + + fr.insee + l4le9rs3-QC + 1 + QuestionConstruct + + + fr.insee + l4le9rs3-CI-0 + 1 + ComputationItem + + + fr.insee + l4le9rs3-CI-1 + 1 + ComputationItem + + + fr.insee + l4le9rs3-CI-2 + 1 + ComputationItem + + + fr.insee + l4le9rs3-CI-3 + 1 + ComputationItem + + + fr.insee + l4qtvt71-QC + 1 + QuestionConstruct + + + fr.insee + l4qtvt71-CI-0 + 1 + ComputationItem + + + fr.insee + l4ler7fu-QC + 1 + QuestionConstruct + + + fr.insee + l4ler7fu-CI-0 + 1 + ComputationItem + + + fr.insee + l4leyz4g + 1 + IfThenElse + + + fr.insee + l4lec2qz-QC + 1 + QuestionConstruct + + + fr.insee + l4lec2qz-CI-0 + 1 + ComputationItem + + + fr.insee + l4lec2qz-CI-1 + 1 + ComputationItem + + + + fr.insee + ljmv5mgh + 1 + + VOSENFLOG5 + + + Votre cinquième enfant qui vit avec vous, même une petite partie du temps seulement + + submodule + + fr.insee + l4leulqw-QC + 1 + QuestionConstruct + + + fr.insee + l4leulqw-CI-0 + 1 + ComputationItem + + + fr.insee + l4lem0yg-QC + 1 + QuestionConstruct + + + fr.insee + l4lem0yg-CI-0 + 1 + ComputationItem + + + fr.insee + l4lffj1f-QC + 1 + QuestionConstruct + + + fr.insee + l4lffj1f-CI-0 + 1 + ComputationItem + + + fr.insee + l4lffj1f-CI-1 + 1 + ComputationItem + + + fr.insee + l4lffj1f-CI-2 + 1 + ComputationItem + + + fr.insee + l4lffj1f-CI-3 + 1 + ComputationItem + + + fr.insee + l4qtm8di-QC + 1 + QuestionConstruct + + + fr.insee + l4qtm8di-CI-0 + 1 + ComputationItem + + + fr.insee + l4lfye1g-QC + 1 + QuestionConstruct + + + fr.insee + l4lfye1g-CI-0 + 1 + ComputationItem + + + fr.insee + l4lg52ne + 1 + IfThenElse + + + fr.insee + l4lfclty-QC + 1 + QuestionConstruct + + + fr.insee + l4lfclty-CI-0 + 1 + ComputationItem + + + fr.insee + l4lfclty-CI-1 + 1 + ComputationItem + + + + fr.insee + ljmvjhon + 1 + + VOSENFLOG6 + + + Votre sixième enfant qui vit avec vous, même une petite partie du temps seulement + + submodule + + fr.insee + l8n2umnw-QC + 1 + QuestionConstruct + + + fr.insee + l8n2umnw-CI-0 + 1 + ComputationItem + + + fr.insee + l8n2e1mr-QC + 1 + QuestionConstruct + + + fr.insee + l8n2e1mr-CI-0 + 1 + ComputationItem + + + fr.insee + l8n2lctv-QC + 1 + QuestionConstruct + + + fr.insee + l8n2lctv-CI-0 + 1 + ComputationItem + + + fr.insee + l8n2lctv-CI-1 + 1 + ComputationItem + + + fr.insee + l8n2lctv-CI-2 + 1 + ComputationItem + + + fr.insee + l8n2lctv-CI-3 + 1 + ComputationItem + + + fr.insee + l8n2gmuq-QC + 1 + QuestionConstruct + + + fr.insee + l8n2gmuq-CI-0 + 1 + ComputationItem + + + fr.insee + l8n2ilpb-QC + 1 + QuestionConstruct + + + fr.insee + l8n2ilpb-CI-0 + 1 + ComputationItem + + + fr.insee + l8n2b0y0 + 1 + IfThenElse + + + fr.insee + l8n2hdgw-QC + 1 + QuestionConstruct + + + fr.insee + l8n2hdgw-CI-0 + 1 + ComputationItem + + + fr.insee + l8n2hdgw-CI-1 + 1 + ComputationItem + + + + fr.insee + ljmvjzfz + 1 + + VOSENFLOG7 + + + Votre septième enfant qui vit avec vous, même une petite partie du temps seulement + + submodule + + fr.insee + l8n3pb4f-QC + 1 + QuestionConstruct + + + fr.insee + l8n3pb4f-CI-0 + 1 + ComputationItem + + + fr.insee + l8n3mik2-QC + 1 + QuestionConstruct + + + fr.insee + l8n3mik2-CI-0 + 1 + ComputationItem + + + fr.insee + l8n3jmk8-QC + 1 + QuestionConstruct + + + fr.insee + l8n3jmk8-CI-0 + 1 + ComputationItem + + + fr.insee + l8n3jmk8-CI-1 + 1 + ComputationItem + + + fr.insee + l8n3jmk8-CI-2 + 1 + ComputationItem + + + fr.insee + l8n3jmk8-CI-3 + 1 + ComputationItem + + + fr.insee + l8n36fv3-QC + 1 + QuestionConstruct + + + fr.insee + l8n36fv3-CI-0 + 1 + ComputationItem + + + fr.insee + l8n3ff6s-QC + 1 + QuestionConstruct + + + fr.insee + l8n3ff6s-CI-0 + 1 + ComputationItem + + + fr.insee + l8n3khpg + 1 + IfThenElse + + + fr.insee + l8n3bp4o-QC + 1 + QuestionConstruct + + + fr.insee + l8n3bp4o-CI-0 + 1 + ComputationItem + + + fr.insee + l8n3bp4o-CI-1 + 1 + ComputationItem + + + + fr.insee + ljmvnzv4 + 1 + + VOSENFLOG8 + + + Votre huitième enfant qui vit avec vous, même une petite partie du temps seulement + + submodule + + fr.insee + l8n4cayp-QC + 1 + QuestionConstruct + + + fr.insee + l8n4cayp-CI-0 + 1 + ComputationItem + + + fr.insee + l8n406m9-QC + 1 + QuestionConstruct + + + fr.insee + l8n406m9-CI-0 + 1 + ComputationItem + + + fr.insee + l8n3tya0-QC + 1 + QuestionConstruct + + + fr.insee + l8n3tya0-CI-0 + 1 + ComputationItem + + + fr.insee + l8n3tya0-CI-1 + 1 + ComputationItem + + + fr.insee + l8n3tya0-CI-2 + 1 + ComputationItem + + + fr.insee + l8n3tya0-CI-3 + 1 + ComputationItem + + + fr.insee + l8n3vr8b-QC + 1 + QuestionConstruct + + + fr.insee + l8n3vr8b-CI-0 + 1 + ComputationItem + + + fr.insee + l8n427a2-QC + 1 + QuestionConstruct + + + fr.insee + l8n427a2-CI-0 + 1 + ComputationItem + + + fr.insee + l8n470rx + 1 + IfThenElse + + + fr.insee + l8n3uqr2-QC + 1 + QuestionConstruct + + + fr.insee + l8n3uqr2-CI-0 + 1 + ComputationItem + + + fr.insee + l8n3uqr2-CI-1 + 1 + ComputationItem + + + + fr.insee + l447aq23 + 1 + + VOSENFAIL1 + + + "Votre premier enfant qui ne vit pas avec vous ou qui est décédé" + + + fr.insee + l447etvc + 1 + Instruction + + + fr.insee + l4pjmysh + 1 + Instruction + + submodule + + fr.insee + l4idug6p-QC + 1 + QuestionConstruct + + + fr.insee + l4idug6p-CI-0 + 1 + ComputationItem + + + fr.insee + kwqix1j5-QC + 1 + QuestionConstruct + + + fr.insee + kwqix1j5-CI-0 + 1 + ComputationItem + + + fr.insee + kwqj561a-QC + 1 + QuestionConstruct + + + fr.insee + kwqj561a-CI-0 + 1 + ComputationItem + + + fr.insee + kwqj561a-CI-1 + 1 + ComputationItem + + + fr.insee + kwqj561a-CI-2 + 1 + ComputationItem + + + fr.insee + kwqj561a-CI-3 + 1 + ComputationItem + + + fr.insee + l4cjlk0i-QC + 1 + QuestionConstruct + + + fr.insee + l4cjlk0i-CI-0 + 1 + ComputationItem + + + fr.insee + l4cjivdg-QC + 1 + QuestionConstruct + + + fr.insee + l4cjivdg-CI-0 + 1 + ComputationItem + + + fr.insee + l8lzngsq + 1 + IfThenElse + + + fr.insee + l4485tkr-QC + 1 + QuestionConstruct + + + fr.insee + l4485tkr-CI-0 + 1 + ComputationItem + + + fr.insee + l5jdinbs + 1 + IfThenElse + + + fr.insee + l448gpc1 + 1 + IfThenElse + + + fr.insee + l48e5rva + 1 + IfThenElse + + + fr.insee + llgfwmuj + 1 + IfThenElse + + + + fr.insee + ljmwx9yl + 1 + + VOSENFAIL2 + + + "Votre deuxième enfant qui ne vit pas avec vous ou qui est décédé" + + submodule + + fr.insee + l4lg1tus-QC + 1 + QuestionConstruct + + + fr.insee + l4lg1tus-CI-0 + 1 + ComputationItem + + + fr.insee + l4lgd8bs-QC + 1 + QuestionConstruct + + + fr.insee + l4lgd8bs-CI-0 + 1 + ComputationItem + + + fr.insee + l4lgjbi8-QC + 1 + QuestionConstruct + + + fr.insee + l4lgjbi8-CI-0 + 1 + ComputationItem + + + fr.insee + l4lgjbi8-CI-1 + 1 + ComputationItem + + + fr.insee + l4lgjbi8-CI-2 + 1 + ComputationItem + + + fr.insee + l4lgjbi8-CI-3 + 1 + ComputationItem + + + fr.insee + l4lgtwy7-QC + 1 + QuestionConstruct + + + fr.insee + l4lgtwy7-CI-0 + 1 + ComputationItem + + + fr.insee + l4lgqbdk-QC + 1 + QuestionConstruct + + + fr.insee + l4lgqbdk-CI-0 + 1 + ComputationItem + + + fr.insee + l8m0kidv + 1 + IfThenElse + + + fr.insee + l4lh1bvw-QC + 1 + QuestionConstruct + + + fr.insee + l4lh1bvw-CI-0 + 1 + ComputationItem + + + fr.insee + l5jdovhd + 1 + IfThenElse + + + fr.insee + l4lnn260 + 1 + IfThenElse + + + fr.insee + l4lnyip6 + 1 + IfThenElse + + + fr.insee + llgftzzb + 1 + IfThenElse + + + + fr.insee + ljmwnjny + 1 + + VOSENFAIL3 + + + "Votre troisième enfant qui ne vit pas avec vous ou qui est décédé" + + submodule + + fr.insee + l4lg3j5g-QC + 1 + QuestionConstruct + + + fr.insee + l4lg3j5g-CI-0 + 1 + ComputationItem + + + fr.insee + l4lg6nx5-QC + 1 + QuestionConstruct + + + fr.insee + l4lg6nx5-CI-0 + 1 + ComputationItem + + + fr.insee + l4lgenh5-QC + 1 + QuestionConstruct + + + fr.insee + l4lgenh5-CI-0 + 1 + ComputationItem + + + fr.insee + l4lgenh5-CI-1 + 1 + ComputationItem + + + fr.insee + l4lgenh5-CI-2 + 1 + ComputationItem + + + fr.insee + l4lgenh5-CI-3 + 1 + ComputationItem + + + fr.insee + l4lh0q7i-QC + 1 + QuestionConstruct + + + fr.insee + l4lh0q7i-CI-0 + 1 + ComputationItem + + + fr.insee + l4lgysxq-QC + 1 + QuestionConstruct + + + fr.insee + l4lgysxq-CI-0 + 1 + ComputationItem + + + fr.insee + l8m0jyzr + 1 + IfThenElse + + + fr.insee + l4lh0ofl-QC + 1 + QuestionConstruct + + + fr.insee + l4lh0ofl-CI-0 + 1 + ComputationItem + + + fr.insee + l5jd8k6b + 1 + IfThenElse + + + fr.insee + l4lo0hmx + 1 + IfThenElse + + + fr.insee + l4lnxn2v + 1 + IfThenElse + + + fr.insee + llgfq55t + 1 + IfThenElse + + + + fr.insee + ljof3wlm + 1 + + VOSENFAIL4 + + + "Votre quatrième enfant qui ne vit pas avec vous ou qui est décédé" + + submodule + + fr.insee + l4lg5t9v-QC + 1 + QuestionConstruct + + + fr.insee + l4lg5t9v-CI-0 + 1 + ComputationItem + + + fr.insee + l4lg3wub-QC + 1 + QuestionConstruct + + + fr.insee + l4lg3wub-CI-0 + 1 + ComputationItem + + + fr.insee + l4lgfphb-QC + 1 + QuestionConstruct + + + fr.insee + l4lgfphb-CI-0 + 1 + ComputationItem + + + fr.insee + l4lgfphb-CI-1 + 1 + ComputationItem + + + fr.insee + l4lgfphb-CI-2 + 1 + ComputationItem + + + fr.insee + l4lgfphb-CI-3 + 1 + ComputationItem + + + fr.insee + l4lgr9ny-QC + 1 + QuestionConstruct + + + fr.insee + l4lgr9ny-CI-0 + 1 + ComputationItem + + + fr.insee + l4lgo4yb-QC + 1 + QuestionConstruct + + + fr.insee + l4lgo4yb-CI-0 + 1 + ComputationItem + + + fr.insee + l8m04lnr + 1 + IfThenElse + + + fr.insee + l4lh1a42-QC + 1 + QuestionConstruct + + + fr.insee + l4lh1a42-CI-0 + 1 + ComputationItem + + + fr.insee + l5jdq77k + 1 + IfThenElse + + + fr.insee + l4lnrwjq + 1 + IfThenElse + + + fr.insee + l4lnlsmv + 1 + IfThenElse + + + fr.insee + llgftq0w + 1 + IfThenElse + + + + fr.insee + ljof7iet + 1 + + VOSENFAIL5 + + + "Votre cinquième enfant qui ne vit pas avec vous ou qui est décédé" + + submodule + + fr.insee + l4lgayon-QC + 1 + QuestionConstruct + + + fr.insee + l4lgayon-CI-0 + 1 + ComputationItem + + + fr.insee + l4lgep4c-QC + 1 + QuestionConstruct + + + fr.insee + l4lgep4c-CI-0 + 1 + ComputationItem + + + fr.insee + l4lgp1ft-QC + 1 + QuestionConstruct + + + fr.insee + l4lgp1ft-CI-0 + 1 + ComputationItem + + + fr.insee + l4lgp1ft-CI-1 + 1 + ComputationItem + + + fr.insee + l4lgp1ft-CI-2 + 1 + ComputationItem + + + fr.insee + l4lgp1ft-CI-3 + 1 + ComputationItem + + + fr.insee + l4lgnphx-QC + 1 + QuestionConstruct + + + fr.insee + l4lgnphx-CI-0 + 1 + ComputationItem + + + fr.insee + l4lh672z-QC + 1 + QuestionConstruct + + + fr.insee + l4lh672z-CI-0 + 1 + ComputationItem + + + fr.insee + l8m09ijs + 1 + IfThenElse + + + fr.insee + l4lhcdf6-QC + 1 + QuestionConstruct + + + fr.insee + l4lhcdf6-CI-0 + 1 + ComputationItem + + + fr.insee + l5jdpoid + 1 + IfThenElse + + + fr.insee + l4lnut2u + 1 + IfThenElse + + + fr.insee + l4lnsxgt + 1 + IfThenElse + + + fr.insee + llgfxcw1 + 1 + IfThenElse + + + + fr.insee + ljoezdxm + 1 + + VOSENFAIL6 + + + "Votre sixième enfant qui ne vit pas avec vous ou qui est décédé" + + submodule + + fr.insee + l8oign0h-QC + 1 + QuestionConstruct + + + fr.insee + l8oign0h-CI-0 + 1 + ComputationItem + + + fr.insee + l8oi92w4-QC + 1 + QuestionConstruct + + + fr.insee + l8oi92w4-CI-0 + 1 + ComputationItem + + + fr.insee + l8oi7q9f-QC + 1 + QuestionConstruct + + + fr.insee + l8oi7q9f-CI-0 + 1 + ComputationItem + + + fr.insee + l8oi7q9f-CI-1 + 1 + ComputationItem + + + fr.insee + l8oi7q9f-CI-2 + 1 + ComputationItem + + + fr.insee + l8oi7q9f-CI-3 + 1 + ComputationItem + + + fr.insee + l8oientz-QC + 1 + QuestionConstruct + + + fr.insee + l8oientz-CI-0 + 1 + ComputationItem + + + fr.insee + l8oidc2m-QC + 1 + QuestionConstruct + + + fr.insee + l8oidc2m-CI-0 + 1 + ComputationItem + + + fr.insee + l8oi3stp + 1 + IfThenElse + + + fr.insee + l8ohus0v-QC + 1 + QuestionConstruct + + + fr.insee + l8ohus0v-CI-0 + 1 + ComputationItem + + + fr.insee + l8oi6q33 + 1 + IfThenElse + + + fr.insee + l8oi13y2 + 1 + IfThenElse + + + fr.insee + l8oh7dqr + 1 + IfThenElse + + + fr.insee + llgftk16 + 1 + IfThenElse + + + + fr.insee + ljof8bti + 1 + + VOSENFAIL7 + + + "Votre septième enfant qui ne vit pas avec vous ou qui est décédé" + + submodule + + fr.insee + l8ok9kmj-QC + 1 + QuestionConstruct + + + fr.insee + l8ok9kmj-CI-0 + 1 + ComputationItem + + + fr.insee + l8okbmv3-QC + 1 + QuestionConstruct + + + fr.insee + l8okbmv3-CI-0 + 1 + ComputationItem + + + fr.insee + l8okh65e-QC + 1 + QuestionConstruct + + + fr.insee + l8okh65e-CI-0 + 1 + ComputationItem + + + fr.insee + l8okh65e-CI-1 + 1 + ComputationItem + + + fr.insee + l8okh65e-CI-2 + 1 + ComputationItem + + + fr.insee + l8okh65e-CI-3 + 1 + ComputationItem + + + fr.insee + l8okc5z9-QC + 1 + QuestionConstruct + + + fr.insee + l8okc5z9-CI-0 + 1 + ComputationItem + + + fr.insee + l8okdoof-QC + 1 + QuestionConstruct + + + fr.insee + l8okdoof-CI-0 + 1 + ComputationItem + + + fr.insee + l8ojynib + 1 + IfThenElse + + + fr.insee + l8ok0acp-QC + 1 + QuestionConstruct + + + fr.insee + l8ok0acp-CI-0 + 1 + ComputationItem + + + fr.insee + l8ojvs72 + 1 + IfThenElse + + + fr.insee + l8ojs17t + 1 + IfThenElse + + + fr.insee + l8ojrm6c + 1 + IfThenElse + + + fr.insee + llgg0wtp + 1 + IfThenElse + + + + fr.insee + ljofiex8 + 1 + + VOSENFAIL8 + + + "Votre huitième enfant qui ne vit pas avec vous ou qui est décédé" + + submodule + + fr.insee + l8olci32-QC + 1 + QuestionConstruct + + + fr.insee + l8olci32-CI-0 + 1 + ComputationItem + + + fr.insee + l8olbhxj-QC + 1 + QuestionConstruct + + + fr.insee + l8olbhxj-CI-0 + 1 + ComputationItem + + + fr.insee + l8ol9xy3-QC + 1 + QuestionConstruct + + + fr.insee + l8ol9xy3-CI-0 + 1 + ComputationItem + + + fr.insee + l8ol9xy3-CI-1 + 1 + ComputationItem + + + fr.insee + l8ol9xy3-CI-2 + 1 + ComputationItem + + + fr.insee + l8ol9xy3-CI-3 + 1 + ComputationItem + + + fr.insee + l8ola1mr-QC + 1 + QuestionConstruct + + + fr.insee + l8ola1mr-CI-0 + 1 + ComputationItem + + + fr.insee + l8okz45l-QC + 1 + QuestionConstruct + + + fr.insee + l8okz45l-CI-0 + 1 + ComputationItem + + + fr.insee + l8ol5p2y + 1 + IfThenElse + + + fr.insee + l8ole120-QC + 1 + QuestionConstruct + + + fr.insee + l8ole120-CI-0 + 1 + ComputationItem + + + fr.insee + l8ol0eoi + 1 + IfThenElse + + + fr.insee + l8oky4d1 + 1 + IfThenElse + + + fr.insee + l8olrfxk + 1 + IfThenElse + + + fr.insee + llgg12c3 + 1 + IfThenElse + + + + fr.insee + l1f6bztr + 1 + + PETITENF + + + VOS PETITS-ENFANTS + + + fr.insee + l1f65cp9 + 1 + Instruction + + module + + fr.insee + l1f6a3qv-QC + 1 + QuestionConstruct + + + fr.insee + l1f6a3qv-CI-0 + 1 + ComputationItem + + + fr.insee + l1ghnjrp + 1 + IfThenElse + + + + fr.insee + l1g7w78w + 1 + + ENTOURAGE + + + VOTRE FAMILLE (vivant ou non avec vous) ET VOTRE ENTOURAGE + + + fr.insee + l1g898c1 + 1 + Instruction + + module + + fr.insee + l1g87t8t-QC + 1 + QuestionConstruct + + + fr.insee + l1g87t8t-CI-0 + 1 + ComputationItem + + + fr.insee + l1g87t8t-CI-1 + 1 + ComputationItem + + + fr.insee + l1ggxm5j + 1 + IfThenElse + + + fr.insee + l1ggoetu + 1 + IfThenElse + + + fr.insee + l1ggo3n3 + 1 + IfThenElse + + + fr.insee + l4lfld0y + 1 + IfThenElse + + + fr.insee + l1g8o84g-QC + 1 + QuestionConstruct + + + fr.insee + l1g8o84g-CI-0 + 1 + ComputationItem + + + fr.insee + l1g8o84g-CI-1 + 1 + ComputationItem + + + fr.insee + l1gh5cvx + 1 + IfThenElse + + + fr.insee + l1ggn2ni + 1 + IfThenElse + + + fr.insee + l1ggzpng + 1 + IfThenElse + + + fr.insee + l1g8apw2-QC + 1 + QuestionConstruct + + + fr.insee + l1g8apw2-CI-0 + 1 + ComputationItem + + + fr.insee + lmrqj2ni + 1 + IfThenElse + + + + fr.insee + kwqfdovw + 1 + + PARENTS + + + VOS PARENTS, ENCORE EN VIE OU NON + + + fr.insee + l4r7fofh + 1 + Instruction + + module + + fr.insee + kwqf618x + 1 + Sequence + + + fr.insee + l5ayth8i + 1 + IfThenElse + + + + fr.insee + kwqf618x + 1 + + PARENT1 + + + "Votre parent le plus âgé" + + + fr.insee + l0wezuxl + 1 + Instruction + + submodule + + fr.insee + l2kjnm8k-QC + 1 + QuestionConstruct + + + fr.insee + l2kjnm8k-CI-0 + 1 + ComputationItem + + + fr.insee + l2kjy49o-QC + 1 + QuestionConstruct + + + fr.insee + l2kjy49o-CI-0 + 1 + ComputationItem + + + fr.insee + l2kjy49o-CI-1 + 1 + ComputationItem + + + fr.insee + l2kjy49o-CI-2 + 1 + ComputationItem + + + fr.insee + l2kjy49o-CI-3 + 1 + ComputationItem + + + fr.insee + l2kkvar7-QC + 1 + QuestionConstruct + + + fr.insee + l2kkvar7-CI-0 + 1 + ComputationItem + + + fr.insee + l4nwoi2w + 1 + IfThenElse + + + fr.insee + l2kk4seh-QC + 1 + QuestionConstruct + + + fr.insee + l2kk4seh-CI-0 + 1 + ComputationItem + + + fr.insee + lmrqnci8 + 1 + IfThenElse + + + fr.insee + lbpj1dh7 + 1 + IfThenElse + + + fr.insee + l5axrwsa-QC + 1 + QuestionConstruct + + + fr.insee + l5axrwsa-CI-0 + 1 + ComputationItem + + + + fr.insee + las2r756 + 1 + + PARENT2 + + + Votre autre parent + + + fr.insee + las2uh3c + 1 + Instruction + + submodule + + fr.insee + l27ijusa-QC + 1 + QuestionConstruct + + + fr.insee + l27ijusa-CI-0 + 1 + ComputationItem + + + fr.insee + kwqfufye-QC + 1 + QuestionConstruct + + + fr.insee + kwqfufye-CI-0 + 1 + ComputationItem + + + fr.insee + kwqfufye-CI-1 + 1 + ComputationItem + + + fr.insee + kwqfufye-CI-2 + 1 + ComputationItem + + + fr.insee + kwqfufye-CI-3 + 1 + ComputationItem + + + fr.insee + l27ig4yy-QC + 1 + QuestionConstruct + + + fr.insee + l27ig4yy-CI-0 + 1 + ComputationItem + + + fr.insee + l4o63304 + 1 + IfThenElse + + + fr.insee + l1ezgxe3-QC + 1 + QuestionConstruct + + + fr.insee + l1ezgxe3-CI-0 + 1 + ComputationItem + + + fr.insee + lmrr3r3g + 1 + IfThenElse + + + fr.insee + lbpjirq3 + 1 + IfThenElse + + + + fr.insee + lij1g3gt + 1 + + PARCOURS + + + VOTRE PARCOURS DE VIE + + + fr.insee + llf2bmj4 + 1 + Instruction + + module + + fr.insee + l473kp51-QC + 1 + QuestionConstruct + + + fr.insee + l473kp51-CI-0 + 1 + ComputationItem + + + fr.insee + lj2srd9e + 1 + IfThenElse + + + fr.insee + lj30clvl + 1 + IfThenElse + + + fr.insee + l4742c2v-QC + 1 + QuestionConstruct + + + fr.insee + l4742c2v-CI-0 + 1 + ComputationItem + + + fr.insee + lj41apen + 1 + IfThenElse + + + fr.insee + lj41lgft + 1 + IfThenElse + + + fr.insee + l1f5th3i-QC + 1 + QuestionConstruct + + + fr.insee + l1f5th3i-CI-0 + 1 + ComputationItem + + + fr.insee + l1f5th3i-CI-1 + 1 + ComputationItem + + + fr.insee + l1f61fa3-QC + 1 + QuestionConstruct + + + fr.insee + l1f61fa3-CI-0 + 1 + ComputationItem + + + fr.insee + l43ttd47-QC + 1 + QuestionConstruct + + + fr.insee + l43ttd47-CI-0 + 1 + ComputationItem + + + fr.insee + l43u5x89 + 1 + IfThenElse + + + fr.insee + l1f65zkh-QC + 1 + QuestionConstruct + + + fr.insee + l1f65zkh-CI-0 + 1 + ComputationItem + + + + fr.insee + l1g3yspz + 1 + + VIEPROF + + + VOS ETUDES ET VOTRE VIE PROFESSIONNELLE + + + fr.insee + l1g3mygg + 1 + Instruction + + module + + fr.insee + l1g3unwh-QC + 1 + QuestionConstruct + + + fr.insee + l1g3unwh-CI-0 + 1 + ComputationItem + + + fr.insee + l1g432mc + 1 + IfThenElse + + + fr.insee + l1g7pgbn-QC + 1 + QuestionConstruct + + + fr.insee + l1g7pgbn-CI-0 + 1 + ComputationItem + + + fr.insee + l1g7w1v9 + 1 + IfThenElse + + + fr.insee + l445riqu + 1 + IfThenElse + + + fr.insee + l4r00nja + 1 + IfThenElse + + + fr.insee + ljwxkrnl-QC + 1 + QuestionConstruct + + + fr.insee + lamjvpmw + 1 + IfThenElse + + + + fr.insee + lm4vpka3 + 1 + + AVISENQ + + + AVIS SUR LE QUESTIONNAIRE + + + fr.insee + lm50h6kg + 1 + Instruction + + module + + fr.insee + lnbsju54 + 1 + IfThenElse + + + fr.insee + lnbspfjh + 1 + IfThenElse + + + fr.insee + lm4w5hs6 + 1 + IfThenElse + + + fr.insee + lna2pq02 + 1 + IfThenElse + + + + fr.insee + l4ctrkzx + 1 + + FIN + + + FIN + + + fr.insee + lagud3o9 + 1 + Instruction + + + fr.insee + lagv0rul + 1 + Instruction + + module + + + fr.insee + l4idqt1t + 1 + + B_PRENOMREP + + + + vtl + + fr.insee + l4idqt1t-MIN-IP-1 + 1 + + RPNBQUEST + + + + + fr.insee + RPNBQUEST + 1 + InParameter + + + fr.insee + l4idqt1t-MIN-IP-1 + 1 + InParameter + + + l4idqt1t-MIN-IP-1 + + + + + vtl + + fr.insee + l4idqt1t-IP-1 + 1 + + RPNBQUEST + + + + + fr.insee + RPNBQUEST + 1 + InParameter + + + fr.insee + l4idqt1t-IP-1 + 1 + InParameter + + + l4idqt1t-IP-1 + + + + + vtl + 1 + + + + fr.insee + l4idqt1t-SEQ + 1 + Sequence + + + + fr.insee + l4idqt1t-SEQ + 1 + + fr.insee + l473bp2x + 1 + Sequence + + + + fr.insee + ljmw8vex + 1 + + B_QUEST + + + fr.insee + ljmw8vex-SEQ + 1 + Sequence + + + + fr.insee + ljmw8vex-SEQ + 1 + + fr.insee + kwq9l9z1 + 1 + Sequence + + + fr.insee + l47547mr + 1 + IfThenElse + + + fr.insee + lldrb8le + 1 + IfThenElse + + + fr.insee + kwqi91j9 + 1 + Sequence + + + fr.insee + l8sqkubc + 1 + IfThenElse + + + fr.insee + l1g7w78w + 1 + Sequence + + + fr.insee + kwqfdovw + 1 + Sequence + + + fr.insee + lij1g3gt + 1 + Sequence + + + fr.insee + l1g3yspz + 1 + Sequence + + + fr.insee + lm4vpka3 + 1 + Sequence + + + + fr.insee + ll2amvdo + 1 + + A définir + + + Si pas de validation de l'année de naissance ou réponse NON + + hideable + + + vtl + + fr.insee + ll2amvdo-IP-1 + 1 + + VAL_ANNAISS + + + + + fr.insee + l473latk-QOP-ll2h5il3 + 1 + OutParameter + + + fr.insee + ll2amvdo-IP-1 + 1 + InParameter + + + nvl(ll2amvdo-IP-1,"") = "2" + + + + fr.insee + ll2amvdo-THEN + 1 + Sequence + + + + fr.insee + ll2amvdo-THEN + 1 + + + + + fr.insee + kwq9wijq-QC + 1 + QuestionConstruct + + + fr.insee + kwq9wijq-CI-0 + 1 + ComputationItem + + + + fr.insee + l151hcqh + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l151hcqh-IP-1 + 1 + + COUPLE + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + l151hcqh-IP-1 + 1 + InParameter + + + l151hcqh-IP-1="2" + + + + fr.insee + l151hcqh-THEN + 1 + Sequence + + + + fr.insee + l151hcqh-THEN + 1 + + + + + fr.insee + l0qkj23a-QC + 1 + QuestionConstruct + + + fr.insee + l0qkj23a-CI-0 + 1 + ComputationItem + + + + fr.insee + li359fnd + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + li359fnd-IP-1 + 1 + + RAISON_VIE_CJT + + + + + fr.insee + l0qkj23a-QOP-l34fp0w3 + 1 + OutParameter + + + fr.insee + li359fnd-IP-1 + 1 + InParameter + + + li359fnd-IP-1 ="4" + + + + fr.insee + li359fnd-THEN + 1 + Sequence + + + + fr.insee + li359fnd-THEN + 1 + + + + + fr.insee + li353rhu-QC + 1 + QuestionConstruct + + + + fr.insee + l47547mr + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l47547mr-IP-1 + 1 + + COUPLE + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + l47547mr-IP-1 + 1 + InParameter + + + l47547mr-IP-1<>"4" and not(isnull(l47547mr-IP-1)) + + + + fr.insee + l47547mr-THEN + 1 + Sequence + + + + fr.insee + l47547mr-THEN + 1 + + + + + fr.insee + kwqaaqd3 + 1 + Sequence + + + + fr.insee + llde8dw2 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llde8dw2-IP-1 + 1 + + TYPE_QUEST + + + + fr.insee + llde8dw2-IP-2 + 1 + + TYPE_QUEST + + + + + fr.insee + ln0892lt-GOP + 1 + OutParameter + + + fr.insee + llde8dw2-IP-1 + 1 + InParameter + + + + + fr.insee + TYPE_QUEST + 1 + InParameter + + + fr.insee + llde8dw2-IP-2 + 1 + InParameter + + + llde8dw2-IP-1 ="1" + + + + fr.insee + llde8dw2-THEN + 1 + Sequence + + + + fr.insee + llde8dw2-THEN + 1 + + + + + fr.insee + kwqabjga-QC + 1 + QuestionConstruct + + + fr.insee + kwqabjga-CI-0 + 1 + ComputationItem + + + fr.insee + l4omo6jm + 1 + IfThenElse + + + + fr.insee + l4omo6jm + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4omo6jm-IP-1 + 1 + + ANNAISCJ + + + + fr.insee + l4omo6jm-IP-2 + 1 + + RPPRENOMCONJ + + + + fr.insee + l4omo6jm-IP-3 + 1 + + RPANAISCONJ + + + + fr.insee + l4omo6jm-IP-4 + 1 + + PRENOM_C + + + + + fr.insee + ljogel01-GOP + 1 + OutParameter + + + fr.insee + l4omo6jm-IP-1 + 1 + InParameter + + + + + fr.insee + RPPRENOMCONJ + 1 + InParameter + + + fr.insee + l4omo6jm-IP-2 + 1 + InParameter + + + + + fr.insee + RPANAISCONJ + 1 + InParameter + + + fr.insee + l4omo6jm-IP-3 + 1 + InParameter + + + + + fr.insee + l34grb6h-QOP-l34guyz9 + 1 + OutParameter + + + fr.insee + l4omo6jm-IP-4 + 1 + InParameter + + + isnull(l4omo6jm-IP-4) or isnull(l4omo6jm-IP-2) or replace(upper(l4omo6jm-IP-2)," ","") <> replace(upper(l4omo6jm-IP-4)," ","") or isnull(l4omo6jm-IP-3) or cast(l4omo6jm-IP-3,integer) <> cast(l4omo6jm-IP-1,integer) + + + + fr.insee + l4omo6jm-THEN + 1 + Sequence + + + + fr.insee + l4omo6jm-THEN + 1 + + + + + fr.insee + l4o59ei7-QC + 1 + QuestionConstruct + + + fr.insee + l4o59ei7-CI-0 + 1 + ComputationItem + + + fr.insee + l4o5shrc + 1 + IfThenElse + + + fr.insee + l4o5o4tn + 1 + IfThenElse + + + fr.insee + l7ywou64-QC + 1 + QuestionConstruct + + + fr.insee + l7ywou64-CI-0 + 1 + ComputationItem + + + fr.insee + l7ywsts3 + 1 + IfThenElse + + + + fr.insee + l4o5shrc + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4o5shrc-IP-1 + 1 + + LIEUNAIS_CH + + + + + fr.insee + l4o59ei7-QOP-l4o57gfv + 1 + OutParameter + + + fr.insee + l4o5shrc-IP-1 + 1 + InParameter + + + l4o5shrc-IP-1 ="1" + + + + fr.insee + l4o5shrc-THEN + 1 + Sequence + + + + fr.insee + l4o5shrc-THEN + 1 + + + + + fr.insee + l0quikkt-QC + 1 + QuestionConstruct + + + fr.insee + l0quikkt-CI-0 + 1 + ComputationItem + + + + fr.insee + l4o5o4tn + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4o5o4tn-IP-1 + 1 + + LIEUNAIS_CH + + + + + fr.insee + l4o59ei7-QOP-l4o57gfv + 1 + OutParameter + + + fr.insee + l4o5o4tn-IP-1 + 1 + InParameter + + + l4o5o4tn-IP-1 ="2" + + + + fr.insee + l4o5o4tn-THEN + 1 + Sequence + + + + fr.insee + l4o5o4tn-THEN + 1 + + + + + fr.insee + l4o57595-QC + 1 + QuestionConstruct + + + fr.insee + l4o57595-CI-0 + 1 + ComputationItem + + + + fr.insee + l7ywsts3 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l7ywsts3-IP-1 + 1 + + TRAV_CH + + + + + fr.insee + l7ywou64-QOP-l7ywme7g + 1 + OutParameter + + + fr.insee + l7ywsts3-IP-1 + 1 + InParameter + + + l7ywsts3-IP-1 ="1" or isnull(l7ywsts3-IP-1) + + + + fr.insee + l7ywsts3-THEN + 1 + Sequence + + + + fr.insee + l7ywsts3-THEN + 1 + + + + + fr.insee + l4quhb14 + 1 + IfThenElse + + + fr.insee + lldp1sbe + 1 + IfThenElse + + + fr.insee + l4ctksvo + 1 + IfThenElse + + + fr.insee + l0quphwx-QC + 1 + QuestionConstruct + + + fr.insee + l0quphwx-CI-0 + 1 + ComputationItem + + + fr.insee + llgsytoz + 1 + IfThenElse + + + fr.insee + llgswe0b + 1 + IfThenElse + + + + fr.insee + l4quhb14 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4quhb14-IP-1 + 1 + + SEXE_CH + + + + + fr.insee + kwqabjga-QOP-kwqai8pk + 1 + OutParameter + + + fr.insee + l4quhb14-IP-1 + 1 + InParameter + + + l4quhb14-IP-1 = "2" or isnull(l4quhb14-IP-1) + + + + fr.insee + l4quhb14-THEN + 1 + Sequence + + + + fr.insee + l4quhb14-THEN + 1 + + + + + fr.insee + l0qudtd2-QC + 1 + QuestionConstruct + + + + fr.insee + lldp1sbe + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lldp1sbe-IP-1 + 1 + + SEXE_CH + + + + + fr.insee + kwqabjga-QOP-kwqai8pk + 1 + OutParameter + + + fr.insee + lldp1sbe-IP-1 + 1 + InParameter + + + lldp1sbe-IP-1 ="1" + + + + fr.insee + lldp1sbe-THEN + 1 + Sequence + + + + fr.insee + lldp1sbe-THEN + 1 + + + + + fr.insee + lldp4562-QC + 1 + QuestionConstruct + + + + fr.insee + l4ctksvo + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4ctksvo-IP-1 + 1 + + PROF_CH1 + + + + fr.insee + l4ctksvo-IP-2 + 1 + + PROF_CH2 + + + + + fr.insee + l0qudtd2-QOP-llvzbt5w + 1 + OutParameter + + + fr.insee + l4ctksvo-IP-1 + 1 + InParameter + + + + + fr.insee + lldp4562-QOP-llvywmha + 1 + OutParameter + + + fr.insee + l4ctksvo-IP-2 + 1 + InParameter + + + isnull(l4ctksvo-IP-1) and isnull(l4ctksvo-IP-2) + + + + fr.insee + l4ctksvo-THEN + 1 + Sequence + + + + fr.insee + l4ctksvo-THEN + 1 + + + + + fr.insee + l43zea6v-QC + 1 + QuestionConstruct + + + fr.insee + l43zea6v-CI-0 + 1 + ComputationItem + + + + fr.insee + llgsytoz + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llgsytoz-IP-1 + 1 + + STATUT_CH + + + + + fr.insee + l0quphwx-QOP-l43z7g5s + 1 + OutParameter + + + fr.insee + llgsytoz-IP-1 + 1 + InParameter + + + llgsytoz-IP-1 ="2" + + + + fr.insee + llgsytoz-THEN + 1 + Sequence + + + + fr.insee + llgsytoz-THEN + 1 + + + + + fr.insee + llgt315z-QC + 1 + QuestionConstruct + + + fr.insee + llgt315z-CI-0 + 1 + ComputationItem + + + + fr.insee + llgswe0b + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llgswe0b-IP-1 + 1 + + STATUT_CH + + + + + fr.insee + l0quphwx-QOP-l43z7g5s + 1 + OutParameter + + + fr.insee + llgswe0b-IP-1 + 1 + InParameter + + + llgswe0b-IP-1 ="3" + + + + fr.insee + llgswe0b-THEN + 1 + Sequence + + + + fr.insee + llgswe0b-THEN + 1 + + + + + fr.insee + llgt75zv-QC + 1 + QuestionConstruct + + + fr.insee + llgt75zv-CI-0 + 1 + ComputationItem + + + + fr.insee + lldq4gfz + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lldq4gfz-IP-1 + 1 + + TYPE_QUEST + + + + fr.insee + lldq4gfz-IP-2 + 1 + + TYPE_QUEST + + + + + fr.insee + ln0892lt-GOP + 1 + OutParameter + + + fr.insee + lldq4gfz-IP-1 + 1 + InParameter + + + + + fr.insee + TYPE_QUEST + 1 + InParameter + + + fr.insee + lldq4gfz-IP-2 + 1 + InParameter + + + lldq4gfz-IP-1 ="2" + + + + fr.insee + lldq4gfz-THEN + 1 + Sequence + + + + fr.insee + lldq4gfz-THEN + 1 + + + + + fr.insee + llde3pgg-QC + 1 + QuestionConstruct + + + fr.insee + llde3pgg-CI-0 + 1 + ComputationItem + + + fr.insee + lldqloqo + 1 + IfThenElse + + + + fr.insee + lldqloqo + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lldqloqo-IP-1 + 1 + + ANNAISCJ + + + + fr.insee + lldqloqo-IP-2 + 1 + + RPPRENOMCONJ + + + + fr.insee + lldqloqo-IP-3 + 1 + + RPANAISCONJ + + + + fr.insee + lldqloqo-IP-4 + 1 + + PRENOM_C + + + + + fr.insee + ljogel01-GOP + 1 + OutParameter + + + fr.insee + lldqloqo-IP-1 + 1 + InParameter + + + + + fr.insee + RPPRENOMCONJ + 1 + InParameter + + + fr.insee + lldqloqo-IP-2 + 1 + InParameter + + + + + fr.insee + RPANAISCONJ + 1 + InParameter + + + fr.insee + lldqloqo-IP-3 + 1 + InParameter + + + + + fr.insee + l34grb6h-QOP-l34guyz9 + 1 + OutParameter + + + fr.insee + lldqloqo-IP-4 + 1 + InParameter + + + isnull(lldqloqo-IP-4) or isnull(lldqloqo-IP-2) or replace(upper(lldqloqo-IP-2)," ","") <> replace(upper(lldqloqo-IP-4)," ","") or isnull(lldqloqo-IP-3) or cast(lldqloqo-IP-3,integer) <> cast(lldqloqo-IP-1,integer) + + + + fr.insee + lldqloqo-THEN + 1 + Sequence + + + + fr.insee + lldqloqo-THEN + 1 + + + + + fr.insee + lldpi629-QC + 1 + QuestionConstruct + + + fr.insee + lldpi629-CI-0 + 1 + ComputationItem + + + fr.insee + lldpeoj3 + 1 + IfThenElse + + + fr.insee + lldpfko0 + 1 + IfThenElse + + + fr.insee + lldqco3p-QC + 1 + QuestionConstruct + + + fr.insee + lldqco3p-CI-0 + 1 + ComputationItem + + + fr.insee + lldqafla + 1 + IfThenElse + + + + fr.insee + lldpeoj3 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lldpeoj3-IP-1 + 1 + + LIEUNAIS_CF + + + + + fr.insee + lldpi629-QOP-lldpfefv + 1 + OutParameter + + + fr.insee + lldpeoj3-IP-1 + 1 + InParameter + + + lldpeoj3-IP-1 ="1" + + + + fr.insee + lldpeoj3-THEN + 1 + Sequence + + + + fr.insee + lldpeoj3-THEN + 1 + + + + + fr.insee + lldp8203-QC + 1 + QuestionConstruct + + + fr.insee + lldp8203-CI-0 + 1 + ComputationItem + + + + fr.insee + lldpfko0 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lldpfko0-IP-1 + 1 + + LIEUNAIS_CF + + + + + fr.insee + lldpi629-QOP-lldpfefv + 1 + OutParameter + + + fr.insee + lldpfko0-IP-1 + 1 + InParameter + + + lldpfko0-IP-1 ="2" + + + + fr.insee + lldpfko0-THEN + 1 + Sequence + + + + fr.insee + lldpfko0-THEN + 1 + + + + + fr.insee + lldpejfa-QC + 1 + QuestionConstruct + + + fr.insee + lldpejfa-CI-0 + 1 + ComputationItem + + + + fr.insee + lldqafla + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lldqafla-IP-1 + 1 + + TRAV_CF + + + + + fr.insee + lldqco3p-QOP-lldq01q6 + 1 + OutParameter + + + fr.insee + lldqafla-IP-1 + 1 + InParameter + + + lldqafla-IP-1 ="1" or isnull(lldqafla-IP-1) + + + + fr.insee + lldqafla-THEN + 1 + Sequence + + + + fr.insee + lldqafla-THEN + 1 + + + + + fr.insee + lldpn6nl + 1 + IfThenElse + + + fr.insee + lldprd4q + 1 + IfThenElse + + + fr.insee + lldq7c6i + 1 + IfThenElse + + + fr.insee + llmhdvun-QC + 1 + QuestionConstruct + + + fr.insee + llmhdvun-CI-0 + 1 + ComputationItem + + + fr.insee + llnhls30 + 1 + IfThenElse + + + fr.insee + llnhb0i2 + 1 + IfThenElse + + + + fr.insee + lldpn6nl + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lldpn6nl-IP-1 + 1 + + SEXE_CF + + + + + fr.insee + llde3pgg-QOP-lldeidzi + 1 + OutParameter + + + fr.insee + lldpn6nl-IP-1 + 1 + InParameter + + + lldpn6nl-IP-1 = "1" or isnull(lldpn6nl-IP-1) + + + + fr.insee + lldpn6nl-THEN + 1 + Sequence + + + + fr.insee + lldpn6nl-THEN + 1 + + + + + fr.insee + l4quaxvt-QC + 1 + QuestionConstruct + + + + fr.insee + lldprd4q + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lldprd4q-IP-1 + 1 + + SEXE_CF + + + + + fr.insee + llde3pgg-QOP-lldeidzi + 1 + OutParameter + + + fr.insee + lldprd4q-IP-1 + 1 + InParameter + + + lldprd4q-IP-1 = "2" + + + + fr.insee + lldprd4q-THEN + 1 + Sequence + + + + fr.insee + lldprd4q-THEN + 1 + + + + + fr.insee + lldpqtrp-QC + 1 + QuestionConstruct + + + + fr.insee + lldq7c6i + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lldq7c6i-IP-1 + 1 + + PROF_CF1 + + + + fr.insee + lldq7c6i-IP-2 + 1 + + PROF_CF2 + + + + + fr.insee + l4quaxvt-QOP-llvz89y7 + 1 + OutParameter + + + fr.insee + lldq7c6i-IP-1 + 1 + InParameter + + + + + fr.insee + lldpqtrp-QOP-llvz4gqz + 1 + OutParameter + + + fr.insee + lldq7c6i-IP-2 + 1 + InParameter + + + isnull(lldq7c6i-IP-1) and isnull(lldq7c6i-IP-2) + + + + fr.insee + lldq7c6i-THEN + 1 + Sequence + + + + fr.insee + lldq7c6i-THEN + 1 + + + + + fr.insee + lldqd2sd-QC + 1 + QuestionConstruct + + + fr.insee + lldqd2sd-CI-0 + 1 + ComputationItem + + + + fr.insee + llnhls30 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llnhls30-IP-1 + 1 + + STATUT_CF + + + + + fr.insee + llmhdvun-QOP-llmhi8tu + 1 + OutParameter + + + fr.insee + llnhls30-IP-1 + 1 + InParameter + + + llnhls30-IP-1 ="2" + + + + fr.insee + llnhls30-THEN + 1 + Sequence + + + + fr.insee + llnhls30-THEN + 1 + + + + + fr.insee + llmhi6fd-QC + 1 + QuestionConstruct + + + fr.insee + llmhi6fd-CI-0 + 1 + ComputationItem + + + + fr.insee + llnhb0i2 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llnhb0i2-IP-1 + 1 + + STATUT_CF + + + + + fr.insee + llmhdvun-QOP-llmhi8tu + 1 + OutParameter + + + fr.insee + llnhb0i2-IP-1 + 1 + InParameter + + + llnhb0i2-IP-1 ="3" + + + + fr.insee + llnhb0i2-THEN + 1 + Sequence + + + + fr.insee + llnhb0i2-THEN + 1 + + + + + fr.insee + llnh2qpm-QC + 1 + QuestionConstruct + + + fr.insee + llnh2qpm-CI-0 + 1 + ComputationItem + + + + fr.insee + l27e5a64 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l27e5a64-IP-1 + 1 + + PACS + + + + + fr.insee + kwqa4zjf-QOP-kwqanscn + 1 + OutParameter + + + fr.insee + l27e5a64-IP-1 + 1 + InParameter + + + l27e5a64-IP-1 ="1" + + + + fr.insee + l27e5a64-THEN + 1 + Sequence + + + + fr.insee + l27e5a64-THEN + 1 + + + + + fr.insee + l0qu7e2g-QC + 1 + QuestionConstruct + + + fr.insee + l0qu7e2g-CI-0 + 1 + ComputationItem + + + fr.insee + l0qu7e2g-CI-1 + 1 + ComputationItem + + + fr.insee + l0qu7e2g-CI-2 + 1 + ComputationItem + + + fr.insee + l0qu7e2g-CI-3 + 1 + ComputationItem + + + fr.insee + l0qu7e2g-CI-4 + 1 + ComputationItem + + + + fr.insee + l27dwvi6 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l27dwvi6-IP-1 + 1 + + MARI + + + + + fr.insee + l0qujqzn-QOP-l0queysd + 1 + OutParameter + + + fr.insee + l27dwvi6-IP-1 + 1 + InParameter + + + l27dwvi6-IP-1 ="1" + + + + fr.insee + l27dwvi6-THEN + 1 + Sequence + + + + fr.insee + l27dwvi6-THEN + 1 + + + + + fr.insee + l0qul94p-QC + 1 + QuestionConstruct + + + fr.insee + l0qul94p-CI-0 + 1 + ComputationItem + + + fr.insee + l0qul94p-CI-1 + 1 + ComputationItem + + + fr.insee + l0qul94p-CI-2 + 1 + ComputationItem + + + fr.insee + l0qul94p-CI-3 + 1 + ComputationItem + + + fr.insee + l0qul94p-CI-4 + 1 + ComputationItem + + + fr.insee + l0qul94p-CI-5 + 1 + ComputationItem + + + + fr.insee + l27f7ctt + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l27f7ctt-IP-1 + 1 + + COUPLE + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + l27f7ctt-IP-1 + 1 + InParameter + + + l27f7ctt-IP-1 ="3" + + + + fr.insee + l27f7ctt-THEN + 1 + Sequence + + + + fr.insee + l27f7ctt-THEN + 1 + + + + + fr.insee + l5kszr2f-QC + 1 + QuestionConstruct + + + fr.insee + l5kszr2f-CI-0 + 1 + ComputationItem + + + fr.insee + l27dz4vc + 1 + IfThenElse + + + fr.insee + l27edzwf + 1 + IfThenElse + + + + fr.insee + l27dz4vc + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l27dz4vc-IP-1 + 1 + + SEPARE + + + + + fr.insee + l5kszr2f-QOP-l5kt58n3 + 1 + OutParameter + + + fr.insee + l27dz4vc-IP-1 + 1 + InParameter + + + l27dz4vc-IP-1 ="1" + + + + fr.insee + l27dz4vc-THEN + 1 + Sequence + + + + fr.insee + l27dz4vc-THEN + 1 + + + + + fr.insee + l27dzhpw-QC + 1 + QuestionConstruct + + + fr.insee + l27dzhpw-CI-0 + 1 + ComputationItem + + + fr.insee + l27dzhpw-CI-1 + 1 + ComputationItem + + + fr.insee + l27dzhpw-CI-2 + 1 + ComputationItem + + + fr.insee + l27dzhpw-CI-3 + 1 + ComputationItem + + + + fr.insee + l27edzwf + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l27edzwf-IP-1 + 1 + + SEPARE + + + + + fr.insee + l5kszr2f-QOP-l5kt58n3 + 1 + OutParameter + + + fr.insee + l27edzwf-IP-1 + 1 + InParameter + + + l27edzwf-IP-1 ="2" + + + + fr.insee + l27edzwf-THEN + 1 + Sequence + + + + fr.insee + l27edzwf-THEN + 1 + + + + + fr.insee + l155mqhc-QC + 1 + QuestionConstruct + + + fr.insee + l155mqhc-CI-0 + 1 + ComputationItem + + + fr.insee + l155mqhc-CI-1 + 1 + ComputationItem + + + fr.insee + l155mqhc-CI-2 + 1 + ComputationItem + + + fr.insee + l155mqhc-CI-3 + 1 + ComputationItem + + + + fr.insee + liiz3gaj + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + liiz3gaj-IP-1 + 1 + + ENFAV_C + + + + + fr.insee + l43u9qqf-QOP-l43udnys + 1 + OutParameter + + + fr.insee + liiz3gaj-IP-1 + 1 + InParameter + + + liiz3gaj-IP-1="1" + + + + fr.insee + liiz3gaj-THEN + 1 + Sequence + + + + fr.insee + liiz3gaj-THEN + 1 + + + + + fr.insee + l43u4x96-QC + 1 + QuestionConstruct + + + fr.insee + l43u4x96-CI-0 + 1 + ComputationItem + + + fr.insee + liiyzeee + 1 + IfThenElse + + + fr.insee + liiz5r1r + 1 + IfThenElse + + + + fr.insee + liiyzeee + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + liiyzeee-IP-1 + 1 + + NBENFAV_C + + + + + fr.insee + l43u4x96-QOP-l43udkpq + 1 + OutParameter + + + fr.insee + liiyzeee-IP-1 + 1 + InParameter + + + liiyzeee-IP-1=1 + + + + fr.insee + liiyzeee-THEN + 1 + Sequence + + + + fr.insee + liiyzeee-THEN + 1 + + + + + fr.insee + l5jnmvs2-QC + 1 + QuestionConstruct + + + fr.insee + l5jnmvs2-CI-0 + 1 + ComputationItem + + + + fr.insee + liiz5r1r + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + liiz5r1r-IP-1 + 1 + + NBENFAV_C + + + + + fr.insee + l43u4x96-QOP-l43udkpq + 1 + OutParameter + + + fr.insee + liiz5r1r-IP-1 + 1 + InParameter + + + liiz5r1r-IP-1 >1 or isnull(liiz5r1r-IP-1) + + + + fr.insee + liiz5r1r-THEN + 1 + Sequence + + + + fr.insee + liiz5r1r-THEN + 1 + + + + + fr.insee + l43why6c-QC + 1 + QuestionConstruct + + + fr.insee + l43why6c-CI-0 + 1 + ComputationItem + + + fr.insee + l43why6c-CI-1 + 1 + ComputationItem + + + + fr.insee + liiz0knd + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + liiz0knd-IP-1 + 1 + + COUPLE + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + liiz0knd-IP-1 + 1 + InParameter + + + liiz0knd-IP-1 ="3" + + + + fr.insee + liiz0knd-THEN + 1 + Sequence + + + + fr.insee + liiz0knd-THEN + 1 + + + + + fr.insee + l8lz0355-QC + 1 + QuestionConstruct + + + fr.insee + l8lz0355-CI-0 + 1 + ComputationItem + + + + fr.insee + liiyov5q + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + liiyov5q-IP-1 + 1 + + COUPLE + + + + fr.insee + liiyov5q-IP-2 + 1 + + ENFAV_C + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + liiyov5q-IP-1 + 1 + InParameter + + + + + fr.insee + l43u9qqf-QOP-l43udnys + 1 + OutParameter + + + fr.insee + liiyov5q-IP-2 + 1 + InParameter + + + (liiyov5q-IP-1="1" or liiyov5q-IP-1="2") and liiyov5q-IP-2="1" + + + + fr.insee + liiyov5q-THEN + 1 + Sequence + + + + fr.insee + liiyov5q-THEN + 1 + + + + + fr.insee + l43xg8do-QC + 1 + QuestionConstruct + + + fr.insee + l43xg8do-CI-0 + 1 + ComputationItem + + + fr.insee + l43xg8do-CI-1 + 1 + ComputationItem + + + + fr.insee + lldroldu + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lldroldu-IP-1 + 1 + + AUT_UNION + + + + + fr.insee + l15131wu-QOP-l43xhx4c + 1 + OutParameter + + + fr.insee + lldroldu-IP-1 + 1 + InParameter + + + lldroldu-IP-1 = "1" + + + + fr.insee + lldroldu-THEN + 1 + Sequence + + + + fr.insee + lldroldu-THEN + 1 + + + + + fr.insee + l43x1amr-QC + 1 + QuestionConstruct + + + fr.insee + l43x1amr-CI-0 + 1 + ComputationItem + + + + fr.insee + lldrb8le + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lldrb8le-IP-1 + 1 + + COUPLE + + + + fr.insee + lldrb8le-IP-2 + 1 + + AUT_UNION + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + lldrb8le-IP-1 + 1 + InParameter + + + + + fr.insee + l15131wu-QOP-l43xhx4c + 1 + OutParameter + + + fr.insee + lldrb8le-IP-2 + 1 + InParameter + + + (lldrb8le-IP-1="1" or lldrb8le-IP-1="2" or lldrb8le-IP-1="3") and (lldrb8le-IP-2 ="1") + + + + fr.insee + lldrb8le-THEN + 1 + Sequence + + + + fr.insee + lldrb8le-THEN + 1 + + + + + fr.insee + lldr8qge + 1 + Sequence + + + + fr.insee + lldrik6o + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lldrik6o-IP-1 + 1 + + AUT_UNION + + + + + fr.insee + l15131wu-QOP-l43xhx4c + 1 + OutParameter + + + fr.insee + lldrik6o-IP-1 + 1 + InParameter + + + lldrik6o-IP-1 = "1" + + + + fr.insee + lldrik6o-THEN + 1 + Sequence + + + + fr.insee + lldrik6o-THEN + 1 + + + + + fr.insee + l15553ya + 1 + Sequence + + + + fr.insee + lldegcfi + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lldegcfi-IP-1 + 1 + + TYPE_QUEST + + + + fr.insee + lldegcfi-IP-2 + 1 + + TYPE_QUEST + + + + + fr.insee + ln0892lt-GOP + 1 + OutParameter + + + fr.insee + lldegcfi-IP-1 + 1 + InParameter + + + + + fr.insee + TYPE_QUEST + 1 + InParameter + + + fr.insee + lldegcfi-IP-2 + 1 + InParameter + + + lldegcfi-IP-1 ="1" + + + + fr.insee + lldegcfi-THEN + 1 + Sequence + + + + fr.insee + lldegcfi-THEN + 1 + + + + + fr.insee + l4p8skko-QC + 1 + QuestionConstruct + + + fr.insee + l4p8skko-CI-0 + 1 + ComputationItem + + + + fr.insee + lldeh60s + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lldeh60s-IP-1 + 1 + + TYPE_QUEST + + + + fr.insee + lldeh60s-IP-2 + 1 + + TYPE_QUEST + + + + + fr.insee + ln0892lt-GOP + 1 + OutParameter + + + fr.insee + lldeh60s-IP-1 + 1 + InParameter + + + + + fr.insee + TYPE_QUEST + 1 + InParameter + + + fr.insee + lldeh60s-IP-2 + 1 + InParameter + + + lldeh60s-IP-1 ="2" + + + + fr.insee + lldeh60s-THEN + 1 + Sequence + + + + fr.insee + lldeh60s-THEN + 1 + + + + + fr.insee + lldenssh-QC + 1 + QuestionConstruct + + + fr.insee + lldenssh-CI-0 + 1 + ComputationItem + + + + fr.insee + l27dvgfz + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l27dvgfz-IP-1 + 1 + + PACS_U1 + + + + + fr.insee + l27dlnmq-QOP-l27dler4 + 1 + OutParameter + + + fr.insee + l27dvgfz-IP-1 + 1 + InParameter + + + l27dvgfz-IP-1 ="1" + + + + fr.insee + l27dvgfz-THEN + 1 + Sequence + + + + fr.insee + l27dvgfz-THEN + 1 + + + + + fr.insee + l27dns8a-QC + 1 + QuestionConstruct + + + fr.insee + l27dns8a-CI-0 + 1 + ComputationItem + + + fr.insee + l27dns8a-CI-1 + 1 + ComputationItem + + + fr.insee + l27dns8a-CI-2 + 1 + ComputationItem + + + fr.insee + l27dns8a-CI-3 + 1 + ComputationItem + + + fr.insee + l27dns8a-CI-4 + 1 + ComputationItem + + + fr.insee + l27dns8a-CI-5 + 1 + ComputationItem + + + + fr.insee + l27e9z6f + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l27e9z6f-IP-1 + 1 + + MARI_U1 + + + + + fr.insee + l27duust-QOP-l27dl55t + 1 + OutParameter + + + fr.insee + l27e9z6f-IP-1 + 1 + InParameter + + + l27e9z6f-IP-1 ="1" + + + + fr.insee + l27e9z6f-THEN + 1 + Sequence + + + + fr.insee + l27e9z6f-THEN + 1 + + + + + fr.insee + l27e50tv-QC + 1 + QuestionConstruct + + + fr.insee + l27e50tv-CI-0 + 1 + ComputationItem + + + fr.insee + l27e50tv-CI-1 + 1 + ComputationItem + + + fr.insee + l27e50tv-CI-2 + 1 + ComputationItem + + + fr.insee + l27e50tv-CI-3 + 1 + ComputationItem + + + fr.insee + l27e50tv-CI-4 + 1 + ComputationItem + + + fr.insee + l27e50tv-CI-5 + 1 + ComputationItem + + + fr.insee + l27e50tv-CI-6 + 1 + ComputationItem + + + + fr.insee + l27dyrt7 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l27dyrt7-IP-1 + 1 + + SEPARE_U1 + + + + + fr.insee + l5ktf1wn-QOP-l5kt1un9 + 1 + OutParameter + + + fr.insee + l27dyrt7-IP-1 + 1 + InParameter + + + l27dyrt7-IP-1 ="1" + + + + fr.insee + l27dyrt7-THEN + 1 + Sequence + + + + fr.insee + l27dyrt7-THEN + 1 + + + + + fr.insee + l27dzhzv-QC + 1 + QuestionConstruct + + + fr.insee + l27dzhzv-CI-0 + 1 + ComputationItem + + + fr.insee + l27dzhzv-CI-1 + 1 + ComputationItem + + + fr.insee + l27dzhzv-CI-2 + 1 + ComputationItem + + + fr.insee + l27dzhzv-CI-3 + 1 + ComputationItem + + + + fr.insee + l27egeg1 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l27egeg1-IP-1 + 1 + + SEPARE_U1 + + + + + fr.insee + l5ktf1wn-QOP-l5kt1un9 + 1 + OutParameter + + + fr.insee + l27egeg1-IP-1 + 1 + InParameter + + + l27egeg1-IP-1 ="2" + + + + fr.insee + l27egeg1-THEN + 1 + Sequence + + + + fr.insee + l27egeg1-THEN + 1 + + + + + fr.insee + l27e0qyq-QC + 1 + QuestionConstruct + + + fr.insee + l27e0qyq-CI-0 + 1 + ComputationItem + + + fr.insee + l27e0qyq-CI-1 + 1 + ComputationItem + + + fr.insee + l27e0qyq-CI-2 + 1 + ComputationItem + + + fr.insee + l27e0qyq-CI-3 + 1 + ComputationItem + + + + fr.insee + l4cjjud7 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4cjjud7-IP-1 + 1 + + ENFAV_C_U1 + + + + + fr.insee + l4cjg2rp-QOP-l4cjcmvn + 1 + OutParameter + + + fr.insee + l4cjjud7-IP-1 + 1 + InParameter + + + l4cjjud7-IP-1 ="1" + + + + fr.insee + l4cjjud7-THEN + 1 + Sequence + + + + fr.insee + l4cjjud7-THEN + 1 + + + + + fr.insee + l4cja8pm-QC + 1 + QuestionConstruct + + + fr.insee + l4cja8pm-CI-0 + 1 + ComputationItem + + + fr.insee + l5jnvc09 + 1 + IfThenElse + + + fr.insee + l5jnfjf3 + 1 + IfThenElse + + + + fr.insee + l5jnvc09 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l5jnvc09-IP-1 + 1 + + NBENFAV_C_U1 + + + + + fr.insee + l4cja8pm-QOP-l4cjc9rj + 1 + OutParameter + + + fr.insee + l5jnvc09-IP-1 + 1 + InParameter + + + l5jnvc09-IP-1=1 + + + + fr.insee + l5jnvc09-THEN + 1 + Sequence + + + + fr.insee + l5jnvc09-THEN + 1 + + + + + fr.insee + l5ilbb89-QC + 1 + QuestionConstruct + + + fr.insee + l5ilbb89-CI-0 + 1 + ComputationItem + + + + fr.insee + l5jnfjf3 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l5jnfjf3-IP-1 + 1 + + NBENFAV_C_U1 + + + + + fr.insee + l4cja8pm-QOP-l4cjc9rj + 1 + OutParameter + + + fr.insee + l5jnfjf3-IP-1 + 1 + InParameter + + + l5jnfjf3-IP-1 > 1 or isnull(l5jnfjf3-IP-1) + + + + fr.insee + l5jnfjf3-THEN + 1 + Sequence + + + + fr.insee + l5jnfjf3-THEN + 1 + + + + + fr.insee + l4o5x7yq-QC + 1 + QuestionConstruct + + + fr.insee + l4o5x7yq-CI-0 + 1 + ComputationItem + + + fr.insee + l4o5x7yq-CI-1 + 1 + ComputationItem + + + + fr.insee + l9ikwy74 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l9ikwy74-IP-1 + 1 + + NB_AUT_UNION + + + + + fr.insee + l43x1amr-QOP-l43xhfsb + 1 + OutParameter + + + fr.insee + l9ikwy74-IP-1 + 1 + InParameter + + + l9ikwy74-IP-1 >= 2 or isnull(l9ikwy74-IP-1) + + + + fr.insee + l9ikwy74-THEN + 1 + Sequence + + + + fr.insee + l9ikwy74-THEN + 1 + + + + + fr.insee + l9iksl95 + 1 + Sequence + + + + fr.insee + l9r6arh1 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l9r6arh1-IP-1 + 1 + + AUT_U2 + + + + + fr.insee + l9il0i0h-QOP-l9ilguvv + 1 + OutParameter + + + fr.insee + l9r6arh1-IP-1 + 1 + InParameter + + + l9r6arh1-IP-1="1" + + + + fr.insee + l9r6arh1-THEN + 1 + Sequence + + + + fr.insee + l9r6arh1-THEN + 1 + + + + + fr.insee + l9ilcol6-QC + 1 + QuestionConstruct + + + fr.insee + l9ilcol6-CI-0 + 1 + ComputationItem + + + fr.insee + lldeihal + 1 + IfThenElse + + + fr.insee + lldemu5v + 1 + IfThenElse + + + fr.insee + l9ikn3ea-QC + 1 + QuestionConstruct + + + fr.insee + l9ikn3ea-CI-0 + 1 + ComputationItem + + + fr.insee + l9ikn3ea-CI-1 + 1 + ComputationItem + + + fr.insee + l9ikn3ea-CI-2 + 1 + ComputationItem + + + fr.insee + l9ikn3ea-CI-3 + 1 + ComputationItem + + + fr.insee + l9ikn3ea-CI-4 + 1 + ComputationItem + + + fr.insee + l9il24ft-QC + 1 + QuestionConstruct + + + fr.insee + l9il24ft-CI-0 + 1 + ComputationItem + + + fr.insee + l9il1c0q + 1 + IfThenElse + + + fr.insee + l9ikvx4n-QC + 1 + QuestionConstruct + + + fr.insee + l9ikvx4n-CI-0 + 1 + ComputationItem + + + fr.insee + l9il00d3 + 1 + IfThenElse + + + fr.insee + l9ikqlwv-QC + 1 + QuestionConstruct + + + fr.insee + l9ikqlwv-CI-0 + 1 + ComputationItem + + + fr.insee + l9il2aqb + 1 + IfThenElse + + + fr.insee + l9il0rmm + 1 + IfThenElse + + + fr.insee + l9ikxndo-QC + 1 + QuestionConstruct + + + fr.insee + l9ikxndo-CI-0 + 1 + ComputationItem + + + fr.insee + l9ikyhx5 + 1 + IfThenElse + + + + fr.insee + lldeihal + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lldeihal-IP-1 + 1 + + TYPE_QUEST + + + + fr.insee + lldeihal-IP-2 + 1 + + TYPE_QUEST + + + + + fr.insee + ln0892lt-GOP + 1 + OutParameter + + + fr.insee + lldeihal-IP-1 + 1 + InParameter + + + + + fr.insee + TYPE_QUEST + 1 + InParameter + + + fr.insee + lldeihal-IP-2 + 1 + InParameter + + + lldeihal-IP-1 ="1" + + + + fr.insee + lldeihal-THEN + 1 + Sequence + + + + fr.insee + lldeihal-THEN + 1 + + + + + fr.insee + l9ikne2h-QC + 1 + QuestionConstruct + + + fr.insee + l9ikne2h-CI-0 + 1 + ComputationItem + + + + fr.insee + lldemu5v + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lldemu5v-IP-1 + 1 + + TYPE_QUEST + + + + fr.insee + lldemu5v-IP-2 + 1 + + TYPE_QUEST + + + + + fr.insee + ln0892lt-GOP + 1 + OutParameter + + + fr.insee + lldemu5v-IP-1 + 1 + InParameter + + + + + fr.insee + TYPE_QUEST + 1 + InParameter + + + fr.insee + lldemu5v-IP-2 + 1 + InParameter + + + lldemu5v-IP-1 ="2" + + + + fr.insee + lldemu5v-THEN + 1 + Sequence + + + + fr.insee + lldemu5v-THEN + 1 + + + + + fr.insee + lldetngg-QC + 1 + QuestionConstruct + + + fr.insee + lldetngg-CI-0 + 1 + ComputationItem + + + + fr.insee + l9il1c0q + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l9il1c0q-IP-1 + 1 + + PACS_U2 + + + + + fr.insee + l9il24ft-QOP-l9iks5py + 1 + OutParameter + + + fr.insee + l9il1c0q-IP-1 + 1 + InParameter + + + l9il1c0q-IP-1 ="1" + + + + fr.insee + l9il1c0q-THEN + 1 + Sequence + + + + fr.insee + l9il1c0q-THEN + 1 + + + + + fr.insee + l9ikxoxa-QC + 1 + QuestionConstruct + + + fr.insee + l9ikxoxa-CI-0 + 1 + ComputationItem + + + fr.insee + l9ikxoxa-CI-1 + 1 + ComputationItem + + + fr.insee + l9ikxoxa-CI-2 + 1 + ComputationItem + + + fr.insee + l9ikxoxa-CI-3 + 1 + ComputationItem + + + fr.insee + l9ikxoxa-CI-4 + 1 + ComputationItem + + + fr.insee + l9ikxoxa-CI-5 + 1 + ComputationItem + + + + fr.insee + l9il00d3 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l9il00d3-IP-1 + 1 + + MARI_U2 + + + + + fr.insee + l9ikvx4n-QOP-l9ikpuls + 1 + OutParameter + + + fr.insee + l9il00d3-IP-1 + 1 + InParameter + + + l9il00d3-IP-1 ="1" + + + + fr.insee + l9il00d3-THEN + 1 + Sequence + + + + fr.insee + l9il00d3-THEN + 1 + + + + + fr.insee + l9iklcix-QC + 1 + QuestionConstruct + + + fr.insee + l9iklcix-CI-0 + 1 + ComputationItem + + + fr.insee + l9iklcix-CI-1 + 1 + ComputationItem + + + fr.insee + l9iklcix-CI-2 + 1 + ComputationItem + + + fr.insee + l9iklcix-CI-3 + 1 + ComputationItem + + + fr.insee + l9iklcix-CI-4 + 1 + ComputationItem + + + fr.insee + l9iklcix-CI-5 + 1 + ComputationItem + + + fr.insee + l9iklcix-CI-6 + 1 + ComputationItem + + + + fr.insee + l9il2aqb + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l9il2aqb-IP-1 + 1 + + SEPARE_U2 + + + + + fr.insee + l9ikqlwv-QOP-l9ikoz30 + 1 + OutParameter + + + fr.insee + l9il2aqb-IP-1 + 1 + InParameter + + + l9il2aqb-IP-1 ="1" + + + + fr.insee + l9il2aqb-THEN + 1 + Sequence + + + + fr.insee + l9il2aqb-THEN + 1 + + + + + fr.insee + l9ikze1y-QC + 1 + QuestionConstruct + + + fr.insee + l9ikze1y-CI-0 + 1 + ComputationItem + + + fr.insee + l9ikze1y-CI-1 + 1 + ComputationItem + + + fr.insee + l9ikze1y-CI-2 + 1 + ComputationItem + + + fr.insee + l9ikze1y-CI-3 + 1 + ComputationItem + + + + fr.insee + l9il0rmm + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l9il0rmm-IP-1 + 1 + + SEPARE_U2 + + + + + fr.insee + l9ikqlwv-QOP-l9ikoz30 + 1 + OutParameter + + + fr.insee + l9il0rmm-IP-1 + 1 + InParameter + + + l9il0rmm-IP-1 ="2" + + + + fr.insee + l9il0rmm-THEN + 1 + Sequence + + + + fr.insee + l9il0rmm-THEN + 1 + + + + + fr.insee + l9ikmjqm-QC + 1 + QuestionConstruct + + + fr.insee + l9ikmjqm-CI-0 + 1 + ComputationItem + + + fr.insee + l9ikmjqm-CI-1 + 1 + ComputationItem + + + fr.insee + l9ikmjqm-CI-2 + 1 + ComputationItem + + + fr.insee + l9ikmjqm-CI-3 + 1 + ComputationItem + + + + fr.insee + l9ikyhx5 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l9ikyhx5-IP-1 + 1 + + ENFAV_C_U2 + + + + + fr.insee + l9ikxndo-QOP-l9ikxjkq + 1 + OutParameter + + + fr.insee + l9ikyhx5-IP-1 + 1 + InParameter + + + l9ikyhx5-IP-1 ="1" + + + + fr.insee + l9ikyhx5-THEN + 1 + Sequence + + + + fr.insee + l9ikyhx5-THEN + 1 + + + + + fr.insee + l9ikuqoe-QC + 1 + QuestionConstruct + + + fr.insee + l9ikuqoe-CI-0 + 1 + ComputationItem + + + fr.insee + l9il3nl8 + 1 + IfThenElse + + + fr.insee + l9il99ls + 1 + IfThenElse + + + + fr.insee + l9il3nl8 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l9il3nl8-IP-1 + 1 + + NBENFAV_C_U2 + + + + + fr.insee + l9ikuqoe-QOP-l9ikmqgf + 1 + OutParameter + + + fr.insee + l9il3nl8-IP-1 + 1 + InParameter + + + l9il3nl8-IP-1=1 + + + + fr.insee + l9il3nl8-THEN + 1 + Sequence + + + + fr.insee + l9il3nl8-THEN + 1 + + + + + fr.insee + l9ikekzu-QC + 1 + QuestionConstruct + + + fr.insee + l9ikekzu-CI-0 + 1 + ComputationItem + + + + fr.insee + l9il99ls + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l9il99ls-IP-1 + 1 + + NBENFAV_C_U2 + + + + + fr.insee + l9ikuqoe-QOP-l9ikmqgf + 1 + OutParameter + + + fr.insee + l9il99ls-IP-1 + 1 + InParameter + + + l9il99ls-IP-1 > 1 or isnull(l9il99ls-IP-1) + + + + fr.insee + l9il99ls-THEN + 1 + Sequence + + + + fr.insee + l9il99ls-THEN + 1 + + + + + fr.insee + l9iks078-QC + 1 + QuestionConstruct + + + fr.insee + l9iks078-CI-0 + 1 + ComputationItem + + + fr.insee + l9iks078-CI-1 + 1 + ComputationItem + + + + fr.insee + kwqijmkn + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + kwqijmkn-IP-1 + 1 + + ENF + + + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + OutParameter + + + fr.insee + kwqijmkn-IP-1 + 1 + InParameter + + + kwqijmkn-IP-1 ="1" or isnull(kwqijmkn-IP-1) + + + + fr.insee + kwqijmkn-THEN + 1 + Sequence + + + + fr.insee + kwqijmkn-THEN + 1 + + + + + fr.insee + kwqi5zsm-QC + 1 + QuestionConstruct + + + fr.insee + kwqi5zsm-CI-0 + 1 + ComputationItem + + + fr.insee + l7rma7oc + 1 + IfThenElse + + + fr.insee + l7rmcdze + 1 + IfThenElse + + + fr.insee + l1gi76wy-QC + 1 + QuestionConstruct + + + fr.insee + l1gi76wy-CI-0 + 1 + ComputationItem + + + fr.insee + lmrqjd3n + 1 + IfThenElse + + + fr.insee + l4idom4o-QC + 1 + QuestionConstruct + + + fr.insee + l4idom4o-CI-0 + 1 + ComputationItem + + + fr.insee + l4nw37iw + 1 + IfThenElse + + + fr.insee + l4qs3lg8 + 1 + IfThenElse + + + + fr.insee + l7rma7oc + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l7rma7oc-IP-1 + 1 + + NBENF + + + + + fr.insee + kwqi5zsm-QOP-kwqilzs8 + 1 + OutParameter + + + fr.insee + l7rma7oc-IP-1 + 1 + InParameter + + + l7rma7oc-IP-1 = 1 + + + + fr.insee + l7rma7oc-THEN + 1 + Sequence + + + + fr.insee + l7rma7oc-THEN + 1 + + + + + fr.insee + l1gkeq97-QC + 1 + QuestionConstruct + + + fr.insee + l1gkeq97-CI-0 + 1 + ComputationItem + + + + fr.insee + l7rmcdze + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l7rmcdze-IP-1 + 1 + + NBENF + + + + + fr.insee + kwqi5zsm-QOP-kwqilzs8 + 1 + OutParameter + + + fr.insee + l7rmcdze-IP-1 + 1 + InParameter + + + l7rmcdze-IP-1 > 1 + + + + fr.insee + l7rmcdze-THEN + 1 + Sequence + + + + fr.insee + l7rmcdze-THEN + 1 + + + + + fr.insee + l7rlim3p-QC + 1 + QuestionConstruct + + + fr.insee + l7rlim3p-CI-0 + 1 + ComputationItem + + + fr.insee + l7rlim3p-CI-1 + 1 + ComputationItem + + + + fr.insee + lmrqjd3n + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lmrqjd3n-IP-1 + 1 + + LANGUE1_ENF + + + + + fr.insee + l1gi76wy-QOP-llvz7u99 + 1 + OutParameter + + + fr.insee + lmrqjd3n-IP-1 + 1 + InParameter + + + lmrqjd3n-IP-1 <> "" or not(isnull(lmrqjd3n-IP-1)) + + + + fr.insee + lmrqjd3n-THEN + 1 + Sequence + + + + fr.insee + lmrqjd3n-THEN + 1 + + + + + fr.insee + l445u9x8-QC + 1 + QuestionConstruct + + + fr.insee + l445u9x8-CI-0 + 1 + ComputationItem + + + + fr.insee + l4nw37iw + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4nw37iw-IP-1 + 1 + + NBENFLOG + + + + + fr.insee + l4idom4o-QOP-l4idkl19 + 1 + OutParameter + + + fr.insee + l4nw37iw-IP-1 + 1 + InParameter + + + l4nw37iw-IP-1 = "1" or isnull(l4nw37iw-IP-1) + + + + fr.insee + l4nw37iw-THEN + 1 + Sequence + + + + fr.insee + l4nw37iw-THEN + 1 + + + + + fr.insee + l4lcr3vb-QC + 1 + QuestionConstruct + + + fr.insee + l4lcr3vb-CI-0 + 1 + ComputationItem + + + fr.insee + l4lcr3vb-CI-1 + 1 + ComputationItem + + + + fr.insee + l4qs3lg8 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4qs3lg8-IP-1 + 1 + + NBENF + + + + fr.insee + l4qs3lg8-IP-2 + 1 + + CBENFLOG + + + + + fr.insee + kwqi5zsm-QOP-kwqilzs8 + 1 + OutParameter + + + fr.insee + l4qs3lg8-IP-1 + 1 + InParameter + + + + + fr.insee + l4lcr3vb-QOP-l4lcyzfy + 1 + OutParameter + + + fr.insee + l4qs3lg8-IP-2 + 1 + InParameter + + + (nvl(l4qs3lg8-IP-2,0) < nvl(l4qs3lg8-IP-1,0)) or isnull(l4qs3lg8-IP-2) or isnull(l4qs3lg8-IP-1) + + + + fr.insee + l4qs3lg8-THEN + 1 + Sequence + + + + fr.insee + l4qs3lg8-THEN + 1 + + + + + fr.insee + l447nuda-QC + 1 + QuestionConstruct + + + fr.insee + l447nuda-CI-0 + 1 + ComputationItem + + + fr.insee + l447nuda-CI-1 + 1 + ComputationItem + + + fr.insee + l4nwblbh + 1 + IfThenElse + + + + fr.insee + l4nwblbh + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4nwblbh-IP-1 + 1 + + NBENFAIL + + + + + fr.insee + l447nuda-QOP-l4idwhis + 1 + OutParameter + + + fr.insee + l4nwblbh-IP-1 + 1 + InParameter + + + l4nwblbh-IP-1="1" or isnull(l4nwblbh-IP-1) + + + + fr.insee + l4nwblbh-THEN + 1 + Sequence + + + + fr.insee + l4nwblbh-THEN + 1 + + + + + fr.insee + l4lfzig7-QC + 1 + QuestionConstruct + + + fr.insee + l4lfzig7-CI-0 + 1 + ComputationItem + + + fr.insee + l4lfzig7-CI-1 + 1 + ComputationItem + + + + fr.insee + l4qswa5h + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4qswa5h-IP-1 + 1 + + CBENFLOG + + + + + fr.insee + l4lcr3vb-QOP-l4lcyzfy + 1 + OutParameter + + + fr.insee + l4qswa5h-IP-1 + 1 + InParameter + + + not(isnull(l4qswa5h-IP-1)) and l4qswa5h-IP-1 >= 1 + + + + fr.insee + l4qswa5h-THEN + 1 + Sequence + + + + fr.insee + l4qswa5h-THEN + 1 + + + + + fr.insee + l446h6js + 1 + Sequence + + + + fr.insee + l4471oef + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4471oef-IP-1 + 1 + + PARENT_VIT_ENFLOG1 + + + + + fr.insee + kwqjol7e-QOP-kwqj742g + 1 + OutParameter + + + fr.insee + l4471oef-IP-1 + 1 + InParameter + + + l4471oef-IP-1 ="2" or isnull(l4471oef-IP-1) + + + + fr.insee + l4471oef-THEN + 1 + Sequence + + + + fr.insee + l4471oef-THEN + 1 + + + + + fr.insee + l4iaicn8-QC + 1 + QuestionConstruct + + + fr.insee + l4iaicn8-CI-0 + 1 + ComputationItem + + + fr.insee + l4pb9r9n + 1 + IfThenElse + + + fr.insee + l4pbp2cb + 1 + IfThenElse + + + fr.insee + l1ez78st-QC + 1 + QuestionConstruct + + + fr.insee + l1ez78st-CI-0 + 1 + ComputationItem + + + fr.insee + l4iain70-QC + 1 + QuestionConstruct + + + fr.insee + l4iain70-CI-0 + 1 + ComputationItem + + + fr.insee + kwqk3gx2-QC + 1 + QuestionConstruct + + + fr.insee + kwqk3gx2-CI-0 + 1 + ComputationItem + + + fr.insee + la6ydnyh-QC + 1 + QuestionConstruct + + + fr.insee + la6ydnyh-CI-0 + 1 + ComputationItem + + + fr.insee + la6yuhcj + 1 + IfThenElse + + + + fr.insee + l4pb9r9n + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4pb9r9n-IP-1 + 1 + + PARENT_FR_ENFLOG1 + + + + + fr.insee + l4iaicn8-QOP-l4ia62t2 + 1 + OutParameter + + + fr.insee + l4pb9r9n-IP-1 + 1 + InParameter + + + l4pb9r9n-IP-1 ="1" or isnull(l4pb9r9n-IP-1) + + + + fr.insee + l4pb9r9n-THEN + 1 + Sequence + + + + fr.insee + l4pb9r9n-THEN + 1 + + + + + fr.insee + l4pav1bd-QC + 1 + QuestionConstruct + + + fr.insee + l4pav1bd-CI-0 + 1 + ComputationItem + + + fr.insee + l4parilg-QC + 1 + QuestionConstruct + + + fr.insee + l4parilg-CI-0 + 1 + ComputationItem + + + + fr.insee + l4pbp2cb + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4pbp2cb-IP-1 + 1 + + PARENT_FR_ENFLOG1 + + + + + fr.insee + l4iaicn8-QOP-l4ia62t2 + 1 + OutParameter + + + fr.insee + l4pbp2cb-IP-1 + 1 + InParameter + + + l4pbp2cb-IP-1 ="2" + + + + fr.insee + l4pbp2cb-THEN + 1 + Sequence + + + + fr.insee + l4pbp2cb-THEN + 1 + + + + + fr.insee + l4pavrnh-QC + 1 + QuestionConstruct + + + fr.insee + l4pavrnh-CI-0 + 1 + ComputationItem + + + + fr.insee + la6yuhcj + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + la6yuhcj-IP-1 + 1 + + SEP_AUT_PAR_ENFLOG1 + + + + + fr.insee + la6ydnyh-QOP-la6ylcb8 + 1 + OutParameter + + + fr.insee + la6yuhcj-IP-1 + 1 + InParameter + + + la6yuhcj-IP-1="1" + + + + fr.insee + la6yuhcj-THEN + 1 + Sequence + + + + fr.insee + la6yuhcj-THEN + 1 + + + + + fr.insee + kwqjmy9d-QC + 1 + QuestionConstruct + + + fr.insee + kwqjmy9d-CI-0 + 1 + ComputationItem + + + + fr.insee + l4nw2vbq + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4nw2vbq-IP-1 + 1 + + CBENFLOG + + + + + fr.insee + l4lcr3vb-QOP-l4lcyzfy + 1 + OutParameter + + + fr.insee + l4nw2vbq-IP-1 + 1 + InParameter + + + not(isnull(l4nw2vbq-IP-1)) and l4nw2vbq-IP-1 >= 2 + + + + fr.insee + l4nw2vbq-THEN + 1 + Sequence + + + + fr.insee + l4nw2vbq-THEN + 1 + + + + + fr.insee + ljmv0rhg + 1 + Sequence + + + + fr.insee + l4idm31n + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4idm31n-IP-1 + 1 + + PARENT_VIT_ENFLOG2 + + + + + fr.insee + l4iano52-QOP-l4ia429z + 1 + OutParameter + + + fr.insee + l4idm31n-IP-1 + 1 + InParameter + + + l4idm31n-IP-1 ="2" or isnull(l4idm31n-IP-1) + + + + fr.insee + l4idm31n-THEN + 1 + Sequence + + + + fr.insee + l4idm31n-THEN + 1 + + + + + fr.insee + kwqjmujx-QC + 1 + QuestionConstruct + + + fr.insee + kwqjmujx-CI-0 + 1 + ComputationItem + + + fr.insee + l4pbhf1t + 1 + IfThenElse + + + fr.insee + l4pbccaz + 1 + IfThenElse + + + fr.insee + l4idgpbr-QC + 1 + QuestionConstruct + + + fr.insee + l4idgpbr-CI-0 + 1 + ComputationItem + + + fr.insee + l4486unb-QC + 1 + QuestionConstruct + + + fr.insee + l4486unb-CI-0 + 1 + ComputationItem + + + fr.insee + l4ia5o28-QC + 1 + QuestionConstruct + + + fr.insee + l4ia5o28-CI-0 + 1 + ComputationItem + + + fr.insee + la6yjh65-QC + 1 + QuestionConstruct + + + fr.insee + la6yjh65-CI-0 + 1 + ComputationItem + + + fr.insee + la6yi3mc + 1 + IfThenElse + + + + fr.insee + l4pbhf1t + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4pbhf1t-IP-1 + 1 + + PARENT_FR_ENFLOG2 + + + + + fr.insee + kwqjmujx-QOP-kwqjglld + 1 + OutParameter + + + fr.insee + l4pbhf1t-IP-1 + 1 + InParameter + + + l4pbhf1t-IP-1 ="1" or isnull(l4pbhf1t-IP-1) + + + + fr.insee + l4pbhf1t-THEN + 1 + Sequence + + + + fr.insee + l4pbhf1t-THEN + 1 + + + + + fr.insee + l4pannoa-QC + 1 + QuestionConstruct + + + fr.insee + l4pannoa-CI-0 + 1 + ComputationItem + + + fr.insee + l4pasuts-QC + 1 + QuestionConstruct + + + fr.insee + l4pasuts-CI-0 + 1 + ComputationItem + + + + fr.insee + l4pbccaz + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4pbccaz-IP-1 + 1 + + PARENT_FR_ENFLOG2 + + + + + fr.insee + kwqjmujx-QOP-kwqjglld + 1 + OutParameter + + + fr.insee + l4pbccaz-IP-1 + 1 + InParameter + + + l4pbccaz-IP-1 ="2" + + + + fr.insee + l4pbccaz-THEN + 1 + Sequence + + + + fr.insee + l4pbccaz-THEN + 1 + + + + + fr.insee + l4pbc5wa-QC + 1 + QuestionConstruct + + + fr.insee + l4pbc5wa-CI-0 + 1 + ComputationItem + + + + fr.insee + la6yi3mc + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + la6yi3mc-IP-1 + 1 + + SEP_AUT_PAR_ENFLOG2 + + + + + fr.insee + la6yjh65-QOP-la6yhprv + 1 + OutParameter + + + fr.insee + la6yi3mc-IP-1 + 1 + InParameter + + + la6yi3mc-IP-1="1" + + + + fr.insee + la6yi3mc-THEN + 1 + Sequence + + + + fr.insee + la6yi3mc-THEN + 1 + + + + + fr.insee + l4idgqx9-QC + 1 + QuestionConstruct + + + fr.insee + l4idgqx9-CI-0 + 1 + ComputationItem + + + + fr.insee + l4le5g6d + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4le5g6d-IP-1 + 1 + + CBENFLOG + + + + + fr.insee + l4lcr3vb-QOP-l4lcyzfy + 1 + OutParameter + + + fr.insee + l4le5g6d-IP-1 + 1 + InParameter + + + not(isnull(l4le5g6d-IP-1)) and l4le5g6d-IP-1 >= 3 + + + + fr.insee + l4le5g6d-THEN + 1 + Sequence + + + + fr.insee + l4le5g6d-THEN + 1 + + + + + fr.insee + ljmvg6vc + 1 + Sequence + + + + fr.insee + l4ldkvn7 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4ldkvn7-IP-1 + 1 + + PARENT_VIT_ENFLOG3 + + + + + fr.insee + l4lct7cb-QOP-l4lctczi + 1 + OutParameter + + + fr.insee + l4ldkvn7-IP-1 + 1 + InParameter + + + l4ldkvn7-IP-1 ="2" or isnull(l4ldkvn7-IP-1) + + + + fr.insee + l4ldkvn7-THEN + 1 + Sequence + + + + fr.insee + l4ldkvn7-THEN + 1 + + + + + fr.insee + l4ld827i-QC + 1 + QuestionConstruct + + + fr.insee + l4ld827i-CI-0 + 1 + ComputationItem + + + fr.insee + l4pbiq4p + 1 + IfThenElse + + + fr.insee + l4pbqc6m + 1 + IfThenElse + + + fr.insee + l4ld15su-QC + 1 + QuestionConstruct + + + fr.insee + l4ld15su-CI-0 + 1 + ComputationItem + + + fr.insee + l4ld0zmv-QC + 1 + QuestionConstruct + + + fr.insee + l4ld0zmv-CI-0 + 1 + ComputationItem + + + fr.insee + l4ld0jea-QC + 1 + QuestionConstruct + + + fr.insee + l4ld0jea-CI-0 + 1 + ComputationItem + + + fr.insee + la6y9flo-QC + 1 + QuestionConstruct + + + fr.insee + la6y9flo-CI-0 + 1 + ComputationItem + + + fr.insee + la6ylsbv + 1 + IfThenElse + + + + fr.insee + l4pbiq4p + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4pbiq4p-IP-1 + 1 + + PARENT_FR_ENFLOG3 + + + + + fr.insee + l4ld827i-QOP-l4ld6gqw + 1 + OutParameter + + + fr.insee + l4pbiq4p-IP-1 + 1 + InParameter + + + l4pbiq4p-IP-1 ="1" or isnull(l4pbiq4p-IP-1) + + + + fr.insee + l4pbiq4p-THEN + 1 + Sequence + + + + fr.insee + l4pbiq4p-THEN + 1 + + + + + fr.insee + l4pat7vx-QC + 1 + QuestionConstruct + + + fr.insee + l4pat7vx-CI-0 + 1 + ComputationItem + + + fr.insee + l4pavp6y-QC + 1 + QuestionConstruct + + + fr.insee + l4pavp6y-CI-0 + 1 + ComputationItem + + + + fr.insee + l4pbqc6m + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4pbqc6m-IP-1 + 1 + + PARENT_FR_ENFLOG3 + + + + + fr.insee + l4ld827i-QOP-l4ld6gqw + 1 + OutParameter + + + fr.insee + l4pbqc6m-IP-1 + 1 + InParameter + + + l4pbqc6m-IP-1 ="2" + + + + fr.insee + l4pbqc6m-THEN + 1 + Sequence + + + + fr.insee + l4pbqc6m-THEN + 1 + + + + + fr.insee + l4pb77tv-QC + 1 + QuestionConstruct + + + fr.insee + l4pb77tv-CI-0 + 1 + ComputationItem + + + + fr.insee + la6ylsbv + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + la6ylsbv-IP-1 + 1 + + SEP_AUT_PAR_ENFLOG3 + + + + + fr.insee + la6y9flo-QOP-la6y6kev + 1 + OutParameter + + + fr.insee + la6ylsbv-IP-1 + 1 + InParameter + + + la6ylsbv-IP-1="1" + + + + fr.insee + la6ylsbv-THEN + 1 + Sequence + + + + fr.insee + la6ylsbv-THEN + 1 + + + + + fr.insee + l4lde13h-QC + 1 + QuestionConstruct + + + fr.insee + l4lde13h-CI-0 + 1 + ComputationItem + + + + fr.insee + l4lf1r7t + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4lf1r7t-IP-1 + 1 + + CBENFLOG + + + + + fr.insee + l4lcr3vb-QOP-l4lcyzfy + 1 + OutParameter + + + fr.insee + l4lf1r7t-IP-1 + 1 + InParameter + + + not(isnull(l4lf1r7t-IP-1)) and l4lf1r7t-IP-1 >= 4 + + + + fr.insee + l4lf1r7t-THEN + 1 + Sequence + + + + fr.insee + l4lf1r7t-THEN + 1 + + + + + fr.insee + ljmv7iyw + 1 + Sequence + + + + fr.insee + l4leyz4g + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4leyz4g-IP-1 + 1 + + PARENT_VIT_ENFLOG4 + + + + + fr.insee + l4ler7fu-QOP-l4lequew + 1 + OutParameter + + + fr.insee + l4leyz4g-IP-1 + 1 + InParameter + + + l4leyz4g-IP-1 ="2" or isnull(l4leyz4g-IP-1) + + + + fr.insee + l4leyz4g-THEN + 1 + Sequence + + + + fr.insee + l4leyz4g-THEN + 1 + + + + + fr.insee + l4lemegm-QC + 1 + QuestionConstruct + + + fr.insee + l4lemegm-CI-0 + 1 + ComputationItem + + + fr.insee + l4pb9nsp + 1 + IfThenElse + + + fr.insee + l4pbk9d5 + 1 + IfThenElse + + + fr.insee + l4letwtq-QC + 1 + QuestionConstruct + + + fr.insee + l4letwtq-CI-0 + 1 + ComputationItem + + + fr.insee + l4letk9j-QC + 1 + QuestionConstruct + + + fr.insee + l4letk9j-CI-0 + 1 + ComputationItem + + + fr.insee + l4lekh2t-QC + 1 + QuestionConstruct + + + fr.insee + l4lekh2t-CI-0 + 1 + ComputationItem + + + fr.insee + la6y7rno-QC + 1 + QuestionConstruct + + + fr.insee + la6y7rno-CI-0 + 1 + ComputationItem + + + fr.insee + la6y6nrv + 1 + IfThenElse + + + + fr.insee + l4pb9nsp + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4pb9nsp-IP-1 + 1 + + PARENT_FR_ENFLOG4 + + + + + fr.insee + l4lemegm-QOP-l4leh99i + 1 + OutParameter + + + fr.insee + l4pb9nsp-IP-1 + 1 + InParameter + + + l4pb9nsp-IP-1 ="1" or isnull(l4pb9nsp-IP-1) + + + + fr.insee + l4pb9nsp-THEN + 1 + Sequence + + + + fr.insee + l4pb9nsp-THEN + 1 + + + + + fr.insee + l4payjff-QC + 1 + QuestionConstruct + + + fr.insee + l4payjff-CI-0 + 1 + ComputationItem + + + fr.insee + l4paz6m4-QC + 1 + QuestionConstruct + + + fr.insee + l4paz6m4-CI-0 + 1 + ComputationItem + + + + fr.insee + l4pbk9d5 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4pbk9d5-IP-1 + 1 + + PARENT_FR_ENFLOG4 + + + + + fr.insee + l4lemegm-QOP-l4leh99i + 1 + OutParameter + + + fr.insee + l4pbk9d5-IP-1 + 1 + InParameter + + + l4pbk9d5-IP-1 ="2" + + + + fr.insee + l4pbk9d5-THEN + 1 + Sequence + + + + fr.insee + l4pbk9d5-THEN + 1 + + + + + fr.insee + l4pbax4x-QC + 1 + QuestionConstruct + + + fr.insee + l4pbax4x-CI-0 + 1 + ComputationItem + + + + fr.insee + la6y6nrv + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + la6y6nrv-IP-1 + 1 + + SEP_AUT_PAR_ENFLOG4 + + + + + fr.insee + la6y7rno-QOP-la6yfcb1 + 1 + OutParameter + + + fr.insee + la6y6nrv-IP-1 + 1 + InParameter + + + la6y6nrv-IP-1="1" + + + + fr.insee + la6y6nrv-THEN + 1 + Sequence + + + + fr.insee + la6y6nrv-THEN + 1 + + + + + fr.insee + l4lexatl-QC + 1 + QuestionConstruct + + + fr.insee + l4lexatl-CI-0 + 1 + ComputationItem + + + + fr.insee + l4lg777d + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4lg777d-IP-1 + 1 + + CBENFLOG + + + + + fr.insee + l4lcr3vb-QOP-l4lcyzfy + 1 + OutParameter + + + fr.insee + l4lg777d-IP-1 + 1 + InParameter + + + not(isnull(l4lg777d-IP-1)) and l4lg777d-IP-1 >= 5 + + + + fr.insee + l4lg777d-THEN + 1 + Sequence + + + + fr.insee + l4lg777d-THEN + 1 + + + + + fr.insee + ljmv5mgh + 1 + Sequence + + + + fr.insee + l4lg52ne + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4lg52ne-IP-1 + 1 + + PARENT_VIT_ENFLOG5 + + + + + fr.insee + l4lfye1g-QOP-l4lfqvi9 + 1 + OutParameter + + + fr.insee + l4lg52ne-IP-1 + 1 + InParameter + + + l4lg52ne-IP-1 ="2" or isnull(l4lg52ne-IP-1) + + + + fr.insee + l4lg52ne-THEN + 1 + Sequence + + + + fr.insee + l4lg52ne-THEN + 1 + + + + + fr.insee + l4lfoek4-QC + 1 + QuestionConstruct + + + fr.insee + l4lfoek4-CI-0 + 1 + ComputationItem + + + fr.insee + l4pbc35i + 1 + IfThenElse + + + fr.insee + l4pbc2za + 1 + IfThenElse + + + fr.insee + l8n262ck-QC + 1 + QuestionConstruct + + + fr.insee + l8n262ck-CI-0 + 1 + ComputationItem + + + fr.insee + l4lfr4qa-QC + 1 + QuestionConstruct + + + fr.insee + l4lfr4qa-CI-0 + 1 + ComputationItem + + + fr.insee + l4lfvape-QC + 1 + QuestionConstruct + + + fr.insee + l4lfvape-CI-0 + 1 + ComputationItem + + + fr.insee + la6yfjnf-QC + 1 + QuestionConstruct + + + fr.insee + la6yfjnf-CI-0 + 1 + ComputationItem + + + fr.insee + la6ybuwv + 1 + IfThenElse + + + + fr.insee + l4pbc35i + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4pbc35i-IP-1 + 1 + + PARENT_FR_ENFLOG5 + + + + + fr.insee + l4lfoek4-QOP-l4lfrft6 + 1 + OutParameter + + + fr.insee + l4pbc35i-IP-1 + 1 + InParameter + + + l4pbc35i-IP-1 ="1" or isnull(l4pbc35i-IP-1) + + + + fr.insee + l4pbc35i-THEN + 1 + Sequence + + + + fr.insee + l4pbc35i-THEN + 1 + + + + + fr.insee + l4pauqgi-QC + 1 + QuestionConstruct + + + fr.insee + l4pauqgi-CI-0 + 1 + ComputationItem + + + fr.insee + l4paw4ax-QC + 1 + QuestionConstruct + + + fr.insee + l4paw4ax-CI-0 + 1 + ComputationItem + + + + fr.insee + l4pbc2za + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4pbc2za-IP-1 + 1 + + PARENT_FR_ENFLOG5 + + + + + fr.insee + l4lfoek4-QOP-l4lfrft6 + 1 + OutParameter + + + fr.insee + l4pbc2za-IP-1 + 1 + InParameter + + + l4pbc2za-IP-1 ="2" + + + + fr.insee + l4pbc2za-THEN + 1 + Sequence + + + + fr.insee + l4pbc2za-THEN + 1 + + + + + fr.insee + l4pb234a-QC + 1 + QuestionConstruct + + + fr.insee + l4pb234a-CI-0 + 1 + ComputationItem + + + + fr.insee + la6ybuwv + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + la6ybuwv-IP-1 + 1 + + SEP_AUT_PAR_ENFLOG5 + + + + + fr.insee + la6yfjnf-QOP-la6y9op3 + 1 + OutParameter + + + fr.insee + la6ybuwv-IP-1 + 1 + InParameter + + + la6ybuwv-IP-1="1" + + + + fr.insee + la6ybuwv-THEN + 1 + Sequence + + + + fr.insee + la6ybuwv-THEN + 1 + + + + + fr.insee + l4lg25av-QC + 1 + QuestionConstruct + + + fr.insee + l4lg25av-CI-0 + 1 + ComputationItem + + + + fr.insee + l8n313zq + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8n313zq-IP-1 + 1 + + CBENFLOG + + + + + fr.insee + l4lcr3vb-QOP-l4lcyzfy + 1 + OutParameter + + + fr.insee + l8n313zq-IP-1 + 1 + InParameter + + + not(isnull(l8n313zq-IP-1)) and l8n313zq-IP-1 >= 6 + + + + fr.insee + l8n313zq-THEN + 1 + Sequence + + + + fr.insee + l8n313zq-THEN + 1 + + + + + fr.insee + ljmvjhon + 1 + Sequence + + + + fr.insee + l8n2b0y0 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8n2b0y0-IP-1 + 1 + + PARENT_VIT_ENFLOG6 + + + + + fr.insee + l8n2ilpb-QOP-l8n290y2 + 1 + OutParameter + + + fr.insee + l8n2b0y0-IP-1 + 1 + InParameter + + + l8n2b0y0-IP-1 ="2" or isnull(l8n2b0y0-IP-1) + + + + fr.insee + l8n2b0y0-THEN + 1 + Sequence + + + + fr.insee + l8n2b0y0-THEN + 1 + + + + + fr.insee + l8n1zy7o-QC + 1 + QuestionConstruct + + + fr.insee + l8n1zy7o-CI-0 + 1 + ComputationItem + + + fr.insee + l8n2ebqc + 1 + IfThenElse + + + fr.insee + l8n27or5 + 1 + IfThenElse + + + fr.insee + l4lfnqiq-QC + 1 + QuestionConstruct + + + fr.insee + l4lfnqiq-CI-0 + 1 + ComputationItem + + + fr.insee + l8n29jww-QC + 1 + QuestionConstruct + + + fr.insee + l8n29jww-CI-0 + 1 + ComputationItem + + + fr.insee + l8n1p0yj-QC + 1 + QuestionConstruct + + + fr.insee + l8n1p0yj-CI-0 + 1 + ComputationItem + + + fr.insee + la6y7ni0-QC + 1 + QuestionConstruct + + + fr.insee + la6y7ni0-CI-0 + 1 + ComputationItem + + + fr.insee + la6yihxx + 1 + IfThenElse + + + + fr.insee + l8n2ebqc + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8n2ebqc-IP-1 + 1 + + PARENT_FR_ENFLOG6 + + + + + fr.insee + l8n1zy7o-QOP-l8n23nvd + 1 + OutParameter + + + fr.insee + l8n2ebqc-IP-1 + 1 + InParameter + + + l8n2ebqc-IP-1 ="1" or isnull(l8n2ebqc-IP-1) + + + + fr.insee + l8n2ebqc-THEN + 1 + Sequence + + + + fr.insee + l8n2ebqc-THEN + 1 + + + + + fr.insee + l8n2awb0-QC + 1 + QuestionConstruct + + + fr.insee + l8n2awb0-CI-0 + 1 + ComputationItem + + + fr.insee + l8n1u6yt-QC + 1 + QuestionConstruct + + + fr.insee + l8n1u6yt-CI-0 + 1 + ComputationItem + + + + fr.insee + l8n27or5 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8n27or5-IP-1 + 1 + + PARENT_FR_ENFLOG6 + + + + + fr.insee + l8n1zy7o-QOP-l8n23nvd + 1 + OutParameter + + + fr.insee + l8n27or5-IP-1 + 1 + InParameter + + + l8n27or5-IP-1 ="2" + + + + fr.insee + l8n27or5-THEN + 1 + Sequence + + + + fr.insee + l8n27or5-THEN + 1 + + + + + fr.insee + l8n20r8i-QC + 1 + QuestionConstruct + + + fr.insee + l8n20r8i-CI-0 + 1 + ComputationItem + + + + fr.insee + la6yihxx + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + la6yihxx-IP-1 + 1 + + SEP_AUT_PAR_ENFLOG6 + + + + + fr.insee + la6y7ni0-QOP-la6y43a4 + 1 + OutParameter + + + fr.insee + la6yihxx-IP-1 + 1 + InParameter + + + la6yihxx-IP-1="1" + + + + fr.insee + la6yihxx-THEN + 1 + Sequence + + + + fr.insee + la6yihxx-THEN + 1 + + + + + fr.insee + l8n1u2kg-QC + 1 + QuestionConstruct + + + fr.insee + l8n1u2kg-CI-0 + 1 + ComputationItem + + + + fr.insee + l8n3phvb + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8n3phvb-IP-1 + 1 + + CBENFLOG + + + + + fr.insee + l4lcr3vb-QOP-l4lcyzfy + 1 + OutParameter + + + fr.insee + l8n3phvb-IP-1 + 1 + InParameter + + + not(isnull(l8n3phvb-IP-1)) and l8n3phvb-IP-1 >= 7 + + + + fr.insee + l8n3phvb-THEN + 1 + Sequence + + + + fr.insee + l8n3phvb-THEN + 1 + + + + + fr.insee + ljmvjzfz + 1 + Sequence + + + + fr.insee + l8n3khpg + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8n3khpg-IP-1 + 1 + + PARENT_VIT_ENFLOG7 + + + + + fr.insee + l8n3ff6s-QOP-l8n3ns0y + 1 + OutParameter + + + fr.insee + l8n3khpg-IP-1 + 1 + InParameter + + + l8n3khpg-IP-1 ="2" or isnull(l8n3khpg-IP-1) + + + + fr.insee + l8n3khpg-THEN + 1 + Sequence + + + + fr.insee + l8n3khpg-THEN + 1 + + + + + fr.insee + l8n3b7uo-QC + 1 + QuestionConstruct + + + fr.insee + l8n3b7uo-CI-0 + 1 + ComputationItem + + + fr.insee + l8n3hm13 + 1 + IfThenElse + + + fr.insee + l8n39dj7 + 1 + IfThenElse + + + fr.insee + l8n32xk9-QC + 1 + QuestionConstruct + + + fr.insee + l8n32xk9-CI-0 + 1 + ComputationItem + + + fr.insee + l8n2x7q4-QC + 1 + QuestionConstruct + + + fr.insee + l8n2x7q4-CI-0 + 1 + ComputationItem + + + fr.insee + l8n3ary8-QC + 1 + QuestionConstruct + + + fr.insee + l8n3ary8-CI-0 + 1 + ComputationItem + + + fr.insee + la6y542q-QC + 1 + QuestionConstruct + + + fr.insee + la6y542q-CI-0 + 1 + ComputationItem + + + fr.insee + la6ygcb1 + 1 + IfThenElse + + + + fr.insee + l8n3hm13 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8n3hm13-IP-1 + 1 + + PARENT_FR_ENFLOG7 + + + + + fr.insee + l8n3b7uo-QOP-l8n3h6xz + 1 + OutParameter + + + fr.insee + l8n3hm13-IP-1 + 1 + InParameter + + + l8n3hm13-IP-1="1" or isnull(l8n3hm13-IP-1) + + + + fr.insee + l8n3hm13-THEN + 1 + Sequence + + + + fr.insee + l8n3hm13-THEN + 1 + + + + + fr.insee + l8n3fzap-QC + 1 + QuestionConstruct + + + fr.insee + l8n3fzap-CI-0 + 1 + ComputationItem + + + fr.insee + l8n3485v-QC + 1 + QuestionConstruct + + + fr.insee + l8n3485v-CI-0 + 1 + ComputationItem + + + + fr.insee + l8n39dj7 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8n39dj7-IP-1 + 1 + + PARENT_FR_ENFLOG7 + + + + + fr.insee + l8n3b7uo-QOP-l8n3h6xz + 1 + OutParameter + + + fr.insee + l8n39dj7-IP-1 + 1 + InParameter + + + l8n39dj7-IP-1="2" + + + + fr.insee + l8n39dj7-THEN + 1 + Sequence + + + + fr.insee + l8n39dj7-THEN + 1 + + + + + fr.insee + l8n3burz-QC + 1 + QuestionConstruct + + + fr.insee + l8n3burz-CI-0 + 1 + ComputationItem + + + + fr.insee + la6ygcb1 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + la6ygcb1-IP-1 + 1 + + SEP_AUT_PAR_ENFLOG7 + + + + + fr.insee + la6y542q-QOP-la6y48t7 + 1 + OutParameter + + + fr.insee + la6ygcb1-IP-1 + 1 + InParameter + + + la6ygcb1-IP-1="1" + + + + fr.insee + la6ygcb1-THEN + 1 + Sequence + + + + fr.insee + la6ygcb1-THEN + 1 + + + + + fr.insee + l8n2t39d-QC + 1 + QuestionConstruct + + + fr.insee + l8n2t39d-CI-0 + 1 + ComputationItem + + + + fr.insee + l8n410d7 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8n410d7-IP-1 + 1 + + CBENFLOG + + + + + fr.insee + l4lcr3vb-QOP-l4lcyzfy + 1 + OutParameter + + + fr.insee + l8n410d7-IP-1 + 1 + InParameter + + + not(isnull(l8n410d7-IP-1)) and l8n410d7-IP-1 >= 8 + + + + fr.insee + l8n410d7-THEN + 1 + Sequence + + + + fr.insee + l8n410d7-THEN + 1 + + + + + fr.insee + ljmvnzv4 + 1 + Sequence + + + + fr.insee + l8n470rx + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8n470rx-IP-1 + 1 + + PARENT_VIT_ENFLOG8 + + + + + fr.insee + l8n427a2-QOP-l8n40s7s + 1 + OutParameter + + + fr.insee + l8n470rx-IP-1 + 1 + InParameter + + + l8n470rx-IP-1 ="2" or isnull(l8n470rx-IP-1) + + + + fr.insee + l8n470rx-THEN + 1 + Sequence + + + + fr.insee + l8n470rx-THEN + 1 + + + + + fr.insee + l8n41hvu-QC + 1 + QuestionConstruct + + + fr.insee + l8n41hvu-CI-0 + 1 + ComputationItem + + + fr.insee + l8n3rwlf + 1 + IfThenElse + + + fr.insee + l8n3q138 + 1 + IfThenElse + + + fr.insee + l8n3fpp7-QC + 1 + QuestionConstruct + + + fr.insee + l8n3fpp7-CI-0 + 1 + ComputationItem + + + fr.insee + l8n3xb0z-QC + 1 + QuestionConstruct + + + fr.insee + l8n3xb0z-CI-0 + 1 + ComputationItem + + + fr.insee + l8n3tjlw-QC + 1 + QuestionConstruct + + + fr.insee + l8n3tjlw-CI-0 + 1 + ComputationItem + + + fr.insee + la6v947r-QC + 1 + QuestionConstruct + + + fr.insee + la6v947r-CI-0 + 1 + ComputationItem + + + fr.insee + la6vf6n5 + 1 + IfThenElse + + + + fr.insee + l8n3rwlf + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8n3rwlf-IP-1 + 1 + + PARENT_FR_ENFLOG8 + + + + + fr.insee + l8n41hvu-QOP-l8n3z6kp + 1 + OutParameter + + + fr.insee + l8n3rwlf-IP-1 + 1 + InParameter + + + l8n3rwlf-IP-1="1" or isnull(l8n3rwlf-IP-1) + + + + fr.insee + l8n3rwlf-THEN + 1 + Sequence + + + + fr.insee + l8n3rwlf-THEN + 1 + + + + + fr.insee + l8n41c78-QC + 1 + QuestionConstruct + + + fr.insee + l8n41c78-CI-0 + 1 + ComputationItem + + + fr.insee + l8n3tbmd-QC + 1 + QuestionConstruct + + + fr.insee + l8n3tbmd-CI-0 + 1 + ComputationItem + + + + fr.insee + l8n3q138 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8n3q138-IP-1 + 1 + + PARENT_FR_ENFLOG8 + + + + + fr.insee + l8n41hvu-QOP-l8n3z6kp + 1 + OutParameter + + + fr.insee + l8n3q138-IP-1 + 1 + InParameter + + + l8n3q138-IP-1="2" + + + + fr.insee + l8n3q138-THEN + 1 + Sequence + + + + fr.insee + l8n3q138-THEN + 1 + + + + + fr.insee + l8n40r7t-QC + 1 + QuestionConstruct + + + fr.insee + l8n40r7t-CI-0 + 1 + ComputationItem + + + + fr.insee + la6vf6n5 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + la6vf6n5-IP-1 + 1 + + SEP_AUT_PAR_ENFLOG8 + + + + + fr.insee + la6v947r-QOP-la6v9lhg + 1 + OutParameter + + + fr.insee + la6vf6n5-IP-1 + 1 + InParameter + + + la6vf6n5-IP-1="1" + + + + fr.insee + la6vf6n5-THEN + 1 + Sequence + + + + fr.insee + la6vf6n5-THEN + 1 + + + + + fr.insee + l8n3ocd5-QC + 1 + QuestionConstruct + + + fr.insee + l8n3ocd5-CI-0 + 1 + ComputationItem + + + + fr.insee + l4qsy750 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4qsy750-IP-1 + 1 + + CBENFAIL + + + + + fr.insee + l4lfzig7-QOP-l4lgbag5 + 1 + OutParameter + + + fr.insee + l4qsy750-IP-1 + 1 + InParameter + + + not(isnull(l4qsy750-IP-1)) and l4qsy750-IP-1 >= 1 + + + + fr.insee + l4qsy750-THEN + 1 + Sequence + + + + fr.insee + l4qsy750-THEN + 1 + + + + + fr.insee + l447aq23 + 1 + Sequence + + + + fr.insee + l8lzngsq + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8lzngsq-IP-1 + 1 + + PARENT_VIT_ENFAIL1 + + + + + fr.insee + l4cjivdg-QOP-l4cjvm0q + 1 + OutParameter + + + fr.insee + l8lzngsq-IP-1 + 1 + InParameter + + + l8lzngsq-IP-1="2" or l8lzngsq-IP-1="3" or isnull( l8lzngsq-IP-1) + + + + fr.insee + l8lzngsq-THEN + 1 + Sequence + + + + fr.insee + l8lzngsq-THEN + 1 + + + + + fr.insee + l8lzt19v-QC + 1 + QuestionConstruct + + + fr.insee + l8lzt19v-CI-0 + 1 + ComputationItem + + + + fr.insee + l5jdinbs + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l5jdinbs-IP-1 + 1 + + DC_ENFAIL1 + + + + + fr.insee + l4485tkr-QOP-l4484mb2 + 1 + OutParameter + + + fr.insee + l5jdinbs-IP-1 + 1 + InParameter + + + l5jdinbs-IP-1 ="2" + + + + fr.insee + l5jdinbs-THEN + 1 + Sequence + + + + fr.insee + l5jdinbs-THEN + 1 + + + + + fr.insee + kwqkh05l-QC + 1 + QuestionConstruct + + + fr.insee + kwqkh05l-CI-0 + 1 + ComputationItem + + + fr.insee + kwqkh05l-CI-1 + 1 + ComputationItem + + + + fr.insee + l448gpc1 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l448gpc1-IP-1 + 1 + + DC_ENFAIL1 + + + + + fr.insee + l4485tkr-QOP-l4484mb2 + 1 + OutParameter + + + fr.insee + l448gpc1-IP-1 + 1 + InParameter + + + l448gpc1-IP-1="1" or isnull(l448gpc1-IP-1) + + + + fr.insee + l448gpc1-THEN + 1 + Sequence + + + + fr.insee + l448gpc1-THEN + 1 + + + + + fr.insee + kwqk3ki3-QC + 1 + QuestionConstruct + + + fr.insee + kwqk3ki3-CI-0 + 1 + ComputationItem + + + fr.insee + kwqk3ki3-CI-1 + 1 + ComputationItem + + + fr.insee + kwqkmusz-QC + 1 + QuestionConstruct + + + fr.insee + kwqkmusz-CI-0 + 1 + ComputationItem + + + fr.insee + kwqjp9yr-QC + 1 + QuestionConstruct + + + fr.insee + kwqjp9yr-CI-0 + 1 + ComputationItem + + + fr.insee + l4oo0hx8 + 1 + IfThenElse + + + fr.insee + l4oo57jb + 1 + IfThenElse + + + + fr.insee + l4oo0hx8 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4oo0hx8-IP-1 + 1 + + FR_ENFAIL1 + + + + + fr.insee + kwqjp9yr-QOP-l48dyt79 + 1 + OutParameter + + + fr.insee + l4oo0hx8-IP-1 + 1 + InParameter + + + l4oo0hx8-IP-1 ="1" or isnull(l4oo0hx8-IP-1) + + + + fr.insee + l4oo0hx8-THEN + 1 + Sequence + + + + fr.insee + l4oo0hx8-THEN + 1 + + + + + fr.insee + l4onskib-QC + 1 + QuestionConstruct + + + fr.insee + l4onskib-CI-0 + 1 + ComputationItem + + + fr.insee + l4onsq99-QC + 1 + QuestionConstruct + + + fr.insee + l4onsq99-CI-0 + 1 + ComputationItem + + + + fr.insee + l4oo57jb + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4oo57jb-IP-1 + 1 + + FR_ENFAIL1 + + + + + fr.insee + kwqjp9yr-QOP-l48dyt79 + 1 + OutParameter + + + fr.insee + l4oo57jb-IP-1 + 1 + InParameter + + + l4oo57jb-IP-1 ="2" + + + + fr.insee + l4oo57jb-THEN + 1 + Sequence + + + + fr.insee + l4oo57jb-THEN + 1 + + + + + fr.insee + l4onsf7y-QC + 1 + QuestionConstruct + + + fr.insee + l4onsf7y-CI-0 + 1 + ComputationItem + + + + fr.insee + l48e5rva + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l48e5rva-IP-1 + 1 + + ANAI_ENFAIL1 + + + + fr.insee + l48e5rva-IP-2 + 1 + + DC_ENFAIL1 + + + + + fr.insee + kwqj561a-QOP-kwqj8zg8 + 1 + OutParameter + + + fr.insee + l48e5rva-IP-1 + 1 + InParameter + + + + + fr.insee + l4485tkr-QOP-l4484mb2 + 1 + OutParameter + + + fr.insee + l48e5rva-IP-2 + 1 + InParameter + + + (l48e5rva-IP-2="1" or isnull(l48e5rva-IP-2)) and cast(l48e5rva-IP-1,integer) >= 2004 + + + + fr.insee + l48e5rva-THEN + 1 + Sequence + + + + fr.insee + l48e5rva-THEN + 1 + + + + + fr.insee + l8m04z67 + 1 + IfThenElse + + + fr.insee + llgisayz + 1 + IfThenElse + + + fr.insee + kwqj7xh6-QC + 1 + QuestionConstruct + + + fr.insee + kwqj7xh6-CI-0 + 1 + ComputationItem + + + fr.insee + ljwwtq21 + 1 + IfThenElse + + + + fr.insee + l8m04z67 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8m04z67-IP-1 + 1 + + ANAI_ENFAIL1 + + + + + fr.insee + kwqj561a-QOP-kwqj8zg8 + 1 + OutParameter + + + fr.insee + l8m04z67-IP-1 + 1 + InParameter + + + cast(l8m04z67-IP-1,integer) <= 2011 + + + + fr.insee + l8m04z67-THEN + 1 + Sequence + + + + fr.insee + l8m04z67-THEN + 1 + + + + + fr.insee + kwqk3a58-QC + 1 + QuestionConstruct + + + fr.insee + kwqk3a58-CI-0 + 1 + ComputationItem + + + + fr.insee + llgisayz + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llgisayz-IP-1 + 1 + + PARENT_VIT_ENFAIL1 + + + + + fr.insee + l4cjivdg-QOP-l4cjvm0q + 1 + OutParameter + + + fr.insee + llgisayz-IP-1 + 1 + InParameter + + + llgisayz-IP-1<>="3" + + + + fr.insee + llgisayz-THEN + 1 + Sequence + + + + fr.insee + llgisayz-THEN + 1 + + + + + fr.insee + l44849iu-QC + 1 + QuestionConstruct + + + fr.insee + l44849iu-CI-0 + 1 + ComputationItem + + + + fr.insee + ljwwtq21 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ljwwtq21-IP-1 + 1 + + PARENT_VIT_ENFAIL1 + + + + + fr.insee + l4cjivdg-QOP-l4cjvm0q + 1 + OutParameter + + + fr.insee + ljwwtq21-IP-1 + 1 + InParameter + + + ljwwtq21-IP-1<>"3" + + + + fr.insee + ljwwtq21-THEN + 1 + Sequence + + + + fr.insee + ljwwtq21-THEN + 1 + + + + + fr.insee + l4o74e6d-QC + 1 + QuestionConstruct + + + fr.insee + l4o74e6d-CI-0 + 1 + ComputationItem + + + fr.insee + l4o7h8pw + 1 + IfThenElse + + + + fr.insee + l4o7h8pw + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4o7h8pw-IP-1 + 1 + + SEP_AUT_PAR_ENFAIL1 + + + + + fr.insee + l4o74e6d-QOP-l4o73ai5 + 1 + OutParameter + + + fr.insee + l4o7h8pw-IP-1 + 1 + InParameter + + + l4o7h8pw-IP-1 ="1" or isnull(l4o7h8pw-IP-1) + + + + fr.insee + l4o7h8pw-THEN + 1 + Sequence + + + + fr.insee + l4o7h8pw-THEN + 1 + + + + + fr.insee + l1gknpsx-QC + 1 + QuestionConstruct + + + fr.insee + l1gknpsx-CI-0 + 1 + ComputationItem + + + + fr.insee + llgfwmuj + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llgfwmuj-IP-1 + 1 + + DC_ENFAIL1 + + + + + fr.insee + l4485tkr-QOP-l4484mb2 + 1 + OutParameter + + + fr.insee + llgfwmuj-IP-1 + 1 + InParameter + + + llgfwmuj-IP-1="1" or isnull(llgfwmuj-IP-1) + + + + fr.insee + llgfwmuj-THEN + 1 + Sequence + + + + fr.insee + llgfwmuj-THEN + 1 + + + + + fr.insee + l1gi8vrf-QC + 1 + QuestionConstruct + + + fr.insee + l1gi8vrf-CI-0 + 1 + ComputationItem + + + + fr.insee + l4lnzqvx + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4lnzqvx-IP-1 + 1 + + CBENFAIL + + + + + fr.insee + l4lfzig7-QOP-l4lgbag5 + 1 + OutParameter + + + fr.insee + l4lnzqvx-IP-1 + 1 + InParameter + + + not(isnull(l4lnzqvx-IP-1)) and l4lnzqvx-IP-1 >= 2 + + + + fr.insee + l4lnzqvx-THEN + 1 + Sequence + + + + fr.insee + l4lnzqvx-THEN + 1 + + + + + fr.insee + ljmwx9yl + 1 + Sequence + + + + fr.insee + l8m0kidv + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8m0kidv-IP-1 + 1 + + PARENT_VIT_ENFAIL2 + + + + + fr.insee + l4lgqbdk-QOP-l4lgpvm2 + 1 + OutParameter + + + fr.insee + l8m0kidv-IP-1 + 1 + InParameter + + + l8m0kidv-IP-1 ="2" or l8m0kidv-IP-1 ="3" or isnull( l8m0kidv-IP-1) + + + + fr.insee + l8m0kidv-THEN + 1 + Sequence + + + + fr.insee + l8m0kidv-THEN + 1 + + + + + fr.insee + l8lzthqx-QC + 1 + QuestionConstruct + + + fr.insee + l8lzthqx-CI-0 + 1 + ComputationItem + + + + fr.insee + l5jdovhd + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l5jdovhd-IP-1 + 1 + + DC_ENFAIL2 + + + + + fr.insee + l4lh1bvw-QOP-l4lgv2yw + 1 + OutParameter + + + fr.insee + l5jdovhd-IP-1 + 1 + InParameter + + + l5jdovhd-IP-1 ="2" + + + + fr.insee + l5jdovhd-THEN + 1 + Sequence + + + + fr.insee + l5jdovhd-THEN + 1 + + + + + fr.insee + l4lhc03p-QC + 1 + QuestionConstruct + + + fr.insee + l4lhc03p-CI-0 + 1 + ComputationItem + + + fr.insee + l4lhc03p-CI-1 + 1 + ComputationItem + + + + fr.insee + l4lnn260 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4lnn260-IP-1 + 1 + + DC_ENFAIL2 + + + + + fr.insee + l4lh1bvw-QOP-l4lgv2yw + 1 + OutParameter + + + fr.insee + l4lnn260-IP-1 + 1 + InParameter + + + l4lnn260-IP-1 ="1" or isnull(l4lnn260-IP-1) + + + + fr.insee + l4lnn260-THEN + 1 + Sequence + + + + fr.insee + l4lnn260-THEN + 1 + + + + + fr.insee + l4lhkbmw-QC + 1 + QuestionConstruct + + + fr.insee + l4lhkbmw-CI-0 + 1 + ComputationItem + + + fr.insee + l4lhkbmw-CI-1 + 1 + ComputationItem + + + fr.insee + l4liqyis-QC + 1 + QuestionConstruct + + + fr.insee + l4liqyis-CI-0 + 1 + ComputationItem + + + fr.insee + l4lj22ar-QC + 1 + QuestionConstruct + + + fr.insee + l4lj22ar-CI-0 + 1 + ComputationItem + + + fr.insee + l4oo7o08 + 1 + IfThenElse + + + fr.insee + l4oo245u + 1 + IfThenElse + + + + fr.insee + l4oo7o08 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4oo7o08-IP-1 + 1 + + FR_ENFAIL2 + + + + + fr.insee + l4lj22ar-QOP-l4likfdn + 1 + OutParameter + + + fr.insee + l4oo7o08-IP-1 + 1 + InParameter + + + l4oo7o08-IP-1 ="1" or isnull(l4oo7o08-IP-1) + + + + fr.insee + l4oo7o08-THEN + 1 + Sequence + + + + fr.insee + l4oo7o08-THEN + 1 + + + + + fr.insee + l4oo8gk0-QC + 1 + QuestionConstruct + + + fr.insee + l4oo8gk0-CI-0 + 1 + ComputationItem + + + fr.insee + l4oo2unu-QC + 1 + QuestionConstruct + + + fr.insee + l4oo2unu-CI-0 + 1 + ComputationItem + + + + fr.insee + l4oo245u + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4oo245u-IP-1 + 1 + + FR_ENFAIL2 + + + + + fr.insee + l4lj22ar-QOP-l4likfdn + 1 + OutParameter + + + fr.insee + l4oo245u-IP-1 + 1 + InParameter + + + l4oo245u-IP-1 ="2" + + + + fr.insee + l4oo245u-THEN + 1 + Sequence + + + + fr.insee + l4oo245u-THEN + 1 + + + + + fr.insee + l4ooebmj-QC + 1 + QuestionConstruct + + + fr.insee + l4ooebmj-CI-0 + 1 + ComputationItem + + + + fr.insee + l4lnyip6 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4lnyip6-IP-1 + 1 + + ANAI_ENFAIL2 + + + + fr.insee + l4lnyip6-IP-2 + 1 + + DC_ENFAIL2 + + + + + fr.insee + l4lgjbi8-QOP-l4lg7r84 + 1 + OutParameter + + + fr.insee + l4lnyip6-IP-1 + 1 + InParameter + + + + + fr.insee + l4lh1bvw-QOP-l4lgv2yw + 1 + OutParameter + + + fr.insee + l4lnyip6-IP-2 + 1 + InParameter + + + (l4lnyip6-IP-2="1" or isnull(l4lnyip6-IP-2)) and cast(l4lnyip6-IP-1,integer) >= 2004 + + + + fr.insee + l4lnyip6-THEN + 1 + Sequence + + + + fr.insee + l4lnyip6-THEN + 1 + + + + + fr.insee + l8m0f3o7 + 1 + IfThenElse + + + fr.insee + llgj7k5k + 1 + IfThenElse + + + fr.insee + l4ljkmaj-QC + 1 + QuestionConstruct + + + fr.insee + l4ljkmaj-CI-0 + 1 + ComputationItem + + + fr.insee + ljwwua2c + 1 + IfThenElse + + + + fr.insee + l8m0f3o7 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8m0f3o7-IP-1 + 1 + + ANAI_ENFAIL2 + + + + + fr.insee + l4lgjbi8-QOP-l4lg7r84 + 1 + OutParameter + + + fr.insee + l8m0f3o7-IP-1 + 1 + InParameter + + + cast(l8m0f3o7-IP-1,integer) <= 2011 + + + + fr.insee + l8m0f3o7-THEN + 1 + Sequence + + + + fr.insee + l8m0f3o7-THEN + 1 + + + + + fr.insee + l4liztyl-QC + 1 + QuestionConstruct + + + fr.insee + l4liztyl-CI-0 + 1 + ComputationItem + + + + fr.insee + llgj7k5k + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llgj7k5k-IP-1 + 1 + + PARENT_VIT_ENFAIL2 + + + + + fr.insee + l4lgqbdk-QOP-l4lgpvm2 + 1 + OutParameter + + + fr.insee + llgj7k5k-IP-1 + 1 + InParameter + + + llgj7k5k-IP-1<>="3" + + + + fr.insee + llgj7k5k-THEN + 1 + Sequence + + + + fr.insee + llgj7k5k-THEN + 1 + + + + + fr.insee + l4lk1w8p-QC + 1 + QuestionConstruct + + + fr.insee + l4lk1w8p-CI-0 + 1 + ComputationItem + + + + fr.insee + ljwwua2c + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ljwwua2c-IP-1 + 1 + + PARENT_VIT_ENFAIL2 + + + + + fr.insee + l4lgqbdk-QOP-l4lgpvm2 + 1 + OutParameter + + + fr.insee + ljwwua2c-IP-1 + 1 + InParameter + + + ljwwua2c-IP-1<>"3" + + + + fr.insee + ljwwua2c-THEN + 1 + Sequence + + + + fr.insee + ljwwua2c-THEN + 1 + + + + + fr.insee + l4o73m0u-QC + 1 + QuestionConstruct + + + fr.insee + l4o73m0u-CI-0 + 1 + ComputationItem + + + fr.insee + l4o77apl + 1 + IfThenElse + + + + fr.insee + l4o77apl + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4o77apl-IP-1 + 1 + + SEP_AUT_PAR_ENFAIL2 + + + + + fr.insee + l4o73m0u-QOP-l4o79ydp + 1 + OutParameter + + + fr.insee + l4o77apl-IP-1 + 1 + InParameter + + + l4o77apl-IP-1 ="1" or isnull(l4o77apl-IP-1) + + + + fr.insee + l4o77apl-THEN + 1 + Sequence + + + + fr.insee + l4o77apl-THEN + 1 + + + + + fr.insee + l4lmxke4-QC + 1 + QuestionConstruct + + + fr.insee + l4lmxke4-CI-0 + 1 + ComputationItem + + + + fr.insee + llgftzzb + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llgftzzb-IP-1 + 1 + + DC_ENFAIL2 + + + + + fr.insee + l4lh1bvw-QOP-l4lgv2yw + 1 + OutParameter + + + fr.insee + llgftzzb-IP-1 + 1 + InParameter + + + llgftzzb-IP-1="1" or isnull(llgftzzb-IP-1) + + + + fr.insee + llgftzzb-THEN + 1 + Sequence + + + + fr.insee + llgftzzb-THEN + 1 + + + + + fr.insee + l4ljj44i-QC + 1 + QuestionConstruct + + + fr.insee + l4ljj44i-CI-0 + 1 + ComputationItem + + + + fr.insee + l4loausq + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4loausq-IP-1 + 1 + + CBENFAIL + + + + + fr.insee + l4lfzig7-QOP-l4lgbag5 + 1 + OutParameter + + + fr.insee + l4loausq-IP-1 + 1 + InParameter + + + not(isnull(l4loausq-IP-1)) and l4loausq-IP-1 >= 3 + + + + fr.insee + l4loausq-THEN + 1 + Sequence + + + + fr.insee + l4loausq-THEN + 1 + + + + + fr.insee + ljmwnjny + 1 + Sequence + + + + fr.insee + l8m0jyzr + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8m0jyzr-IP-1 + 1 + + PARENT_VIT_ENFAIL3 + + + + + fr.insee + l4lgysxq-QOP-l4lgtxyg + 1 + OutParameter + + + fr.insee + l8m0jyzr-IP-1 + 1 + InParameter + + + l8m0jyzr-IP-1 ="2" or l8m0jyzr-IP-1 ="3" or isnull( l8m0jyzr-IP-1) + + + + fr.insee + l8m0jyzr-THEN + 1 + Sequence + + + + fr.insee + l8m0jyzr-THEN + 1 + + + + + fr.insee + l8m0bu1o-QC + 1 + QuestionConstruct + + + fr.insee + l8m0bu1o-CI-0 + 1 + ComputationItem + + + + fr.insee + l5jd8k6b + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l5jd8k6b-IP-1 + 1 + + DC_ENFAIL3 + + + + + fr.insee + l4lh0ofl-QOP-l4lhcnt0 + 1 + OutParameter + + + fr.insee + l5jd8k6b-IP-1 + 1 + InParameter + + + l5jd8k6b-IP-1 ="2" + + + + fr.insee + l5jd8k6b-THEN + 1 + Sequence + + + + fr.insee + l5jd8k6b-THEN + 1 + + + + + fr.insee + l4lhbuxg-QC + 1 + QuestionConstruct + + + fr.insee + l4lhbuxg-CI-0 + 1 + ComputationItem + + + fr.insee + l4lhbuxg-CI-1 + 1 + ComputationItem + + + + fr.insee + l4lo0hmx + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4lo0hmx-IP-1 + 1 + + DC_ENFAIL3 + + + + + fr.insee + l4lh0ofl-QOP-l4lhcnt0 + 1 + OutParameter + + + fr.insee + l4lo0hmx-IP-1 + 1 + InParameter + + + l4lo0hmx-IP-1 ="1" or isnull(l4lo0hmx-IP-1) + + + + fr.insee + l4lo0hmx-THEN + 1 + Sequence + + + + fr.insee + l4lo0hmx-THEN + 1 + + + + + fr.insee + l4lhdubm-QC + 1 + QuestionConstruct + + + fr.insee + l4lhdubm-CI-0 + 1 + ComputationItem + + + fr.insee + l4lhdubm-CI-1 + 1 + ComputationItem + + + fr.insee + l4lirpfm-QC + 1 + QuestionConstruct + + + fr.insee + l4lirpfm-CI-0 + 1 + ComputationItem + + + fr.insee + l4lj2cqg-QC + 1 + QuestionConstruct + + + fr.insee + l4lj2cqg-CI-0 + 1 + ComputationItem + + + fr.insee + l4oof3zk + 1 + IfThenElse + + + fr.insee + l4oomvv6 + 1 + IfThenElse + + + + fr.insee + l4oof3zk + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4oof3zk-IP-1 + 1 + + FR_ENFAIL3 + + + + + fr.insee + l4lj2cqg-QOP-l4liuj0u + 1 + OutParameter + + + fr.insee + l4oof3zk-IP-1 + 1 + InParameter + + + l4oof3zk-IP-1 ="1" or isnull(l4oof3zk-IP-1) + + + + fr.insee + l4oof3zk-THEN + 1 + Sequence + + + + fr.insee + l4oof3zk-THEN + 1 + + + + + fr.insee + l4oo03nq-QC + 1 + QuestionConstruct + + + fr.insee + l4oo03nq-CI-0 + 1 + ComputationItem + + + fr.insee + l4oo41j6-QC + 1 + QuestionConstruct + + + fr.insee + l4oo41j6-CI-0 + 1 + ComputationItem + + + + fr.insee + l4oomvv6 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4oomvv6-IP-1 + 1 + + FR_ENFAIL3 + + + + + fr.insee + l4lj2cqg-QOP-l4liuj0u + 1 + OutParameter + + + fr.insee + l4oomvv6-IP-1 + 1 + InParameter + + + l4oomvv6-IP-1 ="2" + + + + fr.insee + l4oomvv6-THEN + 1 + Sequence + + + + fr.insee + l4oomvv6-THEN + 1 + + + + + fr.insee + l4ooe2gj-QC + 1 + QuestionConstruct + + + fr.insee + l4ooe2gj-CI-0 + 1 + ComputationItem + + + + fr.insee + l4lnxn2v + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4lnxn2v-IP-1 + 1 + + ANAI_ENFAIL3 + + + + fr.insee + l4lnxn2v-IP-2 + 1 + + DC_ENFAIL3 + + + + + fr.insee + l4lgenh5-QOP-l4lgj042 + 1 + OutParameter + + + fr.insee + l4lnxn2v-IP-1 + 1 + InParameter + + + + + fr.insee + l4lh0ofl-QOP-l4lhcnt0 + 1 + OutParameter + + + fr.insee + l4lnxn2v-IP-2 + 1 + InParameter + + + (l4lnxn2v-IP-2="1" or isnull(l4lnxn2v-IP-2)) and cast(l4lnxn2v-IP-1,integer) >= 2004 + + + + fr.insee + l4lnxn2v-THEN + 1 + Sequence + + + + fr.insee + l4lnxn2v-THEN + 1 + + + + + fr.insee + l8m0a7pc + 1 + IfThenElse + + + fr.insee + llgiv4ql + 1 + IfThenElse + + + fr.insee + l4ljm6cp-QC + 1 + QuestionConstruct + + + fr.insee + l4ljm6cp-CI-0 + 1 + ComputationItem + + + fr.insee + ljwwn75m + 1 + IfThenElse + + + + fr.insee + l8m0a7pc + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8m0a7pc-IP-1 + 1 + + ANAI_ENFAIL3 + + + + + fr.insee + l4lgenh5-QOP-l4lgj042 + 1 + OutParameter + + + fr.insee + l8m0a7pc-IP-1 + 1 + InParameter + + + cast(l8m0a7pc-IP-1,integer) <= 2011 + + + + fr.insee + l8m0a7pc-THEN + 1 + Sequence + + + + fr.insee + l8m0a7pc-THEN + 1 + + + + + fr.insee + l4ljddzv-QC + 1 + QuestionConstruct + + + fr.insee + l4ljddzv-CI-0 + 1 + ComputationItem + + + + fr.insee + llgiv4ql + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llgiv4ql-IP-1 + 1 + + PARENT_VIT_ENFAIL3 + + + + + fr.insee + l4lgysxq-QOP-l4lgtxyg + 1 + OutParameter + + + fr.insee + llgiv4ql-IP-1 + 1 + InParameter + + + llgiv4ql-IP-1<>="3" + + + + fr.insee + llgiv4ql-THEN + 1 + Sequence + + + + fr.insee + llgiv4ql-THEN + 1 + + + + + fr.insee + l4lmjzwd-QC + 1 + QuestionConstruct + + + fr.insee + l4lmjzwd-CI-0 + 1 + ComputationItem + + + + fr.insee + ljwwn75m + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ljwwn75m-IP-1 + 1 + + PARENT_VIT_ENFAIL3 + + + + + fr.insee + l4lgysxq-QOP-l4lgtxyg + 1 + OutParameter + + + fr.insee + ljwwn75m-IP-1 + 1 + InParameter + + + ljwwn75m-IP-1<>"3" + + + + fr.insee + ljwwn75m-THEN + 1 + Sequence + + + + fr.insee + ljwwn75m-THEN + 1 + + + + + fr.insee + l4o7gt0n-QC + 1 + QuestionConstruct + + + fr.insee + l4o7gt0n-CI-0 + 1 + ComputationItem + + + fr.insee + l4o7nxie + 1 + IfThenElse + + + + fr.insee + l4o7nxie + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4o7nxie-IP-1 + 1 + + SEP_AUT_PAR_ENFAIL3 + + + + + fr.insee + l4o7gt0n-QOP-l4o7fj27 + 1 + OutParameter + + + fr.insee + l4o7nxie-IP-1 + 1 + InParameter + + + l4o7nxie-IP-1 ="1" or isnull(l4o7nxie-IP-1) + + + + fr.insee + l4o7nxie-THEN + 1 + Sequence + + + + fr.insee + l4o7nxie-THEN + 1 + + + + + fr.insee + l4lmszob-QC + 1 + QuestionConstruct + + + fr.insee + l4lmszob-CI-0 + 1 + ComputationItem + + + + fr.insee + llgfq55t + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llgfq55t-IP-1 + 1 + + DC_ENFAIL3 + + + + + fr.insee + l4lh0ofl-QOP-l4lhcnt0 + 1 + OutParameter + + + fr.insee + llgfq55t-IP-1 + 1 + InParameter + + + llgfq55t-IP-1="1" or isnull(llgfq55t-IP-1) + + + + fr.insee + llgfq55t-THEN + 1 + Sequence + + + + fr.insee + llgfq55t-THEN + 1 + + + + + fr.insee + l4ljg7fn-QC + 1 + QuestionConstruct + + + fr.insee + l4ljg7fn-CI-0 + 1 + ComputationItem + + + + fr.insee + ljoexgb3 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ljoexgb3-IP-1 + 1 + + CBENFAIL + + + + + fr.insee + l4lfzig7-QOP-l4lgbag5 + 1 + OutParameter + + + fr.insee + ljoexgb3-IP-1 + 1 + InParameter + + + not(isnull(ljoexgb3-IP-1)) and ljoexgb3-IP-1 >= 4 + + + + fr.insee + ljoexgb3-THEN + 1 + Sequence + + + + fr.insee + ljoexgb3-THEN + 1 + + + + + fr.insee + ljof3wlm + 1 + Sequence + + + + fr.insee + l8m04lnr + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8m04lnr-IP-1 + 1 + + PARENT_VIT_ENFAIL4 + + + + + fr.insee + l4lgo4yb-QOP-l4lgsplb + 1 + OutParameter + + + fr.insee + l8m04lnr-IP-1 + 1 + InParameter + + + l8m04lnr-IP-1 ="2" or l8m04lnr-IP-1 ="3" or isnull( l8m04lnr-IP-1) + + + + fr.insee + l8m04lnr-THEN + 1 + Sequence + + + + fr.insee + l8m04lnr-THEN + 1 + + + + + fr.insee + l8m03w7m-QC + 1 + QuestionConstruct + + + fr.insee + l8m03w7m-CI-0 + 1 + ComputationItem + + + + fr.insee + l5jdq77k + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l5jdq77k-IP-1 + 1 + + DC_ENFAIL4 + + + + + fr.insee + l4lh1a42-QOP-l4lh8xt8 + 1 + OutParameter + + + fr.insee + l5jdq77k-IP-1 + 1 + InParameter + + + l5jdq77k-IP-1 ="2" + + + + fr.insee + l5jdq77k-THEN + 1 + Sequence + + + + fr.insee + l5jdq77k-THEN + 1 + + + + + fr.insee + l4lhbfxh-QC + 1 + QuestionConstruct + + + fr.insee + l4lhbfxh-CI-0 + 1 + ComputationItem + + + fr.insee + l4lhbfxh-CI-1 + 1 + ComputationItem + + + + fr.insee + l4lnrwjq + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4lnrwjq-IP-1 + 1 + + DC_ENFAIL4 + + + + + fr.insee + l4lh1a42-QOP-l4lh8xt8 + 1 + OutParameter + + + fr.insee + l4lnrwjq-IP-1 + 1 + InParameter + + + l4lnrwjq-IP-1 ="1" or isnull(l4lnrwjq-IP-1) + + + + fr.insee + l4lnrwjq-THEN + 1 + Sequence + + + + fr.insee + l4lnrwjq-THEN + 1 + + + + + fr.insee + l4lho0e2-QC + 1 + QuestionConstruct + + + fr.insee + l4lho0e2-CI-0 + 1 + ComputationItem + + + fr.insee + l4lho0e2-CI-1 + 1 + ComputationItem + + + fr.insee + l4lj5kv6-QC + 1 + QuestionConstruct + + + fr.insee + l4lj5kv6-CI-0 + 1 + ComputationItem + + + fr.insee + l4lj0iea-QC + 1 + QuestionConstruct + + + fr.insee + l4lj0iea-CI-0 + 1 + ComputationItem + + + fr.insee + l4oohx7d + 1 + IfThenElse + + + fr.insee + l4ookswj + 1 + IfThenElse + + + + fr.insee + l4oohx7d + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4oohx7d-IP-1 + 1 + + FR_ENFAIL4 + + + + + fr.insee + l4lj0iea-QOP-l4liwqkb + 1 + OutParameter + + + fr.insee + l4oohx7d-IP-1 + 1 + InParameter + + + l4oohx7d-IP-1 ="1" or isnull(l4oohx7d-IP-1) + + + + fr.insee + l4oohx7d-THEN + 1 + Sequence + + + + fr.insee + l4oohx7d-THEN + 1 + + + + + fr.insee + l4oo4x1t-QC + 1 + QuestionConstruct + + + fr.insee + l4oo4x1t-CI-0 + 1 + ComputationItem + + + fr.insee + l4onwhrf-QC + 1 + QuestionConstruct + + + fr.insee + l4onwhrf-CI-0 + 1 + ComputationItem + + + + fr.insee + l4ookswj + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4ookswj-IP-1 + 1 + + FR_ENFAIL4 + + + + + fr.insee + l4lj0iea-QOP-l4liwqkb + 1 + OutParameter + + + fr.insee + l4ookswj-IP-1 + 1 + InParameter + + + l4ookswj-IP-1 ="2" + + + + fr.insee + l4ookswj-THEN + 1 + Sequence + + + + fr.insee + l4ookswj-THEN + 1 + + + + + fr.insee + l4oo1817-QC + 1 + QuestionConstruct + + + fr.insee + l4oo1817-CI-0 + 1 + ComputationItem + + + + fr.insee + l4lnlsmv + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4lnlsmv-IP-1 + 1 + + ANAI_ENFAIL4 + + + + fr.insee + l4lnlsmv-IP-2 + 1 + + DC_ENFAIL4 + + + + + fr.insee + l4lgfphb-QOP-l4lgh2oy + 1 + OutParameter + + + fr.insee + l4lnlsmv-IP-1 + 1 + InParameter + + + + + fr.insee + l4lh1a42-QOP-l4lh8xt8 + 1 + OutParameter + + + fr.insee + l4lnlsmv-IP-2 + 1 + InParameter + + + (l4lnlsmv-IP-2="1" or isnull(l4lnlsmv-IP-2)) and cast(l4lnlsmv-IP-1,integer) >= 2004 + + + + fr.insee + l4lnlsmv-THEN + 1 + Sequence + + + + fr.insee + l4lnlsmv-THEN + 1 + + + + + fr.insee + l8m0tant + 1 + IfThenElse + + + fr.insee + llgj9pm2 + 1 + IfThenElse + + + fr.insee + l4ljmpiu-QC + 1 + QuestionConstruct + + + fr.insee + l4ljmpiu-CI-0 + 1 + ComputationItem + + + fr.insee + ljwwnie8 + 1 + IfThenElse + + + + fr.insee + l8m0tant + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8m0tant-IP-1 + 1 + + ANAI_ENFAIL4 + + + + + fr.insee + l4lgfphb-QOP-l4lgh2oy + 1 + OutParameter + + + fr.insee + l8m0tant-IP-1 + 1 + InParameter + + + cast(l8m0tant-IP-1,integer) <= 2011 + + + + fr.insee + l8m0tant-THEN + 1 + Sequence + + + + fr.insee + l8m0tant-THEN + 1 + + + + + fr.insee + l4lixcs2-QC + 1 + QuestionConstruct + + + fr.insee + l4lixcs2-CI-0 + 1 + ComputationItem + + + + fr.insee + llgj9pm2 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llgj9pm2-IP-1 + 1 + + PARENT_VIT_ENFAIL4 + + + + + fr.insee + l4lgo4yb-QOP-l4lgsplb + 1 + OutParameter + + + fr.insee + llgj9pm2-IP-1 + 1 + InParameter + + + llgj9pm2-IP-1<>="3" + + + + fr.insee + llgj9pm2-THEN + 1 + Sequence + + + + fr.insee + llgj9pm2-THEN + 1 + + + + + fr.insee + l4lms9a0-QC + 1 + QuestionConstruct + + + fr.insee + l4lms9a0-CI-0 + 1 + ComputationItem + + + + fr.insee + ljwwnie8 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ljwwnie8-IP-1 + 1 + + PARENT_VIT_ENFAIL4 + + + + + fr.insee + l4lgo4yb-QOP-l4lgsplb + 1 + OutParameter + + + fr.insee + ljwwnie8-IP-1 + 1 + InParameter + + + ljwwnie8-IP-1<>"3" + + + + fr.insee + ljwwnie8-THEN + 1 + Sequence + + + + fr.insee + ljwwnie8-THEN + 1 + + + + + fr.insee + l4o7jdze-QC + 1 + QuestionConstruct + + + fr.insee + l4o7jdze-CI-0 + 1 + ComputationItem + + + fr.insee + l4o7s9or + 1 + IfThenElse + + + + fr.insee + l4o7s9or + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4o7s9or-IP-1 + 1 + + SEP_AUT_PAR_ENFAIL4 + + + + + fr.insee + l4o7jdze-QOP-l4o7nzi9 + 1 + OutParameter + + + fr.insee + l4o7s9or-IP-1 + 1 + InParameter + + + l4o7s9or-IP-1 ="1" or isnull(l4o7s9or-IP-1) + + + + fr.insee + l4o7s9or-THEN + 1 + Sequence + + + + fr.insee + l4o7s9or-THEN + 1 + + + + + fr.insee + l4lmvah7-QC + 1 + QuestionConstruct + + + fr.insee + l4lmvah7-CI-0 + 1 + ComputationItem + + + + fr.insee + llgftq0w + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llgftq0w-IP-1 + 1 + + DC_ENFAIL4 + + + + + fr.insee + l4lh1a42-QOP-l4lh8xt8 + 1 + OutParameter + + + fr.insee + llgftq0w-IP-1 + 1 + InParameter + + + llgftq0w-IP-1="1" or isnull(llgftq0w-IP-1) + + + + fr.insee + llgftq0w-THEN + 1 + Sequence + + + + fr.insee + llgftq0w-THEN + 1 + + + + + fr.insee + l4ljjvig-QC + 1 + QuestionConstruct + + + fr.insee + l4ljjvig-CI-0 + 1 + ComputationItem + + + + fr.insee + ljoet34y + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ljoet34y-IP-1 + 1 + + CBENFAIL + + + + + fr.insee + l4lfzig7-QOP-l4lgbag5 + 1 + OutParameter + + + fr.insee + ljoet34y-IP-1 + 1 + InParameter + + + not(isnull(ljoet34y-IP-1)) and ljoet34y-IP-1 >= 5 + + + + fr.insee + ljoet34y-THEN + 1 + Sequence + + + + fr.insee + ljoet34y-THEN + 1 + + + + + fr.insee + ljof7iet + 1 + Sequence + + + + fr.insee + l8m09ijs + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8m09ijs-IP-1 + 1 + + PARENT_VIT_ENFAIL5 + + + + + fr.insee + l4lh672z-QOP-l4lh0pbe + 1 + OutParameter + + + fr.insee + l8m09ijs-IP-1 + 1 + InParameter + + + l8m09ijs-IP-1 ="2" or l8m09ijs-IP-1 ="3" or isnull( l8m09ijs-IP-1) + + + + fr.insee + l8m09ijs-THEN + 1 + Sequence + + + + fr.insee + l8m09ijs-THEN + 1 + + + + + fr.insee + l8m0ld6c-QC + 1 + QuestionConstruct + + + fr.insee + l8m0ld6c-CI-0 + 1 + ComputationItem + + + + fr.insee + l5jdpoid + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l5jdpoid-IP-1 + 1 + + DC_ENFAIL5 + + + + + fr.insee + l4lhcdf6-QOP-l4lgwio5 + 1 + OutParameter + + + fr.insee + l5jdpoid-IP-1 + 1 + InParameter + + + l5jdpoid-IP-1 ="2" + + + + fr.insee + l5jdpoid-THEN + 1 + Sequence + + + + fr.insee + l5jdpoid-THEN + 1 + + + + + fr.insee + l4lh8c72-QC + 1 + QuestionConstruct + + + fr.insee + l4lh8c72-CI-0 + 1 + ComputationItem + + + fr.insee + l4lh8c72-CI-1 + 1 + ComputationItem + + + + fr.insee + l4lnut2u + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4lnut2u-IP-1 + 1 + + DC_ENFAIL5 + + + + + fr.insee + l4lhcdf6-QOP-l4lgwio5 + 1 + OutParameter + + + fr.insee + l4lnut2u-IP-1 + 1 + InParameter + + + l4lnut2u-IP-1 ="1" or isnull(l4lnut2u-IP-1) + + + + fr.insee + l4lnut2u-THEN + 1 + Sequence + + + + fr.insee + l4lnut2u-THEN + 1 + + + + + fr.insee + l4lhn614-QC + 1 + QuestionConstruct + + + fr.insee + l4lhn614-CI-0 + 1 + ComputationItem + + + fr.insee + l4lhn614-CI-1 + 1 + ComputationItem + + + fr.insee + l4lj98cz-QC + 1 + QuestionConstruct + + + fr.insee + l4lj98cz-CI-0 + 1 + ComputationItem + + + fr.insee + l4lijtvo-QC + 1 + QuestionConstruct + + + fr.insee + l4lijtvo-CI-0 + 1 + ComputationItem + + + fr.insee + l4oomruu + 1 + IfThenElse + + + fr.insee + l4ooqy9y + 1 + IfThenElse + + + + fr.insee + l4oomruu + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4oomruu-IP-1 + 1 + + FR_ENFAIL5 + + + + + fr.insee + l4lijtvo-QOP-l4liqibl + 1 + OutParameter + + + fr.insee + l4oomruu-IP-1 + 1 + InParameter + + + l4oomruu-IP-1 ="1" or isnull(l4oomruu-IP-1) + + + + fr.insee + l4oomruu-THEN + 1 + Sequence + + + + fr.insee + l4oomruu-THEN + 1 + + + + + fr.insee + l4oo7lwi-QC + 1 + QuestionConstruct + + + fr.insee + l4oo7lwi-CI-0 + 1 + ComputationItem + + + fr.insee + l4oo41q4-QC + 1 + QuestionConstruct + + + fr.insee + l4oo41q4-CI-0 + 1 + ComputationItem + + + + fr.insee + l4ooqy9y + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4ooqy9y-IP-1 + 1 + + FR_ENFAIL5 + + + + + fr.insee + l4lijtvo-QOP-l4liqibl + 1 + OutParameter + + + fr.insee + l4ooqy9y-IP-1 + 1 + InParameter + + + l4ooqy9y-IP-1 ="2" + + + + fr.insee + l4ooqy9y-THEN + 1 + Sequence + + + + fr.insee + l4ooqy9y-THEN + 1 + + + + + fr.insee + l4oo5bj9-QC + 1 + QuestionConstruct + + + fr.insee + l4oo5bj9-CI-0 + 1 + ComputationItem + + + + fr.insee + l4lnsxgt + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4lnsxgt-IP-1 + 1 + + ANAI_ENFAIL5 + + + + fr.insee + l4lnsxgt-IP-2 + 1 + + DC_ENFAIL5 + + + + + fr.insee + l4lgp1ft-QOP-l4lgleu5 + 1 + OutParameter + + + fr.insee + l4lnsxgt-IP-1 + 1 + InParameter + + + + + fr.insee + l4lhcdf6-QOP-l4lgwio5 + 1 + OutParameter + + + fr.insee + l4lnsxgt-IP-2 + 1 + InParameter + + + (l4lnsxgt-IP-2="1" or isnull(l4lnsxgt-IP-2)) and cast(l4lnsxgt-IP-1,integer) >= 2004 + + + + fr.insee + l4lnsxgt-THEN + 1 + Sequence + + + + fr.insee + l4lnsxgt-THEN + 1 + + + + + fr.insee + l8m0a4c7 + 1 + IfThenElse + + + fr.insee + llgiqzzj + 1 + IfThenElse + + + fr.insee + l4ljxer7-QC + 1 + QuestionConstruct + + + fr.insee + l4ljxer7-CI-0 + 1 + ComputationItem + + + fr.insee + ljwx7oti + 1 + IfThenElse + + + + fr.insee + l8m0a4c7 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8m0a4c7-IP-1 + 1 + + ANAI_ENFAIL5 + + + + + fr.insee + l4lgp1ft-QOP-l4lgleu5 + 1 + OutParameter + + + fr.insee + l8m0a4c7-IP-1 + 1 + InParameter + + + cast(l8m0a4c7-IP-1,integer) <= 2011 + + + + fr.insee + l8m0a4c7-THEN + 1 + Sequence + + + + fr.insee + l8m0a4c7-THEN + 1 + + + + + fr.insee + l4lizygc-QC + 1 + QuestionConstruct + + + fr.insee + l4lizygc-CI-0 + 1 + ComputationItem + + + + fr.insee + llgiqzzj + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llgiqzzj-IP-1 + 1 + + PARENT_VIT_ENFAIL5 + + + + + fr.insee + l4lh672z-QOP-l4lh0pbe + 1 + OutParameter + + + fr.insee + llgiqzzj-IP-1 + 1 + InParameter + + + llgiqzzj-IP-1<>="3" + + + + fr.insee + llgiqzzj-THEN + 1 + Sequence + + + + fr.insee + llgiqzzj-THEN + 1 + + + + + fr.insee + l4lmc52p-QC + 1 + QuestionConstruct + + + fr.insee + l4lmc52p-CI-0 + 1 + ComputationItem + + + + fr.insee + ljwx7oti + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ljwx7oti-IP-1 + 1 + + PARENT_VIT_ENFAIL5 + + + + + fr.insee + l4lh672z-QOP-l4lh0pbe + 1 + OutParameter + + + fr.insee + ljwx7oti-IP-1 + 1 + InParameter + + + ljwx7oti-IP-1<>"3" + + + + fr.insee + ljwx7oti-THEN + 1 + Sequence + + + + fr.insee + ljwx7oti-THEN + 1 + + + + + fr.insee + l4o7vzru-QC + 1 + QuestionConstruct + + + fr.insee + l4o7vzru-CI-0 + 1 + ComputationItem + + + fr.insee + l4o7khj9 + 1 + IfThenElse + + + + fr.insee + l4o7khj9 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4o7khj9-IP-1 + 1 + + SEP_AUT_PAR_ENFAIL5 + + + + + fr.insee + l4o7vzru-QOP-l4o80pka + 1 + OutParameter + + + fr.insee + l4o7khj9-IP-1 + 1 + InParameter + + + l4o7khj9-IP-1 ="1" or isnull(l4o7khj9-IP-1) + + + + fr.insee + l4o7khj9-THEN + 1 + Sequence + + + + fr.insee + l4o7khj9-THEN + 1 + + + + + fr.insee + l4lms6u4-QC + 1 + QuestionConstruct + + + fr.insee + l4lms6u4-CI-0 + 1 + ComputationItem + + + + fr.insee + llgfxcw1 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llgfxcw1-IP-1 + 1 + + DC_ENFAIL5 + + + + + fr.insee + l4lhcdf6-QOP-l4lgwio5 + 1 + OutParameter + + + fr.insee + llgfxcw1-IP-1 + 1 + InParameter + + + llgfxcw1-IP-1="1" or isnull(llgfxcw1-IP-1) + + + + fr.insee + llgfxcw1-THEN + 1 + Sequence + + + + fr.insee + llgfxcw1-THEN + 1 + + + + + fr.insee + l4ljcdar-QC + 1 + QuestionConstruct + + + fr.insee + l4ljcdar-CI-0 + 1 + ComputationItem + + + + fr.insee + ljoevvfr + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ljoevvfr-IP-1 + 1 + + CBENFAIL + + + + + fr.insee + l4lfzig7-QOP-l4lgbag5 + 1 + OutParameter + + + fr.insee + ljoevvfr-IP-1 + 1 + InParameter + + + not(isnull(ljoevvfr-IP-1)) and ljoevvfr-IP-1 >= 6 + + + + fr.insee + ljoevvfr-THEN + 1 + Sequence + + + + fr.insee + ljoevvfr-THEN + 1 + + + + + fr.insee + ljoezdxm + 1 + Sequence + + + + fr.insee + l8oi3stp + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8oi3stp-IP-1 + 1 + + PARENT_VIT_ENFAIL6 + + + + + fr.insee + l8oidc2m-QOP-l8ohy4u9 + 1 + OutParameter + + + fr.insee + l8oi3stp-IP-1 + 1 + InParameter + + + l8oi3stp-IP-1 ="2" or l8oi3stp-IP-1 ="3" or isnull( l8oi3stp-IP-1) + + + + fr.insee + l8oi3stp-THEN + 1 + Sequence + + + + fr.insee + l8oi3stp-THEN + 1 + + + + + fr.insee + l8oib75g-QC + 1 + QuestionConstruct + + + fr.insee + l8oib75g-CI-0 + 1 + ComputationItem + + + + fr.insee + l8oi6q33 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8oi6q33-IP-1 + 1 + + DC_ENFAIL6 + + + + + fr.insee + l8ohus0v-QOP-l8oi6wxh + 1 + OutParameter + + + fr.insee + l8oi6q33-IP-1 + 1 + InParameter + + + l8oi6q33-IP-1 ="2" + + + + fr.insee + l8oi6q33-THEN + 1 + Sequence + + + + fr.insee + l8oi6q33-THEN + 1 + + + + + fr.insee + l8ohrpn7-QC + 1 + QuestionConstruct + + + fr.insee + l8ohrpn7-CI-0 + 1 + ComputationItem + + + fr.insee + l8ohrpn7-CI-1 + 1 + ComputationItem + + + + fr.insee + l8oi13y2 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8oi13y2-IP-1 + 1 + + DC_ENFAIL6 + + + + + fr.insee + l8ohus0v-QOP-l8oi6wxh + 1 + OutParameter + + + fr.insee + l8oi13y2-IP-1 + 1 + InParameter + + + l8oi13y2-IP-1 ="1" or isnull(l8oi13y2-IP-1) + + + + fr.insee + l8oi13y2-THEN + 1 + Sequence + + + + fr.insee + l8oi13y2-THEN + 1 + + + + + fr.insee + l8ohwpt9-QC + 1 + QuestionConstruct + + + fr.insee + l8ohwpt9-CI-0 + 1 + ComputationItem + + + fr.insee + l8ohwpt9-CI-1 + 1 + ComputationItem + + + fr.insee + l8oh46rn-QC + 1 + QuestionConstruct + + + fr.insee + l8oh46rn-CI-0 + 1 + ComputationItem + + + fr.insee + l8ogysyp-QC + 1 + QuestionConstruct + + + fr.insee + l8ogysyp-CI-0 + 1 + ComputationItem + + + fr.insee + l8oh3gr5 + 1 + IfThenElse + + + fr.insee + l8ogw3wg + 1 + IfThenElse + + + + fr.insee + l8oh3gr5 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8oh3gr5-IP-1 + 1 + + FR_ENFAIL6 + + + + + fr.insee + l8ogysyp-QOP-l8ogwc5d + 1 + OutParameter + + + fr.insee + l8oh3gr5-IP-1 + 1 + InParameter + + + l8oh3gr5-IP-1 ="1" or isnull(l8oh3gr5-IP-1) + + + + fr.insee + l8oh3gr5-THEN + 1 + Sequence + + + + fr.insee + l8oh3gr5-THEN + 1 + + + + + fr.insee + l8ogp9jo-QC + 1 + QuestionConstruct + + + fr.insee + l8ogp9jo-CI-0 + 1 + ComputationItem + + + fr.insee + l8ogqig3-QC + 1 + QuestionConstruct + + + fr.insee + l8ogqig3-CI-0 + 1 + ComputationItem + + + + fr.insee + l8ogw3wg + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8ogw3wg-IP-1 + 1 + + FR_ENFAIL6 + + + + + fr.insee + l8ogysyp-QOP-l8ogwc5d + 1 + OutParameter + + + fr.insee + l8ogw3wg-IP-1 + 1 + InParameter + + + l8ogw3wg-IP-1 ="2" + + + + fr.insee + l8ogw3wg-THEN + 1 + Sequence + + + + fr.insee + l8ogw3wg-THEN + 1 + + + + + fr.insee + l8ogpnbn-QC + 1 + QuestionConstruct + + + fr.insee + l8ogpnbn-CI-0 + 1 + ComputationItem + + + + fr.insee + l8oh7dqr + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8oh7dqr-IP-1 + 1 + + ANAI_ENFAIL6 + + + + fr.insee + l8oh7dqr-IP-2 + 1 + + DC_ENFAIL6 + + + + + fr.insee + l8oi7q9f-QOP-l8oijkad + 1 + OutParameter + + + fr.insee + l8oh7dqr-IP-1 + 1 + InParameter + + + + + fr.insee + l8ohus0v-QOP-l8oi6wxh + 1 + OutParameter + + + fr.insee + l8oh7dqr-IP-2 + 1 + InParameter + + + (l8oh7dqr-IP-2="1" or isnull(l8oh7dqr-IP-2)) and cast(l8oh7dqr-IP-1,integer) >= 2004 + + + + fr.insee + l8oh7dqr-THEN + 1 + Sequence + + + + fr.insee + l8oh7dqr-THEN + 1 + + + + + fr.insee + l8oha56t + 1 + IfThenElse + + + fr.insee + llgjbj7o + 1 + IfThenElse + + + fr.insee + l8oarkxm-QC + 1 + QuestionConstruct + + + fr.insee + l8oarkxm-CI-0 + 1 + ComputationItem + + + fr.insee + ljwx5pd4 + 1 + IfThenElse + + + + fr.insee + l8oha56t + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8oha56t-IP-1 + 1 + + ANAI_ENFAIL6 + + + + + fr.insee + l8oi7q9f-QOP-l8oijkad + 1 + OutParameter + + + fr.insee + l8oha56t-IP-1 + 1 + InParameter + + + cast(l8oha56t-IP-1,integer) <= 2011 + + + + fr.insee + l8oha56t-THEN + 1 + Sequence + + + + fr.insee + l8oha56t-THEN + 1 + + + + + fr.insee + l8ogukpt-QC + 1 + QuestionConstruct + + + fr.insee + l8ogukpt-CI-0 + 1 + ComputationItem + + + + fr.insee + llgjbj7o + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llgjbj7o-IP-1 + 1 + + PARENT_VIT_ENFAIL6 + + + + + fr.insee + l8oidc2m-QOP-l8ohy4u9 + 1 + OutParameter + + + fr.insee + llgjbj7o-IP-1 + 1 + InParameter + + + llgjbj7o-IP-1<>="3" + + + + fr.insee + llgjbj7o-THEN + 1 + Sequence + + + + fr.insee + llgjbj7o-THEN + 1 + + + + + fr.insee + l8ob0dk4-QC + 1 + QuestionConstruct + + + fr.insee + l8ob0dk4-CI-0 + 1 + ComputationItem + + + + fr.insee + ljwx5pd4 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ljwx5pd4-IP-1 + 1 + + PARENT_VIT_ENFAIL6 + + + + + fr.insee + l8oidc2m-QOP-l8ohy4u9 + 1 + OutParameter + + + fr.insee + ljwx5pd4-IP-1 + 1 + InParameter + + + ljwx5pd4-IP-1<>"3" + + + + fr.insee + ljwx5pd4-THEN + 1 + Sequence + + + + fr.insee + ljwx5pd4-THEN + 1 + + + + + fr.insee + l8oaqbj5-QC + 1 + QuestionConstruct + + + fr.insee + l8oaqbj5-CI-0 + 1 + ComputationItem + + + fr.insee + l8obctff + 1 + IfThenElse + + + + fr.insee + l8obctff + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8obctff-IP-1 + 1 + + SEP_AUT_PAR_ENFAIL6 + + + + + fr.insee + l8oaqbj5-QOP-l8ob57h3 + 1 + OutParameter + + + fr.insee + l8obctff-IP-1 + 1 + InParameter + + + l8obctff-IP-1 ="1" or isnull(l8obctff-IP-1) + + + + fr.insee + l8obctff-THEN + 1 + Sequence + + + + fr.insee + l8obctff-THEN + 1 + + + + + fr.insee + l8oanpzw-QC + 1 + QuestionConstruct + + + fr.insee + l8oanpzw-CI-0 + 1 + ComputationItem + + + + fr.insee + llgftk16 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llgftk16-IP-1 + 1 + + DC_ENFAIL6 + + + + + fr.insee + l8ohus0v-QOP-l8oi6wxh + 1 + OutParameter + + + fr.insee + llgftk16-IP-1 + 1 + InParameter + + + llgftk16-IP-1="1" or isnull(llgftk16-IP-1) + + + + fr.insee + llgftk16-THEN + 1 + Sequence + + + + fr.insee + llgftk16-THEN + 1 + + + + + fr.insee + l8oasgat-QC + 1 + QuestionConstruct + + + fr.insee + l8oasgat-CI-0 + 1 + ComputationItem + + + + fr.insee + ljofcoik + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ljofcoik-IP-1 + 1 + + CBENFAIL + + + + + fr.insee + l4lfzig7-QOP-l4lgbag5 + 1 + OutParameter + + + fr.insee + ljofcoik-IP-1 + 1 + InParameter + + + not(isnull(ljofcoik-IP-1)) and ljofcoik-IP-1 >= 7 + + + + fr.insee + ljofcoik-THEN + 1 + Sequence + + + + fr.insee + ljofcoik-THEN + 1 + + + + + fr.insee + ljof8bti + 1 + Sequence + + + + fr.insee + l8ojynib + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8ojynib-IP-1 + 1 + + PARENT_VIT_ENFAIL7 + + + + + fr.insee + l8okdoof-QOP-l8ojuyat + 1 + OutParameter + + + fr.insee + l8ojynib-IP-1 + 1 + InParameter + + + l8ojynib-IP-1 ="2" or l8ojynib-IP-1 ="3" or isnull( l8ojynib-IP-1) + + + + fr.insee + l8ojynib-THEN + 1 + Sequence + + + + fr.insee + l8ojynib-THEN + 1 + + + + + fr.insee + l8ok0d4y-QC + 1 + QuestionConstruct + + + fr.insee + l8ok0d4y-CI-0 + 1 + ComputationItem + + + + fr.insee + l8ojvs72 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8ojvs72-IP-1 + 1 + + DC_ENFAIL7 + + + + + fr.insee + l8ok0acp-QOP-l8ok9idc + 1 + OutParameter + + + fr.insee + l8ojvs72-IP-1 + 1 + InParameter + + + l8ojvs72-IP-1 ="2" + + + + fr.insee + l8ojvs72-THEN + 1 + Sequence + + + + fr.insee + l8ojvs72-THEN + 1 + + + + + fr.insee + l8ojs3vl-QC + 1 + QuestionConstruct + + + fr.insee + l8ojs3vl-CI-0 + 1 + ComputationItem + + + fr.insee + l8ojs3vl-CI-1 + 1 + ComputationItem + + + + fr.insee + l8ojs17t + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8ojs17t-IP-1 + 1 + + DC_ENFAIL7 + + + + + fr.insee + l8ok0acp-QOP-l8ok9idc + 1 + OutParameter + + + fr.insee + l8ojs17t-IP-1 + 1 + InParameter + + + l8ojs17t-IP-1 ="1" or isnull(l8ojs17t-IP-1) + + + + fr.insee + l8ojs17t-THEN + 1 + Sequence + + + + fr.insee + l8ojs17t-THEN + 1 + + + + + fr.insee + l8ojuhud-QC + 1 + QuestionConstruct + + + fr.insee + l8ojuhud-CI-0 + 1 + ComputationItem + + + fr.insee + l8ojuhud-CI-1 + 1 + ComputationItem + + + fr.insee + l8ojmjws-QC + 1 + QuestionConstruct + + + fr.insee + l8ojmjws-CI-0 + 1 + ComputationItem + + + fr.insee + l8oj98gw-QC + 1 + QuestionConstruct + + + fr.insee + l8oj98gw-CI-0 + 1 + ComputationItem + + + fr.insee + l8ojnogl + 1 + IfThenElse + + + fr.insee + l8ojhkzf + 1 + IfThenElse + + + + fr.insee + l8ojnogl + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8ojnogl-IP-1 + 1 + + FR_ENFAIL7 + + + + + fr.insee + l8oj98gw-QOP-l8ojo8na + 1 + OutParameter + + + fr.insee + l8ojnogl-IP-1 + 1 + InParameter + + + l8ojnogl-IP-1 ="1" or isnull(l8ojnogl-IP-1) + + + + fr.insee + l8ojnogl-THEN + 1 + Sequence + + + + fr.insee + l8ojnogl-THEN + 1 + + + + + fr.insee + l8ojb4ub-QC + 1 + QuestionConstruct + + + fr.insee + l8ojb4ub-CI-0 + 1 + ComputationItem + + + fr.insee + l8ojczfv-QC + 1 + QuestionConstruct + + + fr.insee + l8ojczfv-CI-0 + 1 + ComputationItem + + + + fr.insee + l8ojhkzf + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8ojhkzf-IP-1 + 1 + + FR_ENFAIL7 + + + + + fr.insee + l8oj98gw-QOP-l8ojo8na + 1 + OutParameter + + + fr.insee + l8ojhkzf-IP-1 + 1 + InParameter + + + l8ojhkzf-IP-1 ="2" + + + + fr.insee + l8ojhkzf-THEN + 1 + Sequence + + + + fr.insee + l8ojhkzf-THEN + 1 + + + + + fr.insee + l8ojif3m-QC + 1 + QuestionConstruct + + + fr.insee + l8ojif3m-CI-0 + 1 + ComputationItem + + + + fr.insee + l8ojrm6c + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8ojrm6c-IP-1 + 1 + + ANAI_ENFAIL7 + + + + fr.insee + l8ojrm6c-IP-2 + 1 + + DC_ENFAIL7 + + + + + fr.insee + l8okh65e-QOP-l8okdvkx + 1 + OutParameter + + + fr.insee + l8ojrm6c-IP-1 + 1 + InParameter + + + + + fr.insee + l8ok0acp-QOP-l8ok9idc + 1 + OutParameter + + + fr.insee + l8ojrm6c-IP-2 + 1 + InParameter + + + (l8ojrm6c-IP-2="1" or isnull(l8ojrm6c-IP-2)) and cast(l8ojrm6c-IP-1,integer) >= 2004 + + + + fr.insee + l8ojrm6c-THEN + 1 + Sequence + + + + fr.insee + l8ojrm6c-THEN + 1 + + + + + fr.insee + l8ok7ek7 + 1 + IfThenElse + + + fr.insee + llgiunp0 + 1 + IfThenElse + + + fr.insee + l8oj67fo-QC + 1 + QuestionConstruct + + + fr.insee + l8oj67fo-CI-0 + 1 + ComputationItem + + + fr.insee + ljwx1n48 + 1 + IfThenElse + + + + fr.insee + l8ok7ek7 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8ok7ek7-IP-1 + 1 + + ANAI_ENFAIL7 + + + + + fr.insee + l8okh65e-QOP-l8okdvkx + 1 + OutParameter + + + fr.insee + l8ok7ek7-IP-1 + 1 + InParameter + + + cast(l8ok7ek7-IP-1,integer) <= 2011 + + + + fr.insee + l8ok7ek7-THEN + 1 + Sequence + + + + fr.insee + l8ok7ek7-THEN + 1 + + + + + fr.insee + l8oja1pz-QC + 1 + QuestionConstruct + + + fr.insee + l8oja1pz-CI-0 + 1 + ComputationItem + + + + fr.insee + llgiunp0 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llgiunp0-IP-1 + 1 + + PARENT_VIT_ENFAIL7 + + + + + fr.insee + l8okdoof-QOP-l8ojuyat + 1 + OutParameter + + + fr.insee + llgiunp0-IP-1 + 1 + InParameter + + + llgiunp0-IP-1<>="3" + + + + fr.insee + llgiunp0-THEN + 1 + Sequence + + + + fr.insee + llgiunp0-THEN + 1 + + + + + fr.insee + l8oiinpy-QC + 1 + QuestionConstruct + + + fr.insee + l8oiinpy-CI-0 + 1 + ComputationItem + + + + fr.insee + ljwx1n48 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ljwx1n48-IP-1 + 1 + + PARENT_VIT_ENFAIL7 + + + + + fr.insee + l8okdoof-QOP-l8ojuyat + 1 + OutParameter + + + fr.insee + ljwx1n48-IP-1 + 1 + InParameter + + + ljwx1n48-IP-1<>"3" + + + + fr.insee + ljwx1n48-THEN + 1 + Sequence + + + + fr.insee + ljwx1n48-THEN + 1 + + + + + fr.insee + l8oiu9ax-QC + 1 + QuestionConstruct + + + fr.insee + l8oiu9ax-CI-0 + 1 + ComputationItem + + + fr.insee + l8ojcjwo + 1 + IfThenElse + + + + fr.insee + l8ojcjwo + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8ojcjwo-IP-1 + 1 + + SEP_AUT_PAR_ENFAIL7 + + + + + fr.insee + l8oiu9ax-QOP-l8oimcso + 1 + OutParameter + + + fr.insee + l8ojcjwo-IP-1 + 1 + InParameter + + + l8ojcjwo-IP-1 ="1" or isnull(l8ojcjwo-IP-1) + + + + fr.insee + l8ojcjwo-THEN + 1 + Sequence + + + + fr.insee + l8ojcjwo-THEN + 1 + + + + + fr.insee + l8oicj6e-QC + 1 + QuestionConstruct + + + fr.insee + l8oicj6e-CI-0 + 1 + ComputationItem + + + + fr.insee + llgg0wtp + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llgg0wtp-IP-1 + 1 + + DC_ENFAIL7 + + + + + fr.insee + l8ok0acp-QOP-l8ok9idc + 1 + OutParameter + + + fr.insee + llgg0wtp-IP-1 + 1 + InParameter + + + llgg0wtp-IP-1="1" or isnull(llgg0wtp-IP-1) + + + + fr.insee + llgg0wtp-THEN + 1 + Sequence + + + + fr.insee + llgg0wtp-THEN + 1 + + + + + fr.insee + l8oizp0r-QC + 1 + QuestionConstruct + + + fr.insee + l8oizp0r-CI-0 + 1 + ComputationItem + + + + fr.insee + ljof97j4 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ljof97j4-IP-1 + 1 + + CBENFAIL + + + + + fr.insee + l4lfzig7-QOP-l4lgbag5 + 1 + OutParameter + + + fr.insee + ljof97j4-IP-1 + 1 + InParameter + + + not(isnull(ljof97j4-IP-1)) and ljof97j4-IP-1 >= 8 + + + + fr.insee + ljof97j4-THEN + 1 + Sequence + + + + fr.insee + ljof97j4-THEN + 1 + + + + + fr.insee + ljofiex8 + 1 + Sequence + + + + fr.insee + l8ol5p2y + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8ol5p2y-IP-1 + 1 + + PARENT_VIT_ENFAIL8 + + + + + fr.insee + l8okz45l-QOP-l8olfzvu + 1 + OutParameter + + + fr.insee + l8ol5p2y-IP-1 + 1 + InParameter + + + l8ol5p2y-IP-1 ="2" or l8ol5p2y-IP-1 ="3" or isnull( l8ol5p2y-IP-1) + + + + fr.insee + l8ol5p2y-THEN + 1 + Sequence + + + + fr.insee + l8ol5p2y-THEN + 1 + + + + + fr.insee + l8ol369l-QC + 1 + QuestionConstruct + + + fr.insee + l8ol369l-CI-0 + 1 + ComputationItem + + + + fr.insee + l8ol0eoi + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8ol0eoi-IP-1 + 1 + + DC_ENFAIL8 + + + + + fr.insee + l8ole120-QOP-l8ol3o2i + 1 + OutParameter + + + fr.insee + l8ol0eoi-IP-1 + 1 + InParameter + + + l8ol0eoi-IP-1 ="2" + + + + fr.insee + l8ol0eoi-THEN + 1 + Sequence + + + + fr.insee + l8ol0eoi-THEN + 1 + + + + + fr.insee + l8olcd8n-QC + 1 + QuestionConstruct + + + fr.insee + l8olcd8n-CI-0 + 1 + ComputationItem + + + fr.insee + l8olcd8n-CI-1 + 1 + ComputationItem + + + + fr.insee + l8oky4d1 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8oky4d1-IP-1 + 1 + + DC_ENFAIL8 + + + + + fr.insee + l8ole120-QOP-l8ol3o2i + 1 + OutParameter + + + fr.insee + l8oky4d1-IP-1 + 1 + InParameter + + + l8oky4d1-IP-1 ="1" or isnull(l8oky4d1-IP-1) + + + + fr.insee + l8oky4d1-THEN + 1 + Sequence + + + + fr.insee + l8oky4d1-THEN + 1 + + + + + fr.insee + l8ol84b7-QC + 1 + QuestionConstruct + + + fr.insee + l8ol84b7-CI-0 + 1 + ComputationItem + + + fr.insee + l8ol84b7-CI-1 + 1 + ComputationItem + + + fr.insee + l8okx7cd-QC + 1 + QuestionConstruct + + + fr.insee + l8okx7cd-CI-0 + 1 + ComputationItem + + + fr.insee + l8okpxv8-QC + 1 + QuestionConstruct + + + fr.insee + l8okpxv8-CI-0 + 1 + ComputationItem + + + fr.insee + l8okmnvp + 1 + IfThenElse + + + fr.insee + l8okygtc + 1 + IfThenElse + + + + fr.insee + l8okmnvp + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8okmnvp-IP-1 + 1 + + FR_ENFAIL8 + + + + + fr.insee + l8okpxv8-QOP-l8okk1db + 1 + OutParameter + + + fr.insee + l8okmnvp-IP-1 + 1 + InParameter + + + l8okmnvp-IP-1 ="1" or isnull(l8okmnvp-IP-1) + + + + fr.insee + l8okmnvp-THEN + 1 + Sequence + + + + fr.insee + l8okmnvp-THEN + 1 + + + + + fr.insee + l8okue2t-QC + 1 + QuestionConstruct + + + fr.insee + l8okue2t-CI-0 + 1 + ComputationItem + + + fr.insee + l8okjfla-QC + 1 + QuestionConstruct + + + fr.insee + l8okjfla-CI-0 + 1 + ComputationItem + + + + fr.insee + l8okygtc + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8okygtc-IP-1 + 1 + + FR_ENFAIL8 + + + + + fr.insee + l8okpxv8-QOP-l8okk1db + 1 + OutParameter + + + fr.insee + l8okygtc-IP-1 + 1 + InParameter + + + l8okygtc-IP-1 ="2" + + + + fr.insee + l8okygtc-THEN + 1 + Sequence + + + + fr.insee + l8okygtc-THEN + 1 + + + + + fr.insee + l8okxgwv-QC + 1 + QuestionConstruct + + + fr.insee + l8okxgwv-CI-0 + 1 + ComputationItem + + + + fr.insee + l8olrfxk + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8olrfxk-IP-1 + 1 + + ANAI_ENFAIL8 + + + + fr.insee + l8olrfxk-IP-2 + 1 + + DC_ENFAIL8 + + + + + fr.insee + l8ol9xy3-QOP-l8ol6h1q + 1 + OutParameter + + + fr.insee + l8olrfxk-IP-1 + 1 + InParameter + + + + + fr.insee + l8ole120-QOP-l8ol3o2i + 1 + OutParameter + + + fr.insee + l8olrfxk-IP-2 + 1 + InParameter + + + (l8olrfxk-IP-2="1" or isnull(l8olrfxk-IP-2)) and cast(l8olrfxk-IP-1,integer) >= 2004 + + + + fr.insee + l8olrfxk-THEN + 1 + Sequence + + + + fr.insee + l8olrfxk-THEN + 1 + + + + + fr.insee + l8okpmuc + 1 + IfThenElse + + + fr.insee + llgj6tya + 1 + IfThenElse + + + fr.insee + l8okkkef-QC + 1 + QuestionConstruct + + + fr.insee + l8okkkef-CI-0 + 1 + ComputationItem + + + fr.insee + ljwx4bei + 1 + IfThenElse + + + + fr.insee + l8okpmuc + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8okpmuc-IP-1 + 1 + + ANAI_ENFAIL8 + + + + + fr.insee + l8ol9xy3-QOP-l8ol6h1q + 1 + OutParameter + + + fr.insee + l8okpmuc-IP-1 + 1 + InParameter + + + cast(l8okpmuc-IP-1,integer) <= 2011 + + + + fr.insee + l8okpmuc-THEN + 1 + Sequence + + + + fr.insee + l8okpmuc-THEN + 1 + + + + + fr.insee + l8oksuft-QC + 1 + QuestionConstruct + + + fr.insee + l8oksuft-CI-0 + 1 + ComputationItem + + + + fr.insee + llgj6tya + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llgj6tya-IP-1 + 1 + + PARENT_VIT_ENFAIL8 + + + + + fr.insee + l8okz45l-QOP-l8olfzvu + 1 + OutParameter + + + fr.insee + llgj6tya-IP-1 + 1 + InParameter + + + llgj6tya-IP-1<>="3" + + + + fr.insee + llgj6tya-THEN + 1 + Sequence + + + + fr.insee + llgj6tya-THEN + 1 + + + + + fr.insee + l8okked6-QC + 1 + QuestionConstruct + + + fr.insee + l8okked6-CI-0 + 1 + ComputationItem + + + + fr.insee + ljwx4bei + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ljwx4bei-IP-1 + 1 + + PARENT_VIT_ENFAIL8 + + + + + fr.insee + l8okz45l-QOP-l8olfzvu + 1 + OutParameter + + + fr.insee + ljwx4bei-IP-1 + 1 + InParameter + + + ljwx4bei-IP-1<>"3" + + + + fr.insee + ljwx4bei-THEN + 1 + Sequence + + + + fr.insee + ljwx4bei-THEN + 1 + + + + + fr.insee + l8okfvhy-QC + 1 + QuestionConstruct + + + fr.insee + l8okfvhy-CI-0 + 1 + ComputationItem + + + fr.insee + l8okg7q9 + 1 + IfThenElse + + + + fr.insee + l8okg7q9 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8okg7q9-IP-1 + 1 + + SEP_AUT_PAR_ENFAIL8 + + + + + fr.insee + l8okfvhy-QOP-l8oke48c + 1 + OutParameter + + + fr.insee + l8okg7q9-IP-1 + 1 + InParameter + + + l8okg7q9-IP-1 ="1" or isnull(l8okg7q9-IP-1) + + + + fr.insee + l8okg7q9-THEN + 1 + Sequence + + + + fr.insee + l8okg7q9-THEN + 1 + + + + + fr.insee + l8okioqc-QC + 1 + QuestionConstruct + + + fr.insee + l8okioqc-CI-0 + 1 + ComputationItem + + + + fr.insee + llgg12c3 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llgg12c3-IP-1 + 1 + + DC_ENFAIL8 + + + + + fr.insee + l8ole120-QOP-l8ol3o2i + 1 + OutParameter + + + fr.insee + llgg12c3-IP-1 + 1 + InParameter + + + llgg12c3-IP-1="1" or isnull(llgg12c3-IP-1) + + + + fr.insee + llgg12c3-THEN + 1 + Sequence + + + + fr.insee + llgg12c3-THEN + 1 + + + + + fr.insee + l8oklb21-QC + 1 + QuestionConstruct + + + fr.insee + l8oklb21-CI-0 + 1 + ComputationItem + + + + fr.insee + l8sqkubc + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8sqkubc-IP-1 + 1 + + AGE + + + + fr.insee + l8sqkubc-IP-2 + 1 + + ENF + + + + + fr.insee + ljog08x8-GOP + 1 + OutParameter + + + fr.insee + l8sqkubc-IP-1 + 1 + InParameter + + + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + OutParameter + + + fr.insee + l8sqkubc-IP-2 + 1 + InParameter + + + cast (l8sqkubc-IP-1, integer) >= 35 and (isnull(l8sqkubc-IP-2) or l8sqkubc-IP-2 ="1") + + + + fr.insee + l8sqkubc-THEN + 1 + Sequence + + + + fr.insee + l8sqkubc-THEN + 1 + + + + + fr.insee + l1f6bztr + 1 + Sequence + + + + fr.insee + l1ghnjrp + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l1ghnjrp-IP-1 + 1 + + PETIT_ENF + + + + + fr.insee + l1f6a3qv-QOP-l1f67xik + 1 + OutParameter + + + fr.insee + l1ghnjrp-IP-1 + 1 + InParameter + + + l1ghnjrp-IP-1 ="1" + + + + fr.insee + l1ghnjrp-THEN + 1 + Sequence + + + + fr.insee + l1ghnjrp-THEN + 1 + + + + + fr.insee + l1f6dz1j-QC + 1 + QuestionConstruct + + + fr.insee + l1f6dz1j-CI-0 + 1 + ComputationItem + + + fr.insee + l1f69ivh-QC + 1 + QuestionConstruct + + + fr.insee + l1f69ivh-CI-0 + 1 + ComputationItem + + + fr.insee + l1g3hka7-QC + 1 + QuestionConstruct + + + fr.insee + l1g3hka7-CI-0 + 1 + ComputationItem + + + fr.insee + l1f4yrno-QC + 1 + QuestionConstruct + + + fr.insee + l1f4yrno-CI-0 + 1 + ComputationItem + + + + fr.insee + l1ggxm5j + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l1ggxm5j-IP-1 + 1 + + AIDE_APPORT1 + + + + + fr.insee + l1g87t8t-QOP-lmrsjz2q + 1 + OutParameter + + + fr.insee + l1ggxm5j-IP-1 + 1 + InParameter + + + l1ggxm5j-IP-1 + + + + fr.insee + l1ggxm5j-THEN + 1 + Sequence + + + + fr.insee + l1ggxm5j-THEN + 1 + + + + + fr.insee + l1ggssgl-QC + 1 + QuestionConstruct + + + fr.insee + l1ggssgl-CI-0 + 1 + ComputationItem + + + + fr.insee + l1ggoetu + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l1ggoetu-IP-1 + 1 + + AIDE_APPORT2 + + + + + fr.insee + l1g87t8t-QOP-lmrsu19x + 1 + OutParameter + + + fr.insee + l1ggoetu-IP-1 + 1 + InParameter + + + l1ggoetu-IP-1 + + + + fr.insee + l1ggoetu-THEN + 1 + Sequence + + + + fr.insee + l1ggoetu-THEN + 1 + + + + + fr.insee + l1ggm06b-QC + 1 + QuestionConstruct + + + fr.insee + l1ggm06b-CI-0 + 1 + ComputationItem + + + + fr.insee + l1ggo3n3 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l1ggo3n3-IP-1 + 1 + + AIDE_APPORT3 + + + + + fr.insee + l1g87t8t-QOP-lmrsjxl8 + 1 + OutParameter + + + fr.insee + l1ggo3n3-IP-1 + 1 + InParameter + + + l1ggo3n3-IP-1 + + + + fr.insee + l1ggo3n3-THEN + 1 + Sequence + + + + fr.insee + l1ggo3n3-THEN + 1 + + + + + fr.insee + l1ggtznr-QC + 1 + QuestionConstruct + + + fr.insee + l1ggtznr-CI-0 + 1 + ComputationItem + + + + fr.insee + l4lfld0y + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4lfld0y-IP-1 + 1 + + AIDE_APPORT4 + + + + + fr.insee + l1g87t8t-QOP-lmrswobh + 1 + OutParameter + + + fr.insee + l4lfld0y-IP-1 + 1 + InParameter + + + l4lfld0y-IP-1 + + + + fr.insee + l4lfld0y-THEN + 1 + Sequence + + + + fr.insee + l4lfld0y-THEN + 1 + + + + + fr.insee + l4lf0y9m-QC + 1 + QuestionConstruct + + + fr.insee + l4lf0y9m-CI-0 + 1 + ComputationItem + + + + fr.insee + l1gh5cvx + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l1gh5cvx-IP-1 + 1 + + AIDE_RECUE1 + + + + + fr.insee + l1g8o84g-QOP-lmrsrwwh + 1 + OutParameter + + + fr.insee + l1gh5cvx-IP-1 + 1 + InParameter + + + l1gh5cvx-IP-1 + + + + fr.insee + l1gh5cvx-THEN + 1 + Sequence + + + + fr.insee + l1gh5cvx-THEN + 1 + + + + + fr.insee + l1ggpjd7-QC + 1 + QuestionConstruct + + + fr.insee + l1ggpjd7-CI-0 + 1 + ComputationItem + + + + fr.insee + l1ggn2ni + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l1ggn2ni-IP-1 + 1 + + AIDE_RECUE2 + + + + + fr.insee + l1g8o84g-QOP-lmrsiwcj + 1 + OutParameter + + + fr.insee + l1ggn2ni-IP-1 + 1 + InParameter + + + l1ggn2ni-IP-1 + + + + fr.insee + l1ggn2ni-THEN + 1 + Sequence + + + + fr.insee + l1ggn2ni-THEN + 1 + + + + + fr.insee + l1ggp8js-QC + 1 + QuestionConstruct + + + fr.insee + l1ggp8js-CI-0 + 1 + ComputationItem + + + + fr.insee + l1ggzpng + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l1ggzpng-IP-1 + 1 + + AIDE_RECUE3 + + + + + fr.insee + l1g8o84g-QOP-lmrslpuw + 1 + OutParameter + + + fr.insee + l1ggzpng-IP-1 + 1 + InParameter + + + l1ggzpng-IP-1 + + + + fr.insee + l1ggzpng-THEN + 1 + Sequence + + + + fr.insee + l1ggzpng-THEN + 1 + + + + + fr.insee + l1gh36ky-QC + 1 + QuestionConstruct + + + fr.insee + l1gh36ky-CI-0 + 1 + ComputationItem + + + + fr.insee + lmrqj2ni + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lmrqj2ni-IP-1 + 1 + + LANGUE1_ENTOU + + + + + fr.insee + l1g8apw2-QOP-llvz9ewy + 1 + OutParameter + + + fr.insee + lmrqj2ni-IP-1 + 1 + InParameter + + + lmrqj2ni-IP-1 <> "" or not(isnull(lmrqj2ni-IP-1)) + + + + fr.insee + lmrqj2ni-THEN + 1 + Sequence + + + + fr.insee + lmrqj2ni-THEN + 1 + + + + + fr.insee + l43tgurz-QC + 1 + QuestionConstruct + + + fr.insee + l43tgurz-CI-0 + 1 + ComputationItem + + + + fr.insee + l4nwoi2w + 1 + + A définir + + + Test sur RP + + hideable + + + vtl + + fr.insee + l4nwoi2w-IP-1 + 1 + + RPPRENOMPAR1 + + + + fr.insee + l4nwoi2w-IP-2 + 1 + + RPANAISPAR1 + + + + fr.insee + l4nwoi2w-IP-3 + 1 + + PRENOM_PAR1 + + + + fr.insee + l4nwoi2w-IP-4 + 1 + + ANAI_PAR1 + + + + + fr.insee + RPPRENOMPAR1 + 1 + InParameter + + + fr.insee + l4nwoi2w-IP-1 + 1 + InParameter + + + + + fr.insee + RPANAISPAR1 + 1 + InParameter + + + fr.insee + l4nwoi2w-IP-2 + 1 + InParameter + + + + + fr.insee + l2kjnm8k-QOP-l2kjn4vg + 1 + OutParameter + + + fr.insee + l4nwoi2w-IP-3 + 1 + InParameter + + + + + fr.insee + l2kjy49o-QOP-l2kjupyp + 1 + OutParameter + + + fr.insee + l4nwoi2w-IP-4 + 1 + InParameter + + + isnull(l4nwoi2w-IP-1) or isnull(l4nwoi2w-IP-3) or replace(upper(l4nwoi2w-IP-1)," ","") <> replace(upper(l4nwoi2w-IP-3)," ","") or cast(l4nwoi2w-IP-2,integer) <> cast(l4nwoi2w-IP-4, integer) + + + + fr.insee + l4nwoi2w-THEN + 1 + Sequence + + + + fr.insee + l4nwoi2w-THEN + 1 + + + + + fr.insee + l2kk539f-QC + 1 + QuestionConstruct + + + fr.insee + l2kk539f-CI-0 + 1 + ComputationItem + + + fr.insee + l7ywp1vk-QC + 1 + QuestionConstruct + + + fr.insee + l7ywp1vk-CI-0 + 1 + ComputationItem + + + fr.insee + l7yx3sl1 + 1 + IfThenElse + + + + fr.insee + l7yx3sl1 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l7yx3sl1-IP-1 + 1 + + TRAV_PAR1 + + + + + fr.insee + l7ywp1vk-QOP-l7yx6ylx + 1 + OutParameter + + + fr.insee + l7yx3sl1-IP-1 + 1 + InParameter + + + l7yx3sl1-IP-1 ="1" or isnull(l7yx3sl1-IP-1) + + + + fr.insee + l7yx3sl1-THEN + 1 + Sequence + + + + fr.insee + l7yx3sl1-THEN + 1 + + + + + fr.insee + lab6s6ex + 1 + IfThenElse + + + fr.insee + l4qzs7pe + 1 + IfThenElse + + + fr.insee + l45ctt6n + 1 + IfThenElse + + + fr.insee + l2kjshy4-QC + 1 + QuestionConstruct + + + fr.insee + l2kjshy4-CI-0 + 1 + ComputationItem + + + fr.insee + llgqfhat + 1 + IfThenElse + + + fr.insee + llgqfku7 + 1 + IfThenElse + + + + fr.insee + lab6s6ex + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lab6s6ex-IP-1 + 1 + + SEXE_PAR1 + + + + + fr.insee + l2kkvar7-QOP-l2kkywzf + 1 + OutParameter + + + fr.insee + lab6s6ex-IP-1 + 1 + InParameter + + + lab6s6ex-IP-1="2" or isnull(lab6s6ex-IP-1) + + + + fr.insee + lab6s6ex-THEN + 1 + Sequence + + + + fr.insee + lab6s6ex-THEN + 1 + + + + + fr.insee + l2kjueig-QC + 1 + QuestionConstruct + + + + fr.insee + l4qzs7pe + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4qzs7pe-IP-1 + 1 + + SEXE_PAR1 + + + + + fr.insee + l2kkvar7-QOP-l2kkywzf + 1 + OutParameter + + + fr.insee + l4qzs7pe-IP-1 + 1 + InParameter + + + l4qzs7pe-IP-1="1" + + + + fr.insee + l4qzs7pe-THEN + 1 + Sequence + + + + fr.insee + l4qzs7pe-THEN + 1 + + + + + fr.insee + l4qzvm5v-QC + 1 + QuestionConstruct + + + + fr.insee + l45ctt6n + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l45ctt6n-IP-1 + 1 + + PROF_PAR1H + + + + fr.insee + l45ctt6n-IP-2 + 1 + + PROF_PAR1F + + + + + fr.insee + l2kjueig-QOP-llvyzrpx + 1 + OutParameter + + + fr.insee + l45ctt6n-IP-1 + 1 + InParameter + + + + + fr.insee + l4qzvm5v-QOP-llvz490j + 1 + OutParameter + + + fr.insee + l45ctt6n-IP-2 + 1 + InParameter + + + isnull(l45ctt6n-IP-2) and isnull(l45ctt6n-IP-1) + + + + fr.insee + l45ctt6n-THEN + 1 + Sequence + + + + fr.insee + l45ctt6n-THEN + 1 + + + + + fr.insee + l45cjoj7-QC + 1 + QuestionConstruct + + + fr.insee + l45cjoj7-CI-0 + 1 + ComputationItem + + + + fr.insee + llgqfhat + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llgqfhat-IP-1 + 1 + + STATUT_PAR1 + + + + + fr.insee + l2kjshy4-QOP-l2kk0l5l + 1 + OutParameter + + + fr.insee + llgqfhat-IP-1 + 1 + InParameter + + + llgqfhat-IP-1 ="2" + + + + fr.insee + llgqfhat-THEN + 1 + Sequence + + + + fr.insee + llgqfhat-THEN + 1 + + + + + fr.insee + llgo5n7b-QC + 1 + QuestionConstruct + + + fr.insee + llgo5n7b-CI-0 + 1 + ComputationItem + + + + fr.insee + llgqfku7 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llgqfku7-IP-1 + 1 + + STATUT_PAR1 + + + + + fr.insee + l2kjshy4-QOP-l2kk0l5l + 1 + OutParameter + + + fr.insee + llgqfku7-IP-1 + 1 + InParameter + + + llgqfku7-IP-1 ="3" + + + + fr.insee + llgqfku7-THEN + 1 + Sequence + + + + fr.insee + llgqfku7-THEN + 1 + + + + + fr.insee + llgqspnh-QC + 1 + QuestionConstruct + + + fr.insee + llgqspnh-CI-0 + 1 + ComputationItem + + + + fr.insee + lmrqnci8 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lmrqnci8-IP-1 + 1 + + LANGUE1_PAR1 + + + + + fr.insee + l2kk4seh-QOP-llvyt5ul + 1 + OutParameter + + + fr.insee + lmrqnci8-IP-1 + 1 + InParameter + + + lmrqnci8-IP-1 <> "" or not(isnull(lmrqnci8-IP-1)) + + + + fr.insee + lmrqnci8-THEN + 1 + Sequence + + + + fr.insee + lmrqnci8-THEN + 1 + + + + + fr.insee + l447j7cx-QC + 1 + QuestionConstruct + + + fr.insee + l447j7cx-CI-0 + 1 + ComputationItem + + + + fr.insee + lbpj1dh7 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lbpj1dh7-IP-1 + 1 + + RPPRENOMPAR1 + + + + fr.insee + lbpj1dh7-IP-2 + 1 + + RPANAISPAR1 + + + + fr.insee + lbpj1dh7-IP-3 + 1 + + PRENOM_PAR1 + + + + fr.insee + lbpj1dh7-IP-4 + 1 + + ANAI_PAR1 + + + + + fr.insee + RPPRENOMPAR1 + 1 + InParameter + + + fr.insee + lbpj1dh7-IP-1 + 1 + InParameter + + + + + fr.insee + RPANAISPAR1 + 1 + InParameter + + + fr.insee + lbpj1dh7-IP-2 + 1 + InParameter + + + + + fr.insee + l2kjnm8k-QOP-l2kjn4vg + 1 + OutParameter + + + fr.insee + lbpj1dh7-IP-3 + 1 + InParameter + + + + + fr.insee + l2kjy49o-QOP-l2kjupyp + 1 + OutParameter + + + fr.insee + lbpj1dh7-IP-4 + 1 + InParameter + + + isnull(lbpj1dh7-IP-1) or isnull(lbpj1dh7-IP-3) or replace(upper(lbpj1dh7-IP-1)," ","") <> replace(upper(lbpj1dh7-IP-3)," ","") or cast(lbpj1dh7-IP-2,integer) <> cast(lbpj1dh7-IP-4, integer) + + + + fr.insee + lbpj1dh7-THEN + 1 + Sequence + + + + fr.insee + lbpj1dh7-THEN + 1 + + + + + fr.insee + l2kjzugb-QC + 1 + QuestionConstruct + + + fr.insee + l2kjzugb-CI-0 + 1 + ComputationItem + + + fr.insee + l2roa0nx + 1 + IfThenElse + + + fr.insee + l1f5y7ps + 1 + IfThenElse + + + + fr.insee + l2roa0nx + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l2roa0nx-IP-1 + 1 + + VIV_PAR1 + + + + + fr.insee + l2kjzugb-QOP-l2kjv6tv + 1 + OutParameter + + + fr.insee + l2roa0nx-IP-1 + 1 + InParameter + + + l2roa0nx-IP-1 ="2" + + + + fr.insee + l2roa0nx-THEN + 1 + Sequence + + + + fr.insee + l2roa0nx-THEN + 1 + + + + + fr.insee + l2kkd59n-QC + 1 + QuestionConstruct + + + fr.insee + l2kkd59n-CI-0 + 1 + ComputationItem + + + fr.insee + l2kkd59n-CI-1 + 1 + ComputationItem + + + fr.insee + l2kkd59n-CI-2 + 1 + ComputationItem + + + + fr.insee + l1f5y7ps + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l1f5y7ps-IP-1 + 1 + + VIV_PAR1 + + + + + fr.insee + l2kjzugb-QOP-l2kjv6tv + 1 + OutParameter + + + fr.insee + l1f5y7ps-IP-1 + 1 + InParameter + + + l1f5y7ps-IP-1="1" or isnull(l1f5y7ps-IP-1) + + + + fr.insee + l1f5y7ps-THEN + 1 + Sequence + + + + fr.insee + l1f5y7ps-THEN + 1 + + + + + fr.insee + l2kk4snz-QC + 1 + QuestionConstruct + + + fr.insee + l2kk4snz-CI-0 + 1 + ComputationItem + + + fr.insee + l3bq7xns + 1 + IfThenElse + + + fr.insee + l5jp8ine + 1 + IfThenElse + + + fr.insee + l43yap7r-QC + 1 + QuestionConstruct + + + fr.insee + l43yap7r-CI-0 + 1 + ComputationItem + + + + fr.insee + l3bq7xns + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l3bq7xns-IP-1 + 1 + + LOG_PAR1 + + + + + fr.insee + l2kk4snz-QOP-l34gopr4 + 1 + OutParameter + + + fr.insee + l3bq7xns-IP-1 + 1 + InParameter + + + l3bq7xns-IP-1 ="2" or isnull(l3bq7xns-IP-1) + + + + fr.insee + l3bq7xns-THEN + 1 + Sequence + + + + fr.insee + l3bq7xns-THEN + 1 + + + + + fr.insee + l2kkb4xa-QC + 1 + QuestionConstruct + + + fr.insee + l2kkb4xa-CI-0 + 1 + ComputationItem + + + fr.insee + l4o7yry0 + 1 + IfThenElse + + + fr.insee + l4o89ng4 + 1 + IfThenElse + + + + fr.insee + l4o7yry0 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4o7yry0-IP-1 + 1 + + FR_PAR1 + + + + + fr.insee + l2kkb4xa-QOP-l2kk5rd6 + 1 + OutParameter + + + fr.insee + l4o7yry0-IP-1 + 1 + InParameter + + + l4o7yry0-IP-1 ="1" or isnull(l4o7yry0-IP-1) + + + + fr.insee + l4o7yry0-THEN + 1 + Sequence + + + + fr.insee + l4o7yry0-THEN + 1 + + + + + fr.insee + l4o7ufzl-QC + 1 + QuestionConstruct + + + fr.insee + l4o7ufzl-CI-0 + 1 + ComputationItem + + + fr.insee + l4onhpvd-QC + 1 + QuestionConstruct + + + fr.insee + l4onhpvd-CI-0 + 1 + ComputationItem + + + + fr.insee + l4o89ng4 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4o89ng4-IP-1 + 1 + + FR_PAR1 + + + + + fr.insee + l2kkb4xa-QOP-l2kk5rd6 + 1 + OutParameter + + + fr.insee + l4o89ng4-IP-1 + 1 + InParameter + + + l4o89ng4-IP-1 ="2" + + + + fr.insee + l4o89ng4-THEN + 1 + Sequence + + + + fr.insee + l4o89ng4-THEN + 1 + + + + + fr.insee + l4o8eale-QC + 1 + QuestionConstruct + + + fr.insee + l4o8eale-CI-0 + 1 + ComputationItem + + + + fr.insee + l5jp8ine + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l5jp8ine-IP-1 + 1 + + LOG_PAR1 + + + + + fr.insee + l2kk4snz-QOP-l34gopr4 + 1 + OutParameter + + + fr.insee + l5jp8ine-IP-1 + 1 + InParameter + + + l5jp8ine-IP-1 ="2" or isnull(l5jp8ine-IP-1) + + + + fr.insee + l5jp8ine-THEN + 1 + Sequence + + + + fr.insee + l5jp8ine-THEN + 1 + + + + + fr.insee + l1ezkqes-QC + 1 + QuestionConstruct + + + fr.insee + l1ezkqes-CI-0 + 1 + ComputationItem + + + fr.insee + l2kkeqsz-QC + 1 + QuestionConstruct + + + fr.insee + l2kkeqsz-CI-0 + 1 + ComputationItem + + + fr.insee + l2kk296y-QC + 1 + QuestionConstruct + + + fr.insee + l2kk296y-CI-0 + 1 + ComputationItem + + + fr.insee + l4lojzxg-QC + 1 + QuestionConstruct + + + fr.insee + l4lojzxg-CI-0 + 1 + ComputationItem + + + + fr.insee + l5ayth8i + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l5ayth8i-IP-1 + 1 + + EXIST_PAR2 + + + + + fr.insee + l5axrwsa-QOP-l5ay3o3r + 1 + OutParameter + + + fr.insee + l5ayth8i-IP-1 + 1 + InParameter + + + l5ayth8i-IP-1 ="1" + + + + fr.insee + l5ayth8i-THEN + 1 + Sequence + + + + fr.insee + l5ayth8i-THEN + 1 + + + + + fr.insee + las2r756 + 1 + Sequence + + + + fr.insee + l4o63304 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4o63304-IP-1 + 1 + + RPPRENOMPAR2 + + + + fr.insee + l4o63304-IP-2 + 1 + + RPANAISPAR2 + + + + fr.insee + l4o63304-IP-3 + 1 + + PRENOM_PAR2 + + + + fr.insee + l4o63304-IP-4 + 1 + + ANAI_PAR2 + + + + + fr.insee + RPPRENOMPAR2 + 1 + InParameter + + + fr.insee + l4o63304-IP-1 + 1 + InParameter + + + + + fr.insee + RPANAISPAR2 + 1 + InParameter + + + fr.insee + l4o63304-IP-2 + 1 + InParameter + + + + + fr.insee + l27ijusa-QOP-l27i3154 + 1 + OutParameter + + + fr.insee + l4o63304-IP-3 + 1 + InParameter + + + + + fr.insee + kwqfufye-QOP-l0wf22g3 + 1 + OutParameter + + + fr.insee + l4o63304-IP-4 + 1 + InParameter + + + isnull(l4o63304-IP-1) or isnull(l4o63304-IP-3) or replace(upper(l4o63304-IP-1)," ","") <> replace(upper(l4o63304-IP-3)," ","") or cast(l4o63304-IP-2,integer) <> cast(l4o63304-IP-4, integer) + + + + fr.insee + l4o63304-THEN + 1 + Sequence + + + + fr.insee + l4o63304-THEN + 1 + + + + + fr.insee + kwqfhhge-QC + 1 + QuestionConstruct + + + fr.insee + kwqfhhge-CI-0 + 1 + ComputationItem + + + fr.insee + l7ywxphs-QC + 1 + QuestionConstruct + + + fr.insee + l7ywxphs-CI-0 + 1 + ComputationItem + + + fr.insee + l7ywxi91 + 1 + IfThenElse + + + + fr.insee + l7ywxi91 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l7ywxi91-IP-1 + 1 + + TRAV_PAR2 + + + + + fr.insee + l7ywxphs-QOP-l7yx8jjw + 1 + OutParameter + + + fr.insee + l7ywxi91-IP-1 + 1 + InParameter + + + l7ywxi91-IP-1 ="1" or isnull(l7ywxi91-IP-1) + + + + fr.insee + l7ywxi91-THEN + 1 + Sequence + + + + fr.insee + l7ywxi91-THEN + 1 + + + + + fr.insee + l4qzrwjt + 1 + IfThenElse + + + fr.insee + l4qzn5gc + 1 + IfThenElse + + + fr.insee + l45cxcc4 + 1 + IfThenElse + + + fr.insee + kwqfto3c-QC + 1 + QuestionConstruct + + + fr.insee + kwqfto3c-CI-0 + 1 + ComputationItem + + + fr.insee + llgrpcik + 1 + IfThenElse + + + fr.insee + llgs5b5t + 1 + IfThenElse + + + + fr.insee + l4qzrwjt + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4qzrwjt-IP-1 + 1 + + SEXE_PAR2 + + + + + fr.insee + l27ig4yy-QOP-l27ii3c9 + 1 + OutParameter + + + fr.insee + l4qzrwjt-IP-1 + 1 + InParameter + + + l4qzrwjt-IP-1 ="2" or isnull(l4qzrwjt-IP-1) + + + + fr.insee + l4qzrwjt-THEN + 1 + Sequence + + + + fr.insee + l4qzrwjt-THEN + 1 + + + + + fr.insee + l1ezowxi-QC + 1 + QuestionConstruct + + + + fr.insee + l4qzn5gc + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4qzn5gc-IP-1 + 1 + + SEXE_PAR2 + + + + + fr.insee + l27ig4yy-QOP-l27ii3c9 + 1 + OutParameter + + + fr.insee + l4qzn5gc-IP-1 + 1 + InParameter + + + l4qzn5gc-IP-1 ="1" + + + + fr.insee + l4qzn5gc-THEN + 1 + Sequence + + + + fr.insee + l4qzn5gc-THEN + 1 + + + + + fr.insee + l4qzjbsx-QC + 1 + QuestionConstruct + + + + fr.insee + l45cxcc4 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l45cxcc4-IP-1 + 1 + + PROF_PAR2H + + + + fr.insee + l45cxcc4-IP-2 + 1 + + PROF_PAR2F + + + + + fr.insee + l1ezowxi-QOP-llvz8km0 + 1 + OutParameter + + + fr.insee + l45cxcc4-IP-1 + 1 + InParameter + + + + + fr.insee + l4qzjbsx-QOP-llvzb8qa + 1 + OutParameter + + + fr.insee + l45cxcc4-IP-2 + 1 + InParameter + + + isnull(l45cxcc4-IP-2) and isnull(l45cxcc4-IP-1) + + + + fr.insee + l45cxcc4-THEN + 1 + Sequence + + + + fr.insee + l45cxcc4-THEN + 1 + + + + + fr.insee + l444t31z-QC + 1 + QuestionConstruct + + + fr.insee + l444t31z-CI-0 + 1 + ComputationItem + + + + fr.insee + llgrpcik + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llgrpcik-IP-1 + 1 + + STATUT_PAR2 + + + + + fr.insee + kwqfto3c-QOP-kwqg4dq2 + 1 + OutParameter + + + fr.insee + llgrpcik-IP-1 + 1 + InParameter + + + llgrpcik-IP-1 ="2" + + + + fr.insee + llgrpcik-THEN + 1 + Sequence + + + + fr.insee + llgrpcik-THEN + 1 + + + + + fr.insee + llgosp3i-QC + 1 + QuestionConstruct + + + fr.insee + llgosp3i-CI-0 + 1 + ComputationItem + + + + fr.insee + llgs5b5t + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llgs5b5t-IP-1 + 1 + + STATUT_PAR2 + + + + + fr.insee + kwqfto3c-QOP-kwqg4dq2 + 1 + OutParameter + + + fr.insee + llgs5b5t-IP-1 + 1 + InParameter + + + llgs5b5t-IP-1 ="3" + + + + fr.insee + llgs5b5t-THEN + 1 + Sequence + + + + fr.insee + llgs5b5t-THEN + 1 + + + + + fr.insee + llgrqyqg-QC + 1 + QuestionConstruct + + + fr.insee + llgrqyqg-CI-0 + 1 + ComputationItem + + + + fr.insee + lmrr3r3g + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lmrr3r3g-IP-1 + 1 + + LANGUE1_PAR2 + + + + + fr.insee + l1ezgxe3-QOP-llvz4083 + 1 + OutParameter + + + fr.insee + lmrr3r3g-IP-1 + 1 + InParameter + + + lmrr3r3g-IP-1 <> "" or not(isnull(lmrr3r3g-IP-1)) + + + + fr.insee + lmrr3r3g-THEN + 1 + Sequence + + + + fr.insee + lmrr3r3g-THEN + 1 + + + + + fr.insee + l444xjux-QC + 1 + QuestionConstruct + + + fr.insee + l444xjux-CI-0 + 1 + ComputationItem + + + + fr.insee + lbpjirq3 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lbpjirq3-IP-1 + 1 + + RPPRENOMPAR2 + + + + fr.insee + lbpjirq3-IP-2 + 1 + + RPANAISPAR2 + + + + fr.insee + lbpjirq3-IP-3 + 1 + + PRENOM_PAR2 + + + + fr.insee + lbpjirq3-IP-4 + 1 + + ANAI_PAR2 + + + + + fr.insee + RPPRENOMPAR2 + 1 + InParameter + + + fr.insee + lbpjirq3-IP-1 + 1 + InParameter + + + + + fr.insee + RPANAISPAR2 + 1 + InParameter + + + fr.insee + lbpjirq3-IP-2 + 1 + InParameter + + + + + fr.insee + l27ijusa-QOP-l27i3154 + 1 + OutParameter + + + fr.insee + lbpjirq3-IP-3 + 1 + InParameter + + + + + fr.insee + kwqfufye-QOP-l0wf22g3 + 1 + OutParameter + + + fr.insee + lbpjirq3-IP-4 + 1 + InParameter + + + isnull(lbpjirq3-IP-1) or isnull(lbpjirq3-IP-3) or replace(upper(lbpjirq3-IP-1)," ","") <> replace(upper(lbpjirq3-IP-3)," ","") or cast(lbpjirq3-IP-2,integer) <> cast(lbpjirq3-IP-4, integer) + + + + fr.insee + lbpjirq3-THEN + 1 + Sequence + + + + fr.insee + lbpjirq3-THEN + 1 + + + + + fr.insee + kwqhjfzk-QC + 1 + QuestionConstruct + + + fr.insee + kwqhjfzk-CI-0 + 1 + ComputationItem + + + fr.insee + l2rog2px + 1 + IfThenElse + + + fr.insee + l2kjx5mh + 1 + IfThenElse + + + + fr.insee + l2rog2px + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l2rog2px-IP-1 + 1 + + VIV_PAR2 + + + + + fr.insee + kwqhjfzk-QOP-kwqhv63j + 1 + OutParameter + + + fr.insee + l2rog2px-IP-1 + 1 + InParameter + + + l2rog2px-IP-1 ="2" + + + + fr.insee + l2rog2px-THEN + 1 + Sequence + + + + fr.insee + l2rog2px-THEN + 1 + + + + + fr.insee + kwqg35i9-QC + 1 + QuestionConstruct + + + fr.insee + kwqg35i9-CI-0 + 1 + ComputationItem + + + fr.insee + kwqg35i9-CI-1 + 1 + ComputationItem + + + fr.insee + kwqg35i9-CI-2 + 1 + ComputationItem + + + + fr.insee + l2kjx5mh + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l2kjx5mh-IP-1 + 1 + + VIV_PAR2 + + + + + fr.insee + kwqhjfzk-QOP-kwqhv63j + 1 + OutParameter + + + fr.insee + l2kjx5mh-IP-1 + 1 + InParameter + + + l2kjx5mh-IP-1 ="1" or isnull(l2kjx5mh-IP-1) + + + + fr.insee + l2kjx5mh-THEN + 1 + Sequence + + + + fr.insee + l2kjx5mh-THEN + 1 + + + + + fr.insee + lab74bmo + 1 + IfThenElse + + + fr.insee + lab6rrje + 1 + IfThenElse + + + fr.insee + l4lovlmo + 1 + IfThenElse + + + + fr.insee + lab74bmo + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lab74bmo-IP-1 + 1 + + VIV_PAR1 + + + + + fr.insee + l2kjzugb-QOP-l2kjv6tv + 1 + OutParameter + + + fr.insee + lab74bmo-IP-1 + 1 + InParameter + + + lab74bmo-IP-1 ="1" or isnull(lab74bmo-IP-1) + + + + fr.insee + lab74bmo-THEN + 1 + Sequence + + + + fr.insee + lab74bmo-THEN + 1 + + + + + fr.insee + kwqgffvw-QC + 1 + QuestionConstruct + + + fr.insee + kwqgffvw-CI-0 + 1 + ComputationItem + + + fr.insee + kwqgffvw-CI-1 + 1 + ComputationItem + + + + fr.insee + lab6rrje + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lab6rrje-IP-1 + 1 + + VIV_PAR1 + + + + + fr.insee + l2kjzugb-QOP-l2kjv6tv + 1 + OutParameter + + + fr.insee + lab6rrje-IP-1 + 1 + InParameter + + + lab6rrje-IP-1 ="2" + + + + fr.insee + lab6rrje-THEN + 1 + Sequence + + + + fr.insee + lab6rrje-THEN + 1 + + + + + fr.insee + lab6xfk9-QC + 1 + QuestionConstruct + + + fr.insee + lab6xfk9-CI-0 + 1 + ComputationItem + + + + fr.insee + l4lovlmo + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4lovlmo-IP-1 + 1 + + LOG_PAR2A1 + + + + fr.insee + l4lovlmo-IP-2 + 1 + + LOG_PAR2A2 + + + + fr.insee + l4lovlmo-IP-3 + 1 + + LOG_PAR2A3 + + + + fr.insee + l4lovlmo-IP-4 + 1 + + LOG_PAR2B + + + + + fr.insee + kwqgffvw-QOP-lm0fqbdz + 1 + OutParameter + + + fr.insee + l4lovlmo-IP-1 + 1 + InParameter + + + + + fr.insee + kwqgffvw-QOP-lm0f8md7 + 1 + OutParameter + + + fr.insee + l4lovlmo-IP-2 + 1 + InParameter + + + + + fr.insee + kwqgffvw-QOP-lm0fpbr7 + 1 + OutParameter + + + fr.insee + l4lovlmo-IP-3 + 1 + InParameter + + + + + fr.insee + lab6xfk9-QOP-lab73lgn + 1 + OutParameter + + + fr.insee + l4lovlmo-IP-4 + 1 + InParameter + + + (l4lovlmo-IP-3 and isnull(l4lovlmo-IP-4)) or (l4lovlmo-IP-4 ="2" and (nvl(l4lovlmo-IP-1, false) = false and nvl(l4lovlmo-IP-2, false) = false and nvl(l4lovlmo-IP-3, false) = false)) + + + + fr.insee + l4lovlmo-THEN + 1 + Sequence + + + + fr.insee + l4lovlmo-THEN + 1 + + + + + fr.insee + kwqgawqp-QC + 1 + QuestionConstruct + + + fr.insee + kwqgawqp-CI-0 + 1 + ComputationItem + + + fr.insee + l4o84dom + 1 + IfThenElse + + + fr.insee + l4o85xru + 1 + IfThenElse + + + fr.insee + l2kkc8s9-QC + 1 + QuestionConstruct + + + fr.insee + l2kkc8s9-CI-0 + 1 + ComputationItem + + + fr.insee + l1gl4054-QC + 1 + QuestionConstruct + + + fr.insee + l1gl4054-CI-0 + 1 + ComputationItem + + + fr.insee + l1ezkbsf-QC + 1 + QuestionConstruct + + + fr.insee + l1ezkbsf-CI-0 + 1 + ComputationItem + + + fr.insee + l445itcb-QC + 1 + QuestionConstruct + + + fr.insee + l445itcb-CI-0 + 1 + ComputationItem + + + fr.insee + l4cjeqc0-QC + 1 + QuestionConstruct + + + fr.insee + l4cjeqc0-CI-0 + 1 + ComputationItem + + + + fr.insee + l4o84dom + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4o84dom-IP-1 + 1 + + FR_PAR2 + + + + + fr.insee + kwqgawqp-QOP-kwqgeipr + 1 + OutParameter + + + fr.insee + l4o84dom-IP-1 + 1 + InParameter + + + l4o84dom-IP-1 ="1" or isnull(l4o84dom-IP-1) + + + + fr.insee + l4o84dom-THEN + 1 + Sequence + + + + fr.insee + l4o84dom-THEN + 1 + + + + + fr.insee + l4o8co0c-QC + 1 + QuestionConstruct + + + fr.insee + l4o8co0c-CI-0 + 1 + ComputationItem + + + fr.insee + l4onk34z-QC + 1 + QuestionConstruct + + + fr.insee + l4onk34z-CI-0 + 1 + ComputationItem + + + + fr.insee + l4o85xru + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4o85xru-IP-1 + 1 + + FR_PAR2 + + + + + fr.insee + kwqgawqp-QOP-kwqgeipr + 1 + OutParameter + + + fr.insee + l4o85xru-IP-1 + 1 + InParameter + + + l4o85xru-IP-1 ="2" + + + + fr.insee + l4o85xru-THEN + 1 + Sequence + + + + fr.insee + l4o85xru-THEN + 1 + + + + + fr.insee + l4o8dk7q-QC + 1 + QuestionConstruct + + + fr.insee + l4o8dk7q-CI-0 + 1 + ComputationItem + + + + fr.insee + lj2srd9e + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lj2srd9e-IP-1 + 1 + + NB_FRERES + + + + + fr.insee + l473kp51-QOP-l473rzw1 + 1 + OutParameter + + + fr.insee + lj2srd9e-IP-1 + 1 + InParameter + + + lj2srd9e-IP-1 = 1 + + + + fr.insee + lj2srd9e-THEN + 1 + Sequence + + + + fr.insee + lj2srd9e-THEN + 1 + + + + + fr.insee + l5ikk5zq-QC + 1 + QuestionConstruct + + + fr.insee + l5ikk5zq-CI-0 + 1 + ComputationItem + + + + fr.insee + lj30clvl + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lj30clvl-IP-1 + 1 + + NB_FRERES + + + + + fr.insee + l473kp51-QOP-l473rzw1 + 1 + OutParameter + + + fr.insee + lj30clvl-IP-1 + 1 + InParameter + + + lj30clvl-IP-1 > 1 + + + + fr.insee + lj30clvl-THEN + 1 + Sequence + + + + fr.insee + lj30clvl-THEN + 1 + + + + + fr.insee + l4740wd1-QC + 1 + QuestionConstruct + + + fr.insee + l4740wd1-CI-0 + 1 + ComputationItem + + + fr.insee + l4740wd1-CI-1 + 1 + ComputationItem + + + + fr.insee + lj41apen + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lj41apen-IP-1 + 1 + + NB_SOEURS + + + + + fr.insee + l4742c2v-QOP-l473q5ei + 1 + OutParameter + + + fr.insee + lj41apen-IP-1 + 1 + InParameter + + + lj41apen-IP-1 = 1 + + + + fr.insee + lj41apen-THEN + 1 + Sequence + + + + fr.insee + lj41apen-THEN + 1 + + + + + fr.insee + l5ikyrbc-QC + 1 + QuestionConstruct + + + fr.insee + l5ikyrbc-CI-0 + 1 + ComputationItem + + + + fr.insee + lj41lgft + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lj41lgft-IP-1 + 1 + + NB_SOEURS + + + + + fr.insee + l4742c2v-QOP-l473q5ei + 1 + OutParameter + + + fr.insee + lj41lgft-IP-1 + 1 + InParameter + + + lj41lgft-IP-1 > 1 + + + + fr.insee + lj41lgft-THEN + 1 + Sequence + + + + fr.insee + lj41lgft-THEN + 1 + + + + + fr.insee + l473w273-QC + 1 + QuestionConstruct + + + fr.insee + l473w273-CI-0 + 1 + ComputationItem + + + fr.insee + l473w273-CI-1 + 1 + ComputationItem + + + + fr.insee + l43u5x89 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l43u5x89-IP-1 + 1 + + VECU_PLACE + + + + + fr.insee + l43ttd47-QOP-l43tsfar + 1 + OutParameter + + + fr.insee + l43u5x89-IP-1 + 1 + InParameter + + + l43u5x89-IP-1 ="1" + + + + fr.insee + l43u5x89-THEN + 1 + Sequence + + + + fr.insee + l43u5x89-THEN + 1 + + + + + fr.insee + l43u439h-QC + 1 + QuestionConstruct + + + fr.insee + l43u439h-CI-0 + 1 + ComputationItem + + + + fr.insee + l1g432mc + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l1g432mc-IP-1 + 1 + + FINETU + + + + + fr.insee + l1g3unwh-QOP-l1g3npll + 1 + OutParameter + + + fr.insee + l1g432mc-IP-1 + 1 + InParameter + + + l1g432mc-IP-1="1" + + + + fr.insee + l1g432mc-THEN + 1 + Sequence + + + + fr.insee + l1g432mc-THEN + 1 + + + + + fr.insee + l1g3yk6q-QC + 1 + QuestionConstruct + + + fr.insee + l1g3yk6q-CI-0 + 1 + ComputationItem + + + fr.insee + l1g3yk6q-CI-1 + 1 + ComputationItem + + + fr.insee + l1g3yk6q-CI-2 + 1 + ComputationItem + + + fr.insee + l1g3yk6q-CI-3 + 1 + ComputationItem + + + + fr.insee + l1g7w1v9 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l1g7w1v9-IP-1 + 1 + + DEJATRAV + + + + + fr.insee + l1g7pgbn-QOP-l1g7tm7z + 1 + OutParameter + + + fr.insee + l1g7w1v9-IP-1 + 1 + InParameter + + + isnull(l1g7w1v9-IP-1) or l1g7w1v9-IP-1 ="1" + + + + fr.insee + l1g7w1v9-THEN + 1 + Sequence + + + + fr.insee + l1g7w1v9-THEN + 1 + + + + + fr.insee + l1g4pid1-QC + 1 + QuestionConstruct + + + fr.insee + l1g4pid1-CI-0 + 1 + ComputationItem + + + fr.insee + l1g4pid1-CI-1 + 1 + ComputationItem + + + fr.insee + l1g4pid1-CI-2 + 1 + ComputationItem + + + fr.insee + l1g4pid1-CI-3 + 1 + ComputationItem + + + fr.insee + l445x7tq-QC + 1 + QuestionConstruct + + + fr.insee + l445x7tq-CI-0 + 1 + ComputationItem + + + + fr.insee + l445riqu + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l445riqu-IP-1 + 1 + + TRAVACT + + + + + fr.insee + l445x7tq-QOP-l445yz7o + 1 + OutParameter + + + fr.insee + l445riqu-IP-1 + 1 + InParameter + + + l445riqu-IP-1="2" + + + + fr.insee + l445riqu-THEN + 1 + Sequence + + + + fr.insee + l445riqu-THEN + 1 + + + + + fr.insee + l1g7iu0j-QC + 1 + QuestionConstruct + + + fr.insee + l1g7iu0j-CI-0 + 1 + ComputationItem + + + fr.insee + l1g7iu0j-CI-1 + 1 + ComputationItem + + + fr.insee + l1g7iu0j-CI-2 + 1 + ComputationItem + + + fr.insee + l1g7iu0j-CI-3 + 1 + ComputationItem + + + + fr.insee + l4r00nja + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4r00nja-IP-1 + 1 + + DEJATRAV + + + + + fr.insee + l1g7pgbn-QOP-l1g7tm7z + 1 + OutParameter + + + fr.insee + l4r00nja-IP-1 + 1 + InParameter + + + isnull(l4r00nja-IP-1) or l4r00nja-IP-1 ="1" + + + + fr.insee + l4r00nja-THEN + 1 + Sequence + + + + fr.insee + l4r00nja-THEN + 1 + + + + + fr.insee + l1g7vwo6-QC + 1 + QuestionConstruct + + + fr.insee + l1g7vwo6-CI-0 + 1 + ComputationItem + + + fr.insee + lmrq5x9j + 1 + IfThenElse + + + + fr.insee + lmrq5x9j + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lmrq5x9j-IP-1 + 1 + + INTER_TRAV1 + + + + + fr.insee + l1g7vwo6-QOP-lleu3ict + 1 + OutParameter + + + fr.insee + lmrq5x9j-IP-1 + 1 + InParameter + + + lmrq5x9j-IP-1 ="2" + + + + fr.insee + lmrq5x9j-THEN + 1 + Sequence + + + + fr.insee + lmrq5x9j-THEN + 1 + + + + + fr.insee + lletbq7t-QC + 1 + QuestionConstruct + + + fr.insee + lletbq7t-CI-0 + 1 + ComputationItem + + + fr.insee + lletqevy-QC + 1 + QuestionConstruct + + + fr.insee + lletqevy-CI-0 + 1 + ComputationItem + + + + fr.insee + lamjvpmw + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lamjvpmw-IP-1 + 1 + + PRENOM_FIN + + + + + fr.insee + ljwxkrnl-QOP-ljwxfacv + 1 + OutParameter + + + fr.insee + lamjvpmw-IP-1 + 1 + InParameter + + + lamjvpmw-IP-1 ="2" + + + + fr.insee + lamjvpmw-THEN + 1 + Sequence + + + + fr.insee + lamjvpmw-THEN + 1 + + + + + fr.insee + lamjnyx4-QC + 1 + QuestionConstruct + + + + fr.insee + lnbsju54 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lnbsju54-IP-1 + 1 + + PRENOM_FIN + + + + + fr.insee + ljwxkrnl-QOP-ljwxfacv + 1 + OutParameter + + + fr.insee + lnbsju54-IP-1 + 1 + InParameter + + + isnull(lnbsju54-IP-1) or lnbsju54-IP-1 ="1" + + + + fr.insee + lnbsju54-THEN + 1 + Sequence + + + + fr.insee + lnbsju54-THEN + 1 + + + + + fr.insee + lm4w39kw-QC + 1 + QuestionConstruct + + + + fr.insee + lnbspfjh + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lnbspfjh-IP-1 + 1 + + PRENOM_FIN + + + + + fr.insee + ljwxkrnl-QOP-ljwxfacv + 1 + OutParameter + + + fr.insee + lnbspfjh-IP-1 + 1 + InParameter + + + lnbspfjh-IP-1 ="2" + + + + fr.insee + lnbspfjh-THEN + 1 + Sequence + + + + fr.insee + lnbspfjh-THEN + 1 + + + + + fr.insee + lnbss8ix-QC + 1 + QuestionConstruct + + + + fr.insee + lm4w5hs6 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lm4w5hs6-IP-1 + 1 + + AVIS_FILTRE + + + + fr.insee + lm4w5hs6-IP-2 + 1 + + AVIS_FILTRE_P + + + + + fr.insee + lm4w39kw-QOP-lm4xzq82 + 1 + OutParameter + + + fr.insee + lm4w5hs6-IP-1 + 1 + InParameter + + + + + fr.insee + lnbss8ix-QOP-lnbt0dc4 + 1 + OutParameter + + + fr.insee + lm4w5hs6-IP-2 + 1 + InParameter + + + lm4w5hs6-IP-1 ="2" or lm4w5hs6-IP-2 ="2" + + + + fr.insee + lm4w5hs6-THEN + 1 + Sequence + + + + fr.insee + lm4w5hs6-THEN + 1 + + + + + fr.insee + lm4vxp7a-QC + 1 + QuestionConstruct + + + + fr.insee + lna2pq02 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lna2pq02-IP-1 + 1 + + AVIS_FILTRE + + + + fr.insee + lna2pq02-IP-2 + 1 + + AVIS_FILTRE_P + + + + + fr.insee + lm4w39kw-QOP-lm4xzq82 + 1 + OutParameter + + + fr.insee + lna2pq02-IP-1 + 1 + InParameter + + + + + fr.insee + lnbss8ix-QOP-lnbt0dc4 + 1 + OutParameter + + + fr.insee + lna2pq02-IP-2 + 1 + InParameter + + + lna2pq02-IP-1 ="1" or lna2pq02-IP-2 ="1" + + + + fr.insee + lna2pq02-THEN + 1 + Sequence + + + + fr.insee + lna2pq02-THEN + 1 + + + + + fr.insee + lm4vudcf-QC + 1 + QuestionConstruct + + + fr.insee + lmrsfyuh-QC + 1 + QuestionConstruct + + + fr.insee + lmrscuvs-QC + 1 + QuestionConstruct + + + fr.insee + lmrsssdi + 1 + IfThenElse + + + fr.insee + lmrtsn5f-QC + 1 + QuestionConstruct + + + fr.insee + lmrtphle + 1 + IfThenElse + + + fr.insee + ln912ymy-QC + 1 + QuestionConstruct + + + fr.insee + ln919mtn-QC + 1 + QuestionConstruct + + + fr.insee + lna2b92s-QC + 1 + QuestionConstruct + + + fr.insee + lna1z5hs-QC + 1 + QuestionConstruct + + + fr.insee + lna1z5hs-CI-0 + 1 + ComputationItem + + + fr.insee + lna2xba8 + 1 + IfThenElse + + + fr.insee + lna2kd8p + 1 + IfThenElse + + + fr.insee + lna38ydl + 1 + IfThenElse + + + fr.insee + lna2hnnt-QC + 1 + QuestionConstruct + + + fr.insee + lna2fkqe-QC + 1 + QuestionConstruct + + + fr.insee + lna2wkh0 + 1 + IfThenElse + + + + fr.insee + lmrsssdi + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lmrsssdi-IP-1 + 1 + + AVIS_NOTICE + + + + + fr.insee + lmrscuvs-QOP-lmrsy3l0 + 1 + OutParameter + + + fr.insee + lmrsssdi-IP-1 + 1 + InParameter + + + lmrsssdi-IP-1 ="2" + + + + fr.insee + lmrsssdi-THEN + 1 + Sequence + + + + fr.insee + lmrsssdi-THEN + 1 + + + + + fr.insee + lmrssoql-QC + 1 + QuestionConstruct + + + + fr.insee + lmrtphle + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lmrtphle-IP-1 + 1 + + AVIS_SITE_NET + + + + + fr.insee + lmrtsn5f-QOP-lmrtv32i + 1 + OutParameter + + + fr.insee + lmrtphle-IP-1 + 1 + InParameter + + + lmrtphle-IP-1 ="2" + + + + fr.insee + lmrtphle-THEN + 1 + Sequence + + + + fr.insee + lmrtphle-THEN + 1 + + + + + fr.insee + lmrtt1a2-QC + 1 + QuestionConstruct + + + + fr.insee + lna2xba8 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lna2xba8-IP-1 + 1 + + AVIS_DIFF6 + + + + + fr.insee + lna1z5hs-QOP-lna3iyg6 + 1 + OutParameter + + + fr.insee + lna2xba8-IP-1 + 1 + InParameter + + + lna2xba8-IP-1 + + + + fr.insee + lna2xba8-THEN + 1 + Sequence + + + + fr.insee + lna2xba8-THEN + 1 + + + + + fr.insee + lna24vso-QC + 1 + QuestionConstruct + + + + fr.insee + lna2kd8p + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lna2kd8p-IP-1 + 1 + + AVIS_DIFF7 + + + + + fr.insee + lna1z5hs-QOP-lna3n335 + 1 + OutParameter + + + fr.insee + lna2kd8p-IP-1 + 1 + InParameter + + + lna2kd8p-IP-1 + + + + fr.insee + lna2kd8p-THEN + 1 + Sequence + + + + fr.insee + lna2kd8p-THEN + 1 + + + + + fr.insee + lna2aygn-QC + 1 + QuestionConstruct + + + + fr.insee + lna38ydl + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lna38ydl-IP-1 + 1 + + RPNBQUEST + + + + + fr.insee + RPNBQUEST + 1 + InParameter + + + fr.insee + lna38ydl-IP-1 + 1 + InParameter + + + not(isnull(lna38ydl-IP-1)) and lna38ydl-IP-1 <> "1" + + + + fr.insee + lna38ydl-THEN + 1 + Sequence + + + + fr.insee + lna38ydl-THEN + 1 + + + + + fr.insee + lna2jxe5-QC + 1 + QuestionConstruct + + + + fr.insee + lna2wkh0 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lna2wkh0-IP-1 + 1 + + AVIS_RMQ_FIN + + + + + fr.insee + lna2fkqe-QOP-lna2wl0f + 1 + OutParameter + + + fr.insee + lna2wkh0-IP-1 + 1 + InParameter + + + lna2wkh0-IP-1 ="1" + + + + fr.insee + lna2wkh0-THEN + 1 + Sequence + + + + fr.insee + lna2wkh0-THEN + 1 + + + + + fr.insee + lna2hbsx-QC + 1 + QuestionConstruct + + + + fr.insee + l473latk-QC + 1 + + VAL_ANNAISS + + + fr.insee + l473latk + 1 + QuestionItem + + + + fr.insee + kwq9wijq-QC + 1 + + DATNAIS_X + + + fr.insee + kwq9wijq + 1 + QuestionItem + + + + fr.insee + kwq9y19w-QC + 1 + + COUPLE + + + fr.insee + kwq9y19w + 1 + QuestionItem + + + + fr.insee + l0qkj23a-QC + 1 + + RAISON_VIE_CJT + + + fr.insee + l0qkj23a + 1 + QuestionItem + + + + fr.insee + li353rhu-QC + 1 + + PRECIS_VIE_CJT + + + fr.insee + li353rhu + 1 + QuestionItem + + + + fr.insee + l34grb6h-QC + 1 + + PRENOM_C + + + fr.insee + l34grb6h + 1 + QuestionItem + + + + fr.insee + kwqa0ism-QC + 1 + + DATNAIS_C + + + fr.insee + kwqa0ism + 1 + QuestionItem + + + + fr.insee + kwqabjga-QC + 1 + + SEXE_CH + + + fr.insee + kwqabjga + 1 + QuestionItem + + + + fr.insee + l4o59ei7-QC + 1 + + LIEUNAIS_CH + + + fr.insee + l4o59ei7 + 1 + QuestionItem + + + + fr.insee + l0quikkt-QC + 1 + + DNAI_CH + + + fr.insee + l0quikkt + 1 + QuestionItem + + + + fr.insee + l4o57595-QC + 1 + + PNAI_CH + + + fr.insee + l4o57595 + 1 + QuestionItem + + + + fr.insee + l7ywou64-QC + 1 + + TRAV_CH + + + fr.insee + l7ywou64 + 1 + QuestionItem + + + + fr.insee + l0qudtd2-QC + 1 + + PROF_CH1 + + + fr.insee + l0qudtd2 + 1 + QuestionItem + + + + fr.insee + lldp4562-QC + 1 + + PROF_CH2 + + + fr.insee + lldp4562 + 1 + QuestionItem + + + + fr.insee + l43zea6v-QC + 1 + + PROF_C2H + + + fr.insee + l43zea6v + 1 + QuestionItem + + + + fr.insee + l0quphwx-QC + 1 + + STATUT_CH + + + fr.insee + l0quphwx + 1 + QuestionItem + + + + fr.insee + llgt315z-QC + 1 + + SAL_FP_CH + + + fr.insee + llgt315z + 1 + QuestionItem + + + + fr.insee + llgt75zv-QC + 1 + + SAL_ENT_CH + + + fr.insee + llgt75zv + 1 + QuestionItem + + + + fr.insee + llde3pgg-QC + 1 + + SEXE_CF + + + fr.insee + llde3pgg + 1 + QuestionItem + + + + fr.insee + lldpi629-QC + 1 + + LIEUNAIS_CF + + + fr.insee + lldpi629 + 1 + QuestionItem + + + + fr.insee + lldp8203-QC + 1 + + DNAI_CF + + + fr.insee + lldp8203 + 1 + QuestionItem + + + + fr.insee + lldpejfa-QC + 1 + + PNAI_CF + + + fr.insee + lldpejfa + 1 + QuestionItem + + + + fr.insee + lldqco3p-QC + 1 + + TRAV_CF + + + fr.insee + lldqco3p + 1 + QuestionItem + + + + fr.insee + l4quaxvt-QC + 1 + + PROF_CF1 + + + fr.insee + l4quaxvt + 1 + QuestionItem + + + + fr.insee + lldpqtrp-QC + 1 + + PROF_CF2 + + + fr.insee + lldpqtrp + 1 + QuestionItem + + + + fr.insee + lldqd2sd-QC + 1 + + PROF_C2F + + + fr.insee + lldqd2sd + 1 + QuestionItem + + + + fr.insee + llmhdvun-QC + 1 + + STATUT_CF + + + fr.insee + llmhdvun + 1 + QuestionItem + + + + fr.insee + llmhi6fd-QC + 1 + + SAL_FP_CF + + + fr.insee + llmhi6fd + 1 + QuestionItem + + + + fr.insee + llnh2qpm-QC + 1 + + SAL_ENT_CF + + + fr.insee + llnh2qpm + 1 + QuestionItem + + + + fr.insee + l27dlmvl-QC + 1 + + ANNEE_U + + + fr.insee + l27dlmvl + 1 + QuestionItem + + + + fr.insee + kwqa4zjf-QC + 1 + + PACS + + + fr.insee + kwqa4zjf + 1 + QuestionItem + + + + fr.insee + l0qu7e2g-QC + 1 + + ANNEE_PACS + + + fr.insee + l0qu7e2g + 1 + QuestionItem + + + + fr.insee + l0qujqzn-QC + 1 + + MARI + + + fr.insee + l0qujqzn + 1 + QuestionItem + + + + fr.insee + l0qul94p-QC + 1 + + ANNEE_MARI + + + fr.insee + l0qul94p + 1 + QuestionItem + + + + fr.insee + l5kszr2f-QC + 1 + + SEPARE + + + fr.insee + l5kszr2f + 1 + QuestionItem + + + + fr.insee + l27dzhpw-QC + 1 + + ANNEE_S + + + fr.insee + l27dzhpw + 1 + QuestionItem + + + + fr.insee + l155mqhc-QC + 1 + + ANNEE_D + + + fr.insee + l155mqhc + 1 + QuestionItem + + + + fr.insee + l43u9qqf-QC + 1 + + ENFAV_C + + + fr.insee + l43u9qqf + 1 + QuestionItem + + + + fr.insee + l43u4x96-QC + 1 + + NBENFAV_C + + + fr.insee + l43u4x96 + 1 + QuestionItem + + + + fr.insee + l5jnmvs2-QC + 1 + + NBENFAV_VENU_C1 + + + fr.insee + l5jnmvs2 + 1 + QuestionItem + + + + fr.insee + l43why6c-QC + 1 + + NBENFAV_VENU_C + + + fr.insee + l43why6c + 1 + QuestionItem + + + + fr.insee + l8lz0355-QC + 1 + + VECU_C + + + fr.insee + l8lz0355 + 1 + QuestionItem + + + + fr.insee + l43xg8do-QC + 1 + + ENF21_AUTPAR_C + + + fr.insee + l43xg8do + 1 + QuestionGrid + + + + fr.insee + l15131wu-QC + 1 + + AUT_UNION + + + fr.insee + l15131wu + 1 + QuestionItem + + + + fr.insee + l43x1amr-QC + 1 + + NB_AUT_UNION + + + fr.insee + l43x1amr + 1 + QuestionItem + + + + fr.insee + kwqa53jx-QC + 1 + + PRENOM_U1 + + + fr.insee + kwqa53jx + 1 + QuestionItem + + + + fr.insee + l4p8skko-QC + 1 + + SEXE_U1H + + + fr.insee + l4p8skko + 1 + QuestionItem + + + + fr.insee + lldenssh-QC + 1 + + SEXE_U1F + + + fr.insee + lldenssh + 1 + QuestionItem + + + + fr.insee + l34fzu5m-QC + 1 + + ANNEE_U1 + + + fr.insee + l34fzu5m + 1 + QuestionItem + + + + fr.insee + l27dlnmq-QC + 1 + + PACS_U1 + + + fr.insee + l27dlnmq + 1 + QuestionItem + + + + fr.insee + l27dns8a-QC + 1 + + ANNEE_PACS_U1 + + + fr.insee + l27dns8a + 1 + QuestionItem + + + + fr.insee + l27duust-QC + 1 + + MARI_U1 + + + fr.insee + l27duust + 1 + QuestionItem + + + + fr.insee + l27e50tv-QC + 1 + + ANNEE_MARI_U1 + + + fr.insee + l27e50tv + 1 + QuestionItem + + + + fr.insee + l5ktf1wn-QC + 1 + + SEPARE_U1 + + + fr.insee + l5ktf1wn + 1 + QuestionItem + + + + fr.insee + l27dzhzv-QC + 1 + + ANNEE_S_U1 + + + fr.insee + l27dzhzv + 1 + QuestionItem + + + + fr.insee + l27e0qyq-QC + 1 + + ANNEE_D_U1 + + + fr.insee + l27e0qyq + 1 + QuestionItem + + + + fr.insee + l4cjg2rp-QC + 1 + + ENFAV_C_U1 + + + fr.insee + l4cjg2rp + 1 + QuestionItem + + + + fr.insee + l4cja8pm-QC + 1 + + NBENFAV_C_U1 + + + fr.insee + l4cja8pm + 1 + QuestionItem + + + + fr.insee + l5ilbb89-QC + 1 + + NBENFAV_C1_VENU_U1 + + + fr.insee + l5ilbb89 + 1 + QuestionItem + + + + fr.insee + l4o5x7yq-QC + 1 + + NBENFAV_C_VENU_U1 + + + fr.insee + l4o5x7yq + 1 + QuestionItem + + + + fr.insee + l9il0i0h-QC + 1 + + AUT_U2 + + + fr.insee + l9il0i0h + 1 + QuestionItem + + + + fr.insee + l9ilcol6-QC + 1 + + PRENOM_U2 + + + fr.insee + l9ilcol6 + 1 + QuestionItem + + + + fr.insee + l9ikne2h-QC + 1 + + SEXE_U2H + + + fr.insee + l9ikne2h + 1 + QuestionItem + + + + fr.insee + lldetngg-QC + 1 + + SEXE_U2F + + + fr.insee + lldetngg + 1 + QuestionItem + + + + fr.insee + l9ikn3ea-QC + 1 + + ANNEE_U2 + + + fr.insee + l9ikn3ea + 1 + QuestionItem + + + + fr.insee + l9il24ft-QC + 1 + + PACS_U2 + + + fr.insee + l9il24ft + 1 + QuestionItem + + + + fr.insee + l9ikxoxa-QC + 1 + + ANNEE_PACS_U2 + + + fr.insee + l9ikxoxa + 1 + QuestionItem + + + + fr.insee + l9ikvx4n-QC + 1 + + MARI_U2 + + + fr.insee + l9ikvx4n + 1 + QuestionItem + + + + fr.insee + l9iklcix-QC + 1 + + ANNEE_MARI_U2 + + + fr.insee + l9iklcix + 1 + QuestionItem + + + + fr.insee + l9ikqlwv-QC + 1 + + SEPARE_U2 + + + fr.insee + l9ikqlwv + 1 + QuestionItem + + + + fr.insee + l9ikze1y-QC + 1 + + ANNEE_S_U2 + + + fr.insee + l9ikze1y + 1 + QuestionItem + + + + fr.insee + l9ikmjqm-QC + 1 + + ANNEE_D_U2 + + + fr.insee + l9ikmjqm + 1 + QuestionItem + + + + fr.insee + l9ikxndo-QC + 1 + + ENFAV_C_U2 + + + fr.insee + l9ikxndo + 1 + QuestionItem + + + + fr.insee + l9ikuqoe-QC + 1 + + NBENFAV_C_U2 + + + fr.insee + l9ikuqoe + 1 + QuestionItem + + + + fr.insee + l9ikekzu-QC + 1 + + NBENFAV_C1_VENU_U2 + + + fr.insee + l9ikekzu + 1 + QuestionItem + + + + fr.insee + l9iks078-QC + 1 + + NBENFAV_C_VENU_U2 + + + fr.insee + l9iks078 + 1 + QuestionItem + + + + fr.insee + kwqigxtx-QC + 1 + + ENF + + + fr.insee + kwqigxtx + 1 + QuestionItem + + + + fr.insee + kwqi5zsm-QC + 1 + + NBENF + + + fr.insee + kwqi5zsm + 1 + QuestionItem + + + + fr.insee + l1gkeq97-QC + 1 + + NBENF_ADOP1 + + + fr.insee + l1gkeq97 + 1 + QuestionItem + + + + fr.insee + l7rlim3p-QC + 1 + + NBENF_ADOP + + + fr.insee + l7rlim3p + 1 + QuestionItem + + + + fr.insee + l1gi76wy-QC + 1 + + LANGUE1_ENF + + + fr.insee + l1gi76wy + 1 + QuestionItem + + + + fr.insee + l445u9x8-QC + 1 + + LANGUE2_ENF + + + fr.insee + l445u9x8 + 1 + QuestionItem + + + + fr.insee + l4idom4o-QC + 1 + + NBENFLOG + + + fr.insee + l4idom4o + 1 + QuestionItem + + + + fr.insee + l4lcr3vb-QC + 1 + + CBENFLOG + + + fr.insee + l4lcr3vb + 1 + QuestionItem + + + + fr.insee + l447nuda-QC + 1 + + NBENFAIL + + + fr.insee + l447nuda + 1 + QuestionItem + + + + fr.insee + l4lfzig7-QC + 1 + + CBENFAIL + + + fr.insee + l4lfzig7 + 1 + QuestionItem + + + + fr.insee + l446nede-QC + 1 + + PRENOM_ENFLOG1 + + + fr.insee + l446nede + 1 + QuestionItem + + + + fr.insee + kwqjk80w-QC + 1 + + SEXE_ENFLOG1 + + + fr.insee + kwqjk80w + 1 + QuestionItem + + + + fr.insee + kwqjmq2o-QC + 1 + + ANAI_ENFLOG1 + + + fr.insee + kwqjmq2o + 1 + QuestionItem + + + + fr.insee + l4qtls9o-QC + 1 + + NEFRANCE_ENFLOG1 + + + fr.insee + l4qtls9o + 1 + QuestionItem + + + + fr.insee + kwqjol7e-QC + 1 + + PARENT_VIT_ENFLOG1 + + + fr.insee + kwqjol7e + 1 + QuestionItem + + + + fr.insee + l4iaicn8-QC + 1 + + PARENT_FR_ENFLOG1 + + + fr.insee + l4iaicn8 + 1 + QuestionItem + + + + fr.insee + l4pav1bd-QC + 1 + + PARENT_DEP_ENFLOG1 + + + fr.insee + l4pav1bd + 1 + QuestionItem + + + + fr.insee + l4parilg-QC + 1 + + PARENT_COM_ENFLOG1 + + + fr.insee + l4parilg + 1 + QuestionItem + + + + fr.insee + l4pavrnh-QC + 1 + + PARENT_PAY_ENFLOG1 + + + fr.insee + l4pavrnh + 1 + QuestionItem + + + + fr.insee + l1ez78st-QC + 1 + + PARENT_FREQ_ENFLOG1 + + + fr.insee + l1ez78st + 1 + QuestionItem + + + + fr.insee + l4iain70-QC + 1 + + PARENT_DORT_ENFLOG1 + + + fr.insee + l4iain70 + 1 + QuestionItem + + + + fr.insee + kwqk3gx2-QC + 1 + + PARENT_VECU_ENFLOG1 + + + fr.insee + kwqk3gx2 + 1 + QuestionItem + + + + fr.insee + la6ydnyh-QC + 1 + + SEP_AUT_PAR_ENFLOG1 + + + fr.insee + la6ydnyh + 1 + QuestionItem + + + + fr.insee + kwqjmy9d-QC + 1 + + RESID_ENFLOG1 + + + fr.insee + kwqjmy9d + 1 + QuestionItem + + + + fr.insee + l1gia5uh-QC + 1 + + SANTE_ENFLOG1 + + + fr.insee + l1gia5uh + 1 + QuestionGrid + + + + fr.insee + l4i9118b-QC + 1 + + PRENOM_ENFLOG2 + + + fr.insee + l4i9118b + 1 + QuestionItem + + + + fr.insee + l4i8zu5m-QC + 1 + + SEXE_ENFLOG2 + + + fr.insee + l4i8zu5m + 1 + QuestionItem + + + + fr.insee + l4ia7rxn-QC + 1 + + ANAI_ENFLOG2 + + + fr.insee + l4ia7rxn + 1 + QuestionItem + + + + fr.insee + l4qtpg9f-QC + 1 + + NEFRANCE_ENFLOG2 + + + fr.insee + l4qtpg9f + 1 + QuestionItem + + + + fr.insee + l4iano52-QC + 1 + + PARENT_VIT_ENFLOG2 + + + fr.insee + l4iano52 + 1 + QuestionItem + + + + fr.insee + kwqjmujx-QC + 1 + + PARENT_FR_ENFLOG2 + + + fr.insee + kwqjmujx + 1 + QuestionItem + + + + fr.insee + l4pannoa-QC + 1 + + PARENT_DEP_ENFLOG2 + + + fr.insee + l4pannoa + 1 + QuestionItem + + + + fr.insee + l4pasuts-QC + 1 + + PARENT_COM_ENFLOG2 + + + fr.insee + l4pasuts + 1 + QuestionItem + + + + fr.insee + l4pbc5wa-QC + 1 + + PARENT_PAY_ENFLOG2 + + + fr.insee + l4pbc5wa + 1 + QuestionItem + + + + fr.insee + l4idgpbr-QC + 1 + + PARENT_FREQ_ENFLOG2 + + + fr.insee + l4idgpbr + 1 + QuestionItem + + + + fr.insee + l4486unb-QC + 1 + + PARENT_DORT_ENFLOG2 + + + fr.insee + l4486unb + 1 + QuestionItem + + + + fr.insee + l4ia5o28-QC + 1 + + PARENT_VECU_ENFLOG2 + + + fr.insee + l4ia5o28 + 1 + QuestionItem + + + + fr.insee + la6yjh65-QC + 1 + + SEP_AUT_PAR_ENFLOG2 + + + fr.insee + la6yjh65 + 1 + QuestionItem + + + + fr.insee + l4idgqx9-QC + 1 + + RESID_ENFLOG2 + + + fr.insee + l4idgqx9 + 1 + QuestionItem + + + + fr.insee + l4ia7y0p-QC + 1 + + SANTE_ENFLOG2 + + + fr.insee + l4ia7y0p + 1 + QuestionGrid + + + + fr.insee + l4ld0ziw-QC + 1 + + PRENOM_ENFLOG3 + + + fr.insee + l4ld0ziw + 1 + QuestionItem + + + + fr.insee + l4lcp4co-QC + 1 + + SEXE_ENFLOG3 + + + fr.insee + l4lcp4co + 1 + QuestionItem + + + + fr.insee + l4ld3y0j-QC + 1 + + ANAI_ENFLOG3 + + + fr.insee + l4ld3y0j + 1 + QuestionItem + + + + fr.insee + l4qty53i-QC + 1 + + NEFRANCE_ENFLOG3 + + + fr.insee + l4qty53i + 1 + QuestionItem + + + + fr.insee + l4lct7cb-QC + 1 + + PARENT_VIT_ENFLOG3 + + + fr.insee + l4lct7cb + 1 + QuestionItem + + + + fr.insee + l4ld827i-QC + 1 + + PARENT_FR_ENFLOG3 + + + fr.insee + l4ld827i + 1 + QuestionItem + + + + fr.insee + l4pat7vx-QC + 1 + + PARENT_DEP_ENFLOG3 + + + fr.insee + l4pat7vx + 1 + QuestionItem + + + + fr.insee + l4pavp6y-QC + 1 + + PARENT_COM_ENFLOG3 + + + fr.insee + l4pavp6y + 1 + QuestionItem + + + + fr.insee + l4pb77tv-QC + 1 + + PARENT_PAY_ENFLOG3 + + + fr.insee + l4pb77tv + 1 + QuestionItem + + + + fr.insee + l4ld15su-QC + 1 + + PARENT_FREQ_ENFLOG3 + + + fr.insee + l4ld15su + 1 + QuestionItem + + + + fr.insee + l4ld0zmv-QC + 1 + + PARENT_DORT_ENFLOG3 + + + fr.insee + l4ld0zmv + 1 + QuestionItem + + + + fr.insee + l4ld0jea-QC + 1 + + PARENT_VECU_ENFLOG3 + + + fr.insee + l4ld0jea + 1 + QuestionItem + + + + fr.insee + la6y9flo-QC + 1 + + SEP_AUT_PAR_ENFLOG3 + + + fr.insee + la6y9flo + 1 + QuestionItem + + + + fr.insee + l4lde13h-QC + 1 + + RESID_ENFLOG3 + + + fr.insee + l4lde13h + 1 + QuestionItem + + + + fr.insee + l4lcuoke-QC + 1 + + SANTE_ENFLOG3 + + + fr.insee + l4lcuoke + 1 + QuestionGrid + + + + fr.insee + l4lec0rk-QC + 1 + + PRENOM_ENFLOG4 + + + fr.insee + l4lec0rk + 1 + QuestionItem + + + + fr.insee + l4lefdoh-QC + 1 + + SEXE_ENFLOG4 + + + fr.insee + l4lefdoh + 1 + QuestionItem + + + + fr.insee + l4le9rs3-QC + 1 + + ANAI_ENFLOG4 + + + fr.insee + l4le9rs3 + 1 + QuestionItem + + + + fr.insee + l4qtvt71-QC + 1 + + NEFRANCE_ENFLOG4 + + + fr.insee + l4qtvt71 + 1 + QuestionItem + + + + fr.insee + l4ler7fu-QC + 1 + + PARENT_VIT_ENFLOG4 + + + fr.insee + l4ler7fu + 1 + QuestionItem + + + + fr.insee + l4lemegm-QC + 1 + + PARENT_FR_ENFLOG4 + + + fr.insee + l4lemegm + 1 + QuestionItem + + + + fr.insee + l4payjff-QC + 1 + + PARENT_DEP_ENFLOG4 + + + fr.insee + l4payjff + 1 + QuestionItem + + + + fr.insee + l4paz6m4-QC + 1 + + PARENT_COM_ENFLOG4 + + + fr.insee + l4paz6m4 + 1 + QuestionItem + + + + fr.insee + l4pbax4x-QC + 1 + + PARENT_PAY_ENFLOG4 + + + fr.insee + l4pbax4x + 1 + QuestionItem + + + + fr.insee + l4letwtq-QC + 1 + + PARENT_FREQ_ENFLOG4 + + + fr.insee + l4letwtq + 1 + QuestionItem + + + + fr.insee + l4letk9j-QC + 1 + + PARENT_DORT_ENFLOG4 + + + fr.insee + l4letk9j + 1 + QuestionItem + + + + fr.insee + l4lekh2t-QC + 1 + + PARENT_VECU_ENFLOG4 + + + fr.insee + l4lekh2t + 1 + QuestionItem + + + + fr.insee + la6y7rno-QC + 1 + + SEP_AUT_PAR_ENFLOG4 + + + fr.insee + la6y7rno + 1 + QuestionItem + + + + fr.insee + l4lexatl-QC + 1 + + RESID_ENFLOG4 + + + fr.insee + l4lexatl + 1 + QuestionItem + + + + fr.insee + l4lec2qz-QC + 1 + + SANTE_ENFLOG4 + + + fr.insee + l4lec2qz + 1 + QuestionGrid + + + + fr.insee + l4leulqw-QC + 1 + + PRENOM_ENFLOG5 + + + fr.insee + l4leulqw + 1 + QuestionItem + + + + fr.insee + l4lem0yg-QC + 1 + + SEXE_ENFLOG5 + + + fr.insee + l4lem0yg + 1 + QuestionItem + + + + fr.insee + l4lffj1f-QC + 1 + + ANAI_ENFLOG5 + + + fr.insee + l4lffj1f + 1 + QuestionItem + + + + fr.insee + l4qtm8di-QC + 1 + + NEFRANCE_ENFLOG5 + + + fr.insee + l4qtm8di + 1 + QuestionItem + + + + fr.insee + l4lfye1g-QC + 1 + + PARENT_VIT_ENFLOG5 + + + fr.insee + l4lfye1g + 1 + QuestionItem + + + + fr.insee + l4lfoek4-QC + 1 + + PARENT_FR_ENFLOG5 + + + fr.insee + l4lfoek4 + 1 + QuestionItem + + + + fr.insee + l4pauqgi-QC + 1 + + PARENT_DEP_ENFLOG5 + + + fr.insee + l4pauqgi + 1 + QuestionItem + + + + fr.insee + l4paw4ax-QC + 1 + + PARENT_COM_ENFLOG5 + + + fr.insee + l4paw4ax + 1 + QuestionItem + + + + fr.insee + l4pb234a-QC + 1 + + PARENT_PAY_ENFLOG5 + + + fr.insee + l4pb234a + 1 + QuestionItem + + + + fr.insee + l8n262ck-QC + 1 + + PARENT_FREQ_ENFLOG5 + + + fr.insee + l8n262ck + 1 + QuestionItem + + + + fr.insee + l4lfr4qa-QC + 1 + + PARENT_DORT_ENFLOG5 + + + fr.insee + l4lfr4qa + 1 + QuestionItem + + + + fr.insee + l4lfvape-QC + 1 + + PARENT_VECU_ENFLOG5 + + + fr.insee + l4lfvape + 1 + QuestionItem + + + + fr.insee + la6yfjnf-QC + 1 + + SEP_AUT_PAR_ENFLOG5 + + + fr.insee + la6yfjnf + 1 + QuestionItem + + + + fr.insee + l4lg25av-QC + 1 + + RESID_ENFLOG5 + + + fr.insee + l4lg25av + 1 + QuestionItem + + + + fr.insee + l4lfclty-QC + 1 + + SANTE_ENFLOG5 + + + fr.insee + l4lfclty + 1 + QuestionGrid + + + + fr.insee + l8n2umnw-QC + 1 + + PRENOM_ENFLOG6 + + + fr.insee + l8n2umnw + 1 + QuestionItem + + + + fr.insee + l8n2e1mr-QC + 1 + + SEXE_ENFLOG6 + + + fr.insee + l8n2e1mr + 1 + QuestionItem + + + + fr.insee + l8n2lctv-QC + 1 + + ANAI_ENFLOG6 + + + fr.insee + l8n2lctv + 1 + QuestionItem + + + + fr.insee + l8n2gmuq-QC + 1 + + NEFRANCE_ENFLOG6 + + + fr.insee + l8n2gmuq + 1 + QuestionItem + + + + fr.insee + l8n2ilpb-QC + 1 + + PARENT_VIT_ENFLOG6 + + + fr.insee + l8n2ilpb + 1 + QuestionItem + + + + fr.insee + l8n1zy7o-QC + 1 + + PARENT_FR_ENFLOG6 + + + fr.insee + l8n1zy7o + 1 + QuestionItem + + + + fr.insee + l8n2awb0-QC + 1 + + PARENT_DEP_ENFLOG6 + + + fr.insee + l8n2awb0 + 1 + QuestionItem + + + + fr.insee + l8n1u6yt-QC + 1 + + PARENT_COM_ENFLOG6 + + + fr.insee + l8n1u6yt + 1 + QuestionItem + + + + fr.insee + l8n20r8i-QC + 1 + + PARENT_PAY_ENFLOG6 + + + fr.insee + l8n20r8i + 1 + QuestionItem + + + + fr.insee + l4lfnqiq-QC + 1 + + PARENT_FREQ_ENFLOG6 + + + fr.insee + l4lfnqiq + 1 + QuestionItem + + + + fr.insee + l8n29jww-QC + 1 + + PARENT_DORT_ENFLOG6 + + + fr.insee + l8n29jww + 1 + QuestionItem + + + + fr.insee + l8n1p0yj-QC + 1 + + PARENT_VECU_ENFLOG6 + + + fr.insee + l8n1p0yj + 1 + QuestionItem + + + + fr.insee + la6y7ni0-QC + 1 + + SEP_AUT_PAR_ENFLOG6 + + + fr.insee + la6y7ni0 + 1 + QuestionItem + + + + fr.insee + l8n1u2kg-QC + 1 + + RESID_ENFLOG6 + + + fr.insee + l8n1u2kg + 1 + QuestionItem + + + + fr.insee + l8n2hdgw-QC + 1 + + SANTE_ENFLOG6 + + + fr.insee + l8n2hdgw + 1 + QuestionGrid + + + + fr.insee + l8n3pb4f-QC + 1 + + PRENOM_ENFLOG7 + + + fr.insee + l8n3pb4f + 1 + QuestionItem + + + + fr.insee + l8n3mik2-QC + 1 + + SEXE_ENFLOG7 + + + fr.insee + l8n3mik2 + 1 + QuestionItem + + + + fr.insee + l8n3jmk8-QC + 1 + + ANAI_ENFLOG7 + + + fr.insee + l8n3jmk8 + 1 + QuestionItem + + + + fr.insee + l8n36fv3-QC + 1 + + NEFRANCE_ENFLOG7 + + + fr.insee + l8n36fv3 + 1 + QuestionItem + + + + fr.insee + l8n3ff6s-QC + 1 + + PARENT_VIT_ENFLOG7 + + + fr.insee + l8n3ff6s + 1 + QuestionItem + + + + fr.insee + l8n3b7uo-QC + 1 + + PARENT_FR_ENFLOG7 + + + fr.insee + l8n3b7uo + 1 + QuestionItem + + + + fr.insee + l8n3fzap-QC + 1 + + PARENT_DEP_ENFLOG7 + + + fr.insee + l8n3fzap + 1 + QuestionItem + + + + fr.insee + l8n3485v-QC + 1 + + PARENT_COM_ENFLOG7 + + + fr.insee + l8n3485v + 1 + QuestionItem + + + + fr.insee + l8n3burz-QC + 1 + + PARENT_PAY_ENFLOG7 + + + fr.insee + l8n3burz + 1 + QuestionItem + + + + fr.insee + l8n32xk9-QC + 1 + + PARENT_FREQ_ENFLOG7 + + + fr.insee + l8n32xk9 + 1 + QuestionItem + + + + fr.insee + l8n2x7q4-QC + 1 + + PARENT_DORT_ENFLOG7 + + + fr.insee + l8n2x7q4 + 1 + QuestionItem + + + + fr.insee + l8n3ary8-QC + 1 + + PARENT_VECU_ENFLOG7 + + + fr.insee + l8n3ary8 + 1 + QuestionItem + + + + fr.insee + la6y542q-QC + 1 + + SEP_AUT_PAR_ENFLOG7 + + + fr.insee + la6y542q + 1 + QuestionItem + + + + fr.insee + l8n2t39d-QC + 1 + + RESID_ENFLOG7 + + + fr.insee + l8n2t39d + 1 + QuestionItem + + + + fr.insee + l8n3bp4o-QC + 1 + + SANTE_ENFLOG7 + + + fr.insee + l8n3bp4o + 1 + QuestionGrid + + + + fr.insee + l8n4cayp-QC + 1 + + PRENOM_ENFLOG8 + + + fr.insee + l8n4cayp + 1 + QuestionItem + + + + fr.insee + l8n406m9-QC + 1 + + SEXE_ENFLOG8 + + + fr.insee + l8n406m9 + 1 + QuestionItem + + + + fr.insee + l8n3tya0-QC + 1 + + ANAI_ENFLOG8 + + + fr.insee + l8n3tya0 + 1 + QuestionItem + + + + fr.insee + l8n3vr8b-QC + 1 + + NEFRANCE_ENFLOG8 + + + fr.insee + l8n3vr8b + 1 + QuestionItem + + + + fr.insee + l8n427a2-QC + 1 + + PARENT_VIT_ENFLOG8 + + + fr.insee + l8n427a2 + 1 + QuestionItem + + + + fr.insee + l8n41hvu-QC + 1 + + PARENT_FR_ENFLOG8 + + + fr.insee + l8n41hvu + 1 + QuestionItem + + + + fr.insee + l8n41c78-QC + 1 + + PARENT_DEP_ENFLOG8 + + + fr.insee + l8n41c78 + 1 + QuestionItem + + + + fr.insee + l8n3tbmd-QC + 1 + + PARENT_COM_ENFLOG8 + + + fr.insee + l8n3tbmd + 1 + QuestionItem + + + + fr.insee + l8n40r7t-QC + 1 + + PARENT_PAY_ENFLOG8 + + + fr.insee + l8n40r7t + 1 + QuestionItem + + + + fr.insee + l8n3fpp7-QC + 1 + + PARENT_FREQ_ENFLOG8 + + + fr.insee + l8n3fpp7 + 1 + QuestionItem + + + + fr.insee + l8n3xb0z-QC + 1 + + PARENT_DORT_ENFLOG8 + + + fr.insee + l8n3xb0z + 1 + QuestionItem + + + + fr.insee + l8n3tjlw-QC + 1 + + PARENT_VECU_ENFLOG8 + + + fr.insee + l8n3tjlw + 1 + QuestionItem + + + + fr.insee + la6v947r-QC + 1 + + SEP_AUT_PAR_ENFLOG8 + + + fr.insee + la6v947r + 1 + QuestionItem + + + + fr.insee + l8n3ocd5-QC + 1 + + RESID_ENFLOG8 + + + fr.insee + l8n3ocd5 + 1 + QuestionItem + + + + fr.insee + l8n3uqr2-QC + 1 + + SANTE_ENFLOG8 + + + fr.insee + l8n3uqr2 + 1 + QuestionGrid + + + + fr.insee + l4idug6p-QC + 1 + + PRENOM_ENFAIL1 + + + fr.insee + l4idug6p + 1 + QuestionItem + + + + fr.insee + kwqix1j5-QC + 1 + + SEXE_ENFAIL1 + + + fr.insee + kwqix1j5 + 1 + QuestionItem + + + + fr.insee + kwqj561a-QC + 1 + + ANAI_ENFAIL1 + + + fr.insee + kwqj561a + 1 + QuestionItem + + + + fr.insee + l4cjlk0i-QC + 1 + + NEFRANCE_ENFAIL1 + + + fr.insee + l4cjlk0i + 1 + QuestionItem + + + + fr.insee + l4cjivdg-QC + 1 + + PARENT_VIT_ENFAIL1 + + + fr.insee + l4cjivdg + 1 + QuestionItem + + + + fr.insee + l8lzt19v-QC + 1 + + PARENT_VECU_ENFAIL1 + + + fr.insee + l8lzt19v + 1 + QuestionItem + + + + fr.insee + l4485tkr-QC + 1 + + DC_ENFAIL1 + + + fr.insee + l4485tkr + 1 + QuestionItem + + + + fr.insee + kwqkh05l-QC + 1 + + AG_DC_ENFAIL1 + + + fr.insee + kwqkh05l + 1 + QuestionItem + + + + fr.insee + kwqk3ki3-QC + 1 + + AG_DEPART_ENFAIL1 + + + fr.insee + kwqk3ki3 + 1 + QuestionItem + + + + fr.insee + kwqkmusz-QC + 1 + + PARENT_FREQ_ENFAIL1 + + + fr.insee + kwqkmusz + 1 + QuestionItem + + + + fr.insee + kwqjp9yr-QC + 1 + + FR_ENFAIL1 + + + fr.insee + kwqjp9yr + 1 + QuestionItem + + + + fr.insee + l4onskib-QC + 1 + + DEP_ENFAIL1 + + + fr.insee + l4onskib + 1 + QuestionItem + + + + fr.insee + l4onsq99-QC + 1 + + COM_ENFAIL1 + + + fr.insee + l4onsq99 + 1 + QuestionItem + + + + fr.insee + l4onsf7y-QC + 1 + + PAY_ENFAIL1 + + + fr.insee + l4onsf7y + 1 + QuestionItem + + + + fr.insee + kwqk3a58-QC + 1 + + LOG_ENFAIL1 + + + fr.insee + kwqk3a58 + 1 + QuestionItem + + + + fr.insee + l44849iu-QC + 1 + + AUT_PAR_ENFAIL1 + + + fr.insee + l44849iu + 1 + QuestionItem + + + + fr.insee + kwqj7xh6-QC + 1 + + DORT_ENFAIL1 + + + fr.insee + kwqj7xh6 + 1 + QuestionItem + + + + fr.insee + l4o74e6d-QC + 1 + + SEP_AUT_PAR_ENFAIL1 + + + fr.insee + l4o74e6d + 1 + QuestionItem + + + + fr.insee + l1gknpsx-QC + 1 + + RESID_ENFAIL1 + + + fr.insee + l1gknpsx + 1 + QuestionItem + + + + fr.insee + l1gi8vrf-QC + 1 + + SANTE_ENFAIL1 + + + fr.insee + l1gi8vrf + 1 + QuestionGrid + + + + fr.insee + l4lg1tus-QC + 1 + + PRENOM_ENFAIL2 + + + fr.insee + l4lg1tus + 1 + QuestionItem + + + + fr.insee + l4lgd8bs-QC + 1 + + SEXE_ENFAIL2 + + + fr.insee + l4lgd8bs + 1 + QuestionItem + + + + fr.insee + l4lgjbi8-QC + 1 + + ANAI_ENFAIL2 + + + fr.insee + l4lgjbi8 + 1 + QuestionItem + + + + fr.insee + l4lgtwy7-QC + 1 + + NEFRANCE_ENFAIL2 + + + fr.insee + l4lgtwy7 + 1 + QuestionItem + + + + fr.insee + l4lgqbdk-QC + 1 + + PARENT_VIT_ENFAIL2 + + + fr.insee + l4lgqbdk + 1 + QuestionItem + + + + fr.insee + l8lzthqx-QC + 1 + + PARENT_VECU_ENFAIL2 + + + fr.insee + l8lzthqx + 1 + QuestionItem + + + + fr.insee + l4lh1bvw-QC + 1 + + DC_ENFAIL2 + + + fr.insee + l4lh1bvw + 1 + QuestionItem + + + + fr.insee + l4lhc03p-QC + 1 + + AG_DC_ENFAIL2 + + + fr.insee + l4lhc03p + 1 + QuestionItem + + + + fr.insee + l4lhkbmw-QC + 1 + + AG_DEPART_ENFAIL2 + + + fr.insee + l4lhkbmw + 1 + QuestionItem + + + + fr.insee + l4liqyis-QC + 1 + + PARENT_FREQ_ENFAIL2 + + + fr.insee + l4liqyis + 1 + QuestionItem + + + + fr.insee + l4lj22ar-QC + 1 + + FR_ENFAIL2 + + + fr.insee + l4lj22ar + 1 + QuestionItem + + + + fr.insee + l4oo8gk0-QC + 1 + + DEP_ENFAIL2 + + + fr.insee + l4oo8gk0 + 1 + QuestionItem + + + + fr.insee + l4oo2unu-QC + 1 + + COM_ENFAIL2 + + + fr.insee + l4oo2unu + 1 + QuestionItem + + + + fr.insee + l4ooebmj-QC + 1 + + PAY_ENFAIL2 + + + fr.insee + l4ooebmj + 1 + QuestionItem + + + + fr.insee + l4liztyl-QC + 1 + + LOG_ENFAIL2 + + + fr.insee + l4liztyl + 1 + QuestionItem + + + + fr.insee + l4lk1w8p-QC + 1 + + AUT_PAR_ENFAIL2 + + + fr.insee + l4lk1w8p + 1 + QuestionItem + + + + fr.insee + l4ljkmaj-QC + 1 + + DORT_ENFAIL2 + + + fr.insee + l4ljkmaj + 1 + QuestionItem + + + + fr.insee + l4o73m0u-QC + 1 + + SEP_AUT_PAR_ENFAIL2 + + + fr.insee + l4o73m0u + 1 + QuestionItem + + + + fr.insee + l4lmxke4-QC + 1 + + RESID_ENFAIL2 + + + fr.insee + l4lmxke4 + 1 + QuestionItem + + + + fr.insee + l4ljj44i-QC + 1 + + SANTE_ENFAIL2 + + + fr.insee + l4ljj44i + 1 + QuestionGrid + + + + fr.insee + l4lg3j5g-QC + 1 + + PRENOM_ENFAIL3 + + + fr.insee + l4lg3j5g + 1 + QuestionItem + + + + fr.insee + l4lg6nx5-QC + 1 + + SEXE_ENFAIL3 + + + fr.insee + l4lg6nx5 + 1 + QuestionItem + + + + fr.insee + l4lgenh5-QC + 1 + + ANAI_ENFAIL3 + + + fr.insee + l4lgenh5 + 1 + QuestionItem + + + + fr.insee + l4lh0q7i-QC + 1 + + NEFRANCE_ENFAIL3 + + + fr.insee + l4lh0q7i + 1 + QuestionItem + + + + fr.insee + l4lgysxq-QC + 1 + + PARENT_VIT_ENFAIL3 + + + fr.insee + l4lgysxq + 1 + QuestionItem + + + + fr.insee + l8m0bu1o-QC + 1 + + PARENT_VECU_ENFAIL3 + + + fr.insee + l8m0bu1o + 1 + QuestionItem + + + + fr.insee + l4lh0ofl-QC + 1 + + DC_ENFAIL3 + + + fr.insee + l4lh0ofl + 1 + QuestionItem + + + + fr.insee + l4lhbuxg-QC + 1 + + AG_DC_ENFAIL3 + + + fr.insee + l4lhbuxg + 1 + QuestionItem + + + + fr.insee + l4lhdubm-QC + 1 + + AG_DEPART_ENFAIL3 + + + fr.insee + l4lhdubm + 1 + QuestionItem + + + + fr.insee + l4lirpfm-QC + 1 + + PARENT_FREQ_ENFAIL3 + + + fr.insee + l4lirpfm + 1 + QuestionItem + + + + fr.insee + l4lj2cqg-QC + 1 + + FR_ENFAIL3 + + + fr.insee + l4lj2cqg + 1 + QuestionItem + + + + fr.insee + l4oo03nq-QC + 1 + + DEP_ENFAIL3 + + + fr.insee + l4oo03nq + 1 + QuestionItem + + + + fr.insee + l4oo41j6-QC + 1 + + COM_ENFAIL3 + + + fr.insee + l4oo41j6 + 1 + QuestionItem + + + + fr.insee + l4ooe2gj-QC + 1 + + PAY_ENFAIL3 + + + fr.insee + l4ooe2gj + 1 + QuestionItem + + + + fr.insee + l4ljddzv-QC + 1 + + LOG_ENFAIL3 + + + fr.insee + l4ljddzv + 1 + QuestionItem + + + + fr.insee + l4lmjzwd-QC + 1 + + AUT_PAR_ENFAIL3 + + + fr.insee + l4lmjzwd + 1 + QuestionItem + + + + fr.insee + l4ljm6cp-QC + 1 + + DORT_ENFAIL3 + + + fr.insee + l4ljm6cp + 1 + QuestionItem + + + + fr.insee + l4o7gt0n-QC + 1 + + SEP_AUT_PAR_ENFAIL3 + + + fr.insee + l4o7gt0n + 1 + QuestionItem + + + + fr.insee + l4lmszob-QC + 1 + + RESID_ENFAIL3 + + + fr.insee + l4lmszob + 1 + QuestionItem + + + + fr.insee + l4ljg7fn-QC + 1 + + SANTE_ENFAIL3 + + + fr.insee + l4ljg7fn + 1 + QuestionGrid + + + + fr.insee + l4lg5t9v-QC + 1 + + PRENOM_ENFAIL4 + + + fr.insee + l4lg5t9v + 1 + QuestionItem + + + + fr.insee + l4lg3wub-QC + 1 + + SEXE_ENFAIL4 + + + fr.insee + l4lg3wub + 1 + QuestionItem + + + + fr.insee + l4lgfphb-QC + 1 + + ANAI_ENFAIL4 + + + fr.insee + l4lgfphb + 1 + QuestionItem + + + + fr.insee + l4lgr9ny-QC + 1 + + NEFRANCE_ENFAIL4 + + + fr.insee + l4lgr9ny + 1 + QuestionItem + + + + fr.insee + l4lgo4yb-QC + 1 + + PARENT_VIT_ENFAIL4 + + + fr.insee + l4lgo4yb + 1 + QuestionItem + + + + fr.insee + l8m03w7m-QC + 1 + + PARENT_VECU_ENFAIL4 + + + fr.insee + l8m03w7m + 1 + QuestionItem + + + + fr.insee + l4lh1a42-QC + 1 + + DC_ENFAIL4 + + + fr.insee + l4lh1a42 + 1 + QuestionItem + + + + fr.insee + l4lhbfxh-QC + 1 + + AG_DC_ENFAIL4 + + + fr.insee + l4lhbfxh + 1 + QuestionItem + + + + fr.insee + l4lho0e2-QC + 1 + + AG_DEPART_ENFAIL4 + + + fr.insee + l4lho0e2 + 1 + QuestionItem + + + + fr.insee + l4lj5kv6-QC + 1 + + PARENT_FREQ_ENFAIL4 + + + fr.insee + l4lj5kv6 + 1 + QuestionItem + + + + fr.insee + l4lj0iea-QC + 1 + + FR_ENFAIL4 + + + fr.insee + l4lj0iea + 1 + QuestionItem + + + + fr.insee + l4oo4x1t-QC + 1 + + DEP_ENFAIL4 + + + fr.insee + l4oo4x1t + 1 + QuestionItem + + + + fr.insee + l4onwhrf-QC + 1 + + COM_ENFAIL4 + + + fr.insee + l4onwhrf + 1 + QuestionItem + + + + fr.insee + l4oo1817-QC + 1 + + PAY_ENFAIL4 + + + fr.insee + l4oo1817 + 1 + QuestionItem + + + + fr.insee + l4lixcs2-QC + 1 + + LOG_ENFAIL4 + + + fr.insee + l4lixcs2 + 1 + QuestionItem + + + + fr.insee + l4lms9a0-QC + 1 + + AUT_PAR_ENFAIL4 + + + fr.insee + l4lms9a0 + 1 + QuestionItem + + + + fr.insee + l4ljmpiu-QC + 1 + + DORT_ENFAIL4 + + + fr.insee + l4ljmpiu + 1 + QuestionItem + + + + fr.insee + l4o7jdze-QC + 1 + + SEP_AUT_PAR_ENFAIL4 + + + fr.insee + l4o7jdze + 1 + QuestionItem + + + + fr.insee + l4lmvah7-QC + 1 + + RESID_ENFAIL4 + + + fr.insee + l4lmvah7 + 1 + QuestionItem + + + + fr.insee + l4ljjvig-QC + 1 + + SANTE_ENFAIL4 + + + fr.insee + l4ljjvig + 1 + QuestionGrid + + + + fr.insee + l4lgayon-QC + 1 + + PRENOM_ENFAIL5 + + + fr.insee + l4lgayon + 1 + QuestionItem + + + + fr.insee + l4lgep4c-QC + 1 + + SEXE_ENFAIL5 + + + fr.insee + l4lgep4c + 1 + QuestionItem + + + + fr.insee + l4lgp1ft-QC + 1 + + ANAI_ENFAIL5 + + + fr.insee + l4lgp1ft + 1 + QuestionItem + + + + fr.insee + l4lgnphx-QC + 1 + + NEFRANCE_ENFAIL5 + + + fr.insee + l4lgnphx + 1 + QuestionItem + + + + fr.insee + l4lh672z-QC + 1 + + PARENT_VIT_ENFAIL5 + + + fr.insee + l4lh672z + 1 + QuestionItem + + + + fr.insee + l8m0ld6c-QC + 1 + + PARENT_VECU_ENFAIL5 + + + fr.insee + l8m0ld6c + 1 + QuestionItem + + + + fr.insee + l4lhcdf6-QC + 1 + + DC_ENFAIL5 + + + fr.insee + l4lhcdf6 + 1 + QuestionItem + + + + fr.insee + l4lh8c72-QC + 1 + + AG_DC_ENFAIL5 + + + fr.insee + l4lh8c72 + 1 + QuestionItem + + + + fr.insee + l4lhn614-QC + 1 + + AG_DEPART_ENFAIL5 + + + fr.insee + l4lhn614 + 1 + QuestionItem + + + + fr.insee + l4lj98cz-QC + 1 + + PARENT_FREQ_ENFAIL5 + + + fr.insee + l4lj98cz + 1 + QuestionItem + + + + fr.insee + l4lijtvo-QC + 1 + + FR_ENFAIL5 + + + fr.insee + l4lijtvo + 1 + QuestionItem + + + + fr.insee + l4oo7lwi-QC + 1 + + DEP_ENFAIL5 + + + fr.insee + l4oo7lwi + 1 + QuestionItem + + + + fr.insee + l4oo41q4-QC + 1 + + COM_ENFAIL5 + + + fr.insee + l4oo41q4 + 1 + QuestionItem + + + + fr.insee + l4oo5bj9-QC + 1 + + PAY_ENFAIL5 + + + fr.insee + l4oo5bj9 + 1 + QuestionItem + + + + fr.insee + l4lizygc-QC + 1 + + LOG_ENFAIL5 + + + fr.insee + l4lizygc + 1 + QuestionItem + + + + fr.insee + l4lmc52p-QC + 1 + + AUT_PAR_ENFAIL5 + + + fr.insee + l4lmc52p + 1 + QuestionItem + + + + fr.insee + l4ljxer7-QC + 1 + + DORT_ENFAIL5 + + + fr.insee + l4ljxer7 + 1 + QuestionItem + + + + fr.insee + l4o7vzru-QC + 1 + + SEP_AUT_PAR_ENFAIL5 + + + fr.insee + l4o7vzru + 1 + QuestionItem + + + + fr.insee + l4lms6u4-QC + 1 + + RESID_ENFAIL5 + + + fr.insee + l4lms6u4 + 1 + QuestionItem + + + + fr.insee + l4ljcdar-QC + 1 + + SANTE_ENFAIL5 + + + fr.insee + l4ljcdar + 1 + QuestionGrid + + + + fr.insee + l8oign0h-QC + 1 + + PRENOM_ENFAIL6 + + + fr.insee + l8oign0h + 1 + QuestionItem + + + + fr.insee + l8oi92w4-QC + 1 + + SEXE_ENFAIL6 + + + fr.insee + l8oi92w4 + 1 + QuestionItem + + + + fr.insee + l8oi7q9f-QC + 1 + + ANAI_ENFAIL6 + + + fr.insee + l8oi7q9f + 1 + QuestionItem + + + + fr.insee + l8oientz-QC + 1 + + NEFRANCE_ENFAIL6 + + + fr.insee + l8oientz + 1 + QuestionItem + + + + fr.insee + l8oidc2m-QC + 1 + + PARENT_VIT_ENFAIL6 + + + fr.insee + l8oidc2m + 1 + QuestionItem + + + + fr.insee + l8oib75g-QC + 1 + + PARENT_VECU_ENFAIL6 + + + fr.insee + l8oib75g + 1 + QuestionItem + + + + fr.insee + l8ohus0v-QC + 1 + + DC_ENFAIL6 + + + fr.insee + l8ohus0v + 1 + QuestionItem + + + + fr.insee + l8ohrpn7-QC + 1 + + AG_DC_ENFAIL6 + + + fr.insee + l8ohrpn7 + 1 + QuestionItem + + + + fr.insee + l8ohwpt9-QC + 1 + + AG_DEPART_ENFAIL6 + + + fr.insee + l8ohwpt9 + 1 + QuestionItem + + + + fr.insee + l8oh46rn-QC + 1 + + PARENT_FREQ_ENFAIL6 + + + fr.insee + l8oh46rn + 1 + QuestionItem + + + + fr.insee + l8ogysyp-QC + 1 + + FR_ENFAIL6 + + + fr.insee + l8ogysyp + 1 + QuestionItem + + + + fr.insee + l8ogp9jo-QC + 1 + + DEP_ENFAIL6 + + + fr.insee + l8ogp9jo + 1 + QuestionItem + + + + fr.insee + l8ogqig3-QC + 1 + + COM_ENFAIL6 + + + fr.insee + l8ogqig3 + 1 + QuestionItem + + + + fr.insee + l8ogpnbn-QC + 1 + + PAY_ENFAIL6 + + + fr.insee + l8ogpnbn + 1 + QuestionItem + + + + fr.insee + l8ogukpt-QC + 1 + + LOG_ENFAIL6 + + + fr.insee + l8ogukpt + 1 + QuestionItem + + + + fr.insee + l8ob0dk4-QC + 1 + + AUT_PAR_ENFAIL6 + + + fr.insee + l8ob0dk4 + 1 + QuestionItem + + + + fr.insee + l8oarkxm-QC + 1 + + DORT_ENFAIL6 + + + fr.insee + l8oarkxm + 1 + QuestionItem + + + + fr.insee + l8oaqbj5-QC + 1 + + SEP_AUT_PAR_ENFAIL6 + + + fr.insee + l8oaqbj5 + 1 + QuestionItem + + + + fr.insee + l8oanpzw-QC + 1 + + RESID_ENFAIL6 + + + fr.insee + l8oanpzw + 1 + QuestionItem + + + + fr.insee + l8oasgat-QC + 1 + + SANTE_ENFAIL6 + + + fr.insee + l8oasgat + 1 + QuestionGrid + + + + fr.insee + l8ok9kmj-QC + 1 + + PRENOM_ENFAIL7 + + + fr.insee + l8ok9kmj + 1 + QuestionItem + + + + fr.insee + l8okbmv3-QC + 1 + + SEXE_ENFAIL7 + + + fr.insee + l8okbmv3 + 1 + QuestionItem + + + + fr.insee + l8okh65e-QC + 1 + + ANAI_ENFAIL7 + + + fr.insee + l8okh65e + 1 + QuestionItem + + + + fr.insee + l8okc5z9-QC + 1 + + NEFRANCE_ENFAIL7 + + + fr.insee + l8okc5z9 + 1 + QuestionItem + + + + fr.insee + l8okdoof-QC + 1 + + PARENT_VIT_ENFAIL7 + + + fr.insee + l8okdoof + 1 + QuestionItem + + + + fr.insee + l8ok0d4y-QC + 1 + + PARENT_VECU_ENFAIL7 + + + fr.insee + l8ok0d4y + 1 + QuestionItem + + + + fr.insee + l8ok0acp-QC + 1 + + DC_ENFAIL7 + + + fr.insee + l8ok0acp + 1 + QuestionItem + + + + fr.insee + l8ojs3vl-QC + 1 + + AG_DC_ENFAIL7 + + + fr.insee + l8ojs3vl + 1 + QuestionItem + + + + fr.insee + l8ojuhud-QC + 1 + + AG_DEPART_ENFAIL7 + + + fr.insee + l8ojuhud + 1 + QuestionItem + + + + fr.insee + l8ojmjws-QC + 1 + + PARENT_FREQ_ENFAIL7 + + + fr.insee + l8ojmjws + 1 + QuestionItem + + + + fr.insee + l8oj98gw-QC + 1 + + FR_ENFAIL7 + + + fr.insee + l8oj98gw + 1 + QuestionItem + + + + fr.insee + l8ojb4ub-QC + 1 + + DEP_ENFAIL7 + + + fr.insee + l8ojb4ub + 1 + QuestionItem + + + + fr.insee + l8ojczfv-QC + 1 + + COM_ENFAIL7 + + + fr.insee + l8ojczfv + 1 + QuestionItem + + + + fr.insee + l8ojif3m-QC + 1 + + PAY_ENFAIL7 + + + fr.insee + l8ojif3m + 1 + QuestionItem + + + + fr.insee + l8oja1pz-QC + 1 + + LOG_ENFAIL7 + + + fr.insee + l8oja1pz + 1 + QuestionItem + + + + fr.insee + l8oiinpy-QC + 1 + + AUT_PAR_ENFAIL7 + + + fr.insee + l8oiinpy + 1 + QuestionItem + + + + fr.insee + l8oj67fo-QC + 1 + + DORT_ENFAIL7 + + + fr.insee + l8oj67fo + 1 + QuestionItem + + + + fr.insee + l8oiu9ax-QC + 1 + + SEP_AUT_PAR_ENFAIL7 + + + fr.insee + l8oiu9ax + 1 + QuestionItem + + + + fr.insee + l8oicj6e-QC + 1 + + RESID_ENFAIL7 + + + fr.insee + l8oicj6e + 1 + QuestionItem + + + + fr.insee + l8oizp0r-QC + 1 + + SANTE_ENFAIL7 + + + fr.insee + l8oizp0r + 1 + QuestionGrid + + + + fr.insee + l8olci32-QC + 1 + + PRENOM_ENFAIL8 + + + fr.insee + l8olci32 + 1 + QuestionItem + + + + fr.insee + l8olbhxj-QC + 1 + + SEXE_ENFAIL8 + + + fr.insee + l8olbhxj + 1 + QuestionItem + + + + fr.insee + l8ol9xy3-QC + 1 + + ANAI_ENFAIL8 + + + fr.insee + l8ol9xy3 + 1 + QuestionItem + + + + fr.insee + l8ola1mr-QC + 1 + + NEFRANCE_ENFAIL8 + + + fr.insee + l8ola1mr + 1 + QuestionItem + + + + fr.insee + l8okz45l-QC + 1 + + PARENT_VIT_ENFAIL8 + + + fr.insee + l8okz45l + 1 + QuestionItem + + + + fr.insee + l8ol369l-QC + 1 + + PARENT_VECU_ENFAIL8 + + + fr.insee + l8ol369l + 1 + QuestionItem + + + + fr.insee + l8ole120-QC + 1 + + DC_ENFAIL8 + + + fr.insee + l8ole120 + 1 + QuestionItem + + + + fr.insee + l8olcd8n-QC + 1 + + AG_DC_ENFAIL8 + + + fr.insee + l8olcd8n + 1 + QuestionItem + + + + fr.insee + l8ol84b7-QC + 1 + + AG_DEPART_ENFAIL8 + + + fr.insee + l8ol84b7 + 1 + QuestionItem + + + + fr.insee + l8okx7cd-QC + 1 + + PARENT_FREQ_ENFAIL8 + + + fr.insee + l8okx7cd + 1 + QuestionItem + + + + fr.insee + l8okpxv8-QC + 1 + + FR_ENFAIL8 + + + fr.insee + l8okpxv8 + 1 + QuestionItem + + + + fr.insee + l8okue2t-QC + 1 + + DEP_ENFAIL8 + + + fr.insee + l8okue2t + 1 + QuestionItem + + + + fr.insee + l8okjfla-QC + 1 + + COM_ENFAIL8 + + + fr.insee + l8okjfla + 1 + QuestionItem + + + + fr.insee + l8okxgwv-QC + 1 + + PAY_ENFAIL8 + + + fr.insee + l8okxgwv + 1 + QuestionItem + + + + fr.insee + l8oksuft-QC + 1 + + LOG_ENFAIL8 + + + fr.insee + l8oksuft + 1 + QuestionItem + + + + fr.insee + l8okked6-QC + 1 + + AUT_PAR_ENFAIL8 + + + fr.insee + l8okked6 + 1 + QuestionItem + + + + fr.insee + l8okkkef-QC + 1 + + DORT_ENFAIL8 + + + fr.insee + l8okkkef + 1 + QuestionItem + + + + fr.insee + l8okfvhy-QC + 1 + + SEP_AUT_PAR_ENFAIL8 + + + fr.insee + l8okfvhy + 1 + QuestionItem + + + + fr.insee + l8okioqc-QC + 1 + + RESID_ENFAIL8 + + + fr.insee + l8okioqc + 1 + QuestionItem + + + + fr.insee + l8oklb21-QC + 1 + + SANTE_ENFAIL8 + + + fr.insee + l8oklb21 + 1 + QuestionGrid + + + + fr.insee + l1f6a3qv-QC + 1 + + PETIT_ENF + + + fr.insee + l1f6a3qv + 1 + QuestionItem + + + + fr.insee + l1f6dz1j-QC + 1 + + NB_PETIT_ENF + + + fr.insee + l1f6dz1j + 1 + QuestionItem + + + + fr.insee + l1f69ivh-QC + 1 + + AG_PETIT_ENF + + + fr.insee + l1f69ivh + 1 + QuestionItem + + + + fr.insee + l1g3hka7-QC + 1 + + FREQ_VU_PETIT_ENF + + + fr.insee + l1g3hka7 + 1 + QuestionGrid + + + + fr.insee + l1f4yrno-QC + 1 + + FREQ_CONT_PETIT_ENF + + + fr.insee + l1f4yrno + 1 + QuestionGrid + + + + fr.insee + l1g87t8t-QC + 1 + + AIDE_APPORT + + + fr.insee + l1g87t8t + 1 + QuestionGrid + + + + fr.insee + l1ggssgl-QC + 1 + + QUI_AID_APP_1 + + + fr.insee + l1ggssgl + 1 + QuestionGrid + + + + fr.insee + l1ggm06b-QC + 1 + + QUI_AID_APP_2 + + + fr.insee + l1ggm06b + 1 + QuestionGrid + + + + fr.insee + l1ggtznr-QC + 1 + + QUI_AID_APP_3 + + + fr.insee + l1ggtznr + 1 + QuestionGrid + + + + fr.insee + l4lf0y9m-QC + 1 + + QUI_AID_APP_4 + + + fr.insee + l4lf0y9m + 1 + QuestionGrid + + + + fr.insee + l1g8o84g-QC + 1 + + AIDE_RECUE + + + fr.insee + l1g8o84g + 1 + QuestionGrid + + + + fr.insee + l1ggpjd7-QC + 1 + + QUI_AID_REC_1 + + + fr.insee + l1ggpjd7 + 1 + QuestionGrid + + + + fr.insee + l1ggp8js-QC + 1 + + QUI_AID_REC_2 + + + fr.insee + l1ggp8js + 1 + QuestionGrid + + + + fr.insee + l1gh36ky-QC + 1 + + QUI_AID_REC_3 + + + fr.insee + l1gh36ky + 1 + QuestionGrid + + + + fr.insee + l1g8apw2-QC + 1 + + LANGUE1_ENTOU + + + fr.insee + l1g8apw2 + 1 + QuestionItem + + + + fr.insee + l43tgurz-QC + 1 + + LANGUE2_ENTOU + + + fr.insee + l43tgurz + 1 + QuestionItem + + + + fr.insee + l2kjnm8k-QC + 1 + + PRENOM_PAR1 + + + fr.insee + l2kjnm8k + 1 + QuestionItem + + + + fr.insee + l2kjy49o-QC + 1 + + ANAI_PAR1 + + + fr.insee + l2kjy49o + 1 + QuestionItem + + + + fr.insee + l2kkvar7-QC + 1 + + SEXE_PAR1 + + + fr.insee + l2kkvar7 + 1 + QuestionItem + + + + fr.insee + l2kk539f-QC + 1 + + NATIO_PAR1 + + + fr.insee + l2kk539f + 1 + QuestionItem + + + + fr.insee + l7ywp1vk-QC + 1 + + TRAV_PAR1 + + + fr.insee + l7ywp1vk + 1 + QuestionItem + + + + fr.insee + l2kjueig-QC + 1 + + PROF_PAR1H + + + fr.insee + l2kjueig + 1 + QuestionItem + + + + fr.insee + l4qzvm5v-QC + 1 + + PROF_PAR1F + + + fr.insee + l4qzvm5v + 1 + QuestionItem + + + + fr.insee + l45cjoj7-QC + 1 + + PROF_PAR1_2 + + + fr.insee + l45cjoj7 + 1 + QuestionItem + + + + fr.insee + l2kjshy4-QC + 1 + + STATUT_PAR1 + + + fr.insee + l2kjshy4 + 1 + QuestionItem + + + + fr.insee + llgo5n7b-QC + 1 + + SAL_FP_PAR1 + + + fr.insee + llgo5n7b + 1 + QuestionItem + + + + fr.insee + llgqspnh-QC + 1 + + SAL_ENT_PAR1 + + + fr.insee + llgqspnh + 1 + QuestionItem + + + + fr.insee + l2kk4seh-QC + 1 + + LANGUE1_PAR1 + + + fr.insee + l2kk4seh + 1 + QuestionItem + + + + fr.insee + l447j7cx-QC + 1 + + LANGUE2_PAR1 + + + fr.insee + l447j7cx + 1 + QuestionItem + + + + fr.insee + l2kjzugb-QC + 1 + + VIV_PAR1 + + + fr.insee + l2kjzugb + 1 + QuestionItem + + + + fr.insee + l2kkd59n-QC + 1 + + ANNEE_DC_PAR1 + + + fr.insee + l2kkd59n + 1 + QuestionItem + + + + fr.insee + l2kk4snz-QC + 1 + + LOG_PAR1 + + + fr.insee + l2kk4snz + 1 + QuestionItem + + + + fr.insee + l2kkb4xa-QC + 1 + + FR_PAR1 + + + fr.insee + l2kkb4xa + 1 + QuestionItem + + + + fr.insee + l4o7ufzl-QC + 1 + + DEP_PAR1 + + + fr.insee + l4o7ufzl + 1 + QuestionItem + + + + fr.insee + l4onhpvd-QC + 1 + + COM_PAR1 + + + fr.insee + l4onhpvd + 1 + QuestionItem + + + + fr.insee + l4o8eale-QC + 1 + + PAY_PAR1 + + + fr.insee + l4o8eale + 1 + QuestionItem + + + + fr.insee + l1ezkqes-QC + 1 + + ETAB_PAR1 + + + fr.insee + l1ezkqes + 1 + QuestionItem + + + + fr.insee + l2kkeqsz-QC + 1 + + FREQ_VU_PAR1 + + + fr.insee + l2kkeqsz + 1 + QuestionItem + + + + fr.insee + l2kk296y-QC + 1 + + FREQ_CONT_PAR1 + + + fr.insee + l2kk296y + 1 + QuestionItem + + + + fr.insee + l4lojzxg-QC + 1 + + PROX_EGO_PAR1 + + + fr.insee + l4lojzxg + 1 + QuestionItem + + + + fr.insee + l43yap7r-QC + 1 + + PROX_FRAT_PAR1 + + + fr.insee + l43yap7r + 1 + QuestionItem + + + + fr.insee + l5axrwsa-QC + 1 + + EXIST_PAR2 + + + fr.insee + l5axrwsa + 1 + QuestionItem + + + + fr.insee + l27ijusa-QC + 1 + + PRENOM_PAR2 + + + fr.insee + l27ijusa + 1 + QuestionItem + + + + fr.insee + kwqfufye-QC + 1 + + ANAI_PAR2 + + + fr.insee + kwqfufye + 1 + QuestionItem + + + + fr.insee + l27ig4yy-QC + 1 + + SEXE_PAR2 + + + fr.insee + l27ig4yy + 1 + QuestionItem + + + + fr.insee + kwqfhhge-QC + 1 + + NATIO_PAR2 + + + fr.insee + kwqfhhge + 1 + QuestionItem + + + + fr.insee + l7ywxphs-QC + 1 + + TRAV_PAR2 + + + fr.insee + l7ywxphs + 1 + QuestionItem + + + + fr.insee + l1ezowxi-QC + 1 + + PROF_PAR2H + + + fr.insee + l1ezowxi + 1 + QuestionItem + + + + fr.insee + l4qzjbsx-QC + 1 + + PROF_PAR2F + + + fr.insee + l4qzjbsx + 1 + QuestionItem + + + + fr.insee + l444t31z-QC + 1 + + PROF_PAR2_2 + + + fr.insee + l444t31z + 1 + QuestionItem + + + + fr.insee + kwqfto3c-QC + 1 + + STATUT_PAR2 + + + fr.insee + kwqfto3c + 1 + QuestionItem + + + + fr.insee + llgosp3i-QC + 1 + + SAL_FP_PAR2 + + + fr.insee + llgosp3i + 1 + QuestionItem + + + + fr.insee + llgrqyqg-QC + 1 + + SAL_ENT_PAR2 + + + fr.insee + llgrqyqg + 1 + QuestionItem + + + + fr.insee + l1ezgxe3-QC + 1 + + LANGUE1_PAR2 + + + fr.insee + l1ezgxe3 + 1 + QuestionItem + + + + fr.insee + l444xjux-QC + 1 + + LANGUE2_PAR2 + + + fr.insee + l444xjux + 1 + QuestionItem + + + + fr.insee + kwqhjfzk-QC + 1 + + VIV_PAR2 + + + fr.insee + kwqhjfzk + 1 + QuestionItem + + + + fr.insee + kwqg35i9-QC + 1 + + ANNEE_DC_PAR2 + + + fr.insee + kwqg35i9 + 1 + QuestionItem + + + + fr.insee + kwqgffvw-QC + 1 + + LOG_PAR2A + + + fr.insee + kwqgffvw + 1 + QuestionGrid + + + + fr.insee + lab6xfk9-QC + 1 + + LOG_PAR2B + + + fr.insee + lab6xfk9 + 1 + QuestionItem + + + + fr.insee + kwqgawqp-QC + 1 + + FR_PAR2 + + + fr.insee + kwqgawqp + 1 + QuestionItem + + + + fr.insee + l4o8co0c-QC + 1 + + DEP_PAR2 + + + fr.insee + l4o8co0c + 1 + QuestionItem + + + + fr.insee + l4onk34z-QC + 1 + + COM_PAR2 + + + fr.insee + l4onk34z + 1 + QuestionItem + + + + fr.insee + l4o8dk7q-QC + 1 + + PAY_PAR2 + + + fr.insee + l4o8dk7q + 1 + QuestionItem + + + + fr.insee + l2kkc8s9-QC + 1 + + ETAB_PAR2 + + + fr.insee + l2kkc8s9 + 1 + QuestionItem + + + + fr.insee + l1gl4054-QC + 1 + + FREQ_VU_PAR2 + + + fr.insee + l1gl4054 + 1 + QuestionItem + + + + fr.insee + l1ezkbsf-QC + 1 + + FREQ_CONT_PAR2 + + + fr.insee + l1ezkbsf + 1 + QuestionItem + + + + fr.insee + l445itcb-QC + 1 + + PROX_EGO_PAR2 + + + fr.insee + l445itcb + 1 + QuestionItem + + + + fr.insee + l4cjeqc0-QC + 1 + + PROX_FRAT_PAR2 + + + fr.insee + l4cjeqc0 + 1 + QuestionItem + + + + fr.insee + l473kp51-QC + 1 + + NB_FRERES + + + fr.insee + l473kp51 + 1 + QuestionItem + + + + fr.insee + l5ikk5zq-QC + 1 + + NB_FRERES_VIV1 + + + fr.insee + l5ikk5zq + 1 + QuestionItem + + + + fr.insee + l4740wd1-QC + 1 + + NB_FRERES_VIV + + + fr.insee + l4740wd1 + 1 + QuestionItem + + + + fr.insee + l4742c2v-QC + 1 + + NB_SOEURS + + + fr.insee + l4742c2v + 1 + QuestionItem + + + + fr.insee + l5ikyrbc-QC + 1 + + NB_SOEURS_VIV1 + + + fr.insee + l5ikyrbc + 1 + QuestionItem + + + + fr.insee + l473w273-QC + 1 + + NB_SOEURS_VIV + + + fr.insee + l473w273 + 1 + QuestionItem + + + + fr.insee + l1f5th3i-QC + 1 + + AG_DEP_PARENT + + + fr.insee + l1f5th3i + 1 + QuestionItem + + + + fr.insee + l1f61fa3-QC + 1 + + VECU_JEUNESSE + + + fr.insee + l1f61fa3 + 1 + QuestionGrid + + + + fr.insee + l43ttd47-QC + 1 + + VECU_PLACE + + + fr.insee + l43ttd47 + 1 + QuestionItem + + + + fr.insee + l43u439h-QC + 1 + + TYP_PLACE + + + fr.insee + l43u439h + 1 + QuestionGrid + + + + fr.insee + l1f65zkh-QC + 1 + + HEBERG + + + fr.insee + l1f65zkh + 1 + QuestionItem + + + + fr.insee + l1g3unwh-QC + 1 + + FINETU + + + fr.insee + l1g3unwh + 1 + QuestionItem + + + + fr.insee + l1g3yk6q-QC + 1 + + ANNEE_FINETU + + + fr.insee + l1g3yk6q + 1 + QuestionItem + + + + fr.insee + l1g7pgbn-QC + 1 + + DEJATRAV + + + fr.insee + l1g7pgbn + 1 + QuestionItem + + + + fr.insee + l1g4pid1-QC + 1 + + ANNEE_EMPLOI1 + + + fr.insee + l1g4pid1 + 1 + QuestionItem + + + + fr.insee + l445x7tq-QC + 1 + + TRAVACT + + + fr.insee + l445x7tq + 1 + QuestionItem + + + + fr.insee + l1g7iu0j-QC + 1 + + ANNEE_FINEMP + + + fr.insee + l1g7iu0j + 1 + QuestionItem + + + + fr.insee + l1g7vwo6-QC + 1 + + INTER_TRAV1 + + + fr.insee + l1g7vwo6 + 1 + QuestionItem + + + + fr.insee + lletbq7t-QC + 1 + + INTER_TRAV2 + + + fr.insee + lletbq7t + 1 + QuestionItem + + + + fr.insee + lletqevy-QC + 1 + + INTER_TRAV3 + + + fr.insee + lletqevy + 1 + QuestionItem + + + + fr.insee + ljwxkrnl-QC + 1 + + PRENOM_FIN + + + fr.insee + ljwxkrnl + 1 + QuestionItem + + + + fr.insee + lamjnyx4-QC + 1 + + PRENOM_PROX + + + fr.insee + lamjnyx4 + 1 + QuestionItem + + + + fr.insee + lm4w39kw-QC + 1 + + AVIS_FILTRE + + + fr.insee + lm4w39kw + 1 + QuestionItem + + + + fr.insee + lnbss8ix-QC + 1 + + AVIS_FILTRE_P + + + fr.insee + lnbss8ix + 1 + QuestionItem + + + + fr.insee + lm4vxp7a-QC + 1 + + AVIS_RMQ + + + fr.insee + lm4vxp7a + 1 + QuestionItem + + + + fr.insee + lm4vudcf-QC + 1 + + AVIS_RAISON + + + fr.insee + lm4vudcf + 1 + QuestionGrid + + + + fr.insee + lmrsfyuh-QC + 1 + + AVIS_AR + + + fr.insee + lmrsfyuh + 1 + QuestionItem + + + + fr.insee + lmrscuvs-QC + 1 + + AVIS_NOTICE + + + fr.insee + lmrscuvs + 1 + QuestionItem + + + + fr.insee + lmrssoql-QC + 1 + + AVIS_RAIS_NOTICE + + + fr.insee + lmrssoql + 1 + QuestionItem + + + + fr.insee + lmrtsn5f-QC + 1 + + AVIS_SITE_NET + + + fr.insee + lmrtsn5f + 1 + QuestionItem + + + + fr.insee + lmrtt1a2-QC + 1 + + AVIS_RAIS_SITE + + + fr.insee + lmrtt1a2 + 1 + QuestionItem + + + + fr.insee + ln912ymy-QC + 1 + + AVIS_MAIL + + + fr.insee + ln912ymy + 1 + QuestionItem + + + + fr.insee + ln919mtn-QC + 1 + + AVIS_SUPPORT + + + fr.insee + ln919mtn + 1 + QuestionGrid + + + + fr.insee + lna2b92s-QC + 1 + + AVIS_TEL + + + fr.insee + lna2b92s + 1 + QuestionItem + + + + fr.insee + lna1z5hs-QC + 1 + + AVIS_DIFF + + + fr.insee + lna1z5hs + 1 + QuestionGrid + + + + fr.insee + lna24vso-QC + 1 + + AVIS_QUEST + + + fr.insee + lna24vso + 1 + QuestionItem + + + + fr.insee + lna2aygn-QC + 1 + + AVIS_AUTR_DIFF + + + fr.insee + lna2aygn + 1 + QuestionItem + + + + fr.insee + lna2jxe5-QC + 1 + + AVIS_ORDRE + + + fr.insee + lna2jxe5 + 1 + QuestionItem + + + + fr.insee + lna2hnnt-QC + 1 + + AVIS_ASSIST + + + fr.insee + lna2hnnt + 1 + QuestionItem + + + + fr.insee + lna2fkqe-QC + 1 + + AVIS_RMQ_FIN + + + fr.insee + lna2fkqe + 1 + QuestionItem + + + + fr.insee + lna2hbsx-QC + 1 + + AVIS_AUTR_RMQ + + + fr.insee + lna2hbsx + 1 + QuestionItem + + + + fr.insee + l473latk-CI-0 + 1 + + VAL_ANNAISS non renseignée + + + VAL_ANNAISS non renseignée + + + fr.insee + l473latk-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l473latk-CI-0-IP-1 + 1 + + VAL_ANNAISS + + + + + fr.insee + l473latk-QOP-ll2h5il3 + 1 + OutParameter + + + fr.insee + l473latk-CI-0-IP-1 + 1 + InParameter + + + isnull(l473latk-CI-0-IP-1) or l473latk-CI-0-IP-1="" + + + + + fr.insee + kwq9wijq-CI-0 + 1 + + Date de naissance non renseignée + + + Date de naissance non renseignée + + + fr.insee + kwq9wijq-CI-0-II-0 + 1 + Instruction + + warning + + + vtl + + fr.insee + kwq9wijq-CI-0-IP-1 + 1 + + DATNAIS_X + + + + + fr.insee + kwq9wijq-QOP-kwq9l0nj + 1 + OutParameter + + + fr.insee + kwq9wijq-CI-0-IP-1 + 1 + InParameter + + + (nvl(kwq9wijq-CI-0-IP-1, "") = "") + + + + + fr.insee + kwq9y19w-CI-0 + 1 + + COUPLE non renseigné + + + COUPLE non renseigné + + + fr.insee + kwq9y19w-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwq9y19w-CI-0-IP-1 + 1 + + COUPLE + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + kwq9y19w-CI-0-IP-1 + 1 + InParameter + + + isnull(kwq9y19w-CI-0-IP-1) or kwq9y19w-CI-0-IP-1 = "" + + + + + fr.insee + l0qkj23a-CI-0 + 1 + + RAISON_VIE_CJT non renseignée + + + RAISON_VIE_CJT non renseignée + + + fr.insee + l0qkj23a-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l0qkj23a-CI-0-IP-1 + 1 + + RAISON_VIE_CJT + + + + + fr.insee + l0qkj23a-QOP-l34fp0w3 + 1 + OutParameter + + + fr.insee + l0qkj23a-CI-0-IP-1 + 1 + InParameter + + + isnull(l0qkj23a-CI-0-IP-1) or l0qkj23a-CI-0-IP-1="" + + + + + fr.insee + l34grb6h-CI-0 + 1 + + PRENOM_C non renseigné + + + PRENOM_C non renseigné + + + fr.insee + l34grb6h-CI-0-II-0 + 1 + Instruction + + warning + + + vtl + + fr.insee + l34grb6h-CI-0-IP-1 + 1 + + PRENOM_C + + + + + fr.insee + l34grb6h-QOP-l34guyz9 + 1 + OutParameter + + + fr.insee + l34grb6h-CI-0-IP-1 + 1 + InParameter + + + isnull(l34grb6h-CI-0-IP-1) or l34grb6h-CI-0-IP-1="" + + + + + fr.insee + kwqa0ism-CI-0 + 1 + + DATNAIS_C non renseigné + + + DATNAIS_C non renseigné + + + fr.insee + kwqa0ism-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqa0ism-CI-0-IP-1 + 1 + + DATNAIS_C + + + + + fr.insee + kwqa0ism-QOP-kwqa5c2z + 1 + OutParameter + + + fr.insee + kwqa0ism-CI-0-IP-1 + 1 + InParameter + + + (nvl(kwqa0ism-CI-0-IP-1, "") = "") + + + + + fr.insee + kwqabjga-CI-0 + 1 + + SEXE_CH non renseigné + + + SEXE_CH non renseigné + + + fr.insee + kwqabjga-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqabjga-CI-0-IP-1 + 1 + + SEXE_CH + + + + + fr.insee + kwqabjga-QOP-kwqai8pk + 1 + OutParameter + + + fr.insee + kwqabjga-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqabjga-CI-0-IP-1) or kwqabjga-CI-0-IP-1="" + + + + + fr.insee + l4o59ei7-CI-0 + 1 + + LIEUNAIS_CH non renseigné + + + LIEUNAIS_CH non renseigné + + + fr.insee + l4o59ei7-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4o59ei7-CI-0-IP-1 + 1 + + LIEUNAIS_CH + + + + + fr.insee + l4o59ei7-QOP-l4o57gfv + 1 + OutParameter + + + fr.insee + l4o59ei7-CI-0-IP-1 + 1 + InParameter + + + isnull(l4o59ei7-CI-0-IP-1) or l4o59ei7-CI-0-IP-1="" + + + + + fr.insee + l0quikkt-CI-0 + 1 + + DNAI_CH non renseigné + + + DNAI_CH non renseigné + + + fr.insee + l0quikkt-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l0quikkt-CI-0-IP-1 + 1 + + DNAI_CH + + + + + fr.insee + l0quikkt-QOP-llvz459i + 1 + OutParameter + + + fr.insee + l0quikkt-CI-0-IP-1 + 1 + InParameter + + + isnull(l0quikkt-CI-0-IP-1) or l0quikkt-CI-0-IP-1="" + + + + + fr.insee + l4o57595-CI-0 + 1 + + PNAI_CH non renseigné + + + PNAI_CH non renseigné + + + fr.insee + l4o57595-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4o57595-CI-0-IP-1 + 1 + + PNAI_CH + + + + + fr.insee + l4o57595-QOP-llvz9iqu + 1 + OutParameter + + + fr.insee + l4o57595-CI-0-IP-1 + 1 + InParameter + + + isnull(l4o57595-CI-0-IP-1) or l4o57595-CI-0-IP-1="" + + + + + fr.insee + l7ywou64-CI-0 + 1 + + TRAV_CH non renseigné + + + TRAV_CH non renseigné + + + fr.insee + l7ywou64-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l7ywou64-CI-0-IP-1 + 1 + + TRAV_CH + + + + + fr.insee + l7ywou64-QOP-l7ywme7g + 1 + OutParameter + + + fr.insee + l7ywou64-CI-0-IP-1 + 1 + InParameter + + + isnull(l7ywou64-CI-0-IP-1) or l7ywou64-CI-0-IP-1="" + + + + + fr.insee + l43zea6v-CI-0 + 1 + + PROF_C2H non renseigné + + + PROF_C2H non renseigné + + + fr.insee + l43zea6v-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l43zea6v-CI-0-IP-1 + 1 + + PROF_C2H + + + + + fr.insee + l43zea6v-QOP-l4o6x8gg + 1 + OutParameter + + + fr.insee + l43zea6v-CI-0-IP-1 + 1 + InParameter + + + isnull(l43zea6v-CI-0-IP-1) or l43zea6v-CI-0-IP-1="" + + + + + fr.insee + l0quphwx-CI-0 + 1 + + STATUT_CH non renseigné + + + STATUT_CH non renseigné + + + fr.insee + l0quphwx-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l0quphwx-CI-0-IP-1 + 1 + + STATUT_CH + + + + + fr.insee + l0quphwx-QOP-l43z7g5s + 1 + OutParameter + + + fr.insee + l0quphwx-CI-0-IP-1 + 1 + InParameter + + + l0quphwx-CI-0-IP-1="" or isnull(l0quphwx-CI-0-IP-1) + + + + + fr.insee + llgt315z-CI-0 + 1 + + SAL_FP_CH non renseigné + + + SAL_FP_CH non renseigné + + + fr.insee + llgt315z-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + llgt315z-CI-0-IP-1 + 1 + + SAL_FP_CH + + + + + fr.insee + llgt315z-QOP-llgsts0b + 1 + OutParameter + + + fr.insee + llgt315z-CI-0-IP-1 + 1 + InParameter + + + isnull(llgt315z-CI-0-IP-1) or llgt315z-CI-0-IP-1="" + + + + + fr.insee + llgt75zv-CI-0 + 1 + + SAL_ENT_CH non renseigné + + + SAL_ENT_CH non renseigné + + + fr.insee + llgt75zv-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + llgt75zv-CI-0-IP-1 + 1 + + SAL_ENT_CH + + + + + fr.insee + llgt75zv-QOP-llgt1faa + 1 + OutParameter + + + fr.insee + llgt75zv-CI-0-IP-1 + 1 + InParameter + + + isnull(llgt75zv-CI-0-IP-1) or llgt75zv-CI-0-IP-1="" + + + + + fr.insee + llde3pgg-CI-0 + 1 + + SEXE_CF non renseignée + + + SEXE_CF non renseignée + + + fr.insee + llde3pgg-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + llde3pgg-CI-0-IP-1 + 1 + + SEXE_CF + + + + + fr.insee + llde3pgg-QOP-lldeidzi + 1 + OutParameter + + + fr.insee + llde3pgg-CI-0-IP-1 + 1 + InParameter + + + isnull(llde3pgg-CI-0-IP-1) or llde3pgg-CI-0-IP-1="" + + + + + fr.insee + lldpi629-CI-0 + 1 + + LIEUNAIS_CF non renseigné + + + LIEUNAIS_CF non renseigné + + + fr.insee + lldpi629-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lldpi629-CI-0-IP-1 + 1 + + LIEUNAIS_CF + + + + + fr.insee + lldpi629-QOP-lldpfefv + 1 + OutParameter + + + fr.insee + lldpi629-CI-0-IP-1 + 1 + InParameter + + + isnull(lldpi629-CI-0-IP-1) or lldpi629-CI-0-IP-1="" + + + + + fr.insee + lldp8203-CI-0 + 1 + + DNAI_CF non renseigné + + + DNAI_CF non renseigné + + + fr.insee + lldp8203-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lldp8203-CI-0-IP-1 + 1 + + DNAI_CF + + + + + fr.insee + lldp8203-QOP-llvz9d48 + 1 + OutParameter + + + fr.insee + lldp8203-CI-0-IP-1 + 1 + InParameter + + + isnull(lldp8203-CI-0-IP-1) or lldp8203-CI-0-IP-1="" + + + + + fr.insee + lldpejfa-CI-0 + 1 + + PNAI_CF non renseigné + + + PNAI_CF non renseigné + + + fr.insee + lldpejfa-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lldpejfa-CI-0-IP-1 + 1 + + PNAI_CF + + + + + fr.insee + lldpejfa-QOP-llvzbi5b + 1 + OutParameter + + + fr.insee + lldpejfa-CI-0-IP-1 + 1 + InParameter + + + isnull(lldpejfa-CI-0-IP-1) or lldpejfa-CI-0-IP-1="" + + + + + fr.insee + lldqco3p-CI-0 + 1 + + TRAV_CF non renseigné + + + TRAV_CF non renseigné + + + fr.insee + lldqco3p-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lldqco3p-CI-0-IP-1 + 1 + + TRAV_CF + + + + + fr.insee + lldqco3p-QOP-lldq01q6 + 1 + OutParameter + + + fr.insee + lldqco3p-CI-0-IP-1 + 1 + InParameter + + + isnull(lldqco3p-CI-0-IP-1) or lldqco3p-CI-0-IP-1="" + + + + + fr.insee + lldqd2sd-CI-0 + 1 + + PROF_C2F non renseigné + + + PROF_C2F non renseigné + + + fr.insee + lldqd2sd-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lldqd2sd-CI-0-IP-1 + 1 + + PROF_C2F + + + + + fr.insee + lldqd2sd-QOP-lldqfnvv + 1 + OutParameter + + + fr.insee + lldqd2sd-CI-0-IP-1 + 1 + InParameter + + + isnull(lldqd2sd-CI-0-IP-1) or lldqd2sd-CI-0-IP-1="" + + + + + fr.insee + llmhdvun-CI-0 + 1 + + STATUT_CF non renseigné + + + STATUT_CF non renseigné + + + fr.insee + llmhdvun-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + llmhdvun-CI-0-IP-1 + 1 + + STATUT_CF + + + + + fr.insee + llmhdvun-QOP-llmhi8tu + 1 + OutParameter + + + fr.insee + llmhdvun-CI-0-IP-1 + 1 + InParameter + + + isnull(llmhdvun-CI-0-IP-1) or llmhdvun-CI-0-IP-1="" + + + + + fr.insee + llmhi6fd-CI-0 + 1 + + SAL_FP_CF non renseigné + + + SAL_FP_CF non renseigné + + + fr.insee + llmhi6fd-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + llmhi6fd-CI-0-IP-1 + 1 + + SAL_FP_CF + + + + + fr.insee + llmhi6fd-QOP-llmhkcpp + 1 + OutParameter + + + fr.insee + llmhi6fd-CI-0-IP-1 + 1 + InParameter + + + isnull(llmhi6fd-CI-0-IP-1) or llmhi6fd-CI-0-IP-1="" + + + + + fr.insee + llnh2qpm-CI-0 + 1 + + SAL_ENT_CF non renseigné + + + SAL_ENT_CF non renseigné + + + fr.insee + llnh2qpm-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + llnh2qpm-CI-0-IP-1 + 1 + + SAL_ENT_CF + + + + + fr.insee + llnh2qpm-QOP-llnh4jb1 + 1 + OutParameter + + + fr.insee + llnh2qpm-CI-0-IP-1 + 1 + InParameter + + + isnull(llnh2qpm-CI-0-IP-1) or llnh2qpm-CI-0-IP-1="" + + + + + fr.insee + l27dlmvl-CI-0 + 1 + + ANNEE_U non renseignée + + + ANNEE_U non renseignée + + + fr.insee + l27dlmvl-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27dlmvl-CI-0-IP-1 + 1 + + ANNEE_U + + + + + fr.insee + l27dlmvl-QOP-l27dtcgo + 1 + OutParameter + + + fr.insee + l27dlmvl-CI-0-IP-1 + 1 + InParameter + + + isnull(l27dlmvl-CI-0-IP-1) or l27dlmvl-CI-0-IP-1="" + + + + + fr.insee + l27dlmvl-CI-1 + 1 + + "L'année de mise en couple ne peut pas être antérieure à votre année de naissance." + + + "L'année de mise en couple ne peut pas être antérieure à votre année de naissance." + + + fr.insee + l27dlmvl-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27dlmvl-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l27dlmvl-CI-1-IP-2 + 1 + + ANNEE_U + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l27dlmvl-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l27dlmvl-QOP-l27dtcgo + 1 + OutParameter + + + fr.insee + l27dlmvl-CI-1-IP-2 + 1 + InParameter + + + not(isnull(l27dlmvl-CI-1-IP-2)) and not(isnull(l27dlmvl-CI-1-IP-1)) and cast(l27dlmvl-CI-1-IP-2,integer) < cast(l27dlmvl-CI-1-IP-1,integer) + + + + + fr.insee + l27dlmvl-CI-2 + 1 + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre mise en couple, est-ce que vous confirmez ?" + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre mise en couple, est-ce que vous confirmez ?" + + + fr.insee + l27dlmvl-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27dlmvl-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l27dlmvl-CI-2-IP-2 + 1 + + ANNEE_U + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l27dlmvl-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l27dlmvl-QOP-l27dtcgo + 1 + OutParameter + + + fr.insee + l27dlmvl-CI-2-IP-2 + 1 + InParameter + + + not(isnull(l27dlmvl-CI-2-IP-2)) and not(isnull(l27dlmvl-CI-2-IP-1)) and (cast(l27dlmvl-CI-2-IP-1,integer) + 15 > cast(l27dlmvl-CI-2-IP-2,integer)) + + + + + fr.insee + l27dlmvl-CI-3 + 1 + + bornes ANNEE_U + + + bornes ANNEE_U + + + fr.insee + l27dlmvl-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27dlmvl-CI-3-IP-1 + 1 + + ANNEE_U + + + + + fr.insee + l27dlmvl-QOP-l27dtcgo + 1 + OutParameter + + + fr.insee + l27dlmvl-CI-3-IP-1 + 1 + InParameter + + + cast(l27dlmvl-CI-3-IP-1,integer) < 1920 or cast(l27dlmvl-CI-3-IP-1,integer) > 2024 + + + + + fr.insee + kwqa4zjf-CI-0 + 1 + + PACS non renseigné + + + PACS non renseigné + + + fr.insee + kwqa4zjf-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqa4zjf-CI-0-IP-1 + 1 + + PACS + + + + + fr.insee + kwqa4zjf-QOP-kwqanscn + 1 + OutParameter + + + fr.insee + kwqa4zjf-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqa4zjf-CI-0-IP-1) or kwqa4zjf-CI-0-IP-1="" + + + + + fr.insee + l0qu7e2g-CI-0 + 1 + + ANNEE_PACS non renseignée + + + ANNEE_PACS non renseignée + + + fr.insee + l0qu7e2g-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l0qu7e2g-CI-0-IP-1 + 1 + + ANNEE_PACS + + + + + fr.insee + l0qu7e2g-QOP-l0qu1ddb + 1 + OutParameter + + + fr.insee + l0qu7e2g-CI-0-IP-1 + 1 + InParameter + + + isnull(l0qu7e2g-CI-0-IP-1) or l0qu7e2g-CI-0-IP-1="" + + + + + fr.insee + l0qu7e2g-CI-1 + 1 + + "L'année du pacs ne peut pas être antérieure à l'année de mise en couple." + + + "L'année du pacs ne peut pas être antérieure à l'année de mise en couple." + + + fr.insee + l0qu7e2g-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l0qu7e2g-CI-1-IP-1 + 1 + + ANNEE_U + + + + fr.insee + l0qu7e2g-CI-1-IP-2 + 1 + + ANNEE_PACS + + + + + fr.insee + l27dlmvl-QOP-l27dtcgo + 1 + OutParameter + + + fr.insee + l0qu7e2g-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l0qu7e2g-QOP-l0qu1ddb + 1 + OutParameter + + + fr.insee + l0qu7e2g-CI-1-IP-2 + 1 + InParameter + + + not(isnull(l0qu7e2g-CI-1-IP-2)) and not(isnull(l0qu7e2g-CI-1-IP-1)) and cast(l0qu7e2g-CI-1-IP-2,integer) < cast(l0qu7e2g-CI-1-IP-1,integer) + + + + + fr.insee + l0qu7e2g-CI-2 + 1 + + "L'année du pacs ne peut pas être antérieure à votre année de naissance." + + + "L'année du pacs ne peut pas être antérieure à votre année de naissance." + + + fr.insee + l0qu7e2g-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l0qu7e2g-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l0qu7e2g-CI-2-IP-2 + 1 + + ANNEE_PACS + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l0qu7e2g-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l0qu7e2g-QOP-l0qu1ddb + 1 + OutParameter + + + fr.insee + l0qu7e2g-CI-2-IP-2 + 1 + InParameter + + + not(isnull(l0qu7e2g-CI-2-IP-2)) and not(isnull(l0qu7e2g-CI-2-IP-1)) and cast(l0qu7e2g-CI-2-IP-2,integer) < cast(l0qu7e2g-CI-2-IP-1,integer) + + + + + fr.insee + l0qu7e2g-CI-3 + 1 + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre pacs, est-ce que vous confirmez ?" + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre pacs, est-ce que vous confirmez ?" + + + fr.insee + l0qu7e2g-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l0qu7e2g-CI-3-IP-1 + 1 + + ANAIS + + + + fr.insee + l0qu7e2g-CI-3-IP-2 + 1 + + ANNEE_PACS + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l0qu7e2g-CI-3-IP-1 + 1 + InParameter + + + + + fr.insee + l0qu7e2g-QOP-l0qu1ddb + 1 + OutParameter + + + fr.insee + l0qu7e2g-CI-3-IP-2 + 1 + InParameter + + + not(isnull(l0qu7e2g-CI-3-IP-2)) and not(isnull(l0qu7e2g-CI-3-IP-1)) and (cast(l0qu7e2g-CI-3-IP-1,integer) + 15 > cast(l0qu7e2g-CI-3-IP-2,integer)) + + + + + fr.insee + l0qu7e2g-CI-4 + 1 + + bornes ANNEE_PACS + + + bornes ANNEE_PACS + + + fr.insee + l0qu7e2g-CI-4-II-4 + 1 + Instruction + + informational + + + vtl + + fr.insee + l0qu7e2g-CI-4-IP-1 + 1 + + ANNEE_PACS + + + + + fr.insee + l0qu7e2g-QOP-l0qu1ddb + 1 + OutParameter + + + fr.insee + l0qu7e2g-CI-4-IP-1 + 1 + InParameter + + + cast(l0qu7e2g-CI-4-IP-1,integer) < 1999 or cast(l0qu7e2g-CI-4-IP-1,integer) > 2024 + + + + + fr.insee + l0qujqzn-CI-0 + 1 + + MARI non renseigné + + + MARI non renseigné + + + fr.insee + l0qujqzn-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l0qujqzn-CI-0-IP-1 + 1 + + MARI + + + + + fr.insee + l0qujqzn-QOP-l0queysd + 1 + OutParameter + + + fr.insee + l0qujqzn-CI-0-IP-1 + 1 + InParameter + + + isnull(l0qujqzn-CI-0-IP-1) or l0qujqzn-CI-0-IP-1="" + + + + + fr.insee + l0qul94p-CI-0 + 1 + + ANNEE_MARI non renseigné + + + ANNEE_MARI non renseigné + + + fr.insee + l0qul94p-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l0qul94p-CI-0-IP-1 + 1 + + ANNEE_MARI + + + + + fr.insee + l0qul94p-QOP-l0qum61j + 1 + OutParameter + + + fr.insee + l0qul94p-CI-0-IP-1 + 1 + InParameter + + + isnull(l0qul94p-CI-0-IP-1) or l0qul94p-CI-0-IP-1 ="" + + + + + fr.insee + l0qul94p-CI-1 + 1 + + "L'année du mariage ne peut pas être antérieure à l'année de mise en couple." + + + "L'année du mariage ne peut pas être antérieure à l'année de mise en couple." + + + fr.insee + l0qul94p-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l0qul94p-CI-1-IP-1 + 1 + + ANNEE_U + + + + fr.insee + l0qul94p-CI-1-IP-2 + 1 + + ANNEE_MARI + + + + + fr.insee + l27dlmvl-QOP-l27dtcgo + 1 + OutParameter + + + fr.insee + l0qul94p-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l0qul94p-QOP-l0qum61j + 1 + OutParameter + + + fr.insee + l0qul94p-CI-1-IP-2 + 1 + InParameter + + + not(isnull(l0qul94p-CI-1-IP-2)) and not(isnull(l0qul94p-CI-1-IP-1)) and cast(l0qul94p-CI-1-IP-2,integer) < cast(l0qul94p-CI-1-IP-1,integer) + + + + + fr.insee + l0qul94p-CI-2 + 1 + + "L'année du mariage ne peut pas être antérieure à l'année du pacs." + + + "L'année du mariage ne peut pas être antérieure à l'année du pacs." + + + fr.insee + l0qul94p-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l0qul94p-CI-2-IP-1 + 1 + + ANNEE_PACS + + + + fr.insee + l0qul94p-CI-2-IP-2 + 1 + + ANNEE_MARI + + + + + fr.insee + l0qu7e2g-QOP-l0qu1ddb + 1 + OutParameter + + + fr.insee + l0qul94p-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l0qul94p-QOP-l0qum61j + 1 + OutParameter + + + fr.insee + l0qul94p-CI-2-IP-2 + 1 + InParameter + + + not(isnull(l0qul94p-CI-2-IP-2)) and not(isnull(l0qul94p-CI-2-IP-1)) and l0qul94p-CI-2-IP-2 < l0qul94p-CI-2-IP-1 + + + + + fr.insee + l0qul94p-CI-3 + 1 + + "L'année du mariage ne peut pas être antérieure à votre année de naissance." + + + "L'année du mariage ne peut pas être antérieure à votre année de naissance." + + + fr.insee + l0qul94p-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l0qul94p-CI-3-IP-1 + 1 + + ANAIS + + + + fr.insee + l0qul94p-CI-3-IP-2 + 1 + + ANNEE_MARI + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l0qul94p-CI-3-IP-1 + 1 + InParameter + + + + + fr.insee + l0qul94p-QOP-l0qum61j + 1 + OutParameter + + + fr.insee + l0qul94p-CI-3-IP-2 + 1 + InParameter + + + not(isnull(l0qul94p-CI-3-IP-2)) and not(isnull(l0qul94p-CI-3-IP-1)) and cast(l0qul94p-CI-3-IP-2,integer) < cast(l0qul94p-CI-3-IP-1,integer) + + + + + fr.insee + l0qul94p-CI-4 + 1 + + "Il semble y avoir peu d'écart entre votre date de naissance et celle de votre mariage, est-ce que vous confirmez ?" + + + "Il semble y avoir peu d'écart entre votre date de naissance et celle de votre mariage, est-ce que vous confirmez ?" + + + fr.insee + l0qul94p-CI-4-II-4 + 1 + Instruction + + informational + + + vtl + + fr.insee + l0qul94p-CI-4-IP-1 + 1 + + ANAIS + + + + fr.insee + l0qul94p-CI-4-IP-2 + 1 + + ANNEE_MARI + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l0qul94p-CI-4-IP-1 + 1 + InParameter + + + + + fr.insee + l0qul94p-QOP-l0qum61j + 1 + OutParameter + + + fr.insee + l0qul94p-CI-4-IP-2 + 1 + InParameter + + + not(isnull(l0qul94p-CI-4-IP-2)) and not(isnull(l0qul94p-CI-4-IP-1)) and (cast(l0qul94p-CI-4-IP-1,integer) + 15 > cast(l0qul94p-CI-4-IP-2,integer)) + + + + + fr.insee + l0qul94p-CI-5 + 1 + + bornes ANNEE_MARI + + + bornes ANNEE_MARI + + + fr.insee + l0qul94p-CI-5-II-5 + 1 + Instruction + + informational + + + vtl + + fr.insee + l0qul94p-CI-5-IP-1 + 1 + + ANNEE_MARI + + + + + fr.insee + l0qul94p-QOP-l0qum61j + 1 + OutParameter + + + fr.insee + l0qul94p-CI-5-IP-1 + 1 + InParameter + + + cast(l0qul94p-CI-5-IP-1,integer) < 1920 or cast(l0qul94p-CI-5-IP-1,integer) > 2024 + + + + + fr.insee + l5kszr2f-CI-0 + 1 + + SEPARE non renseigné + + + SEPARE non renseigné + + + fr.insee + l5kszr2f-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l5kszr2f-CI-0-IP-1 + 1 + + SEPARE + + + + + fr.insee + l5kszr2f-QOP-l5kt58n3 + 1 + OutParameter + + + fr.insee + l5kszr2f-CI-0-IP-1 + 1 + InParameter + + + isnull(l5kszr2f-CI-0-IP-1) or l5kszr2f-CI-0-IP-1="" + + + + + fr.insee + l27dzhpw-CI-0 + 1 + + ANNEE_S non renseignée + + + ANNEE_S non renseignée + + + fr.insee + l27dzhpw-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27dzhpw-CI-0-IP-1 + 1 + + ANNEE_S + + + + + fr.insee + l27dzhpw-QOP-l27e9xg5 + 1 + OutParameter + + + fr.insee + l27dzhpw-CI-0-IP-1 + 1 + InParameter + + + isnull(l27dzhpw-CI-0-IP-1) or l27dzhpw-CI-0-IP-1="" + + + + + fr.insee + l27dzhpw-CI-1 + 1 + + "L'année de la séparation ne peut pas être antérieure à l'année de mise en couple." + + + "L'année de la séparation ne peut pas être antérieure à l'année de mise en couple." + + + fr.insee + l27dzhpw-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27dzhpw-CI-1-IP-1 + 1 + + ANNEE_U + + + + fr.insee + l27dzhpw-CI-1-IP-2 + 1 + + ANNEE_S + + + + + fr.insee + l27dlmvl-QOP-l27dtcgo + 1 + OutParameter + + + fr.insee + l27dzhpw-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l27dzhpw-QOP-l27e9xg5 + 1 + OutParameter + + + fr.insee + l27dzhpw-CI-1-IP-2 + 1 + InParameter + + + not(isnull(l27dzhpw-CI-1-IP-2)) and not(isnull(l27dzhpw-CI-1-IP-1)) and cast(l27dzhpw-CI-1-IP-2,integer) < cast(l27dzhpw-CI-1-IP-1,integer) + + + + + fr.insee + l27dzhpw-CI-2 + 1 + + "L'année de la séparation ne peut pas être antérieure à votre année de naissance." + + + "L'année de la séparation ne peut pas être antérieure à votre année de naissance." + + + fr.insee + l27dzhpw-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27dzhpw-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l27dzhpw-CI-2-IP-2 + 1 + + ANNEE_S + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l27dzhpw-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l27dzhpw-QOP-l27e9xg5 + 1 + OutParameter + + + fr.insee + l27dzhpw-CI-2-IP-2 + 1 + InParameter + + + not(isnull(l27dzhpw-CI-2-IP-2)) and not(isnull(l27dzhpw-CI-2-IP-1)) and cast(l27dzhpw-CI-2-IP-2,integer) < cast(l27dzhpw-CI-2-IP-1,integer) + + + + + fr.insee + l27dzhpw-CI-3 + 1 + + bornes ANNEE_S + + + bornes ANNEE_S + + + fr.insee + l27dzhpw-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27dzhpw-CI-3-IP-1 + 1 + + ANNEE_S + + + + + fr.insee + l27dzhpw-QOP-l27e9xg5 + 1 + OutParameter + + + fr.insee + l27dzhpw-CI-3-IP-1 + 1 + InParameter + + + cast(l27dzhpw-CI-3-IP-1,integer) < 1920 or cast(l27dzhpw-CI-3-IP-1,integer) > 2024 + + + + + fr.insee + l155mqhc-CI-0 + 1 + + ANNEE_D non renseignée + + + ANNEE_D non renseignée + + + fr.insee + l155mqhc-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l155mqhc-CI-0-IP-1 + 1 + + ANNEE_D + + + + + fr.insee + l155mqhc-QOP-l155u3w9 + 1 + OutParameter + + + fr.insee + l155mqhc-CI-0-IP-1 + 1 + InParameter + + + isnull(l155mqhc-CI-0-IP-1) or l155mqhc-CI-0-IP-1="" + + + + + fr.insee + l155mqhc-CI-1 + 1 + + "L'année du décès de votre conjoint(e) ne peut pas être antérieure à l'année de mise en couple." + + + "L'année du décès de votre conjoint(e) ne peut pas être antérieure à l'année de mise en couple." + + + fr.insee + l155mqhc-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l155mqhc-CI-1-IP-1 + 1 + + ANNEE_U + + + + fr.insee + l155mqhc-CI-1-IP-2 + 1 + + ANNEE_D + + + + + fr.insee + l27dlmvl-QOP-l27dtcgo + 1 + OutParameter + + + fr.insee + l155mqhc-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l155mqhc-QOP-l155u3w9 + 1 + OutParameter + + + fr.insee + l155mqhc-CI-1-IP-2 + 1 + InParameter + + + not(isnull(l155mqhc-CI-1-IP-2)) and not(isnull(l155mqhc-CI-1-IP-1)) and cast(l155mqhc-CI-1-IP-2,integer) < cast(l155mqhc-CI-1-IP-1,integer) + + + + + fr.insee + l155mqhc-CI-2 + 1 + + "L'année du décès de votre conjoint(e) ne peut pas être antérieure à votre année de naissance." + + + "L'année du décès de votre conjoint(e) ne peut pas être antérieure à votre année de naissance." + + + fr.insee + l155mqhc-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l155mqhc-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l155mqhc-CI-2-IP-2 + 1 + + ANNEE_D + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l155mqhc-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l155mqhc-QOP-l155u3w9 + 1 + OutParameter + + + fr.insee + l155mqhc-CI-2-IP-2 + 1 + InParameter + + + not(isnull(l155mqhc-CI-2-IP-2)) and not(isnull(l155mqhc-CI-2-IP-1)) and cast(l155mqhc-CI-2-IP-2,integer) < cast(l155mqhc-CI-2-IP-1,integer) + + + + + fr.insee + l155mqhc-CI-3 + 1 + + bornes ANNEE_D + + + bornes ANNEE_D + + + fr.insee + l155mqhc-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l155mqhc-CI-3-IP-1 + 1 + + ANNEE_D + + + + + fr.insee + l155mqhc-QOP-l155u3w9 + 1 + OutParameter + + + fr.insee + l155mqhc-CI-3-IP-1 + 1 + InParameter + + + cast(l155mqhc-CI-3-IP-1,integer) < 1920 or cast(l155mqhc-CI-3-IP-1,integer) > 2024 + + + + + fr.insee + l43u9qqf-CI-0 + 1 + + ENFAV_C non renseigné + + + ENFAV_C non renseigné + + + fr.insee + l43u9qqf-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l43u9qqf-CI-0-IP-1 + 1 + + ENFAV_C + + + + + fr.insee + l43u9qqf-QOP-l43udnys + 1 + OutParameter + + + fr.insee + l43u9qqf-CI-0-IP-1 + 1 + InParameter + + + isnull(l43u9qqf-CI-0-IP-1) or l43u9qqf-CI-0-IP-1="" + + + + + fr.insee + l43u4x96-CI-0 + 1 + + NBENFAV_C non renseigné + + + NBENFAV_C non renseigné + + + fr.insee + l43u4x96-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l43u4x96-CI-0-IP-1 + 1 + + NBENFAV_C + + + + + fr.insee + l43u4x96-QOP-l43udkpq + 1 + OutParameter + + + fr.insee + l43u4x96-CI-0-IP-1 + 1 + InParameter + + + isnull(l43u4x96-CI-0-IP-1) or l43u4x96-CI-0-IP-1="" + + + + + fr.insee + l5jnmvs2-CI-0 + 1 + + NBENFAV_VENU_C1 non renseigné + + + NBENFAV_VENU_C1 non renseigné + + + fr.insee + l5jnmvs2-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l5jnmvs2-CI-0-IP-1 + 1 + + NBENFAV_VENU_C1 + + + + + fr.insee + l5jnmvs2-QOP-l5jnikmw + 1 + OutParameter + + + fr.insee + l5jnmvs2-CI-0-IP-1 + 1 + InParameter + + + isnull(l5jnmvs2-CI-0-IP-1) or l5jnmvs2-CI-0-IP-1 ="" + + + + + fr.insee + l43why6c-CI-0 + 1 + + NBENFAV_VENU_C non renseigné + + + NBENFAV_VENU_C non renseigné + + + fr.insee + l43why6c-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l43why6c-CI-0-IP-1 + 1 + + NBENFAV_VENU_C + + + + + fr.insee + l43why6c-QOP-l43wz325 + 1 + OutParameter + + + fr.insee + l43why6c-CI-0-IP-1 + 1 + InParameter + + + isnull(l43why6c-CI-0-IP-1) or l43why6c-CI-0-IP-1="" + + + + + fr.insee + l43why6c-CI-1 + 1 + + "Le nombre d’enfants venus vivre avec vous ne peut pas être supérieur au nombre total d’enfants." + + + "Le nombre d’enfants venus vivre avec vous ne peut pas être supérieur au nombre total d’enfants." + + + fr.insee + l43why6c-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l43why6c-CI-1-IP-1 + 1 + + NBENFAV_C + + + + fr.insee + l43why6c-CI-1-IP-2 + 1 + + NBENFAV_VENU_C + + + + + fr.insee + l43u4x96-QOP-l43udkpq + 1 + OutParameter + + + fr.insee + l43why6c-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l43why6c-QOP-l43wz325 + 1 + OutParameter + + + fr.insee + l43why6c-CI-1-IP-2 + 1 + InParameter + + + nvl(l43why6c-CI-1-IP-2,0) > nvl(l43why6c-CI-1-IP-1,0) + + + + + fr.insee + l8lz0355-CI-0 + 1 + + VECU_C non renseignée + + + VECU_C non renseignée + + + fr.insee + l8lz0355-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8lz0355-CI-0-IP-1 + 1 + + VECU_C + + + + + fr.insee + l8lz0355-QOP-l8lyoa9v + 1 + OutParameter + + + fr.insee + l8lz0355-CI-0-IP-1 + 1 + InParameter + + + isnull(l8lz0355-CI-0-IP-1) or l8lz0355-CI-0-IP-1="" + + + + + fr.insee + l43xg8do-CI-0 + 1 + + ENF21_AUTPAR_C non renseigné + + + ENF21_AUTPAR_C non renseigné + + + fr.insee + l43xg8do-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l43xg8do-CI-0-IP-1 + 1 + + ENF21_AUTPAR_C1 + + + + fr.insee + l43xg8do-CI-0-IP-2 + 1 + + ENF21_AUTPAR_C2 + + + + fr.insee + l43xg8do-CI-0-IP-3 + 1 + + ENF21_AUTPAR_C3 + + + + fr.insee + l43xg8do-CI-0-IP-4 + 1 + + ENF21_AUTPAR_C4 + + + + + fr.insee + l43xg8do-QOP-lnbudt2m + 1 + OutParameter + + + fr.insee + l43xg8do-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l43xg8do-QOP-lnbuglr5 + 1 + OutParameter + + + fr.insee + l43xg8do-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l43xg8do-QOP-lnbuhhca + 1 + OutParameter + + + fr.insee + l43xg8do-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + l43xg8do-QOP-lnbuk0ua + 1 + OutParameter + + + fr.insee + l43xg8do-CI-0-IP-4 + 1 + InParameter + + + (nvl(l43xg8do-CI-0-IP-1, false) = false and nvl(l43xg8do-CI-0-IP-2, false) = false and nvl(l43xg8do-CI-0-IP-3, false) = false and nvl(l43xg8do-CI-0-IP-4, false) = false) + + + + + fr.insee + l43xg8do-CI-1 + 1 + + NON exclusif + + + NON exclusif + + + fr.insee + l43xg8do-CI-1-II-1 + 1 + Instruction + + stumblingblock + + + vtl + + fr.insee + l43xg8do-CI-1-IP-1 + 1 + + ENF21_AUTPAR_C1 + + + + fr.insee + l43xg8do-CI-1-IP-2 + 1 + + ENF21_AUTPAR_C2 + + + + fr.insee + l43xg8do-CI-1-IP-3 + 1 + + ENF21_AUTPAR_C3 + + + + fr.insee + l43xg8do-CI-1-IP-4 + 1 + + ENF21_AUTPAR_C4 + + + + + fr.insee + l43xg8do-QOP-lnbudt2m + 1 + OutParameter + + + fr.insee + l43xg8do-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l43xg8do-QOP-lnbuglr5 + 1 + OutParameter + + + fr.insee + l43xg8do-CI-1-IP-2 + 1 + InParameter + + + + + fr.insee + l43xg8do-QOP-lnbuhhca + 1 + OutParameter + + + fr.insee + l43xg8do-CI-1-IP-3 + 1 + InParameter + + + + + fr.insee + l43xg8do-QOP-lnbuk0ua + 1 + OutParameter + + + fr.insee + l43xg8do-CI-1-IP-4 + 1 + InParameter + + + (nvl(l43xg8do-CI-1-IP-1, false) and nvl(l43xg8do-CI-1-IP-2, false)) or (nvl(l43xg8do-CI-1-IP-1, false) and nvl(l43xg8do-CI-1-IP-3, false)) or (nvl(l43xg8do-CI-1-IP-1, false) and nvl(l43xg8do-CI-1-IP-4, false)) + + + + + fr.insee + l15131wu-CI-0 + 1 + + AUT_UNION non renseigné + + + AUT_UNION non renseigné + + + fr.insee + l15131wu-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l15131wu-CI-0-IP-1 + 1 + + AUT_UNION + + + + + fr.insee + l15131wu-QOP-l43xhx4c + 1 + OutParameter + + + fr.insee + l15131wu-CI-0-IP-1 + 1 + InParameter + + + isnull(l15131wu-CI-0-IP-1) or l15131wu-CI-0-IP-1="" + + + + + fr.insee + l43x1amr-CI-0 + 1 + + NB_AUT_UNION non renseigné + + + NB_AUT_UNION non renseigné + + + fr.insee + l43x1amr-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l43x1amr-CI-0-IP-1 + 1 + + NB_AUT_UNION + + + + + fr.insee + l43x1amr-QOP-l43xhfsb + 1 + OutParameter + + + fr.insee + l43x1amr-CI-0-IP-1 + 1 + InParameter + + + isnull(l43x1amr-CI-0-IP-1) or l43x1amr-CI-0-IP-1="" + + + + + fr.insee + kwqa53jx-CI-0 + 1 + + PRENOM_U1 non renseigné + + + PRENOM_U1 non renseigné + + + fr.insee + kwqa53jx-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqa53jx-CI-0-IP-1 + 1 + + PRENOM_U1 + + + + + fr.insee + kwqa53jx-QOP-kwqa5f6j + 1 + OutParameter + + + fr.insee + kwqa53jx-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqa53jx-CI-0-IP-1) or kwqa53jx-CI-0-IP-1="" + + + + + fr.insee + l4p8skko-CI-0 + 1 + + SEXE_U1H non renseigné + + + SEXE_U1H non renseigné + + + fr.insee + l4p8skko-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4p8skko-CI-0-IP-1 + 1 + + SEXE_U1H + + + + + fr.insee + l4p8skko-QOP-l4p8w47s + 1 + OutParameter + + + fr.insee + l4p8skko-CI-0-IP-1 + 1 + InParameter + + + isnull(l4p8skko-CI-0-IP-1) or l4p8skko-CI-0-IP-1="" + + + + + fr.insee + lldenssh-CI-0 + 1 + + SEXE_U1F non renseigné + + + SEXE_U1F non renseigné + + + fr.insee + lldenssh-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lldenssh-CI-0-IP-1 + 1 + + SEXE_U1F + + + + + fr.insee + lldenssh-QOP-lldeceld + 1 + OutParameter + + + fr.insee + lldenssh-CI-0-IP-1 + 1 + InParameter + + + isnull(lldenssh-CI-0-IP-1) or lldenssh-CI-0-IP-1="" + + + + + fr.insee + l34fzu5m-CI-0 + 1 + + ANNEE_U1 non renseignée + + + ANNEE_U1 non renseignée + + + fr.insee + l34fzu5m-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l34fzu5m-CI-0-IP-1 + 1 + + ANNEE_U1 + + + + + fr.insee + l34fzu5m-QOP-l34fz29f + 1 + OutParameter + + + fr.insee + l34fzu5m-CI-0-IP-1 + 1 + InParameter + + + isnull(l34fzu5m-CI-0-IP-1) or l34fzu5m-CI-0-IP-1="" + + + + + fr.insee + l34fzu5m-CI-1 + 1 + + "L'année de première mise en couple ne peut pas être postérieure à l'année de mise en couple." + + + "L'année de première mise en couple ne peut pas être postérieure à l'année de mise en couple." + + + fr.insee + l34fzu5m-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l34fzu5m-CI-1-IP-1 + 1 + + ANNEE_U + + + + fr.insee + l34fzu5m-CI-1-IP-2 + 1 + + ANNEE_U1 + + + + + fr.insee + l27dlmvl-QOP-l27dtcgo + 1 + OutParameter + + + fr.insee + l34fzu5m-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l34fzu5m-QOP-l34fz29f + 1 + OutParameter + + + fr.insee + l34fzu5m-CI-1-IP-2 + 1 + InParameter + + + not(isnull(l34fzu5m-CI-1-IP-2)) and not(isnull(l34fzu5m-CI-1-IP-1)) and cast(l34fzu5m-CI-1-IP-2,integer) > cast(l34fzu5m-CI-1-IP-1,integer) + + + + + fr.insee + l34fzu5m-CI-2 + 1 + + "L'année de première mise en couple ne peut pas être antérieure à votre année de naissance." + + + "L'année de première mise en couple ne peut pas être antérieure à votre année de naissance." + + + fr.insee + l34fzu5m-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l34fzu5m-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l34fzu5m-CI-2-IP-2 + 1 + + ANNEE_U1 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l34fzu5m-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l34fzu5m-QOP-l34fz29f + 1 + OutParameter + + + fr.insee + l34fzu5m-CI-2-IP-2 + 1 + InParameter + + + not(isnull(l34fzu5m-CI-2-IP-2)) and not(isnull(l34fzu5m-CI-2-IP-1)) and cast(l34fzu5m-CI-2-IP-2,integer) < cast(l34fzu5m-CI-2-IP-1,integer) + + + + + fr.insee + l34fzu5m-CI-3 + 1 + + "Il semble y avoir peu d'écart entre votre date de naissance et celle de votre première mise en couple, est-ce que vous confirmez ?" + + + "Il semble y avoir peu d'écart entre votre date de naissance et celle de votre première mise en couple, est-ce que vous confirmez ?" + + + fr.insee + l34fzu5m-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l34fzu5m-CI-3-IP-1 + 1 + + ANAIS + + + + fr.insee + l34fzu5m-CI-3-IP-2 + 1 + + ANNEE_U1 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l34fzu5m-CI-3-IP-1 + 1 + InParameter + + + + + fr.insee + l34fzu5m-QOP-l34fz29f + 1 + OutParameter + + + fr.insee + l34fzu5m-CI-3-IP-2 + 1 + InParameter + + + not(isnull(l34fzu5m-CI-3-IP-2)) and not(isnull(l34fzu5m-CI-3-IP-1)) and (cast(l34fzu5m-CI-3-IP-1,integer) + 15 > cast(l34fzu5m-CI-3-IP-2,integer)) + + + + + fr.insee + l34fzu5m-CI-4 + 1 + + bornes ANNEE_U1 + + + bornes ANNEE_U1 + + + fr.insee + l34fzu5m-CI-4-II-4 + 1 + Instruction + + informational + + + vtl + + fr.insee + l34fzu5m-CI-4-IP-1 + 1 + + ANNEE_U1 + + + + + fr.insee + l34fzu5m-QOP-l34fz29f + 1 + OutParameter + + + fr.insee + l34fzu5m-CI-4-IP-1 + 1 + InParameter + + + cast(l34fzu5m-CI-4-IP-1,integer) < 1920 or cast(l34fzu5m-CI-4-IP-1,integer) > 2023 + + + + + fr.insee + l27dlnmq-CI-0 + 1 + + PACS_U1 non renseigné + + + PACS_U1 non renseigné + + + fr.insee + l27dlnmq-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27dlnmq-CI-0-IP-1 + 1 + + PACS_U1 + + + + + fr.insee + l27dlnmq-QOP-l27dler4 + 1 + OutParameter + + + fr.insee + l27dlnmq-CI-0-IP-1 + 1 + InParameter + + + isnull(l27dlnmq-CI-0-IP-1) or l27dlnmq-CI-0-IP-1 ="" + + + + + fr.insee + l27dns8a-CI-0 + 1 + + ANNEE_PACS_U1 non renseigné + + + ANNEE_PACS_U1 non renseigné + + + fr.insee + l27dns8a-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27dns8a-CI-0-IP-1 + 1 + + ANNEE_PACS_U1 + + + + + fr.insee + l27dns8a-QOP-l27dy9w1 + 1 + OutParameter + + + fr.insee + l27dns8a-CI-0-IP-1 + 1 + InParameter + + + isnull(l27dns8a-CI-0-IP-1) or l27dns8a-CI-0-IP-1="" + + + + + fr.insee + l27dns8a-CI-1 + 1 + + "L'année du premier pacs ne peut pas être antérieure à l'année de première mise en couple." + + + + "L'année du premier pacs ne peut pas être antérieure à l'année de première mise en couple." + + + + fr.insee + l27dns8a-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27dns8a-CI-1-IP-1 + 1 + + ANNEE_U1 + + + + fr.insee + l27dns8a-CI-1-IP-2 + 1 + + ANNEE_PACS_U1 + + + + + fr.insee + l34fzu5m-QOP-l34fz29f + 1 + OutParameter + + + fr.insee + l27dns8a-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l27dns8a-QOP-l27dy9w1 + 1 + OutParameter + + + fr.insee + l27dns8a-CI-1-IP-2 + 1 + InParameter + + + not(isnull(l27dns8a-CI-1-IP-1)) and not(isnull(l27dns8a-CI-1-IP-2)) and cast(l27dns8a-CI-1-IP-2,integer) < cast(l27dns8a-CI-1-IP-1,integer) + + + + + fr.insee + l27dns8a-CI-2 + 1 + + "L'année du premier pacs ne peut pas être antérieure à votre année de naissance." + + + + "L'année du premier pacs ne peut pas être antérieure à votre année de naissance." + + + + fr.insee + l27dns8a-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27dns8a-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l27dns8a-CI-2-IP-2 + 1 + + ANNEE_PACS_U1 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l27dns8a-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l27dns8a-QOP-l27dy9w1 + 1 + OutParameter + + + fr.insee + l27dns8a-CI-2-IP-2 + 1 + InParameter + + + not(isnull(l27dns8a-CI-2-IP-2)) and not(isnull(l27dns8a-CI-2-IP-1)) and cast(l27dns8a-CI-2-IP-2,integer) < cast(l27dns8a-CI-2-IP-1,integer) + + + + + fr.insee + l27dns8a-CI-3 + 1 + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre premier pacs, est-ce que vous confirmez ?" + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre premier pacs, est-ce que vous confirmez ?" + + + fr.insee + l27dns8a-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27dns8a-CI-3-IP-1 + 1 + + ANAIS + + + + fr.insee + l27dns8a-CI-3-IP-2 + 1 + + ANNEE_PACS_U1 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l27dns8a-CI-3-IP-1 + 1 + InParameter + + + + + fr.insee + l27dns8a-QOP-l27dy9w1 + 1 + OutParameter + + + fr.insee + l27dns8a-CI-3-IP-2 + 1 + InParameter + + + not(isnull(l27dns8a-CI-3-IP-2)) and not(isnull(l27dns8a-CI-3-IP-1)) and (cast(l27dns8a-CI-3-IP-1,integer) + 15 > cast(l27dns8a-CI-3-IP-2,integer)) + + + + + fr.insee + l27dns8a-CI-4 + 1 + + "L'année du premier pacs ne peut pas être postérieure à l'année du pacs." + + + + "L'année du premier pacs ne peut pas être postérieure à l'année du pacs." + + + + fr.insee + l27dns8a-CI-4-II-4 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27dns8a-CI-4-IP-1 + 1 + + ANNEE_PACS + + + + fr.insee + l27dns8a-CI-4-IP-2 + 1 + + ANNEE_PACS_U1 + + + + + fr.insee + l0qu7e2g-QOP-l0qu1ddb + 1 + OutParameter + + + fr.insee + l27dns8a-CI-4-IP-1 + 1 + InParameter + + + + + fr.insee + l27dns8a-QOP-l27dy9w1 + 1 + OutParameter + + + fr.insee + l27dns8a-CI-4-IP-2 + 1 + InParameter + + + not(isnull(l27dns8a-CI-4-IP-1)) and not(isnull(l27dns8a-CI-4-IP-2)) and cast(l27dns8a-CI-4-IP-2,integer) >= cast(l27dns8a-CI-4-IP-1,integer) + + + + + fr.insee + l27dns8a-CI-5 + 1 + + bornes ANNEE_PACS_U1 + + + bornes ANNEE_PACS_U1 + + + fr.insee + l27dns8a-CI-5-II-5 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27dns8a-CI-5-IP-1 + 1 + + ANNEE_PACS_U1 + + + + + fr.insee + l27dns8a-QOP-l27dy9w1 + 1 + OutParameter + + + fr.insee + l27dns8a-CI-5-IP-1 + 1 + InParameter + + + cast(l27dns8a-CI-5-IP-1,integer) < 1999 or cast(l27dns8a-CI-5-IP-1,integer) > 2023 + + + + + fr.insee + l27duust-CI-0 + 1 + + MARI_U1 non renseigné + + + MARI_U1 non renseigné + + + fr.insee + l27duust-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27duust-CI-0-IP-1 + 1 + + MARI_U1 + + + + + fr.insee + l27duust-QOP-l27dl55t + 1 + OutParameter + + + fr.insee + l27duust-CI-0-IP-1 + 1 + InParameter + + + isnull(l27duust-CI-0-IP-1) or l27duust-CI-0-IP-1="" + + + + + fr.insee + l27e50tv-CI-0 + 1 + + ANNEE_MARI_U1 non renseigné + + + ANNEE_MARI_U1 non renseigné + + + fr.insee + l27e50tv-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27e50tv-CI-0-IP-1 + 1 + + ANNEE_MARI_U1 + + + + + fr.insee + l27e50tv-QOP-l27dy96e + 1 + OutParameter + + + fr.insee + l27e50tv-CI-0-IP-1 + 1 + InParameter + + + isnull(l27e50tv-CI-0-IP-1) or l27e50tv-CI-0-IP-1="" + + + + + fr.insee + l27e50tv-CI-1 + 1 + + "L'année du premier mariage ne peut pas être antérieure à l'année de première mise en couple." + + + "L'année du premier mariage ne peut pas être antérieure à l'année de première mise en couple." + + + fr.insee + l27e50tv-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27e50tv-CI-1-IP-1 + 1 + + ANNEE_U1 + + + + fr.insee + l27e50tv-CI-1-IP-2 + 1 + + ANNEE_MARI_U1 + + + + + fr.insee + l34fzu5m-QOP-l34fz29f + 1 + OutParameter + + + fr.insee + l27e50tv-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l27e50tv-QOP-l27dy96e + 1 + OutParameter + + + fr.insee + l27e50tv-CI-1-IP-2 + 1 + InParameter + + + not(isnull(l27e50tv-CI-1-IP-2)) and not(isnull(l27e50tv-CI-1-IP-1)) and cast(l27e50tv-CI-1-IP-2,integer) < cast(l27e50tv-CI-1-IP-1,integer) + + + + + fr.insee + l27e50tv-CI-2 + 1 + + "L'année du premier mariage ne peut pas être antérieure à l'année du premier pacs." + + + "L'année du premier mariage ne peut pas être antérieure à l'année du premier pacs." + + + fr.insee + l27e50tv-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27e50tv-CI-2-IP-1 + 1 + + ANNEE_PACS_U1 + + + + fr.insee + l27e50tv-CI-2-IP-2 + 1 + + ANNEE_MARI_U1 + + + + + fr.insee + l27dns8a-QOP-l27dy9w1 + 1 + OutParameter + + + fr.insee + l27e50tv-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l27e50tv-QOP-l27dy96e + 1 + OutParameter + + + fr.insee + l27e50tv-CI-2-IP-2 + 1 + InParameter + + + not(isnull(l27e50tv-CI-2-IP-2)) and not(isnull(l27e50tv-CI-2-IP-1)) and cast(l27e50tv-CI-2-IP-2,integer) < cast(l27e50tv-CI-2-IP-1,integer) + + + + + fr.insee + l27e50tv-CI-3 + 1 + + "L'année du premier mariage ne peut pas être antérieure à votre année de naissance." + + + "L'année du premier mariage ne peut pas être antérieure à votre année de naissance." + + + fr.insee + l27e50tv-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27e50tv-CI-3-IP-1 + 1 + + ANAIS + + + + fr.insee + l27e50tv-CI-3-IP-2 + 1 + + ANNEE_MARI_U1 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l27e50tv-CI-3-IP-1 + 1 + InParameter + + + + + fr.insee + l27e50tv-QOP-l27dy96e + 1 + OutParameter + + + fr.insee + l27e50tv-CI-3-IP-2 + 1 + InParameter + + + not(isnull(l27e50tv-CI-3-IP-2)) and not(isnull(l27e50tv-CI-3-IP-1)) and cast(l27e50tv-CI-3-IP-2,integer) < cast(l27e50tv-CI-3-IP-1,integer) + + + + + fr.insee + l27e50tv-CI-4 + 1 + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre premier mariage, est-ce que vous confirmez ?" + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre premier mariage, est-ce que vous confirmez ?" + + + fr.insee + l27e50tv-CI-4-II-4 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27e50tv-CI-4-IP-1 + 1 + + ANAIS + + + + fr.insee + l27e50tv-CI-4-IP-2 + 1 + + ANNEE_MARI_U1 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l27e50tv-CI-4-IP-1 + 1 + InParameter + + + + + fr.insee + l27e50tv-QOP-l27dy96e + 1 + OutParameter + + + fr.insee + l27e50tv-CI-4-IP-2 + 1 + InParameter + + + not(isnull(l27e50tv-CI-4-IP-2)) not(isnull(l27e50tv-CI-4-IP-1)) and (cast((l27e50tv-CI-4-IP-1,integer) + 15 > cast(l27e50tv-CI-4-IP-2,integer)) + + + + + fr.insee + l27e50tv-CI-5 + 1 + + "L'année du premier mariage ne peut pas être postérieure à l'année du mariage." + + + "L'année du premier mariage ne peut pas être postérieure à l'année du mariage." + + + fr.insee + l27e50tv-CI-5-II-5 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27e50tv-CI-5-IP-1 + 1 + + ANNEE_MARI + + + + fr.insee + l27e50tv-CI-5-IP-2 + 1 + + ANNEE_MARI_U1 + + + + + fr.insee + l0qul94p-QOP-l0qum61j + 1 + OutParameter + + + fr.insee + l27e50tv-CI-5-IP-1 + 1 + InParameter + + + + + fr.insee + l27e50tv-QOP-l27dy96e + 1 + OutParameter + + + fr.insee + l27e50tv-CI-5-IP-2 + 1 + InParameter + + + not(isnull(l27e50tv-CI-5-IP-2)) and not(isnull(l27e50tv-CI-5-IP-1)) and cast(l27e50tv-CI-5-IP-2,integer) >= cast(l27e50tv-CI-5-IP-1,integer) + + + + + fr.insee + l27e50tv-CI-6 + 1 + + bornes ANNEE_MARI_U1 + + + bornes ANNEE_MARI_U1 + + + fr.insee + l27e50tv-CI-6-II-6 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27e50tv-CI-6-IP-1 + 1 + + ANNEE_MARI_U1 + + + + + fr.insee + l27e50tv-QOP-l27dy96e + 1 + OutParameter + + + fr.insee + l27e50tv-CI-6-IP-1 + 1 + InParameter + + + cast(l27e50tv-CI-6-IP-1,integer) < 1920 or cast(l27e50tv-CI-6-IP-1,integer) > 2023 + + + + + fr.insee + l5ktf1wn-CI-0 + 1 + + SEPARE_U1 non renseigné + + + SEPARE_U1 non renseigné + + + fr.insee + l5ktf1wn-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l5ktf1wn-CI-0-IP-1 + 1 + + SEPARE_U1 + + + + + fr.insee + l5ktf1wn-QOP-l5kt1un9 + 1 + OutParameter + + + fr.insee + l5ktf1wn-CI-0-IP-1 + 1 + InParameter + + + isnull(l5ktf1wn-CI-0-IP-1) or l5ktf1wn-CI-0-IP-1="" + + + + + fr.insee + l27dzhzv-CI-0 + 1 + + ANNEE_S_U1 non renseignée + + + ANNEE_S_U1 non renseignée + + + fr.insee + l27dzhzv-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27dzhzv-CI-0-IP-1 + 1 + + ANNEE_S_U1 + + + + + fr.insee + l27dzhzv-QOP-l27e9d05 + 1 + OutParameter + + + fr.insee + l27dzhzv-CI-0-IP-1 + 1 + InParameter + + + isnull(l27dzhzv-CI-0-IP-1) or l27dzhzv-CI-0-IP-1="" + + + + + fr.insee + l27dzhzv-CI-1 + 1 + + "L'année de la première séparation ne peut pas être antérieure à l'année de première mise en couple." + + + "L'année de la première séparation ne peut pas être antérieure à l'année de première mise en couple." + + + fr.insee + l27dzhzv-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27dzhzv-CI-1-IP-1 + 1 + + ANNEE_U1 + + + + fr.insee + l27dzhzv-CI-1-IP-2 + 1 + + ANNEE_S_U1 + + + + + fr.insee + l34fzu5m-QOP-l34fz29f + 1 + OutParameter + + + fr.insee + l27dzhzv-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l27dzhzv-QOP-l27e9d05 + 1 + OutParameter + + + fr.insee + l27dzhzv-CI-1-IP-2 + 1 + InParameter + + + not(isnull(l27dzhzv-CI-1-IP-2)) and not(isnull(l27dzhzv-CI-1-IP-1)) and cast(l27dzhzv-CI-1-IP-2,integer) < cast(l27dzhzv-CI-1-IP-1,integer) + + + + + fr.insee + l27dzhzv-CI-2 + 1 + + "L'année de votre première séparation ne peut pas être antérieure à votre année de naissance." + + + "L'année de votre première séparation ne peut pas être antérieure à votre année de naissance." + + + fr.insee + l27dzhzv-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27dzhzv-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l27dzhzv-CI-2-IP-2 + 1 + + ANNEE_S_U1 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l27dzhzv-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l27dzhzv-QOP-l27e9d05 + 1 + OutParameter + + + fr.insee + l27dzhzv-CI-2-IP-2 + 1 + InParameter + + + not(isnull(l27dzhzv-CI-2-IP-2)) and not(isnull(l27dzhzv-CI-2-IP-1)) and cast(l27dzhzv-CI-2-IP-2,integer) < cast(l27dzhzv-CI-2-IP-1,integer) + + + + + fr.insee + l27dzhzv-CI-3 + 1 + + bornes ANNEE_S_U1 + + + bornes ANNEE_S_U1 + + + fr.insee + l27dzhzv-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27dzhzv-CI-3-IP-1 + 1 + + ANNEE_S_U1 + + + + + fr.insee + l27dzhzv-QOP-l27e9d05 + 1 + OutParameter + + + fr.insee + l27dzhzv-CI-3-IP-1 + 1 + InParameter + + + cast(l27dzhzv-CI-3-IP-1,integer) < 1920 or cast(l27dzhzv-CI-3-IP-1,integer) > 2023 + + + + + fr.insee + l27e0qyq-CI-0 + 1 + + ANNEE_D_U1 non renseignée + + + ANNEE_D_U1 non renseignée + + + fr.insee + l27e0qyq-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27e0qyq-CI-0-IP-1 + 1 + + ANNEE_D_U1 + + + + + fr.insee + l27e0qyq-QOP-l27e0zm5 + 1 + OutParameter + + + fr.insee + l27e0qyq-CI-0-IP-1 + 1 + InParameter + + + isnull(l27e0qyq-CI-0-IP-1) or l27e0qyq-CI-0-IP-1="" + + + + + fr.insee + l27e0qyq-CI-1 + 1 + + "L'année du décès de votre premier(ère) conjoint(e) ne peut pas être antérieure à l'année de première mise en couple." + + + "L'année du décès de votre premier(ère) conjoint(e) ne peut pas être antérieure à l'année de première mise en couple." + + + fr.insee + l27e0qyq-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27e0qyq-CI-1-IP-1 + 1 + + ANNEE_U1 + + + + fr.insee + l27e0qyq-CI-1-IP-2 + 1 + + ANNEE_D_U1 + + + + + fr.insee + l34fzu5m-QOP-l34fz29f + 1 + OutParameter + + + fr.insee + l27e0qyq-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l27e0qyq-QOP-l27e0zm5 + 1 + OutParameter + + + fr.insee + l27e0qyq-CI-1-IP-2 + 1 + InParameter + + + not(isnull(l27e0qyq-CI-1-IP-2)) and not(isnull(l27e0qyq-CI-1-IP-1)) and cast(l27e0qyq-CI-1-IP-2,integer) < cast(l27e0qyq-CI-1-IP-1,integer) + + + + + fr.insee + l27e0qyq-CI-2 + 1 + + "L'année du décès de votre premier(ère) conjoint(e) ne peut pas être antérieure à votre année de naissance." + + + "L'année du décès de votre premier(ère) conjoint(e) ne peut pas être antérieure à votre année de naissance." + + + fr.insee + l27e0qyq-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27e0qyq-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l27e0qyq-CI-2-IP-2 + 1 + + ANNEE_D_U1 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l27e0qyq-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l27e0qyq-QOP-l27e0zm5 + 1 + OutParameter + + + fr.insee + l27e0qyq-CI-2-IP-2 + 1 + InParameter + + + not(isnull(l27e0qyq-CI-2-IP-2)) and not(isnull(l27e0qyq-CI-2-IP-1)) and l27e0qyq-CI-2-IP-2 < l27e0qyq-CI-2-IP-1 + + + + + fr.insee + l27e0qyq-CI-3 + 1 + + bornes ANNEE_D_U1 + + + bornes ANNEE_D_U1 + + + fr.insee + l27e0qyq-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27e0qyq-CI-3-IP-1 + 1 + + ANNEE_D_U1 + + + + + fr.insee + l27e0qyq-QOP-l27e0zm5 + 1 + OutParameter + + + fr.insee + l27e0qyq-CI-3-IP-1 + 1 + InParameter + + + cast(l27e0qyq-CI-3-IP-1,integer) < 1920 or cast(l27e0qyq-CI-3-IP-1,integer) > 2024 + + + + + fr.insee + l4cjg2rp-CI-0 + 1 + + ENFAV_C_U1 non renseigné + + + ENFAV_C_U1 non renseigné + + + fr.insee + l4cjg2rp-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4cjg2rp-CI-0-IP-1 + 1 + + ENFAV_C_U1 + + + + + fr.insee + l4cjg2rp-QOP-l4cjcmvn + 1 + OutParameter + + + fr.insee + l4cjg2rp-CI-0-IP-1 + 1 + InParameter + + + isnull(l4cjg2rp-CI-0-IP-1) or l4cjg2rp-CI-0-IP-1="" + + + + + fr.insee + l4cja8pm-CI-0 + 1 + + NBENFAV_C_U1 non renseigné + + + NBENFAV_C_U1 non renseigné + + + fr.insee + l4cja8pm-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4cja8pm-CI-0-IP-1 + 1 + + NBENFAV_C_U1 + + + + + fr.insee + l4cja8pm-QOP-l4cjc9rj + 1 + OutParameter + + + fr.insee + l4cja8pm-CI-0-IP-1 + 1 + InParameter + + + isnull(l4cja8pm-CI-0-IP-1) or l4cja8pm-CI-0-IP-1 ="" + + + + + fr.insee + l5ilbb89-CI-0 + 1 + + NBENFAV_C1_VENU_U1 non renseigné + + + NBENFAV_C1_VENU_U1 non renseigné + + + fr.insee + l5ilbb89-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l5ilbb89-CI-0-IP-1 + 1 + + NBENFAV_C1_VENU_U1 + + + + + fr.insee + l5ilbb89-QOP-l5ild1d2 + 1 + OutParameter + + + fr.insee + l5ilbb89-CI-0-IP-1 + 1 + InParameter + + + isnull(l5ilbb89-CI-0-IP-1) or l5ilbb89-CI-0-IP-1="" + + + + + fr.insee + l4o5x7yq-CI-0 + 1 + + NBENFAV_C_VENU_U1 non renseigné + + + NBENFAV_C_VENU_U1 non renseigné + + + fr.insee + l4o5x7yq-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4o5x7yq-CI-0-IP-1 + 1 + + NBENFAV_C_VENU_U1 + + + + + fr.insee + l4o5x7yq-QOP-l4o5y0na + 1 + OutParameter + + + fr.insee + l4o5x7yq-CI-0-IP-1 + 1 + InParameter + + + isnull(l4o5x7yq-CI-0-IP-1) or l4o5x7yq-CI-0-IP-1 ="" + + + + + fr.insee + l4o5x7yq-CI-1 + 1 + + "Le nombre d’enfants venus vivre avec vous ne peut pas être supérieur au nombre total d’enfants." + + + "Le nombre d’enfants venus vivre avec vous ne peut pas être supérieur au nombre total d’enfants." + + + fr.insee + l4o5x7yq-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4o5x7yq-CI-1-IP-1 + 1 + + NBENFAV_C_U1 + + + + fr.insee + l4o5x7yq-CI-1-IP-2 + 1 + + NBENFAV_C_VENU_U1 + + + + + fr.insee + l4cja8pm-QOP-l4cjc9rj + 1 + OutParameter + + + fr.insee + l4o5x7yq-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4o5x7yq-QOP-l4o5y0na + 1 + OutParameter + + + fr.insee + l4o5x7yq-CI-1-IP-2 + 1 + InParameter + + + nvl(l4o5x7yq-CI-1-IP-2,0) > nvl(l4o5x7yq-CI-1-IP-1,0) + + + + + fr.insee + l9il0i0h-CI-0 + 1 + + AUT_U2 non renseigné + + + AUT_U2 non renseigné + + + fr.insee + l9il0i0h-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9il0i0h-CI-0-IP-1 + 1 + + AUT_U2 + + + + + fr.insee + l9il0i0h-QOP-l9ilguvv + 1 + OutParameter + + + fr.insee + l9il0i0h-CI-0-IP-1 + 1 + InParameter + + + isnull(l9il0i0h-CI-0-IP-1) or l9il0i0h-CI-0-IP-1="" + + + + + fr.insee + l9ilcol6-CI-0 + 1 + + PRENOM_U2 non renseigné + + + PRENOM_U2 non renseigné + + + fr.insee + l9ilcol6-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ilcol6-CI-0-IP-1 + 1 + + PRENOM_U2 + + + + + fr.insee + l9ilcol6-QOP-l9il24xt + 1 + OutParameter + + + fr.insee + l9ilcol6-CI-0-IP-1 + 1 + InParameter + + + isnull(l9ilcol6-CI-0-IP-1) or l9ilcol6-CI-0-IP-1="" + + + + + fr.insee + l9ikne2h-CI-0 + 1 + + SEXE_U2H non renseigné + + + SEXE_U2H non renseigné + + + fr.insee + l9ikne2h-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikne2h-CI-0-IP-1 + 1 + + SEXE_U2H + + + + + fr.insee + l9ikne2h-QOP-l9ikmsqc + 1 + OutParameter + + + fr.insee + l9ikne2h-CI-0-IP-1 + 1 + InParameter + + + isnull(l9ikne2h-CI-0-IP-1) or l9ikne2h-CI-0-IP-1="" + + + + + fr.insee + lldetngg-CI-0 + 1 + + SEXE_U2F non renseigné + + + SEXE_U2F non renseigné + + + fr.insee + lldetngg-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lldetngg-CI-0-IP-1 + 1 + + SEXE_U2F + + + + + fr.insee + lldetngg-QOP-lldefr60 + 1 + OutParameter + + + fr.insee + lldetngg-CI-0-IP-1 + 1 + InParameter + + + isnull(lldetngg-CI-0-IP-1) or lldetngg-CI-0-IP-1="" + + + + + fr.insee + l9ikn3ea-CI-0 + 1 + + "L'année de mise en couple de cette autre union ne peut pas être postérieure à l'année de mise en couple." + + + "L'année de mise en couple de cette autre union ne peut pas être postérieure à l'année de mise en couple." + + + fr.insee + l9ikn3ea-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikn3ea-CI-0-IP-1 + 1 + + ANNEE_U + + + + fr.insee + l9ikn3ea-CI-0-IP-2 + 1 + + ANNEE_U2 + + + + + fr.insee + l27dlmvl-QOP-l27dtcgo + 1 + OutParameter + + + fr.insee + l9ikn3ea-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l9ikn3ea-QOP-l9il1x2i + 1 + OutParameter + + + fr.insee + l9ikn3ea-CI-0-IP-2 + 1 + InParameter + + + not(isnull(l9ikn3ea-CI-0-IP-2)) and not(isnull(l9ikn3ea-CI-0-IP-1)) and cast(l9ikn3ea-CI-0-IP-1,integer) < cast(l9ikn3ea-CI-0-IP-2,integer) + + + + + fr.insee + l9ikn3ea-CI-1 + 1 + + ANNEE_U2 non renseigné + + + ANNEE_U2 non renseigné + + + fr.insee + l9ikn3ea-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikn3ea-CI-1-IP-1 + 1 + + ANNEE_U2 + + + + + fr.insee + l9ikn3ea-QOP-l9il1x2i + 1 + OutParameter + + + fr.insee + l9ikn3ea-CI-1-IP-1 + 1 + InParameter + + + isnull(l9ikn3ea-CI-1-IP-1) or l9ikn3ea-CI-1-IP-1="" + + + + + fr.insee + l9ikn3ea-CI-2 + 1 + + "L'année de mise en couple de cette autre union ne peut pas être antérieure à votre année de naissance." + + + "L'année de mise en couple de cette autre union ne peut pas être antérieure à votre année de naissance." + + + fr.insee + l9ikn3ea-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikn3ea-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l9ikn3ea-CI-2-IP-2 + 1 + + ANNEE_U2 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l9ikn3ea-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l9ikn3ea-QOP-l9il1x2i + 1 + OutParameter + + + fr.insee + l9ikn3ea-CI-2-IP-2 + 1 + InParameter + + + not(isnull(l9ikn3ea-CI-2-IP-2)) and not(isnull(l9ikn3ea-CI-2-IP-1)) and cast(l9ikn3ea-CI-2-IP-2,integer) < cast(l9ikn3ea-CI-2-IP-1,integer) + + + + + fr.insee + l9ikn3ea-CI-3 + 1 + + "Il semble y avoir peu d'écart entre votre date de naissance et celle de la mise en couple de cette autre union, est-ce que vous confirmez ?" + + + "Il semble y avoir peu d'écart entre votre date de naissance et celle de la mise en couple de cette autre union, est-ce que vous confirmez ?" + + + fr.insee + l9ikn3ea-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikn3ea-CI-3-IP-1 + 1 + + ANAIS + + + + fr.insee + l9ikn3ea-CI-3-IP-2 + 1 + + ANNEE_U2 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l9ikn3ea-CI-3-IP-1 + 1 + InParameter + + + + + fr.insee + l9ikn3ea-QOP-l9il1x2i + 1 + OutParameter + + + fr.insee + l9ikn3ea-CI-3-IP-2 + 1 + InParameter + + + not(isnull(l9ikn3ea-CI-3-IP-2)) and not(isnull(l9ikn3ea-CI-3-IP-1)) and (cast(l9ikn3ea-CI-3-IP-1,integer) + 15 > cast(l9ikn3ea-CI-3-IP-2,integer)) + + + + + fr.insee + l9ikn3ea-CI-4 + 1 + + bornes ANNEE_U2 + + + bornes ANNEE_U2 + + + fr.insee + l9ikn3ea-CI-4-II-4 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikn3ea-CI-4-IP-1 + 1 + + ANNEE_U2 + + + + + fr.insee + l9ikn3ea-QOP-l9il1x2i + 1 + OutParameter + + + fr.insee + l9ikn3ea-CI-4-IP-1 + 1 + InParameter + + + cast(l9ikn3ea-CI-4-IP-1,integer) < 1920 or cast(l9ikn3ea-CI-4-IP-1,integer) > 2023 + + + + + fr.insee + l9il24ft-CI-0 + 1 + + PACS_U2 non renseigné + + + PACS_U2 non renseigné + + + fr.insee + l9il24ft-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9il24ft-CI-0-IP-1 + 1 + + PACS_U2 + + + + + fr.insee + l9il24ft-QOP-l9iks5py + 1 + OutParameter + + + fr.insee + l9il24ft-CI-0-IP-1 + 1 + InParameter + + + isnull(l9il24ft-CI-0-IP-1) or l9il24ft-CI-0-IP-1 ="" + + + + + fr.insee + l9ikxoxa-CI-0 + 1 + + ANNEE_PACS_U2 non renseigné + + + ANNEE_PACS_U2 non renseigné + + + fr.insee + l9ikxoxa-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikxoxa-CI-0-IP-1 + 1 + + ANNEE_PACS_U2 + + + + + fr.insee + l9ikxoxa-QOP-l9iktamx + 1 + OutParameter + + + fr.insee + l9ikxoxa-CI-0-IP-1 + 1 + InParameter + + + isnull(l9ikxoxa-CI-0-IP-1) or l9ikxoxa-CI-0-IP-1="" + + + + + fr.insee + l9ikxoxa-CI-1 + 1 + + "L'année du pacs ne peut pas être antérieure à l'année de mise en couple." + + + "L'année du pacs ne peut pas être antérieure à l'année de mise en couple." + + + fr.insee + l9ikxoxa-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikxoxa-CI-1-IP-1 + 1 + + ANNEE_U2 + + + + fr.insee + l9ikxoxa-CI-1-IP-2 + 1 + + ANNEE_PACS_U2 + + + + + fr.insee + l9ikn3ea-QOP-l9il1x2i + 1 + OutParameter + + + fr.insee + l9ikxoxa-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l9ikxoxa-QOP-l9iktamx + 1 + OutParameter + + + fr.insee + l9ikxoxa-CI-1-IP-2 + 1 + InParameter + + + not(isnull(l9ikxoxa-CI-1-IP-1)) and not(isnull(l9ikxoxa-CI-1-IP-2)) and cast(l9ikxoxa-CI-1-IP-2,integer) < cast(l9ikxoxa-CI-1-IP-1,integer) + + + + + fr.insee + l9ikxoxa-CI-2 + 1 + + "L'année du pacs de cette autre union ne peut pas être antérieure à votre année de naissance." + + + "L'année du pacs de cette autre union ne peut pas être antérieure à votre année de naissance." + + + fr.insee + l9ikxoxa-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikxoxa-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l9ikxoxa-CI-2-IP-2 + 1 + + ANNEE_PACS_U2 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l9ikxoxa-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l9ikxoxa-QOP-l9iktamx + 1 + OutParameter + + + fr.insee + l9ikxoxa-CI-2-IP-2 + 1 + InParameter + + + not(isnull(l9ikxoxa-CI-2-IP-2)) and not(isnull(l9ikxoxa-CI-2-IP-1)) and cast(l9ikxoxa-CI-2-IP-2,integer) < cast(l9ikxoxa-CI-2-IP-1,integer) + + + + + fr.insee + l9ikxoxa-CI-3 + 1 + + "Il semble y avoir peu d'écart entre votre année de naissance et celle du pacs de cette autre union, est-ce que vous confirmez ?" + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle du pacs de cette autre union, est-ce que vous confirmez ?" + + + fr.insee + l9ikxoxa-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikxoxa-CI-3-IP-1 + 1 + + ANAIS + + + + fr.insee + l9ikxoxa-CI-3-IP-2 + 1 + + ANNEE_PACS_U2 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l9ikxoxa-CI-3-IP-1 + 1 + InParameter + + + + + fr.insee + l9ikxoxa-QOP-l9iktamx + 1 + OutParameter + + + fr.insee + l9ikxoxa-CI-3-IP-2 + 1 + InParameter + + + not(isnull(l9ikxoxa-CI-3-IP-2)) and not(isnull(l9ikxoxa-CI-3-IP-1)) and (cast(l9ikxoxa-CI-3-IP-1,integer) + 15 > cast(l9ikxoxa-CI-3-IP-2,integer)) + + + + + fr.insee + l9ikxoxa-CI-4 + 1 + + "L'année du pacs de cette autre union ne peut pas être postérieure à l'année du pacs." + + + "L'année du pacs de cette autre union ne peut pas être postérieure à l'année du pacs." + + + fr.insee + l9ikxoxa-CI-4-II-4 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikxoxa-CI-4-IP-1 + 1 + + ANNEE_PACS + + + + fr.insee + l9ikxoxa-CI-4-IP-2 + 1 + + ANNEE_PACS_U2 + + + + + fr.insee + l0qu7e2g-QOP-l0qu1ddb + 1 + OutParameter + + + fr.insee + l9ikxoxa-CI-4-IP-1 + 1 + InParameter + + + + + fr.insee + l9ikxoxa-QOP-l9iktamx + 1 + OutParameter + + + fr.insee + l9ikxoxa-CI-4-IP-2 + 1 + InParameter + + + (not(isnull(l9ikxoxa-CI-4-IP-1)) and not(isnull(l9ikxoxa-CI-4-IP-2)) and cast(l9ikxoxa-CI-4-IP-2,integer) >= cast(l9ikxoxa-CI-4-IP-1,integer)) + + + + + fr.insee + l9ikxoxa-CI-5 + 1 + + bornes ANNEE_PACS_U2 + + + bornes ANNEE_PACS_U2 + + + fr.insee + l9ikxoxa-CI-5-II-5 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikxoxa-CI-5-IP-1 + 1 + + ANNEE_PACS_U2 + + + + + fr.insee + l9ikxoxa-QOP-l9iktamx + 1 + OutParameter + + + fr.insee + l9ikxoxa-CI-5-IP-1 + 1 + InParameter + + + cast(l9ikxoxa-CI-5-IP-1,integer) < 1920 or cast(l9ikxoxa-CI-5-IP-1,integer) > 2023 + + + + + fr.insee + l9ikvx4n-CI-0 + 1 + + MARI_U2 non renseigné + + + MARI_U2 non renseigné + + + fr.insee + l9ikvx4n-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikvx4n-CI-0-IP-1 + 1 + + MARI_U2 + + + + + fr.insee + l9ikvx4n-QOP-l9ikpuls + 1 + OutParameter + + + fr.insee + l9ikvx4n-CI-0-IP-1 + 1 + InParameter + + + isnull(l9ikvx4n-CI-0-IP-1) or l9ikvx4n-CI-0-IP-1="" + + + + + fr.insee + l9iklcix-CI-0 + 1 + + ANNEE_MARI_U2 non renseigné + + + ANNEE_MARI_U2 non renseigné + + + fr.insee + l9iklcix-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9iklcix-CI-0-IP-1 + 1 + + ANNEE_MARI_U2 + + + + + fr.insee + l9iklcix-QOP-l9ikgh6x + 1 + OutParameter + + + fr.insee + l9iklcix-CI-0-IP-1 + 1 + InParameter + + + isnull(l9iklcix-CI-0-IP-1) or l9iklcix-CI-0-IP-1="" + + + + + fr.insee + l9iklcix-CI-1 + 1 + + "L'année du mariage ne peut pas être antérieure à l'année de mise en couple." + + + "L'année du mariage ne peut pas être antérieure à l'année de mise en couple." + + + fr.insee + l9iklcix-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9iklcix-CI-1-IP-1 + 1 + + ANNEE_U2 + + + + fr.insee + l9iklcix-CI-1-IP-2 + 1 + + ANNEE_MARI_U2 + + + + + fr.insee + l9ikn3ea-QOP-l9il1x2i + 1 + OutParameter + + + fr.insee + l9iklcix-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l9iklcix-QOP-l9ikgh6x + 1 + OutParameter + + + fr.insee + l9iklcix-CI-1-IP-2 + 1 + InParameter + + + not(isnull(l9iklcix-CI-1-IP-2)) and not(isnull(l9iklcix-CI-1-IP-1)) and cast(l9iklcix-CI-1-IP-2,integer) < cast(l9iklcix-CI-1-IP-1,integer) + + + + + fr.insee + l9iklcix-CI-2 + 1 + + "L'année du mariage ne peut pas être antérieure à l'année du pacs." + + + "L'année du mariage ne peut pas être antérieure à l'année du pacs." + + + fr.insee + l9iklcix-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9iklcix-CI-2-IP-1 + 1 + + ANNEE_PACS_U2 + + + + fr.insee + l9iklcix-CI-2-IP-2 + 1 + + ANNEE_MARI_U2 + + + + + fr.insee + l9ikxoxa-QOP-l9iktamx + 1 + OutParameter + + + fr.insee + l9iklcix-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l9iklcix-QOP-l9ikgh6x + 1 + OutParameter + + + fr.insee + l9iklcix-CI-2-IP-2 + 1 + InParameter + + + not(isnull(l9iklcix-CI-2-IP-2)) and not(isnull(l9iklcix-CI-2-IP-1)) and cast(l9iklcix-CI-2-IP-2,integer) < cast(l9iklcix-CI-2-IP-1,integer) + + + + + fr.insee + l9iklcix-CI-3 + 1 + + "L'année du mariage de cette autre union ne peut pas être antérieure à votre année de naissance." + + + "L'année du mariage de cette autre union ne peut pas être antérieure à votre année de naissance." + + + fr.insee + l9iklcix-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9iklcix-CI-3-IP-1 + 1 + + ANAIS + + + + fr.insee + l9iklcix-CI-3-IP-2 + 1 + + ANNEE_MARI_U2 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l9iklcix-CI-3-IP-1 + 1 + InParameter + + + + + fr.insee + l9iklcix-QOP-l9ikgh6x + 1 + OutParameter + + + fr.insee + l9iklcix-CI-3-IP-2 + 1 + InParameter + + + not(isnull(l9iklcix-CI-3-IP-2)) and not(isnull(l9iklcix-CI-3-IP-1)) and cast(l9iklcix-CI-3-IP-2,integer) < cast(l9iklcix-CI-3-IP-1,integer) + + + + + fr.insee + l9iklcix-CI-4 + 1 + + "Il semble y avoir peu d'écart entre votre année de naissance et celle du mariage de cette autre union, est-ce que vous confirmez ?" + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle du mariage de cette autre union, est-ce que vous confirmez ?" + + + fr.insee + l9iklcix-CI-4-II-4 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9iklcix-CI-4-IP-1 + 1 + + ANAIS + + + + fr.insee + l9iklcix-CI-4-IP-2 + 1 + + ANNEE_MARI_U2 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l9iklcix-CI-4-IP-1 + 1 + InParameter + + + + + fr.insee + l9iklcix-QOP-l9ikgh6x + 1 + OutParameter + + + fr.insee + l9iklcix-CI-4-IP-2 + 1 + InParameter + + + not(isnull(l9iklcix-CI-4-IP-2)) and not(isnull(l9iklcix-CI-4-IP-1)) and (cast(l9iklcix-CI-4-IP-1,integer) + 15 > cast(l9iklcix-CI-4-IP-2,integer)) + + + + + fr.insee + l9iklcix-CI-5 + 1 + + "L'année du mariage de cette autre union ne peut pas être postérieure à l'année du mariage." + + + "L'année du mariage de cette autre union ne peut pas être postérieure à l'année du mariage." + + + fr.insee + l9iklcix-CI-5-II-5 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9iklcix-CI-5-IP-1 + 1 + + ANNEE_MARI + + + + fr.insee + l9iklcix-CI-5-IP-2 + 1 + + ANNEE_MARI_U2 + + + + + fr.insee + l0qul94p-QOP-l0qum61j + 1 + OutParameter + + + fr.insee + l9iklcix-CI-5-IP-1 + 1 + InParameter + + + + + fr.insee + l9iklcix-QOP-l9ikgh6x + 1 + OutParameter + + + fr.insee + l9iklcix-CI-5-IP-2 + 1 + InParameter + + + not(isnull(l9iklcix-CI-5-IP-2)) and not(isnull(l9iklcix-CI-5-IP-1)) and cast(l9iklcix-CI-5-IP-2,integer) >= cast(l9iklcix-CI-5-IP-1,integer) + + + + + fr.insee + l9iklcix-CI-6 + 1 + + bornes ANNEE_MARI_U2 + + + bornes ANNEE_MARI_U2 + + + fr.insee + l9iklcix-CI-6-II-6 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9iklcix-CI-6-IP-1 + 1 + + ANNEE_MARI_U2 + + + + + fr.insee + l9iklcix-QOP-l9ikgh6x + 1 + OutParameter + + + fr.insee + l9iklcix-CI-6-IP-1 + 1 + InParameter + + + cast(l9iklcix-CI-6-IP-1,integer) < 1920 or cast(l9iklcix-CI-6-IP-1,integer) > 2023 + + + + + fr.insee + l9ikqlwv-CI-0 + 1 + + SEPARE_U2 non renseigné + + + SEPARE_U2 non renseigné + + + fr.insee + l9ikqlwv-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikqlwv-CI-0-IP-1 + 1 + + SEPARE_U2 + + + + + fr.insee + l9ikqlwv-QOP-l9ikoz30 + 1 + OutParameter + + + fr.insee + l9ikqlwv-CI-0-IP-1 + 1 + InParameter + + + isnull(l9ikqlwv-CI-0-IP-1) or l9ikqlwv-CI-0-IP-1="" + + + + + fr.insee + l9ikze1y-CI-0 + 1 + + "L'année de la séparation ne peut pas être antérieure à l'année de mise en couple." + + + "L'année de la séparation ne peut pas être antérieure à l'année de mise en couple." + + + fr.insee + l9ikze1y-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikze1y-CI-0-IP-1 + 1 + + ANNEE_U2 + + + + fr.insee + l9ikze1y-CI-0-IP-2 + 1 + + ANNEE_S_U2 + + + + + fr.insee + l9ikn3ea-QOP-l9il1x2i + 1 + OutParameter + + + fr.insee + l9ikze1y-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l9ikze1y-QOP-l9ikq8j6 + 1 + OutParameter + + + fr.insee + l9ikze1y-CI-0-IP-2 + 1 + InParameter + + + not(isnull(l9ikze1y-CI-0-IP-2)) and not(isnull(l9ikze1y-CI-0-IP-1)) and cast(l9ikze1y-CI-0-IP-2,integer) < cast(l9ikze1y-CI-0-IP-1,integer) + + + + + fr.insee + l9ikze1y-CI-1 + 1 + + ANNEE_S_U2 non renseigné + + + ANNEE_S_U2 non renseigné + + + fr.insee + l9ikze1y-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikze1y-CI-1-IP-1 + 1 + + ANNEE_S_U2 + + + + + fr.insee + l9ikze1y-QOP-l9ikq8j6 + 1 + OutParameter + + + fr.insee + l9ikze1y-CI-1-IP-1 + 1 + InParameter + + + isnull(l9ikze1y-CI-1-IP-1) or l9ikze1y-CI-1-IP-1="" + + + + + fr.insee + l9ikze1y-CI-2 + 1 + + "L'année de séparation de cette autre union ne peut pas être antérieure à votre année de naissance." + + + "L'année de séparation de cette autre union ne peut pas être antérieure à votre année de naissance." + + + fr.insee + l9ikze1y-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikze1y-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l9ikze1y-CI-2-IP-2 + 1 + + ANNEE_S_U2 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l9ikze1y-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l9ikze1y-QOP-l9ikq8j6 + 1 + OutParameter + + + fr.insee + l9ikze1y-CI-2-IP-2 + 1 + InParameter + + + not(isnull(l9ikze1y-CI-2-IP-2)) and not(isnull(l9ikze1y-CI-2-IP-1))and cast(l9ikze1y-CI-2-IP-2,integer) < cast(l9ikze1y-CI-2-IP-1,integer) + + + + + fr.insee + l9ikze1y-CI-3 + 1 + + bornes ANNEE_S_U2 + + + bornes ANNEE_S_U2 + + + fr.insee + l9ikze1y-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikze1y-CI-3-IP-1 + 1 + + ANNEE_S_U2 + + + + + fr.insee + l9ikze1y-QOP-l9ikq8j6 + 1 + OutParameter + + + fr.insee + l9ikze1y-CI-3-IP-1 + 1 + InParameter + + + cast(l9ikze1y-CI-3-IP-1,integer) < 1920 or cast(l9ikze1y-CI-3-IP-1,integer) > 2023 + + + + + fr.insee + l9ikmjqm-CI-0 + 1 + + ANNEE_D_U2 non renseignée + + + ANNEE_D_U2 non renseignée + + + fr.insee + l9ikmjqm-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikmjqm-CI-0-IP-1 + 1 + + ANNEE_D_U2 + + + + + fr.insee + l9ikmjqm-QOP-l9ikmj5h + 1 + OutParameter + + + fr.insee + l9ikmjqm-CI-0-IP-1 + 1 + InParameter + + + isnull(l9ikmjqm-CI-0-IP-1) or l9ikmjqm-CI-0-IP-1="" + + + + + fr.insee + l9ikmjqm-CI-1 + 1 + + "L'année du décès de votre conjoint(e) ne peut pas être antérieure à l'année de mise en couple de cette autre union ." + + + "L'année du décès de votre conjoint(e) ne peut pas être antérieure à l'année de mise en couple de cette autre union ." + + + fr.insee + l9ikmjqm-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikmjqm-CI-1-IP-1 + 1 + + ANNEE_U2 + + + + fr.insee + l9ikmjqm-CI-1-IP-2 + 1 + + ANNEE_D_U2 + + + + + fr.insee + l9ikn3ea-QOP-l9il1x2i + 1 + OutParameter + + + fr.insee + l9ikmjqm-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l9ikmjqm-QOP-l9ikmj5h + 1 + OutParameter + + + fr.insee + l9ikmjqm-CI-1-IP-2 + 1 + InParameter + + + not(isnull(l9ikmjqm-CI-1-IP-2)) and not(isnull(l9ikmjqm-CI-1-IP-1)) and cast(l9ikmjqm-CI-1-IP-2,integer) < cast(l9ikmjqm-CI-1-IP-1,integer) + + + + + fr.insee + l9ikmjqm-CI-2 + 1 + + "L'année du décès de votre conjoint(e) ne peut pas être antérieure à votre année de naissance." + + + "L'année du décès de votre conjoint(e) ne peut pas être antérieure à votre année de naissance." + + + fr.insee + l9ikmjqm-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikmjqm-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l9ikmjqm-CI-2-IP-2 + 1 + + ANNEE_D_U2 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l9ikmjqm-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l9ikmjqm-QOP-l9ikmj5h + 1 + OutParameter + + + fr.insee + l9ikmjqm-CI-2-IP-2 + 1 + InParameter + + + not(isnull(l9ikmjqm-CI-2-IP-2)) and not(isnull(l9ikmjqm-CI-2-IP-1)) and cast(l9ikmjqm-CI-2-IP-2,integer) < cast(l9ikmjqm-CI-2-IP-1,integer) + + + + + fr.insee + l9ikmjqm-CI-3 + 1 + + bornes ANNEE_D_U2 + + + bornes ANNEE_D_U2 + + + fr.insee + l9ikmjqm-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikmjqm-CI-3-IP-1 + 1 + + ANNEE_D_U2 + + + + + fr.insee + l9ikmjqm-QOP-l9ikmj5h + 1 + OutParameter + + + fr.insee + l9ikmjqm-CI-3-IP-1 + 1 + InParameter + + + cast(l9ikmjqm-CI-3-IP-1,integer) < 1920 or cast(l9ikmjqm-CI-3-IP-1,integer) > 2024 + + + + + fr.insee + l9ikxndo-CI-0 + 1 + + ENFAV_C_U2 non renseigné + + + ENFAV_C_U2 non renseigné + + + fr.insee + l9ikxndo-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikxndo-CI-0-IP-1 + 1 + + ENFAV_C_U2 + + + + + fr.insee + l9ikxndo-QOP-l9ikxjkq + 1 + OutParameter + + + fr.insee + l9ikxndo-CI-0-IP-1 + 1 + InParameter + + + isnull(l9ikxndo-CI-0-IP-1) or l9ikxndo-CI-0-IP-1="" + + + + + fr.insee + l9ikuqoe-CI-0 + 1 + + NBENFAV_C_U2 non renseigné + + + NBENFAV_C_U2 non renseigné + + + fr.insee + l9ikuqoe-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikuqoe-CI-0-IP-1 + 1 + + NBENFAV_C_U2 + + + + + fr.insee + l9ikuqoe-QOP-l9ikmqgf + 1 + OutParameter + + + fr.insee + l9ikuqoe-CI-0-IP-1 + 1 + InParameter + + + isnull(l9ikuqoe-CI-0-IP-1) or l9ikuqoe-CI-0-IP-1 ="" + + + + + fr.insee + l9ikekzu-CI-0 + 1 + + NBENFAV_C1_VENU_U2 non renseigné + + + NBENFAV_C1_VENU_U2 non renseigné + + + fr.insee + l9ikekzu-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikekzu-CI-0-IP-1 + 1 + + NBENFAV_C1_VENU_U2 + + + + + fr.insee + l9ikekzu-QOP-l9ikbyxh + 1 + OutParameter + + + fr.insee + l9ikekzu-CI-0-IP-1 + 1 + InParameter + + + isnull(l9ikekzu-CI-0-IP-1) or l9ikekzu-CI-0-IP-1="" + + + + + fr.insee + l9iks078-CI-0 + 1 + + NBENFAV_C_VENU_U2 non renseigné + + + NBENFAV_C_VENU_U2 non renseigné + + + fr.insee + l9iks078-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9iks078-CI-0-IP-1 + 1 + + NBENFAV_C_VENU_U2 + + + + + fr.insee + l9iks078-QOP-l9ikl02v + 1 + OutParameter + + + fr.insee + l9iks078-CI-0-IP-1 + 1 + InParameter + + + isnull(l9iks078-CI-0-IP-1) or l9iks078-CI-0-IP-1 ="" + + + + + fr.insee + l9iks078-CI-1 + 1 + + "Le nombre d’enfants venus vivre avec vous ne peut pas être supérieur au nombre total d’enfants." + + + "Le nombre d’enfants venus vivre avec vous ne peut pas être supérieur au nombre total d’enfants." + + + fr.insee + l9iks078-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9iks078-CI-1-IP-1 + 1 + + NBENFAV_C_U2 + + + + fr.insee + l9iks078-CI-1-IP-2 + 1 + + NBENFAV_C_VENU_U2 + + + + + fr.insee + l9ikuqoe-QOP-l9ikmqgf + 1 + OutParameter + + + fr.insee + l9iks078-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l9iks078-QOP-l9ikl02v + 1 + OutParameter + + + fr.insee + l9iks078-CI-1-IP-2 + 1 + InParameter + + + nvl(l9iks078-CI-1-IP-2,0) > nvl(l9iks078-CI-1-IP-1,0) + + + + + fr.insee + kwqigxtx-CI-0 + 1 + + ENF non renseigné + + + ENF non renseigné + + + fr.insee + kwqigxtx-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqigxtx-CI-0-IP-1 + 1 + + ENF + + + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + OutParameter + + + fr.insee + kwqigxtx-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqigxtx-CI-0-IP-1) or kwqigxtx-CI-0-IP-1="" + + + + + fr.insee + kwqi5zsm-CI-0 + 1 + + NBENF non renseigné + + + NBENF non renseigné + + + fr.insee + kwqi5zsm-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqi5zsm-CI-0-IP-1 + 1 + + NBENF + + + + + fr.insee + kwqi5zsm-QOP-kwqilzs8 + 1 + OutParameter + + + fr.insee + kwqi5zsm-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqi5zsm-CI-0-IP-1) or kwqi5zsm-CI-0-IP-1="" + + + + + fr.insee + l1gkeq97-CI-0 + 1 + + NBENF_ADOP1 non renseigné + + + NBENF_ADOP1 non renseigné + + + fr.insee + l1gkeq97-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1gkeq97-CI-0-IP-1 + 1 + + NBENF_ADOP1 + + + + + fr.insee + l1gkeq97-QOP-l7rlttxu + 1 + OutParameter + + + fr.insee + l1gkeq97-CI-0-IP-1 + 1 + InParameter + + + isnull(l1gkeq97-CI-0-IP-1) or l1gkeq97-CI-0-IP-1="" + + + + + fr.insee + l7rlim3p-CI-0 + 1 + + NBENF_ADOP non renseigné + + + NBENF_ADOP non renseigné + + + fr.insee + l7rlim3p-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l7rlim3p-CI-0-IP-1 + 1 + + NBENF_ADOP + + + + + fr.insee + l7rlim3p-QOP-l7rlfeda + 1 + OutParameter + + + fr.insee + l7rlim3p-CI-0-IP-1 + 1 + InParameter + + + isnull(l7rlim3p-CI-0-IP-1) or l7rlim3p-CI-0-IP-1="" + + + + + fr.insee + l7rlim3p-CI-1 + 1 + + "Le nombre d’enfants adoptés ne peut pas être supérieur au nombre total d’enfants." + + + "Le nombre d’enfants adoptés ne peut pas être supérieur au nombre total d’enfants." + + + fr.insee + l7rlim3p-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l7rlim3p-CI-1-IP-1 + 1 + + NBENF + + + + fr.insee + l7rlim3p-CI-1-IP-2 + 1 + + NBENF_ADOP + + + + + fr.insee + kwqi5zsm-QOP-kwqilzs8 + 1 + OutParameter + + + fr.insee + l7rlim3p-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l7rlim3p-QOP-l7rlfeda + 1 + OutParameter + + + fr.insee + l7rlim3p-CI-1-IP-2 + 1 + InParameter + + + nvl(l7rlim3p-CI-1-IP-2,0) > nvl(l7rlim3p-CI-1-IP-1,0) + + + + + fr.insee + l1gi76wy-CI-0 + 1 + + LANGUE1_ENF non renseignée + + + LANGUE1_ENF non renseignée + + + fr.insee + l1gi76wy-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1gi76wy-CI-0-IP-1 + 1 + + LANGUE1_ENF + + + + + fr.insee + l1gi76wy-QOP-llvz7u99 + 1 + OutParameter + + + fr.insee + l1gi76wy-CI-0-IP-1 + 1 + InParameter + + + isnull(l1gi76wy-CI-0-IP-1) or l1gi76wy-CI-0-IP-1="" + + + + + fr.insee + l445u9x8-CI-0 + 1 + + même langue + + + même langue + + + fr.insee + l445u9x8-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l445u9x8-CI-0-IP-1 + 1 + + LANGUE1_ENF + + + + fr.insee + l445u9x8-CI-0-IP-2 + 1 + + LANGUE2_ENF + + + + + fr.insee + l1gi76wy-QOP-llvz7u99 + 1 + OutParameter + + + fr.insee + l445u9x8-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l445u9x8-QOP-llvyyveq + 1 + OutParameter + + + fr.insee + l445u9x8-CI-0-IP-2 + 1 + InParameter + + + not(isnull(l445u9x8-CI-0-IP-1)) and not(isnull(l445u9x8-CI-0-IP-2)) and l445u9x8-CI-0-IP-2=l445u9x8-CI-0-IP-1 + + + + + fr.insee + l4idom4o-CI-0 + 1 + + NBENFLOG non renseigné + + + NBENFLOG non renseigné + + + fr.insee + l4idom4o-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4idom4o-CI-0-IP-1 + 1 + + NBENFLOG + + + + + fr.insee + l4idom4o-QOP-l4idkl19 + 1 + OutParameter + + + fr.insee + l4idom4o-CI-0-IP-1 + 1 + InParameter + + + isnull(l4idom4o-CI-0-IP-1) or l4idom4o-CI-0-IP-1="" + + + + + fr.insee + l4lcr3vb-CI-0 + 1 + + CBENFLOG non renseigné + + + CBENFLOG non renseigné + + + fr.insee + l4lcr3vb-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lcr3vb-CI-0-IP-1 + 1 + + CBENFLOG + + + + + fr.insee + l4lcr3vb-QOP-l4lcyzfy + 1 + OutParameter + + + fr.insee + l4lcr3vb-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lcr3vb-CI-0-IP-1) or l4lcr3vb-CI-0-IP-1="" + + + + + fr.insee + l4lcr3vb-CI-1 + 1 + + "Le nombre d’enfants qui vivent avec vous ne peut pas être supérieur au nombre total d’enfants." + + + "Le nombre d’enfants qui vivent avec vous ne peut pas être supérieur au nombre total d’enfants." + + + fr.insee + l4lcr3vb-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lcr3vb-CI-1-IP-1 + 1 + + NBENF + + + + fr.insee + l4lcr3vb-CI-1-IP-2 + 1 + + CBENFLOG + + + + + fr.insee + kwqi5zsm-QOP-kwqilzs8 + 1 + OutParameter + + + fr.insee + l4lcr3vb-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4lcr3vb-QOP-l4lcyzfy + 1 + OutParameter + + + fr.insee + l4lcr3vb-CI-1-IP-2 + 1 + InParameter + + + nvl(l4lcr3vb-CI-1-IP-2,0) > nvl(l4lcr3vb-CI-1-IP-1,0) + + + + + fr.insee + l447nuda-CI-0 + 1 + + NBENFAIL non renseigné + + + NBENFAIL non renseigné + + + fr.insee + l447nuda-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l447nuda-CI-0-IP-1 + 1 + + NBENFAIL + + + + + fr.insee + l447nuda-QOP-l4idwhis + 1 + OutParameter + + + fr.insee + l447nuda-CI-0-IP-1 + 1 + InParameter + + + isnull(l447nuda-CI-0-IP-1) or l447nuda-CI-0-IP-1="" + + + + + fr.insee + l447nuda-CI-1 + 1 + + "Le nombre d'enfants vivant dans le logement est différent du nombre d'enfants déclarés." + + + "Le nombre d'enfants vivant dans le logement est différent du nombre d'enfants déclarés." + + + fr.insee + l447nuda-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l447nuda-CI-1-IP-1 + 1 + + NBENF + + + + fr.insee + l447nuda-CI-1-IP-2 + 1 + + CBENFLOG + + + + fr.insee + l447nuda-CI-1-IP-3 + 1 + + NBENFAIL + + + + + fr.insee + kwqi5zsm-QOP-kwqilzs8 + 1 + OutParameter + + + fr.insee + l447nuda-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4lcr3vb-QOP-l4lcyzfy + 1 + OutParameter + + + fr.insee + l447nuda-CI-1-IP-2 + 1 + InParameter + + + + + fr.insee + l447nuda-QOP-l4idwhis + 1 + OutParameter + + + fr.insee + l447nuda-CI-1-IP-3 + 1 + InParameter + + + (isnull(l447nuda-CI-1-IP-3) or l447nuda-CI-1-IP-3="2") and nvl(l447nuda-CI-1-IP-2,0) <> nvl(l447nuda-CI-1-IP-1,0) + + + + + fr.insee + l4lfzig7-CI-0 + 1 + + CBENFAIL non renseigné + + + CBENFAIL non renseigné + + + fr.insee + l4lfzig7-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lfzig7-CI-0-IP-1 + 1 + + CBENFAIL + + + + + fr.insee + l4lfzig7-QOP-l4lgbag5 + 1 + OutParameter + + + fr.insee + l4lfzig7-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lfzig7-CI-0-IP-1) or l4lfzig7-CI-0-IP-1="" + + + + + fr.insee + l4lfzig7-CI-1 + 1 + + Le nombre d'enfants vivant dans le logement ou ailleurs est différent du nombre total d'enfants + + + Le nombre d'enfants vivant dans le logement ou ailleurs est différent du nombre total d'enfants + + + fr.insee + l4lfzig7-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lfzig7-CI-1-IP-1 + 1 + + NBENF + + + + fr.insee + l4lfzig7-CI-1-IP-2 + 1 + + CBENFLOG + + + + fr.insee + l4lfzig7-CI-1-IP-3 + 1 + + CBENFAIL + + + + + fr.insee + kwqi5zsm-QOP-kwqilzs8 + 1 + OutParameter + + + fr.insee + l4lfzig7-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4lcr3vb-QOP-l4lcyzfy + 1 + OutParameter + + + fr.insee + l4lfzig7-CI-1-IP-2 + 1 + InParameter + + + + + fr.insee + l4lfzig7-QOP-l4lgbag5 + 1 + OutParameter + + + fr.insee + l4lfzig7-CI-1-IP-3 + 1 + InParameter + + + nvl(l4lfzig7-CI-1-IP-3,0) + nvl(l4lfzig7-CI-1-IP-2,0) <> nvl(l4lfzig7-CI-1-IP-1,0) + + + + + fr.insee + l446nede-CI-0 + 1 + + PRENOM_ENFLOG1 non renseigné + + + PRENOM_ENFLOG1 non renseigné + + + fr.insee + l446nede-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l446nede-CI-0-IP-1 + 1 + + PRENOM_ENFLOG1 + + + + + fr.insee + l446nede-QOP-l446c5pz + 1 + OutParameter + + + fr.insee + l446nede-CI-0-IP-1 + 1 + InParameter + + + isnull(l446nede-CI-0-IP-1) or l446nede-CI-0-IP-1="" + + + + + fr.insee + kwqjk80w-CI-0 + 1 + + SEXE_ENFLOG1 non renseigné + + + SEXE_ENFLOG1 non renseigné + + + fr.insee + kwqjk80w-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqjk80w-CI-0-IP-1 + 1 + + SEXE_ENFLOG1 + + + + + fr.insee + kwqjk80w-QOP-kwqjqaig + 1 + OutParameter + + + fr.insee + kwqjk80w-CI-0-IP-1 + 1 + InParameter + + + isnull (kwqjk80w-CI-0-IP-1) or kwqjk80w-CI-0-IP-1="" + + + + + fr.insee + kwqjmq2o-CI-0 + 1 + + ANAI_ENFLOG1 non renseigné + + + ANAI_ENFLOG1 non renseigné + + + fr.insee + kwqjmq2o-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqjmq2o-CI-0-IP-1 + 1 + + ANAI_ENFLOG1 + + + + + fr.insee + kwqjmq2o-QOP-kwqjvmys + 1 + OutParameter + + + fr.insee + kwqjmq2o-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqjmq2o-CI-0-IP-1) or kwqjmq2o-CI-0-IP-1="" + + + + + fr.insee + kwqjmq2o-CI-1 + 1 + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + fr.insee + kwqjmq2o-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqjmq2o-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + kwqjmq2o-CI-1-IP-2 + 1 + + ANAI_ENFLOG1 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + kwqjmq2o-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + kwqjmq2o-QOP-kwqjvmys + 1 + OutParameter + + + fr.insee + kwqjmq2o-CI-1-IP-2 + 1 + InParameter + + + not(isnull(kwqjmq2o-CI-1-IP-2)) and not(isnull(kwqjmq2o-CI-1-IP-1)) and cast(kwqjmq2o-CI-1-IP-2,integer) < cast(kwqjmq2o-CI-1-IP-1,integer) + + + + + fr.insee + kwqjmq2o-CI-2 + 1 + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + fr.insee + kwqjmq2o-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqjmq2o-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + kwqjmq2o-CI-2-IP-2 + 1 + + ANAI_ENFLOG1 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + kwqjmq2o-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + kwqjmq2o-QOP-kwqjvmys + 1 + OutParameter + + + fr.insee + kwqjmq2o-CI-2-IP-2 + 1 + InParameter + + + not(isnull(kwqjmq2o-CI-2-IP-2)) and not(isnull(kwqjmq2o-CI-2-IP-1)) and (cast(kwqjmq2o-CI-2-IP-1,integer) + 15 > cast(kwqjmq2o-CI-2-IP-2,integer)) + + + + + fr.insee + kwqjmq2o-CI-3 + 1 + + bornes ANAI_ENFLOG1 + + + bornes ANAI_ENFLOG1 + + + fr.insee + kwqjmq2o-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqjmq2o-CI-3-IP-1 + 1 + + ANAI_ENFLOG1 + + + + + fr.insee + kwqjmq2o-QOP-kwqjvmys + 1 + OutParameter + + + fr.insee + kwqjmq2o-CI-3-IP-1 + 1 + InParameter + + + cast(kwqjmq2o-CI-3-IP-1,integer) < 1920 or cast(kwqjmq2o-CI-3-IP-1,integer) > 2024 + + + + + fr.insee + l4qtls9o-CI-0 + 1 + + NEFRANCE_ENFLOG1 non renseigné + + + NEFRANCE_ENFLOG1 non renseigné + + + fr.insee + l4qtls9o-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4qtls9o-CI-0-IP-1 + 1 + + NEFRANCE_ENFLOG1 + + + + + fr.insee + l4qtls9o-QOP-l4qtebrx + 1 + OutParameter + + + fr.insee + l4qtls9o-CI-0-IP-1 + 1 + InParameter + + + isnull(l4qtls9o-CI-0-IP-1) or l4qtls9o-CI-0-IP-1 ="" + + + + + fr.insee + kwqjol7e-CI-0 + 1 + + PARENT_VIT_ENFLOG1 non renseigné + + + PARENT_VIT_ENFLOG1 non renseigné + + + fr.insee + kwqjol7e-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqjol7e-CI-0-IP-1 + 1 + + PARENT_VIT_ENFLOG1 + + + + + fr.insee + kwqjol7e-QOP-kwqj742g + 1 + OutParameter + + + fr.insee + kwqjol7e-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqjol7e-CI-0-IP-1) or kwqjol7e-CI-0-IP-1="" + + + + + fr.insee + l4iaicn8-CI-0 + 1 + + PARENT_FR_ENFLOG1 non renseigné + + + PARENT_FR_ENFLOG1 non renseigné + + + fr.insee + l4iaicn8-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4iaicn8-CI-0-IP-1 + 1 + + PARENT_FR_ENFLOG1 + + + + + fr.insee + l4iaicn8-QOP-l4ia62t2 + 1 + OutParameter + + + fr.insee + l4iaicn8-CI-0-IP-1 + 1 + InParameter + + + isnull(l4iaicn8-CI-0-IP-1) or l4iaicn8-CI-0-IP-1="" + + + + + fr.insee + l4pav1bd-CI-0 + 1 + + PARENT_DEP_ENFLOG1 non renseigné + + + PARENT_DEP_ENFLOG1 non renseigné + + + fr.insee + l4pav1bd-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4pav1bd-CI-0-IP-1 + 1 + + PARENT_DEP_ENFLOG1 + + + + + fr.insee + l4pav1bd-QOP-llvz43dk + 1 + OutParameter + + + fr.insee + l4pav1bd-CI-0-IP-1 + 1 + InParameter + + + isnull(l4pav1bd-CI-0-IP-1) or l4pav1bd-CI-0-IP-1="" + + + + + fr.insee + l4parilg-CI-0 + 1 + + PARENT_COM_ENFLOG1 non renseigné + + + PARENT_COM_ENFLOG1 non renseigné + + + fr.insee + l4parilg-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4parilg-CI-0-IP-1 + 1 + + PARENT_COM_ENFLOG1 + + + + + fr.insee + l4parilg-QOP-llvz00eo + 1 + OutParameter + + + fr.insee + l4parilg-CI-0-IP-1 + 1 + InParameter + + + isnull(l4parilg-CI-0-IP-1) or l4parilg-CI-0-IP-1="" + + + + + fr.insee + l4pavrnh-CI-0 + 1 + + PARENT_PAY_ENFLOG1 non renseigné + + + PARENT_PAY_ENFLOG1 non renseigné + + + fr.insee + l4pavrnh-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4pavrnh-CI-0-IP-1 + 1 + + PARENT_PAY_ENFLOG1 + + + + + fr.insee + l4pavrnh-QOP-llvz0tqh + 1 + OutParameter + + + fr.insee + l4pavrnh-CI-0-IP-1 + 1 + InParameter + + + isnull(l4pavrnh-CI-0-IP-1) or l4pavrnh-CI-0-IP-1="" + + + + + fr.insee + l1ez78st-CI-0 + 1 + + PARENT_FREQ_ENFLOG1 non renseigné + + + PARENT_FREQ_ENFLOG1 non renseigné + + + fr.insee + l1ez78st-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1ez78st-CI-0-IP-1 + 1 + + PARENT_FREQ_ENFLOG1 + + + + + fr.insee + l1ez78st-QOP-l1ezqoac + 1 + OutParameter + + + fr.insee + l1ez78st-CI-0-IP-1 + 1 + InParameter + + + isnull(l1ez78st-CI-0-IP-1) or l1ez78st-CI-0-IP-1="" + + + + + fr.insee + l4iain70-CI-0 + 1 + + PARENT_DORT_ENFLOG1 non renseigné + + + PARENT_DORT_ENFLOG1 non renseigné + + + fr.insee + l4iain70-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4iain70-CI-0-IP-1 + 1 + + PARENT_DORT_ENFLOG1 + + + + + fr.insee + l4iain70-QOP-l4iapk3a + 1 + OutParameter + + + fr.insee + l4iain70-CI-0-IP-1 + 1 + InParameter + + + isnull(l4iain70-CI-0-IP-1) or l4iain70-CI-0-IP-1="" + + + + + fr.insee + kwqk3gx2-CI-0 + 1 + + PARENT_VECU_ENFLOG1 non renseigné + + + PARENT_VECU_ENFLOG1 non renseigné + + + fr.insee + kwqk3gx2-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqk3gx2-CI-0-IP-1 + 1 + + PARENT_VECU_ENFLOG1 + + + + + fr.insee + kwqk3gx2-QOP-kwqjmrl7 + 1 + OutParameter + + + fr.insee + kwqk3gx2-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqk3gx2-CI-0-IP-1) or kwqk3gx2-CI-0-IP-1 ="" + + + + + fr.insee + la6ydnyh-CI-0 + 1 + + SEP_AUT_PAR_ENFLOG1 non renseigné + + + SEP_AUT_PAR_ENFLOG1 non renseigné + + + fr.insee + la6ydnyh-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + la6ydnyh-CI-0-IP-1 + 1 + + SEP_AUT_PAR_ENFLOG1 + + + + + fr.insee + la6ydnyh-QOP-la6ylcb8 + 1 + OutParameter + + + fr.insee + la6ydnyh-CI-0-IP-1 + 1 + InParameter + + + isnull(la6ydnyh-CI-0-IP-1) or la6ydnyh-CI-0-IP-1="" + + + + + fr.insee + kwqjmy9d-CI-0 + 1 + + RESID_ENFLOG1 non renseigné + + + RESID_ENFLOG1 non renseigné + + + fr.insee + kwqjmy9d-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqjmy9d-CI-0-IP-1 + 1 + + RESID_ENFLOG1 + + + + + fr.insee + kwqjmy9d-QOP-kwqjfzw0 + 1 + OutParameter + + + fr.insee + kwqjmy9d-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqjmy9d-CI-0-IP-1) or kwqjmy9d-CI-0-IP-1="" + + + + + fr.insee + l1gia5uh-CI-0 + 1 + + SANTE_ENFLOG1 non renseigné + + + SANTE_ENFLOG1 non renseigné + + + fr.insee + l1gia5uh-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1gia5uh-CI-0-IP-1 + 1 + + SANTE_ENFLOG11 + + + + fr.insee + l1gia5uh-CI-0-IP-2 + 1 + + SANTE_ENFLOG12 + + + + fr.insee + l1gia5uh-CI-0-IP-3 + 1 + + SANTE_ENFLOG13 + + + + fr.insee + l1gia5uh-CI-0-IP-4 + 1 + + SANTE_ENFLOG14 + + + + + fr.insee + l1gia5uh-QOP-la6vclx9 + 1 + OutParameter + + + fr.insee + l1gia5uh-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l1gia5uh-QOP-la6vj3fw + 1 + OutParameter + + + fr.insee + l1gia5uh-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l1gia5uh-QOP-la6vaa94 + 1 + OutParameter + + + fr.insee + l1gia5uh-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + l1gia5uh-QOP-la6v5qj3 + 1 + OutParameter + + + fr.insee + l1gia5uh-CI-0-IP-4 + 1 + InParameter + + + (nvl(l1gia5uh-CI-0-IP-1, false) = false and nvl(l1gia5uh-CI-0-IP-2, false) = false and nvl(l1gia5uh-CI-0-IP-3, false) = false and nvl(l1gia5uh-CI-0-IP-4, false) = false) + + + + + fr.insee + l1gia5uh-CI-1 + 1 + + NON exclusif + + + NON exclusif + + + fr.insee + l1gia5uh-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1gia5uh-CI-1-IP-1 + 1 + + SANTE_ENFLOG11 + + + + fr.insee + l1gia5uh-CI-1-IP-2 + 1 + + SANTE_ENFLOG12 + + + + fr.insee + l1gia5uh-CI-1-IP-3 + 1 + + SANTE_ENFLOG13 + + + + fr.insee + l1gia5uh-CI-1-IP-4 + 1 + + SANTE_ENFLOG14 + + + + + fr.insee + l1gia5uh-QOP-la6vclx9 + 1 + OutParameter + + + fr.insee + l1gia5uh-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l1gia5uh-QOP-la6vj3fw + 1 + OutParameter + + + fr.insee + l1gia5uh-CI-1-IP-2 + 1 + InParameter + + + + + fr.insee + l1gia5uh-QOP-la6vaa94 + 1 + OutParameter + + + fr.insee + l1gia5uh-CI-1-IP-3 + 1 + InParameter + + + + + fr.insee + l1gia5uh-QOP-la6v5qj3 + 1 + OutParameter + + + fr.insee + l1gia5uh-CI-1-IP-4 + 1 + InParameter + + + (nvl(l1gia5uh-CI-1-IP-1,false)=true and nvl(l1gia5uh-CI-1-IP-4,false)=true) or (nvl(l1gia5uh-CI-1-IP-2,false)=true and nvl(l1gia5uh-CI-1-IP-4,false)=true) or (nvl(l1gia5uh-CI-1-IP-3,false)=true and nvl(l1gia5uh-CI-1-IP-4,false)=true) + + + + + fr.insee + l4i9118b-CI-0 + 1 + + PRENOM_ENFLOG2 non renseigné + + + PRENOM_ENFLOG2 non renseigné + + + fr.insee + l4i9118b-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4i9118b-CI-0-IP-1 + 1 + + PRENOM_ENFLOG2 + + + + + fr.insee + l4i9118b-QOP-l4i95yyt + 1 + OutParameter + + + fr.insee + l4i9118b-CI-0-IP-1 + 1 + InParameter + + + isnull(l4i9118b-CI-0-IP-1) or l4i9118b-CI-0-IP-1="" + + + + + fr.insee + l4i8zu5m-CI-0 + 1 + + SEXE_ENFLOG2 non renseigné + + + SEXE_ENFLOG2 non renseigné + + + fr.insee + l4i8zu5m-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4i8zu5m-CI-0-IP-1 + 1 + + SEXE_ENFLOG2 + + + + + fr.insee + l4i8zu5m-QOP-l4i9doqz + 1 + OutParameter + + + fr.insee + l4i8zu5m-CI-0-IP-1 + 1 + InParameter + + + isnull(l4i8zu5m-CI-0-IP-1) or l4i8zu5m-CI-0-IP-1="" + + + + + fr.insee + l4ia7rxn-CI-0 + 1 + + ANAI_ENFLOG2 non renseigné + + + ANAI_ENFLOG2 non renseigné + + + fr.insee + l4ia7rxn-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ia7rxn-CI-0-IP-1 + 1 + + ANAI_ENFLOG2 + + + + + fr.insee + l4ia7rxn-QOP-l4iad1cc + 1 + OutParameter + + + fr.insee + l4ia7rxn-CI-0-IP-1 + 1 + InParameter + + + isnull(l4ia7rxn-CI-0-IP-1) or l4ia7rxn-CI-0-IP-1="" + + + + + fr.insee + l4ia7rxn-CI-1 + 1 + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + fr.insee + l4ia7rxn-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ia7rxn-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l4ia7rxn-CI-1-IP-2 + 1 + + ANAI_ENFLOG2 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l4ia7rxn-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4ia7rxn-QOP-l4iad1cc + 1 + OutParameter + + + fr.insee + l4ia7rxn-CI-1-IP-2 + 1 + InParameter + + + not(isnull(l4ia7rxn-CI-1-IP-2)) and not(isnull(l4ia7rxn-CI-1-IP-1)) and cast(l4ia7rxn-CI-1-IP-2,integer) < cast(l4ia7rxn-CI-1-IP-1,integer) + + + + + fr.insee + l4ia7rxn-CI-2 + 1 + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + fr.insee + l4ia7rxn-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ia7rxn-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l4ia7rxn-CI-2-IP-2 + 1 + + ANAI_ENFLOG2 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l4ia7rxn-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l4ia7rxn-QOP-l4iad1cc + 1 + OutParameter + + + fr.insee + l4ia7rxn-CI-2-IP-2 + 1 + InParameter + + + not(isnull(l4ia7rxn-CI-2-IP-2)) and not(isnull(l4ia7rxn-CI-2-IP-1)) and (cast(l4ia7rxn-CI-2-IP-1,integer) + 15 > cast(l4ia7rxn-CI-2-IP-2,integer)) + + + + + fr.insee + l4ia7rxn-CI-3 + 1 + + bornes ANAI_ENFLOG2 + + + + bornes ANAI_ENFLOG2 + + + + fr.insee + l4ia7rxn-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ia7rxn-CI-3-IP-1 + 1 + + ANAI_ENFLOG2 + + + + + fr.insee + l4ia7rxn-QOP-l4iad1cc + 1 + OutParameter + + + fr.insee + l4ia7rxn-CI-3-IP-1 + 1 + InParameter + + + cast(l4ia7rxn-CI-3-IP-1,integer) < 1920 or cast(l4ia7rxn-CI-3-IP-1,integer) > 2024 + + + + + fr.insee + l4qtpg9f-CI-0 + 1 + + NEFRANCE_ENFLOG2 non renseigné + + + NEFRANCE_ENFLOG2 non renseigné + + + fr.insee + l4qtpg9f-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4qtpg9f-CI-0-IP-1 + 1 + + NEFRANCE_ENFLOG2 + + + + + fr.insee + l4qtpg9f-QOP-l4qtj10v + 1 + OutParameter + + + fr.insee + l4qtpg9f-CI-0-IP-1 + 1 + InParameter + + + isnull(l4qtpg9f-CI-0-IP-1) or l4qtpg9f-CI-0-IP-1="" + + + + + fr.insee + l4iano52-CI-0 + 1 + + PARENT_VIT_ENFLOG2 non renseigné + + + PARENT_VIT_ENFLOG2 non renseigné + + + fr.insee + l4iano52-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4iano52-CI-0-IP-1 + 1 + + PARENT_VIT_ENFLOG2 + + + + + fr.insee + l4iano52-QOP-l4ia429z + 1 + OutParameter + + + fr.insee + l4iano52-CI-0-IP-1 + 1 + InParameter + + + isnull(l4iano52-CI-0-IP-1) or l4iano52-CI-0-IP-1="" + + + + + fr.insee + kwqjmujx-CI-0 + 1 + + PARENT_FR_ENFLOG2 non renseigné + + + PARENT_FR_ENFLOG2 non renseigné + + + fr.insee + kwqjmujx-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqjmujx-CI-0-IP-1 + 1 + + PARENT_FR_ENFLOG2 + + + + + fr.insee + kwqjmujx-QOP-kwqjglld + 1 + OutParameter + + + fr.insee + kwqjmujx-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqjmujx-CI-0-IP-1) or kwqjmujx-CI-0-IP-1="" + + + + + fr.insee + l4pannoa-CI-0 + 1 + + PARENT_DEP_ENFLOG2 non renseigné + + + PARENT_DEP_ENFLOG2 non renseigné + + + fr.insee + l4pannoa-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4pannoa-CI-0-IP-1 + 1 + + PARENT_DEP_ENFLOG2 + + + + + fr.insee + l4pannoa-QOP-llvz35s7 + 1 + OutParameter + + + fr.insee + l4pannoa-CI-0-IP-1 + 1 + InParameter + + + isnull(l4pannoa-CI-0-IP-1) or l4pannoa-CI-0-IP-1="" + + + + + fr.insee + l4pasuts-CI-0 + 1 + + PARENT_COM_ENFLOG2 non renseigné + + + PARENT_COM_ENFLOG2 non renseigné + + + fr.insee + l4pasuts-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4pasuts-CI-0-IP-1 + 1 + + PARENT_COM_ENFLOG2 + + + + + fr.insee + l4pasuts-QOP-llvz300g + 1 + OutParameter + + + fr.insee + l4pasuts-CI-0-IP-1 + 1 + InParameter + + + isnull(l4pasuts-CI-0-IP-1) or l4pasuts-CI-0-IP-1="" + + + + + fr.insee + l4pbc5wa-CI-0 + 1 + + PARENT_PAY_ENFLOG2 non renseigné + + + PARENT_PAY_ENFLOG2 non renseigné + + + fr.insee + l4pbc5wa-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4pbc5wa-CI-0-IP-1 + 1 + + PARENT_PAY_ENFLOG2 + + + + + fr.insee + l4pbc5wa-QOP-llvz3uou + 1 + OutParameter + + + fr.insee + l4pbc5wa-CI-0-IP-1 + 1 + InParameter + + + isnull(l4pbc5wa-CI-0-IP-1) or l4pbc5wa-CI-0-IP-1="" + + + + + fr.insee + l4idgpbr-CI-0 + 1 + + PARENT_FREQ_ENFLOG2 non renseignée + + + PARENT_FREQ_ENFLOG2 non renseignée + + + fr.insee + l4idgpbr-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4idgpbr-CI-0-IP-1 + 1 + + PARENT_FREQ_ENFLOG2 + + + + + fr.insee + l4idgpbr-QOP-l4idauus + 1 + OutParameter + + + fr.insee + l4idgpbr-CI-0-IP-1 + 1 + InParameter + + + isnull(l4idgpbr-CI-0-IP-1) or l4idgpbr-CI-0-IP-1="" + + + + + fr.insee + l4486unb-CI-0 + 1 + + PARENT_DORT_ENFLOG2 non renseigné + + + PARENT_DORT_ENFLOG2 non renseigné + + + fr.insee + l4486unb-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4486unb-CI-0-IP-1 + 1 + + PARENT_DORT_ENFLOG2 + + + + + fr.insee + l4486unb-QOP-l4486uz3 + 1 + OutParameter + + + fr.insee + l4486unb-CI-0-IP-1 + 1 + InParameter + + + isnull(l4486unb-CI-0-IP-1) or l4486unb-CI-0-IP-1="" + + + + + fr.insee + l4ia5o28-CI-0 + 1 + + PARENT_VECU_ENFLOG2 non renseigné + + + PARENT_VECU_ENFLOG2 non renseigné + + + fr.insee + l4ia5o28-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ia5o28-CI-0-IP-1 + 1 + + PARENT_VECU_ENFLOG2 + + + + + fr.insee + l4ia5o28-QOP-l4ia9b25 + 1 + OutParameter + + + fr.insee + l4ia5o28-CI-0-IP-1 + 1 + InParameter + + + isnull(l4ia5o28-CI-0-IP-1) or l4ia5o28-CI-0-IP-1="" + + + + + fr.insee + la6yjh65-CI-0 + 1 + + SEP_AUT_PAR_ENFLOG2 non renseigné + + + SEP_AUT_PAR_ENFLOG2 non renseigné + + + fr.insee + la6yjh65-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + la6yjh65-CI-0-IP-1 + 1 + + SEP_AUT_PAR_ENFLOG2 + + + + + fr.insee + la6yjh65-QOP-la6yhprv + 1 + OutParameter + + + fr.insee + la6yjh65-CI-0-IP-1 + 1 + InParameter + + + isnull(la6yjh65-CI-0-IP-1) or la6yjh65-CI-0-IP-1="" + + + + + fr.insee + l4idgqx9-CI-0 + 1 + + RESID_ENFLOG2 non renseignée + + + RESID_ENFLOG2 non renseignée + + + fr.insee + l4idgqx9-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4idgqx9-CI-0-IP-1 + 1 + + RESID_ENFLOG2 + + + + + fr.insee + l4idgqx9-QOP-l4idnmx1 + 1 + OutParameter + + + fr.insee + l4idgqx9-CI-0-IP-1 + 1 + InParameter + + + isnull(l4idgqx9-CI-0-IP-1) or l4idgqx9-CI-0-IP-1 ="" + + + + + fr.insee + l4ia7y0p-CI-0 + 1 + + SANTE_ENFLOG2 non renseigné + + + SANTE_ENFLOG2 non renseigné + + + fr.insee + l4ia7y0p-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ia7y0p-CI-0-IP-1 + 1 + + SANTE_ENFLOG21 + + + + fr.insee + l4ia7y0p-CI-0-IP-2 + 1 + + SANTE_ENFLOG22 + + + + fr.insee + l4ia7y0p-CI-0-IP-3 + 1 + + SANTE_ENFLOG23 + + + + fr.insee + l4ia7y0p-CI-0-IP-4 + 1 + + SANTE_ENFLOG24 + + + + + fr.insee + l4ia7y0p-QOP-laqv5c3y + 1 + OutParameter + + + fr.insee + l4ia7y0p-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l4ia7y0p-QOP-laqv4eoa + 1 + OutParameter + + + fr.insee + l4ia7y0p-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l4ia7y0p-QOP-laquos4t + 1 + OutParameter + + + fr.insee + l4ia7y0p-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + l4ia7y0p-QOP-laqupuni + 1 + OutParameter + + + fr.insee + l4ia7y0p-CI-0-IP-4 + 1 + InParameter + + + (nvl(l4ia7y0p-CI-0-IP-1, false) = false and nvl(l4ia7y0p-CI-0-IP-2, false) = false and nvl(l4ia7y0p-CI-0-IP-3, false) = false and nvl(l4ia7y0p-CI-0-IP-4, false) = false) + + + + + fr.insee + l4ia7y0p-CI-1 + 1 + + NON exclusif + + + NON exclusif + + + fr.insee + l4ia7y0p-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ia7y0p-CI-1-IP-1 + 1 + + SANTE_ENFLOG21 + + + + fr.insee + l4ia7y0p-CI-1-IP-2 + 1 + + SANTE_ENFLOG22 + + + + fr.insee + l4ia7y0p-CI-1-IP-3 + 1 + + SANTE_ENFLOG23 + + + + fr.insee + l4ia7y0p-CI-1-IP-4 + 1 + + SANTE_ENFLOG24 + + + + + fr.insee + l4ia7y0p-QOP-laqv5c3y + 1 + OutParameter + + + fr.insee + l4ia7y0p-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4ia7y0p-QOP-laqv4eoa + 1 + OutParameter + + + fr.insee + l4ia7y0p-CI-1-IP-2 + 1 + InParameter + + + + + fr.insee + l4ia7y0p-QOP-laquos4t + 1 + OutParameter + + + fr.insee + l4ia7y0p-CI-1-IP-3 + 1 + InParameter + + + + + fr.insee + l4ia7y0p-QOP-laqupuni + 1 + OutParameter + + + fr.insee + l4ia7y0p-CI-1-IP-4 + 1 + InParameter + + + (nvl(l4ia7y0p-CI-1-IP-1,false)=true and nvl(l4ia7y0p-CI-1-IP-4,false)=true) or (nvl(l4ia7y0p-CI-1-IP-2,false)=true and nvl(l4ia7y0p-CI-1-IP-4,false)=true) or (nvl(l4ia7y0p-CI-1-IP-3,false)=true and nvl(l4ia7y0p-CI-1-IP-4,false)=true) + + + + + fr.insee + l4ld0ziw-CI-0 + 1 + + PRENOM_ENFLOG3 non renseigné + + + PRENOM_ENFLOG3 non renseigné + + + fr.insee + l4ld0ziw-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ld0ziw-CI-0-IP-1 + 1 + + PRENOM_ENFLOG3 + + + + + fr.insee + l4ld0ziw-QOP-l4lco011 + 1 + OutParameter + + + fr.insee + l4ld0ziw-CI-0-IP-1 + 1 + InParameter + + + isnull(l4ld0ziw-CI-0-IP-1) or l4ld0ziw-CI-0-IP-1="" + + + + + fr.insee + l4lcp4co-CI-0 + 1 + + SEXE_ENFLOG3 non renseigné + + + SEXE_ENFLOG3 non renseigné + + + fr.insee + l4lcp4co-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lcp4co-CI-0-IP-1 + 1 + + SEXE_ENFLOG3 + + + + + fr.insee + l4lcp4co-QOP-l4ld0wcd + 1 + OutParameter + + + fr.insee + l4lcp4co-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lcp4co-CI-0-IP-1) or l4lcp4co-CI-0-IP-1="" + + + + + fr.insee + l4ld3y0j-CI-0 + 1 + + ANAI_ENFLOG3 non renseigné + + + ANAI_ENFLOG3 non renseigné + + + fr.insee + l4ld3y0j-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ld3y0j-CI-0-IP-1 + 1 + + ANAI_ENFLOG3 + + + + + fr.insee + l4ld3y0j-QOP-l4ld1d4p + 1 + OutParameter + + + fr.insee + l4ld3y0j-CI-0-IP-1 + 1 + InParameter + + + isnull(l4ld3y0j-CI-0-IP-1) or l4ld3y0j-CI-0-IP-1="" + + + + + fr.insee + l4ld3y0j-CI-1 + 1 + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + fr.insee + l4ld3y0j-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ld3y0j-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l4ld3y0j-CI-1-IP-2 + 1 + + ANAI_ENFLOG3 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l4ld3y0j-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4ld3y0j-QOP-l4ld1d4p + 1 + OutParameter + + + fr.insee + l4ld3y0j-CI-1-IP-2 + 1 + InParameter + + + not(isnull(l4ld3y0j-CI-1-IP-2)) and not(isnull(l4ld3y0j-CI-1-IP-1)) and cast(l4ld3y0j-CI-1-IP-2,integer) < cast(l4ld3y0j-CI-1-IP-1,integer) + + + + + fr.insee + l4ld3y0j-CI-2 + 1 + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + fr.insee + l4ld3y0j-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ld3y0j-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l4ld3y0j-CI-2-IP-2 + 1 + + ANAI_ENFLOG3 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l4ld3y0j-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l4ld3y0j-QOP-l4ld1d4p + 1 + OutParameter + + + fr.insee + l4ld3y0j-CI-2-IP-2 + 1 + InParameter + + + not(isnull(l4ld3y0j-CI-2-IP-2)) and not(isnull(l4ld3y0j-CI-2-IP-1)) and (cast(l4ld3y0j-CI-2-IP-1,integer) + 15 > cast(l4ld3y0j-CI-2-IP-2,integer)) + + + + + fr.insee + l4ld3y0j-CI-3 + 1 + + bornes ANAI_ENFLOG3 + + + bornes ANAI_ENFLOG3 + + + fr.insee + l4ld3y0j-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ld3y0j-CI-3-IP-1 + 1 + + ANAI_ENFLOG3 + + + + + fr.insee + l4ld3y0j-QOP-l4ld1d4p + 1 + OutParameter + + + fr.insee + l4ld3y0j-CI-3-IP-1 + 1 + InParameter + + + cast(l4ld3y0j-CI-3-IP-1,integer) < 1920 or cast(l4ld3y0j-CI-3-IP-1,integer) > 2024 + + + + + fr.insee + l4qty53i-CI-0 + 1 + + NEFRANCE_ENFLOG3 non renseigné + + + NEFRANCE_ENFLOG3 non renseigné + + + fr.insee + l4qty53i-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4qty53i-CI-0-IP-1 + 1 + + NEFRANCE_ENFLOG3 + + + + + fr.insee + l4qty53i-QOP-l4qtewva + 1 + OutParameter + + + fr.insee + l4qty53i-CI-0-IP-1 + 1 + InParameter + + + isnull(l4qty53i-CI-0-IP-1) or l4qty53i-CI-0-IP-1="" + + + + + fr.insee + l4lct7cb-CI-0 + 1 + + PARENT_VIT_ENFLOG3 non renseigné + + + PARENT_VIT_ENFLOG3 non renseigné + + + fr.insee + l4lct7cb-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lct7cb-CI-0-IP-1 + 1 + + PARENT_VIT_ENFLOG3 + + + + + fr.insee + l4lct7cb-QOP-l4lctczi + 1 + OutParameter + + + fr.insee + l4lct7cb-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lct7cb-CI-0-IP-1) or l4lct7cb-CI-0-IP-1="" + + + + + fr.insee + l4ld827i-CI-0 + 1 + + PARENT_FR_ENFLOG3 non renseigné + + + PARENT_FR_ENFLOG3 non renseigné + + + fr.insee + l4ld827i-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ld827i-CI-0-IP-1 + 1 + + PARENT_FR_ENFLOG3 + + + + + fr.insee + l4ld827i-QOP-l4ld6gqw + 1 + OutParameter + + + fr.insee + l4ld827i-CI-0-IP-1 + 1 + InParameter + + + isnull(l4ld827i-CI-0-IP-1) or l4ld827i-CI-0-IP-1 ="" + + + + + fr.insee + l4pat7vx-CI-0 + 1 + + PARENT_DEP_ENFLOG3 non renseigné + + + PARENT_DEP_ENFLOG3 non renseigné + + + fr.insee + l4pat7vx-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4pat7vx-CI-0-IP-1 + 1 + + PARENT_DEP_ENFLOG3 + + + + + fr.insee + l4pat7vx-QOP-llvyw7q3 + 1 + OutParameter + + + fr.insee + l4pat7vx-CI-0-IP-1 + 1 + InParameter + + + isnull(l4pat7vx-CI-0-IP-1) or l4pat7vx-CI-0-IP-1="" + + + + + fr.insee + l4pavp6y-CI-0 + 1 + + PARENT_COM_ENFLOG3 non renseigné + + + PARENT_COM_ENFLOG3 non renseigné + + + fr.insee + l4pavp6y-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4pavp6y-CI-0-IP-1 + 1 + + PARENT_COM_ENFLOG3 + + + + + fr.insee + l4pavp6y-QOP-llvyyz9y + 1 + OutParameter + + + fr.insee + l4pavp6y-CI-0-IP-1 + 1 + InParameter + + + isnull(l4pavp6y-CI-0-IP-1) or l4pavp6y-CI-0-IP-1="" + + + + + fr.insee + l4pb77tv-CI-0 + 1 + + PARENT_PAY_ENFLOG3 non renseigné + + + PARENT_PAY_ENFLOG3 non renseigné + + + fr.insee + l4pb77tv-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4pb77tv-CI-0-IP-1 + 1 + + PARENT_PAY_ENFLOG3 + + + + + fr.insee + l4pb77tv-QOP-llvyspw0 + 1 + OutParameter + + + fr.insee + l4pb77tv-CI-0-IP-1 + 1 + InParameter + + + isnull(l4pb77tv-CI-0-IP-1) or l4pb77tv-CI-0-IP-1="" + + + + + fr.insee + l4ld15su-CI-0 + 1 + + PARENT_FREQ_ENFLOG3 non renseigné + + + PARENT_FREQ_ENFLOG3 non renseigné + + + fr.insee + l4ld15su-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ld15su-CI-0-IP-1 + 1 + + PARENT_FREQ_ENFLOG3 + + + + + fr.insee + l4ld15su-QOP-l4ld55kd + 1 + OutParameter + + + fr.insee + l4ld15su-CI-0-IP-1 + 1 + InParameter + + + isnull(l4ld15su-CI-0-IP-1) or l4ld15su-CI-0-IP-1="" + + + + + fr.insee + l4ld0zmv-CI-0 + 1 + + PARENT_DORT_ENFLOG3 non renseigné + + + PARENT_DORT_ENFLOG3 non renseigné + + + fr.insee + l4ld0zmv-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ld0zmv-CI-0-IP-1 + 1 + + PARENT_DORT_ENFLOG3 + + + + + fr.insee + l4ld0zmv-QOP-l4lda7jw + 1 + OutParameter + + + fr.insee + l4ld0zmv-CI-0-IP-1 + 1 + InParameter + + + isnull(l4ld0zmv-CI-0-IP-1) or l4ld0zmv-CI-0-IP-1="" + + + + + fr.insee + l4ld0jea-CI-0 + 1 + + PARENT_VECU_ENFLOG3 non renseigné + + + PARENT_VECU_ENFLOG3 non renseigné + + + fr.insee + l4ld0jea-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ld0jea-CI-0-IP-1 + 1 + + PARENT_VECU_ENFLOG3 + + + + + fr.insee + l4ld0jea-QOP-l4ld7yr1 + 1 + OutParameter + + + fr.insee + l4ld0jea-CI-0-IP-1 + 1 + InParameter + + + isnull(l4ld0jea-CI-0-IP-1) or l4ld0jea-CI-0-IP-1="" + + + + + fr.insee + la6y9flo-CI-0 + 1 + + SEP_AUT_PAR_ENFLOG3 non renseigné + + + + SEP_AUT_PAR_ENFLOG3 non renseigné + + + + fr.insee + la6y9flo-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + la6y9flo-CI-0-IP-1 + 1 + + SEP_AUT_PAR_ENFLOG3 + + + + + fr.insee + la6y9flo-QOP-la6y6kev + 1 + OutParameter + + + fr.insee + la6y9flo-CI-0-IP-1 + 1 + InParameter + + + isnull(la6y9flo-CI-0-IP-1) or la6y9flo-CI-0-IP-1="" + + + + + fr.insee + l4lde13h-CI-0 + 1 + + RESID_ENFLOG3 non renseigné + + + RESID_ENFLOG3 non renseigné + + + fr.insee + l4lde13h-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lde13h-CI-0-IP-1 + 1 + + RESID_ENFLOG3 + + + + + fr.insee + l4lde13h-QOP-l4lddsd8 + 1 + OutParameter + + + fr.insee + l4lde13h-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lde13h-CI-0-IP-1) or l4lde13h-CI-0-IP-1="" + + + + + fr.insee + l4lcuoke-CI-0 + 1 + + SANTE_ENFLOG3 non renseigné + + + SANTE_ENFLOG3 non renseigné + + + fr.insee + l4lcuoke-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lcuoke-CI-0-IP-1 + 1 + + SANTE_ENFLOG31 + + + + fr.insee + l4lcuoke-CI-0-IP-2 + 1 + + SANTE_ENFLOG32 + + + + fr.insee + l4lcuoke-CI-0-IP-3 + 1 + + SANTE_ENFLOG33 + + + + fr.insee + l4lcuoke-CI-0-IP-4 + 1 + + SANTE_ENFLOG34 + + + + + fr.insee + l4lcuoke-QOP-la6v5i7c + 1 + OutParameter + + + fr.insee + l4lcuoke-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l4lcuoke-QOP-la6vlqvx + 1 + OutParameter + + + fr.insee + l4lcuoke-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l4lcuoke-QOP-la6vkkpx + 1 + OutParameter + + + fr.insee + l4lcuoke-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + l4lcuoke-QOP-la6vkdlt + 1 + OutParameter + + + fr.insee + l4lcuoke-CI-0-IP-4 + 1 + InParameter + + + (nvl(l4lcuoke-CI-0-IP-1, false) = false and nvl(l4lcuoke-CI-0-IP-2, false) = false and nvl(l4lcuoke-CI-0-IP-3, false) = false and nvl(l4lcuoke-CI-0-IP-4, false) = false) + + + + + fr.insee + l4lcuoke-CI-1 + 1 + + NON exclusif + + + NON exclusif + + + fr.insee + l4lcuoke-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lcuoke-CI-1-IP-1 + 1 + + SANTE_ENFLOG31 + + + + fr.insee + l4lcuoke-CI-1-IP-2 + 1 + + SANTE_ENFLOG32 + + + + fr.insee + l4lcuoke-CI-1-IP-3 + 1 + + SANTE_ENFLOG33 + + + + fr.insee + l4lcuoke-CI-1-IP-4 + 1 + + SANTE_ENFLOG34 + + + + + fr.insee + l4lcuoke-QOP-la6v5i7c + 1 + OutParameter + + + fr.insee + l4lcuoke-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4lcuoke-QOP-la6vlqvx + 1 + OutParameter + + + fr.insee + l4lcuoke-CI-1-IP-2 + 1 + InParameter + + + + + fr.insee + l4lcuoke-QOP-la6vkkpx + 1 + OutParameter + + + fr.insee + l4lcuoke-CI-1-IP-3 + 1 + InParameter + + + + + fr.insee + l4lcuoke-QOP-la6vkdlt + 1 + OutParameter + + + fr.insee + l4lcuoke-CI-1-IP-4 + 1 + InParameter + + + (nvl(l4lcuoke-CI-1-IP-1,false)=true and nvl(l4lcuoke-CI-1-IP-4,false)=true) or (nvl(l4lcuoke-CI-1-IP-2,false)=true and nvl(l4lcuoke-CI-1-IP-4,false)=true) or (nvl(l4lcuoke-CI-1-IP-3,false)=true and nvl(l4lcuoke-CI-1-IP-4,false)=true) + + + + + fr.insee + l4lec0rk-CI-0 + 1 + + PRENOM_ENFLOG4 non renseigné + + + PRENOM_ENFLOG4 non renseigné + + + fr.insee + l4lec0rk-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lec0rk-CI-0-IP-1 + 1 + + PRENOM_ENFLOG4 + + + + + fr.insee + l4lec0rk-QOP-l4lefzhk + 1 + OutParameter + + + fr.insee + l4lec0rk-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lec0rk-CI-0-IP-1) or l4lec0rk-CI-0-IP-1="" + + + + + fr.insee + l4lefdoh-CI-0 + 1 + + SEXE_ENFLOG4 non renseigné + + + SEXE_ENFLOG4 non renseigné + + + fr.insee + l4lefdoh-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lefdoh-CI-0-IP-1 + 1 + + SEXE_ENFLOG4 + + + + + fr.insee + l4lefdoh-QOP-l4le4jn4 + 1 + OutParameter + + + fr.insee + l4lefdoh-CI-0-IP-1 + 1 + InParameter + + + insull(l4lefdoh-CI-0-IP-1) or l4lefdoh-CI-0-IP-1="" + + + + + fr.insee + l4le9rs3-CI-0 + 1 + + ANAI_ENFLOG4 non renseigné + + + ANAI_ENFLOG4 non renseigné + + + fr.insee + l4le9rs3-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4le9rs3-CI-0-IP-1 + 1 + + ANAI_ENFLOG4 + + + + + fr.insee + l4le9rs3-QOP-l4le8tph + 1 + OutParameter + + + fr.insee + l4le9rs3-CI-0-IP-1 + 1 + InParameter + + + isnull(l4le9rs3-CI-0-IP-1) or l4le9rs3-CI-0-IP-1 ="" + + + + + fr.insee + l4le9rs3-CI-1 + 1 + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + fr.insee + l4le9rs3-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4le9rs3-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l4le9rs3-CI-1-IP-2 + 1 + + ANAI_ENFLOG4 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l4le9rs3-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4le9rs3-QOP-l4le8tph + 1 + OutParameter + + + fr.insee + l4le9rs3-CI-1-IP-2 + 1 + InParameter + + + not(isnull(l4le9rs3-CI-1-IP-2)) and not(isnull(l4le9rs3-CI-1-IP-1)) and cast(l4le9rs3-CI-1-IP-2,integer) < cast(l4le9rs3-CI-1-IP-1,integer) + + + + + fr.insee + l4le9rs3-CI-2 + 1 + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + fr.insee + l4le9rs3-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4le9rs3-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l4le9rs3-CI-2-IP-2 + 1 + + ANAI_ENFLOG4 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l4le9rs3-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l4le9rs3-QOP-l4le8tph + 1 + OutParameter + + + fr.insee + l4le9rs3-CI-2-IP-2 + 1 + InParameter + + + not(isnull(l4le9rs3-CI-2-IP-2)) and not(isnull(l4le9rs3-CI-2-IP-1)) and (cast(l4le9rs3-CI-2-IP-1,integer) + 15 > cast(l4le9rs3-CI-2-IP-2,integer)) + + + + + fr.insee + l4le9rs3-CI-3 + 1 + + bornes ANAI_ENFLOG4 + + + bornes ANAI_ENFLOG4 + + + fr.insee + l4le9rs3-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4le9rs3-CI-3-IP-1 + 1 + + ANAI_ENFLOG4 + + + + + fr.insee + l4le9rs3-QOP-l4le8tph + 1 + OutParameter + + + fr.insee + l4le9rs3-CI-3-IP-1 + 1 + InParameter + + + cast(l4le9rs3-CI-3-IP-1,integer) < 1920 or cast(l4le9rs3-CI-3-IP-1,integer) > 2024 + + + + + fr.insee + l4qtvt71-CI-0 + 1 + + NEFRANCE_ENFLOG4 non renseigné + + + NEFRANCE_ENFLOG4 non renseigné + + + fr.insee + l4qtvt71-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4qtvt71-CI-0-IP-1 + 1 + + NEFRANCE_ENFLOG4 + + + + + fr.insee + l4qtvt71-QOP-l4qtzd2y + 1 + OutParameter + + + fr.insee + l4qtvt71-CI-0-IP-1 + 1 + InParameter + + + isnull(l4qtvt71-CI-0-IP-1) or l4qtvt71-CI-0-IP-1="" + + + + + fr.insee + l4ler7fu-CI-0 + 1 + + PARENT_VIT_ENFLOG4 non renseigné + + + PARENT_VIT_ENFLOG4 non renseigné + + + fr.insee + l4ler7fu-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ler7fu-CI-0-IP-1 + 1 + + PARENT_VIT_ENFLOG4 + + + + + fr.insee + l4ler7fu-QOP-l4lequew + 1 + OutParameter + + + fr.insee + l4ler7fu-CI-0-IP-1 + 1 + InParameter + + + isnull(l4ler7fu-CI-0-IP-1) or l4ler7fu-CI-0-IP-1="" + + + + + fr.insee + l4lemegm-CI-0 + 1 + + PARENT_FR_ENFLOG4 non renseigné + + + PARENT_FR_ENFLOG4 non renseigné + + + fr.insee + l4lemegm-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lemegm-CI-0-IP-1 + 1 + + PARENT_FR_ENFLOG4 + + + + + fr.insee + l4lemegm-QOP-l4leh99i + 1 + OutParameter + + + fr.insee + l4lemegm-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lemegm-CI-0-IP-1) or l4lemegm-CI-0-IP-1="" + + + + + fr.insee + l4payjff-CI-0 + 1 + + PARENT_DEP_ENFLOG4 non renseigné + + + PARENT_DEP_ENFLOG4 non renseigné + + + fr.insee + l4payjff-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4payjff-CI-0-IP-1 + 1 + + PARENT_DEP_ENFLOG4 + + + + + fr.insee + l4payjff-QOP-llvyruw7 + 1 + OutParameter + + + fr.insee + l4payjff-CI-0-IP-1 + 1 + InParameter + + + isnull(l4payjff-CI-0-IP-1) or l4payjff-CI-0-IP-1="" + + + + + fr.insee + l4paz6m4-CI-0 + 1 + + PARENT_COM_ENFLOG4 non renseigné + + + PARENT_COM_ENFLOG4 non renseigné + + + fr.insee + l4paz6m4-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4paz6m4-CI-0-IP-1 + 1 + + PARENT_COM_ENFLOG4 + + + + + fr.insee + l4paz6m4-QOP-llvyy20q + 1 + OutParameter + + + fr.insee + l4paz6m4-CI-0-IP-1 + 1 + InParameter + + + isnull(l4paz6m4-CI-0-IP-1) or l4paz6m4-CI-0-IP-1="" + + + + + fr.insee + l4pbax4x-CI-0 + 1 + + PARENT_PAY_ENFLOG4 non renseigné + + + PARENT_PAY_ENFLOG4 non renseigné + + + fr.insee + l4pbax4x-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4pbax4x-CI-0-IP-1 + 1 + + PARENT_PAY_ENFLOG4 + + + + + fr.insee + l4pbax4x-QOP-llvz97hj + 1 + OutParameter + + + fr.insee + l4pbax4x-CI-0-IP-1 + 1 + InParameter + + + isnull(l4pbax4x-CI-0-IP-1) or l4pbax4x-CI-0-IP-1="" + + + + + fr.insee + l4letwtq-CI-0 + 1 + + PARENT_FREQ_ENFLOG4 non renseigné + + + PARENT_FREQ_ENFLOG4 non renseigné + + + fr.insee + l4letwtq-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4letwtq-CI-0-IP-1 + 1 + + PARENT_FREQ_ENFLOG4 + + + + + fr.insee + l4letwtq-QOP-l4lesyhr + 1 + OutParameter + + + fr.insee + l4letwtq-CI-0-IP-1 + 1 + InParameter + + + isnull(l4letwtq-CI-0-IP-1) or l4letwtq-CI-0-IP-1 ="" + + + + + fr.insee + l4letk9j-CI-0 + 1 + + PARENT_DORT_ENFLOG4 non renseigné + + + PARENT_DORT_ENFLOG4 non renseigné + + + fr.insee + l4letk9j-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4letk9j-CI-0-IP-1 + 1 + + PARENT_DORT_ENFLOG4 + + + + + fr.insee + l4letk9j-QOP-l4lergt1 + 1 + OutParameter + + + fr.insee + l4letk9j-CI-0-IP-1 + 1 + InParameter + + + isnull(l4letk9j-CI-0-IP-1) or l4letk9j-CI-0-IP-1="" + + + + + fr.insee + l4lekh2t-CI-0 + 1 + + PARENT_VECU_ENFLOG4 non renseigné + + + PARENT_VECU_ENFLOG4 non renseigné + + + fr.insee + l4lekh2t-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lekh2t-CI-0-IP-1 + 1 + + PARENT_VECU_ENFLOG4 + + + + + fr.insee + l4lekh2t-QOP-l4leazvr + 1 + OutParameter + + + fr.insee + l4lekh2t-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lekh2t-CI-0-IP-1) or l4lekh2t-CI-0-IP-1="" + + + + + fr.insee + la6y7rno-CI-0 + 1 + + SEP_AUT_PAR_ENFLOG4 non renseigné + + + + SEP_AUT_PAR_ENFLOG4 non renseigné + + + + fr.insee + la6y7rno-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + la6y7rno-CI-0-IP-1 + 1 + + SEP_AUT_PAR_ENFLOG4 + + + + + fr.insee + la6y7rno-QOP-la6yfcb1 + 1 + OutParameter + + + fr.insee + la6y7rno-CI-0-IP-1 + 1 + InParameter + + + isnull(la6y7rno-CI-0-IP-1) or la6y7rno-CI-0-IP-1="" + + + + + fr.insee + l4lexatl-CI-0 + 1 + + RESID_ENFLOG4 non renseigné + + + RESID_ENFLOG4 non renseigné + + + fr.insee + l4lexatl-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lexatl-CI-0-IP-1 + 1 + + RESID_ENFLOG4 + + + + + fr.insee + l4lexatl-QOP-l4leps7n + 1 + OutParameter + + + fr.insee + l4lexatl-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lexatl-CI-0-IP-1) or l4lexatl-CI-0-IP-1="" + + + + + fr.insee + l4lec2qz-CI-0 + 1 + + SANTE_ENFLOG4 non renseigné + + + SANTE_ENFLOG4 non renseigné + + + fr.insee + l4lec2qz-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lec2qz-CI-0-IP-1 + 1 + + SANTE_ENFLOG41 + + + + fr.insee + l4lec2qz-CI-0-IP-2 + 1 + + SANTE_ENFLOG42 + + + + fr.insee + l4lec2qz-CI-0-IP-3 + 1 + + SANTE_ENFLOG43 + + + + fr.insee + l4lec2qz-CI-0-IP-4 + 1 + + SANTE_ENFLOG44 + + + + + fr.insee + l4lec2qz-QOP-la6vffpf + 1 + OutParameter + + + fr.insee + l4lec2qz-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l4lec2qz-QOP-la6vkyqn + 1 + OutParameter + + + fr.insee + l4lec2qz-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l4lec2qz-QOP-la6vfxog + 1 + OutParameter + + + fr.insee + l4lec2qz-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + l4lec2qz-QOP-la6vkx70 + 1 + OutParameter + + + fr.insee + l4lec2qz-CI-0-IP-4 + 1 + InParameter + + + (nvl(l4lec2qz-CI-0-IP-1, false) = false and nvl(l4lec2qz-CI-0-IP-2, false) = false and nvl(l4lec2qz-CI-0-IP-3, false) = false and nvl(l4lec2qz-CI-0-IP-4, false) = false) + + + + + fr.insee + l4lec2qz-CI-1 + 1 + + NON exclusif + + + NON exclusif + + + fr.insee + l4lec2qz-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lec2qz-CI-1-IP-1 + 1 + + SANTE_ENFLOG41 + + + + fr.insee + l4lec2qz-CI-1-IP-2 + 1 + + SANTE_ENFLOG42 + + + + fr.insee + l4lec2qz-CI-1-IP-3 + 1 + + SANTE_ENFLOG43 + + + + fr.insee + l4lec2qz-CI-1-IP-4 + 1 + + SANTE_ENFLOG44 + + + + + fr.insee + l4lec2qz-QOP-la6vffpf + 1 + OutParameter + + + fr.insee + l4lec2qz-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4lec2qz-QOP-la6vkyqn + 1 + OutParameter + + + fr.insee + l4lec2qz-CI-1-IP-2 + 1 + InParameter + + + + + fr.insee + l4lec2qz-QOP-la6vfxog + 1 + OutParameter + + + fr.insee + l4lec2qz-CI-1-IP-3 + 1 + InParameter + + + + + fr.insee + l4lec2qz-QOP-la6vkx70 + 1 + OutParameter + + + fr.insee + l4lec2qz-CI-1-IP-4 + 1 + InParameter + + + (nvl(l4lec2qz-CI-1-IP-1,false)=true and nvl(l4lec2qz-CI-1-IP-4,false)=true) or (nvl(l4lec2qz-CI-1-IP-2,false)=true and nvl(l4lec2qz-CI-1-IP-4,false)=true) or (nvl(l4lec2qz-CI-1-IP-3,false)=true and nvl(l4lec2qz-CI-1-IP-4,false)=true) + + + + + fr.insee + l4leulqw-CI-0 + 1 + + PRENOM_ENFLOG5 non renseigné + + + PRENOM_ENFLOG5 non renseigné + + + fr.insee + l4leulqw-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4leulqw-CI-0-IP-1 + 1 + + PRENOM_ENFLOG5 + + + + + fr.insee + l4leulqw-QOP-l4leruxk + 1 + OutParameter + + + fr.insee + l4leulqw-CI-0-IP-1 + 1 + InParameter + + + isnull(l4leulqw-CI-0-IP-1) or l4leulqw-CI-0-IP-1="" + + + + + fr.insee + l4lem0yg-CI-0 + 1 + + SEXE_ENFLOG5 non renseigné + + + SEXE_ENFLOG5 non renseigné + + + fr.insee + l4lem0yg-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lem0yg-CI-0-IP-1 + 1 + + SEXE_ENFLOG5 + + + + + fr.insee + l4lem0yg-QOP-l4leqtd3 + 1 + OutParameter + + + fr.insee + l4lem0yg-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lem0yg-CI-0-IP-1) or l4lem0yg-CI-0-IP-1="" + + + + + fr.insee + l4lffj1f-CI-0 + 1 + + ANAI_ENFLOG5 non renseigné + + + ANAI_ENFLOG5 non renseigné + + + fr.insee + l4lffj1f-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lffj1f-CI-0-IP-1 + 1 + + ANAI_ENFLOG5 + + + + + fr.insee + l4lffj1f-QOP-l4lfqb24 + 1 + OutParameter + + + fr.insee + l4lffj1f-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lffj1f-CI-0-IP-1) or l4lffj1f-CI-0-IP-1 ="" + + + + + fr.insee + l4lffj1f-CI-1 + 1 + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + fr.insee + l4lffj1f-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lffj1f-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l4lffj1f-CI-1-IP-2 + 1 + + ANAI_ENFLOG5 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l4lffj1f-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4lffj1f-QOP-l4lfqb24 + 1 + OutParameter + + + fr.insee + l4lffj1f-CI-1-IP-2 + 1 + InParameter + + + not(isnull(l4lffj1f-CI-1-IP-2)) and not(isnull(l4lffj1f-CI-1-IP-1)) and cast(l4lffj1f-CI-1-IP-2,integer) < cast(l4lffj1f-CI-1-IP-1,integer) + + + + + fr.insee + l4lffj1f-CI-2 + 1 + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + fr.insee + l4lffj1f-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lffj1f-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l4lffj1f-CI-2-IP-2 + 1 + + ANAI_ENFLOG5 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l4lffj1f-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l4lffj1f-QOP-l4lfqb24 + 1 + OutParameter + + + fr.insee + l4lffj1f-CI-2-IP-2 + 1 + InParameter + + + not(isnull(l4lffj1f-CI-2-IP-2)) and not(isnull(l4lffj1f-CI-2-IP-1)) and (cast(l4lffj1f-CI-2-IP-1,integer) + 15 > cast(l4lffj1f-CI-2-IP-2,integer)) + + + + + fr.insee + l4lffj1f-CI-3 + 1 + + bornes ANAI_ENFLOG5 + + + bornes ANAI_ENFLOG5 + + + fr.insee + l4lffj1f-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lffj1f-CI-3-IP-1 + 1 + + ANAI_ENFLOG5 + + + + + fr.insee + l4lffj1f-QOP-l4lfqb24 + 1 + OutParameter + + + fr.insee + l4lffj1f-CI-3-IP-1 + 1 + InParameter + + + cast(l4lffj1f-CI-3-IP-1,integer) < 1920 or cast(l4lffj1f-CI-3-IP-1,integer) > 2024 + + + + + fr.insee + l4qtm8di-CI-0 + 1 + + NEFRANCE_ENFLOG5 non renseigné + + + NEFRANCE_ENFLOG5 non renseigné + + + fr.insee + l4qtm8di-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4qtm8di-CI-0-IP-1 + 1 + + NEFRANCE_ENFLOG5 + + + + + fr.insee + l4qtm8di-QOP-l4qtqnl5 + 1 + OutParameter + + + fr.insee + l4qtm8di-CI-0-IP-1 + 1 + InParameter + + + isnull(l4qtm8di-CI-0-IP-1) or l4qtm8di-CI-0-IP-1="" + + + + + fr.insee + l4lfye1g-CI-0 + 1 + + PARENT_VIT_ENFLOG5 non renseigné + + + PARENT_VIT_ENFLOG5 non renseigné + + + fr.insee + l4lfye1g-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lfye1g-CI-0-IP-1 + 1 + + PARENT_VIT_ENFLOG5 + + + + + fr.insee + l4lfye1g-QOP-l4lfqvi9 + 1 + OutParameter + + + fr.insee + l4lfye1g-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lfye1g-CI-0-IP-1) or l4lfye1g-CI-0-IP-1= "" + + + + + fr.insee + l4lfoek4-CI-0 + 1 + + PARENT_FR_ENFLOG5 non renseigné + + + PARENT_FR_ENFLOG5 non renseigné + + + fr.insee + l4lfoek4-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lfoek4-CI-0-IP-1 + 1 + + PARENT_FR_ENFLOG5 + + + + + fr.insee + l4lfoek4-QOP-l4lfrft6 + 1 + OutParameter + + + fr.insee + l4lfoek4-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lfoek4-CI-0-IP-1) or l4lfoek4-CI-0-IP-1="" + + + + + fr.insee + l4pauqgi-CI-0 + 1 + + PARENT_DEP_ENFLOG5 non renseigné + + + PARENT_DEP_ENFLOG5 non renseigné + + + fr.insee + l4pauqgi-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4pauqgi-CI-0-IP-1 + 1 + + PARENT_DEP_ENFLOG5 + + + + + fr.insee + l4pauqgi-QOP-llvyw6mw + 1 + OutParameter + + + fr.insee + l4pauqgi-CI-0-IP-1 + 1 + InParameter + + + isnull(l4pauqgi-CI-0-IP-1) or l4pauqgi-CI-0-IP-1 ="" + + + + + fr.insee + l4paw4ax-CI-0 + 1 + + PARENT_COM_ENFLOG5 non renseigné + + + PARENT_COM_ENFLOG5 non renseigné + + + fr.insee + l4paw4ax-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4paw4ax-CI-0-IP-1 + 1 + + PARENT_COM_ENFLOG5 + + + + + fr.insee + l4paw4ax-QOP-llvyqmlu + 1 + OutParameter + + + fr.insee + l4paw4ax-CI-0-IP-1 + 1 + InParameter + + + isnull(l4paw4ax-CI-0-IP-1) or l4paw4ax-CI-0-IP-1="" + + + + + fr.insee + l4pb234a-CI-0 + 1 + + PARENT_PAY_ENFLOG5 non renseigné + + + PARENT_PAY_ENFLOG5 non renseigné + + + fr.insee + l4pb234a-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4pb234a-CI-0-IP-1 + 1 + + PARENT_PAY_ENFLOG5 + + + + + fr.insee + l4pb234a-QOP-llvz0jpe + 1 + OutParameter + + + fr.insee + l4pb234a-CI-0-IP-1 + 1 + InParameter + + + isnull(l4pb234a-CI-0-IP-1) or l4pb234a-CI-0-IP-1 ="" + + + + + fr.insee + l8n262ck-CI-0 + 1 + + PARENT_FREQ_ENFLOG5 non renseigné + + + PARENT_FREQ_ENFLOG5 non renseigné + + + fr.insee + l8n262ck-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n262ck-CI-0-IP-1 + 1 + + PARENT_FREQ_ENFLOG5 + + + + + fr.insee + l8n262ck-QOP-l8n27wnd + 1 + OutParameter + + + fr.insee + l8n262ck-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n262ck-CI-0-IP-1) or l8n262ck-CI-0-IP-1="" + + + + + fr.insee + l4lfr4qa-CI-0 + 1 + + PARENT_DORT_ENFLOG5 non renseigné + + + PARENT_DORT_ENFLOG5 non renseigné + + + fr.insee + l4lfr4qa-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lfr4qa-CI-0-IP-1 + 1 + + PARENT_DORT_ENFLOG5 + + + + + fr.insee + l4lfr4qa-QOP-l4lfvr6s + 1 + OutParameter + + + fr.insee + l4lfr4qa-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lfr4qa-CI-0-IP-1) or l4lfr4qa-CI-0-IP-1="" + + + + + fr.insee + l4lfvape-CI-0 + 1 + + PARENT_VECU_ENFLOG5 non renseigné + + + PARENT_VECU_ENFLOG5 non renseigné + + + fr.insee + l4lfvape-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lfvape-CI-0-IP-1 + 1 + + PARENT_VECU_ENFLOG5 + + + + + fr.insee + l4lfvape-QOP-l4lfk081 + 1 + OutParameter + + + fr.insee + l4lfvape-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lfvape-CI-0-IP-1) or l4lfvape-CI-0-IP-1="" + + + + + fr.insee + la6yfjnf-CI-0 + 1 + + SEP_AUT_PAR_ENFLOG5 non renseigné + + + SEP_AUT_PAR_ENFLOG5 non renseigné + + + fr.insee + la6yfjnf-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + la6yfjnf-CI-0-IP-1 + 1 + + SEP_AUT_PAR_ENFLOG5 + + + + + fr.insee + la6yfjnf-QOP-la6y9op3 + 1 + OutParameter + + + fr.insee + la6yfjnf-CI-0-IP-1 + 1 + InParameter + + + isnull(la6yfjnf-CI-0-IP-1) or la6yfjnf-CI-0-IP-1="" + + + + + fr.insee + l4lg25av-CI-0 + 1 + + RESID_ENFLOG5 non renseigné + + + RESID_ENFLOG5 non renseigné + + + fr.insee + l4lg25av-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lg25av-CI-0-IP-1 + 1 + + RESID_ENFLOG5 + + + + + fr.insee + l4lg25av-QOP-l4lfuclq + 1 + OutParameter + + + fr.insee + l4lg25av-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lg25av-CI-0-IP-1) or l4lg25av-CI-0-IP-1="" + + + + + fr.insee + l4lfclty-CI-0 + 1 + + SANTE_ENFLOG5 non renseigné + + + SANTE_ENFLOG5 non renseigné + + + fr.insee + l4lfclty-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lfclty-CI-0-IP-1 + 1 + + SANTE_ENFLOG51 + + + + fr.insee + l4lfclty-CI-0-IP-2 + 1 + + SANTE_ENFLOG52 + + + + fr.insee + l4lfclty-CI-0-IP-3 + 1 + + SANTE_ENFLOG53 + + + + fr.insee + l4lfclty-CI-0-IP-4 + 1 + + SANTE_ENFLOG54 + + + + + fr.insee + l4lfclty-QOP-la6vpzpe + 1 + OutParameter + + + fr.insee + l4lfclty-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l4lfclty-QOP-la6vhlmp + 1 + OutParameter + + + fr.insee + l4lfclty-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l4lfclty-QOP-la6vcgh1 + 1 + OutParameter + + + fr.insee + l4lfclty-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + l4lfclty-QOP-la6v7y36 + 1 + OutParameter + + + fr.insee + l4lfclty-CI-0-IP-4 + 1 + InParameter + + + (nvl(l4lfclty-CI-0-IP-1, false) = false and nvl(l4lfclty-CI-0-IP-2, false) = false and nvl(l4lfclty-CI-0-IP-3, false) = false and nvl(l4lfclty-CI-0-IP-4, false) = false) + + + + + fr.insee + l4lfclty-CI-1 + 1 + + NON exclusif + + + NON exclusif + + + fr.insee + l4lfclty-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lfclty-CI-1-IP-1 + 1 + + SANTE_ENFLOG51 + + + + fr.insee + l4lfclty-CI-1-IP-2 + 1 + + SANTE_ENFLOG52 + + + + fr.insee + l4lfclty-CI-1-IP-3 + 1 + + SANTE_ENFLOG53 + + + + fr.insee + l4lfclty-CI-1-IP-4 + 1 + + SANTE_ENFLOG54 + + + + + fr.insee + l4lfclty-QOP-la6vpzpe + 1 + OutParameter + + + fr.insee + l4lfclty-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4lfclty-QOP-la6vhlmp + 1 + OutParameter + + + fr.insee + l4lfclty-CI-1-IP-2 + 1 + InParameter + + + + + fr.insee + l4lfclty-QOP-la6vcgh1 + 1 + OutParameter + + + fr.insee + l4lfclty-CI-1-IP-3 + 1 + InParameter + + + + + fr.insee + l4lfclty-QOP-la6v7y36 + 1 + OutParameter + + + fr.insee + l4lfclty-CI-1-IP-4 + 1 + InParameter + + + (nvl(l4lfclty-CI-1-IP-1,false)=true and nvl(l4lfclty-CI-1-IP-4,false)=true) or (nvl(l4lfclty-CI-1-IP-2,false)=true and nvl(l4lfclty-CI-1-IP-4,false)=true) or (nvl(l4lfclty-CI-1-IP-3,false)=true and nvl(l4lfclty-CI-1-IP-4,false)=true) + + + + + fr.insee + l8n2umnw-CI-0 + 1 + + PRENOM_ENFLOG6 non renseigné + + + PRENOM_ENFLOG6 non renseigné + + + fr.insee + l8n2umnw-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n2umnw-CI-0-IP-1 + 1 + + PRENOM_ENFLOG6 + + + + + fr.insee + l8n2umnw-QOP-l8n2q8ti + 1 + OutParameter + + + fr.insee + l8n2umnw-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n2umnw-CI-0-IP-1) or l8n2umnw-CI-0-IP-1="" + + + + + fr.insee + l8n2e1mr-CI-0 + 1 + + SEXE_ENFLOG6 non renseigné + + + SEXE_ENFLOG6 non renseigné + + + fr.insee + l8n2e1mr-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n2e1mr-CI-0-IP-1 + 1 + + SEXE_ENFLOG6 + + + + + fr.insee + l8n2e1mr-QOP-l8n2ef3o + 1 + OutParameter + + + fr.insee + l8n2e1mr-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n2e1mr-CI-0-IP-1) or l8n2e1mr-CI-0-IP-1="" + + + + + fr.insee + l8n2lctv-CI-0 + 1 + + ANAI_ENFLOG6 non renseigné + + + ANAI_ENFLOG6 non renseigné + + + fr.insee + l8n2lctv-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n2lctv-CI-0-IP-1 + 1 + + ANAI_ENFLOG6 + + + + + fr.insee + l8n2lctv-QOP-l8n2f2zr + 1 + OutParameter + + + fr.insee + l8n2lctv-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n2lctv-CI-0-IP-1) or l8n2lctv-CI-0-IP-1="" + + + + + fr.insee + l8n2lctv-CI-1 + 1 + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + fr.insee + l8n2lctv-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n2lctv-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l8n2lctv-CI-1-IP-2 + 1 + + ANAI_ENFLOG6 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l8n2lctv-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l8n2lctv-QOP-l8n2f2zr + 1 + OutParameter + + + fr.insee + l8n2lctv-CI-1-IP-2 + 1 + InParameter + + + not(isnull(l8n2lctv-CI-1-IP-2)) and not(isnull(l8n2lctv-CI-1-IP-1)) and cast(l8n2lctv-CI-1-IP-2,integer) < cast(l8n2lctv-CI-1-IP-1,integer) + + + + + fr.insee + l8n2lctv-CI-2 + 1 + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + fr.insee + l8n2lctv-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n2lctv-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l8n2lctv-CI-2-IP-2 + 1 + + ANAI_ENFLOG6 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l8n2lctv-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l8n2lctv-QOP-l8n2f2zr + 1 + OutParameter + + + fr.insee + l8n2lctv-CI-2-IP-2 + 1 + InParameter + + + not(isnull(l8n2lctv-CI-2-IP-2)) and not(isnull(l8n2lctv-CI-2-IP-1)) and (cast(l8n2lctv-CI-2-IP-1,integer) + 15 > cast(l8n2lctv-CI-2-IP-2,integer)) + + + + + fr.insee + l8n2lctv-CI-3 + 1 + + bornes ANAI_ENFLOG6 + + + bornes ANAI_ENFLOG6 + + + fr.insee + l8n2lctv-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n2lctv-CI-3-IP-1 + 1 + + ANAI_ENFLOG6 + + + + + fr.insee + l8n2lctv-QOP-l8n2f2zr + 1 + OutParameter + + + fr.insee + l8n2lctv-CI-3-IP-1 + 1 + InParameter + + + cast(l8n2lctv-CI-3-IP-1,integer) < 1920 or cast(l8n2lctv-CI-3-IP-1,integer) > 2024 + + + + + fr.insee + l8n2gmuq-CI-0 + 1 + + NEFRANCE_ENFLOG6 non renseigné + + + NEFRANCE_ENFLOG6 non renseigné + + + fr.insee + l8n2gmuq-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n2gmuq-CI-0-IP-1 + 1 + + NEFRANCE_ENFLOG6 + + + + + fr.insee + l8n2gmuq-QOP-l8n2bcdy + 1 + OutParameter + + + fr.insee + l8n2gmuq-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n2gmuq-CI-0-IP-1) or l8n2gmuq-CI-0-IP-1="" + + + + + fr.insee + l8n2ilpb-CI-0 + 1 + + PARENT_VIT_ENFLOG6 non renseigné + + + PARENT_VIT_ENFLOG6 non renseigné + + + fr.insee + l8n2ilpb-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n2ilpb-CI-0-IP-1 + 1 + + PARENT_VIT_ENFLOG6 + + + + + fr.insee + l8n2ilpb-QOP-l8n290y2 + 1 + OutParameter + + + fr.insee + l8n2ilpb-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n2ilpb-CI-0-IP-1) or l8n2ilpb-CI-0-IP-1="" + + + + + fr.insee + l8n1zy7o-CI-0 + 1 + + PARENT_FR_ENFLOG6 non renseigné + + + PARENT_FR_ENFLOG6 non renseigné + + + fr.insee + l8n1zy7o-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n1zy7o-CI-0-IP-1 + 1 + + PARENT_FR_ENFLOG6 + + + + + fr.insee + l8n1zy7o-QOP-l8n23nvd + 1 + OutParameter + + + fr.insee + l8n1zy7o-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n1zy7o-CI-0-IP-1) or l8n1zy7o-CI-0-IP-1="" + + + + + fr.insee + l8n2awb0-CI-0 + 1 + + PARENT_DEP_ENFLOG6 non renseigné + + + PARENT_DEP_ENFLOG6 non renseigné + + + fr.insee + l8n2awb0-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n2awb0-CI-0-IP-1 + 1 + + PARENT_DEP_ENFLOG6 + + + + + fr.insee + l8n2awb0-QOP-llvz079i + 1 + OutParameter + + + fr.insee + l8n2awb0-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n2awb0-CI-0-IP-1) or l8n2awb0-CI-0-IP-1="" + + + + + fr.insee + l8n1u6yt-CI-0 + 1 + + PARENT_COM_ENFLOG6 non renseigné + + + PARENT_COM_ENFLOG6 non renseigné + + + fr.insee + l8n1u6yt-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n1u6yt-CI-0-IP-1 + 1 + + PARENT_COM_ENFLOG6 + + + + + fr.insee + l8n1u6yt-QOP-llvz20va + 1 + OutParameter + + + fr.insee + l8n1u6yt-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n1u6yt-CI-0-IP-1) or l8n1u6yt-CI-0-IP-1="" + + + + + fr.insee + l8n20r8i-CI-0 + 1 + + PARENT_PAY_ENFLOG6 non renseigné + + + PARENT_PAY_ENFLOG6 non renseigné + + + fr.insee + l8n20r8i-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n20r8i-CI-0-IP-1 + 1 + + PARENT_PAY_ENFLOG6 + + + + + fr.insee + l8n20r8i-QOP-llvz6xrr + 1 + OutParameter + + + fr.insee + l8n20r8i-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n20r8i-CI-0-IP-1) or l8n20r8i-CI-0-IP-1="" + + + + + fr.insee + l4lfnqiq-CI-0 + 1 + + PARENT_FREQ_ENFLOG6 non renseigné + + + PARENT_FREQ_ENFLOG6 non renseigné + + + fr.insee + l4lfnqiq-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lfnqiq-CI-0-IP-1 + 1 + + PARENT_FREQ_ENFLOG6 + + + + + fr.insee + l4lfnqiq-QOP-l4lg2h6j + 1 + OutParameter + + + fr.insee + l4lfnqiq-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lfnqiq-CI-0-IP-1) or l4lfnqiq-CI-0-IP-1="" + + + + + fr.insee + l8n29jww-CI-0 + 1 + + PARENT_DORT_ENFLOG6 non renseigné + + + PARENT_DORT_ENFLOG6 non renseigné + + + fr.insee + l8n29jww-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n29jww-CI-0-IP-1 + 1 + + PARENT_DORT_ENFLOG6 + + + + + fr.insee + l8n29jww-QOP-l8n23c9r + 1 + OutParameter + + + fr.insee + l8n29jww-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n29jww-CI-0-IP-1) or l8n29jww-CI-0-IP-1="" + + + + + fr.insee + l8n1p0yj-CI-0 + 1 + + PARENT_VECU_ENFLOG6 non renseigné + + + PARENT_VECU_ENFLOG6 non renseigné + + + fr.insee + l8n1p0yj-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n1p0yj-CI-0-IP-1 + 1 + + PARENT_VECU_ENFLOG6 + + + + + fr.insee + l8n1p0yj-QOP-l8n23ghn + 1 + OutParameter + + + fr.insee + l8n1p0yj-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n1p0yj-CI-0-IP-1) or l8n1p0yj-CI-0-IP-1="" + + + + + fr.insee + la6y7ni0-CI-0 + 1 + + SEP_AUT_PAR_ENFLOG6 non renseigné + + + SEP_AUT_PAR_ENFLOG6 non renseigné + + + fr.insee + la6y7ni0-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + la6y7ni0-CI-0-IP-1 + 1 + + SEP_AUT_PAR_ENFLOG6 + + + + + fr.insee + la6y7ni0-QOP-la6y43a4 + 1 + OutParameter + + + fr.insee + la6y7ni0-CI-0-IP-1 + 1 + InParameter + + + isnull(la6y7ni0-CI-0-IP-1) or la6y7ni0-CI-0-IP-1="" + + + + + fr.insee + l8n1u2kg-CI-0 + 1 + + RESID_ENFLOG6 non renseigné + + + RESID_ENFLOG6 non renseigné + + + fr.insee + l8n1u2kg-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n1u2kg-CI-0-IP-1 + 1 + + RESID_ENFLOG6 + + + + + fr.insee + l8n1u2kg-QOP-l8n1lsvh + 1 + OutParameter + + + fr.insee + l8n1u2kg-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n1u2kg-CI-0-IP-1) or l8n1u2kg-CI-0-IP-1 ="" + + + + + fr.insee + l8n2hdgw-CI-0 + 1 + + SANTE_ENFLOG6 non renseigné + + + SANTE_ENFLOG6 non renseigné + + + fr.insee + l8n2hdgw-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n2hdgw-CI-0-IP-1 + 1 + + SANTE_ENFLOG61 + + + + fr.insee + l8n2hdgw-CI-0-IP-2 + 1 + + SANTE_ENFLOG62 + + + + fr.insee + l8n2hdgw-CI-0-IP-3 + 1 + + SANTE_ENFLOG63 + + + + fr.insee + l8n2hdgw-CI-0-IP-4 + 1 + + SANTE_ENFLOG64 + + + + + fr.insee + l8n2hdgw-QOP-la6v9e5y + 1 + OutParameter + + + fr.insee + l8n2hdgw-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l8n2hdgw-QOP-la6vmq5o + 1 + OutParameter + + + fr.insee + l8n2hdgw-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l8n2hdgw-QOP-la6ven7z + 1 + OutParameter + + + fr.insee + l8n2hdgw-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + l8n2hdgw-QOP-la6vb73e + 1 + OutParameter + + + fr.insee + l8n2hdgw-CI-0-IP-4 + 1 + InParameter + + + (nvl(l8n2hdgw-CI-0-IP-1, false) = false and nvl(l8n2hdgw-CI-0-IP-2, false) = false and nvl(l8n2hdgw-CI-0-IP-3, false) = false and nvl(l8n2hdgw-CI-0-IP-4, false) = false) + + + + + fr.insee + l8n2hdgw-CI-1 + 1 + + Non exclusif + + + Non exclusif + + + fr.insee + l8n2hdgw-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n2hdgw-CI-1-IP-1 + 1 + + SANTE_ENFLOG61 + + + + fr.insee + l8n2hdgw-CI-1-IP-2 + 1 + + SANTE_ENFLOG62 + + + + fr.insee + l8n2hdgw-CI-1-IP-3 + 1 + + SANTE_ENFLOG63 + + + + fr.insee + l8n2hdgw-CI-1-IP-4 + 1 + + SANTE_ENFLOG64 + + + + + fr.insee + l8n2hdgw-QOP-la6v9e5y + 1 + OutParameter + + + fr.insee + l8n2hdgw-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l8n2hdgw-QOP-la6vmq5o + 1 + OutParameter + + + fr.insee + l8n2hdgw-CI-1-IP-2 + 1 + InParameter + + + + + fr.insee + l8n2hdgw-QOP-la6ven7z + 1 + OutParameter + + + fr.insee + l8n2hdgw-CI-1-IP-3 + 1 + InParameter + + + + + fr.insee + l8n2hdgw-QOP-la6vb73e + 1 + OutParameter + + + fr.insee + l8n2hdgw-CI-1-IP-4 + 1 + InParameter + + + (nvl(l8n2hdgw-CI-1-IP-1,false)=true and nvl(l8n2hdgw-CI-1-IP-4,false)=true) or (nvl(l8n2hdgw-CI-1-IP-2,false)=true and nvl(l8n2hdgw-CI-1-IP-4,false)=true) or (nvl(l8n2hdgw-CI-1-IP-3,false)=true and nvl(l8n2hdgw-CI-1-IP-4,false)=true) + + + + + fr.insee + l8n3pb4f-CI-0 + 1 + + PRENOM_ENFLOG7 non renseigné + + + PRENOM_ENFLOG7 non renseigné + + + fr.insee + l8n3pb4f-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3pb4f-CI-0-IP-1 + 1 + + PRENOM_ENFLOG7 + + + + + fr.insee + l8n3pb4f-QOP-l8n3v5q6 + 1 + OutParameter + + + fr.insee + l8n3pb4f-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n3pb4f-CI-0-IP-1) or l8n3pb4f-CI-0-IP-1="" + + + + + fr.insee + l8n3mik2-CI-0 + 1 + + SEXE_ENFLOG7 non renseigné + + + SEXE_ENFLOG7 non renseigné + + + fr.insee + l8n3mik2-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3mik2-CI-0-IP-1 + 1 + + SEXE_ENFLOG7 + + + + + fr.insee + l8n3mik2-QOP-l8n3szau + 1 + OutParameter + + + fr.insee + l8n3mik2-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n3mik2-CI-0-IP-1) or l8n3mik2-CI-0-IP-1="" + + + + + fr.insee + l8n3jmk8-CI-0 + 1 + + ANAI_ENFLOG7 non renseigné + + + ANAI_ENFLOG7 non renseigné + + + fr.insee + l8n3jmk8-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3jmk8-CI-0-IP-1 + 1 + + ANAI_ENFLOG7 + + + + + fr.insee + l8n3jmk8-QOP-l8n3qluw + 1 + OutParameter + + + fr.insee + l8n3jmk8-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n3jmk8-CI-0-IP-1) or l8n3jmk8-CI-0-IP-1="" + + + + + fr.insee + l8n3jmk8-CI-1 + 1 + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + fr.insee + l8n3jmk8-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3jmk8-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l8n3jmk8-CI-1-IP-2 + 1 + + ANAI_ENFLOG7 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l8n3jmk8-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l8n3jmk8-QOP-l8n3qluw + 1 + OutParameter + + + fr.insee + l8n3jmk8-CI-1-IP-2 + 1 + InParameter + + + not(isnull(l8n3jmk8-CI-1-IP-2)) and not(isnull(l8n3jmk8-CI-1-IP-1)) and (cast(l8n3jmk8-CI-1-IP-1,integer) + 15 > cast(l8n3jmk8-CI-1-IP-2,integer)) + + + + + fr.insee + l8n3jmk8-CI-2 + 1 + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + fr.insee + l8n3jmk8-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3jmk8-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l8n3jmk8-CI-2-IP-2 + 1 + + ANAI_ENFLOG7 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l8n3jmk8-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l8n3jmk8-QOP-l8n3qluw + 1 + OutParameter + + + fr.insee + l8n3jmk8-CI-2-IP-2 + 1 + InParameter + + + not(isnull(l8n3jmk8-CI-2-IP-2)) and not(isnull(l8n3jmk8-CI-2-IP-1)) and cast(l8n3jmk8-CI-2-IP-2,integer) < cast(l8n3jmk8-CI-2-IP-1,integer) + + + + + fr.insee + l8n3jmk8-CI-3 + 1 + + bornes ANAI_ENFLOG7 + + + bornes ANAI_ENFLOG7 + + + fr.insee + l8n3jmk8-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3jmk8-CI-3-IP-1 + 1 + + ANAI_ENFLOG7 + + + + + fr.insee + l8n3jmk8-QOP-l8n3qluw + 1 + OutParameter + + + fr.insee + l8n3jmk8-CI-3-IP-1 + 1 + InParameter + + + cast(l8n3jmk8-CI-3-IP-1,integer) < 1920 or cast(l8n3jmk8-CI-3-IP-1,integer) > 2024 + + + + + fr.insee + l8n36fv3-CI-0 + 1 + + NEFRANCE_ENFLOG7 non renseigné + + + NEFRANCE_ENFLOG7 non renseigné + + + fr.insee + l8n36fv3-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n36fv3-CI-0-IP-1 + 1 + + NEFRANCE_ENFLOG7 + + + + + fr.insee + l8n36fv3-QOP-l8n384e4 + 1 + OutParameter + + + fr.insee + l8n36fv3-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n36fv3-CI-0-IP-1) or l8n36fv3-CI-0-IP-1="" + + + + + fr.insee + l8n3ff6s-CI-0 + 1 + + PARENT_VIT_ENFLOG7 non renseigné + + + PARENT_VIT_ENFLOG7 non renseigné + + + fr.insee + l8n3ff6s-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3ff6s-CI-0-IP-1 + 1 + + PARENT_VIT_ENFLOG7 + + + + + fr.insee + l8n3ff6s-QOP-l8n3ns0y + 1 + OutParameter + + + fr.insee + l8n3ff6s-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n3ff6s-CI-0-IP-1) or l8n3ff6s-CI-0-IP-1="" + + + + + fr.insee + l8n3b7uo-CI-0 + 1 + + PARENT_FR_ENFLOG7 non renseigné + + + PARENT_FR_ENFLOG7 non renseigné + + + fr.insee + l8n3b7uo-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3b7uo-CI-0-IP-1 + 1 + + PARENT_FR_ENFLOG7 + + + + + fr.insee + l8n3b7uo-QOP-l8n3h6xz + 1 + OutParameter + + + fr.insee + l8n3b7uo-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n3b7uo-CI-0-IP-1) or l8n3b7uo-CI-0-IP-1="" + + + + + fr.insee + l8n3fzap-CI-0 + 1 + + PARENT_DEP_ENFLOG7 non renseigné + + + PARENT_DEP_ENFLOG7 non renseigné + + + fr.insee + l8n3fzap-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3fzap-CI-0-IP-1 + 1 + + PARENT_DEP_ENFLOG7 + + + + + fr.insee + l8n3fzap-QOP-llvz2fkv + 1 + OutParameter + + + fr.insee + l8n3fzap-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n3fzap-CI-0-IP-1) or l8n3fzap-CI-0-IP-1="" + + + + + fr.insee + l8n3485v-CI-0 + 1 + + PARENT_COM_ENFLOG7 non renseigné + + + PARENT_COM_ENFLOG7 non renseigné + + + fr.insee + l8n3485v-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3485v-CI-0-IP-1 + 1 + + PARENT_COM_ENFLOG7 + + + + + fr.insee + l8n3485v-QOP-llvyxcs0 + 1 + OutParameter + + + fr.insee + l8n3485v-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n3485v-CI-0-IP-1) or l8n3485v-CI-0-IP-1="" + + + + + fr.insee + l8n3burz-CI-0 + 1 + + PARENT_PAY_ENFLOG7 non renseigné + + + PARENT_PAY_ENFLOG7 non renseigné + + + fr.insee + l8n3burz-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3burz-CI-0-IP-1 + 1 + + PARENT_PAY_ENFLOG7 + + + + + fr.insee + l8n3burz-QOP-llvz5jsq + 1 + OutParameter + + + fr.insee + l8n3burz-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n3burz-CI-0-IP-1) or l8n3burz-CI-0-IP-1="" + + + + + fr.insee + l8n32xk9-CI-0 + 1 + + PARENT_FREQ_ENFLOG7 non renseigné + + + PARENT_FREQ_ENFLOG7 non renseigné + + + fr.insee + l8n32xk9-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n32xk9-CI-0-IP-1 + 1 + + PARENT_FREQ_ENFLOG7 + + + + + fr.insee + l8n32xk9-QOP-l8n37thq + 1 + OutParameter + + + fr.insee + l8n32xk9-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n32xk9-CI-0-IP-1) or l8n32xk9-CI-0-IP-1="" + + + + + fr.insee + l8n2x7q4-CI-0 + 1 + + PARENT_DORT_ENFLOG7 non renseigné + + + PARENT_DORT_ENFLOG7 non renseigné + + + fr.insee + l8n2x7q4-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n2x7q4-CI-0-IP-1 + 1 + + PARENT_DORT_ENFLOG7 + + + + + fr.insee + l8n2x7q4-QOP-l8n348ci + 1 + OutParameter + + + fr.insee + l8n2x7q4-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n2x7q4-CI-0-IP-1) or l8n2x7q4-CI-0-IP-1="" + + + + + fr.insee + l8n3ary8-CI-0 + 1 + + PARENT_VECU_ENFLOG7 non renseigné + + + PARENT_VECU_ENFLOG7 non renseigné + + + fr.insee + l8n3ary8-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3ary8-CI-0-IP-1 + 1 + + PARENT_VECU_ENFLOG7 + + + + + fr.insee + l8n3ary8-QOP-l8n3c8ra + 1 + OutParameter + + + fr.insee + l8n3ary8-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n3ary8-CI-0-IP-1) or l8n3ary8-CI-0-IP-1="" + + + + + fr.insee + la6y542q-CI-0 + 1 + + SEP_AUT_PAR_ENFLOG7 non renseigné + + + SEP_AUT_PAR_ENFLOG7 non renseigné + + + fr.insee + la6y542q-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + la6y542q-CI-0-IP-1 + 1 + + SEP_AUT_PAR_ENFLOG7 + + + + + fr.insee + la6y542q-QOP-la6y48t7 + 1 + OutParameter + + + fr.insee + la6y542q-CI-0-IP-1 + 1 + InParameter + + + isnull(la6y542q-CI-0-IP-1) or la6y542q-CI-0-IP-1="" + + + + + fr.insee + l8n2t39d-CI-0 + 1 + + RESID_ENFLOG7 non renseigné + + + RESID_ENFLOG7 non renseigné + + + fr.insee + l8n2t39d-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n2t39d-CI-0-IP-1 + 1 + + RESID_ENFLOG7 + + + + + fr.insee + l8n2t39d-QOP-l8n38vu9 + 1 + OutParameter + + + fr.insee + l8n2t39d-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n2t39d-CI-0-IP-1) or l8n2t39d-CI-0-IP-1="" + + + + + fr.insee + l8n3bp4o-CI-0 + 1 + + SANTE_ENFLOG7 non renseigné + + + SANTE_ENFLOG7 non renseigné + + + fr.insee + l8n3bp4o-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3bp4o-CI-0-IP-1 + 1 + + SANTE_ENFLOG71 + + + + fr.insee + l8n3bp4o-CI-0-IP-2 + 1 + + SANTE_ENFLOG72 + + + + fr.insee + l8n3bp4o-CI-0-IP-3 + 1 + + SANTE_ENFLOG73 + + + + fr.insee + l8n3bp4o-CI-0-IP-4 + 1 + + SANTE_ENFLOG74 + + + + + fr.insee + l8n3bp4o-QOP-la6vdrq8 + 1 + OutParameter + + + fr.insee + l8n3bp4o-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l8n3bp4o-QOP-la6vbh88 + 1 + OutParameter + + + fr.insee + l8n3bp4o-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l8n3bp4o-QOP-la6vk4x5 + 1 + OutParameter + + + fr.insee + l8n3bp4o-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + l8n3bp4o-QOP-la6vnbtp + 1 + OutParameter + + + fr.insee + l8n3bp4o-CI-0-IP-4 + 1 + InParameter + + + (nvl(l8n3bp4o-CI-0-IP-1, false) = false and nvl(l8n3bp4o-CI-0-IP-2, false) = false and nvl(l8n3bp4o-CI-0-IP-3, false) = false and nvl(l8n3bp4o-CI-0-IP-4, false) = false) + + + + + fr.insee + l8n3bp4o-CI-1 + 1 + + Non exclusif + + + Non exclusif + + + fr.insee + l8n3bp4o-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3bp4o-CI-1-IP-1 + 1 + + SANTE_ENFLOG71 + + + + fr.insee + l8n3bp4o-CI-1-IP-2 + 1 + + SANTE_ENFLOG72 + + + + fr.insee + l8n3bp4o-CI-1-IP-3 + 1 + + SANTE_ENFLOG73 + + + + fr.insee + l8n3bp4o-CI-1-IP-4 + 1 + + SANTE_ENFLOG74 + + + + + fr.insee + l8n3bp4o-QOP-la6vdrq8 + 1 + OutParameter + + + fr.insee + l8n3bp4o-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l8n3bp4o-QOP-la6vbh88 + 1 + OutParameter + + + fr.insee + l8n3bp4o-CI-1-IP-2 + 1 + InParameter + + + + + fr.insee + l8n3bp4o-QOP-la6vk4x5 + 1 + OutParameter + + + fr.insee + l8n3bp4o-CI-1-IP-3 + 1 + InParameter + + + + + fr.insee + l8n3bp4o-QOP-la6vnbtp + 1 + OutParameter + + + fr.insee + l8n3bp4o-CI-1-IP-4 + 1 + InParameter + + + (nvl(l8n3bp4o-CI-1-IP-1,false)=true and nvl(l8n3bp4o-CI-1-IP-4,false)=true) or (nvl(l8n3bp4o-CI-1-IP-2,false)=true and nvl(l8n3bp4o-CI-1-IP-4,false)=true) or (nvl(l8n3bp4o-CI-1-IP-3,false)=true and nvl(l8n3bp4o-CI-1-IP-4,false)=true) + + + + + fr.insee + l8n4cayp-CI-0 + 1 + + PRENOM_ENFLOG8 non renseigné + + + PRENOM_ENFLOG8 non renseigné + + + fr.insee + l8n4cayp-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n4cayp-CI-0-IP-1 + 1 + + PRENOM_ENFLOG8 + + + + + fr.insee + l8n4cayp-QOP-l8n40opx + 1 + OutParameter + + + fr.insee + l8n4cayp-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n4cayp-CI-0-IP-1) or l8n4cayp-CI-0-IP-1="" + + + + + fr.insee + l8n406m9-CI-0 + 1 + + SEXE_ENFLOG8 non renseigné + + + SEXE_ENFLOG8 non renseigné + + + fr.insee + l8n406m9-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n406m9-CI-0-IP-1 + 1 + + SEXE_ENFLOG8 + + + + + fr.insee + l8n406m9-QOP-l8n4es1f + 1 + OutParameter + + + fr.insee + l8n406m9-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n406m9-CI-0-IP-1) or l8n406m9-CI-0-IP-1="" + + + + + fr.insee + l8n3tya0-CI-0 + 1 + + ANAI_ENFLOG8 non renseigné + + + ANAI_ENFLOG8 non renseigné + + + fr.insee + l8n3tya0-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3tya0-CI-0-IP-1 + 1 + + ANAI_ENFLOG8 + + + + + fr.insee + l8n3tya0-QOP-l8n414mk + 1 + OutParameter + + + fr.insee + l8n3tya0-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n3tya0-CI-0-IP-1) or l8n3tya0-CI-0-IP-1="" + + + + + fr.insee + l8n3tya0-CI-1 + 1 + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + fr.insee + l8n3tya0-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3tya0-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l8n3tya0-CI-1-IP-2 + 1 + + ANAI_ENFLOG8 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l8n3tya0-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l8n3tya0-QOP-l8n414mk + 1 + OutParameter + + + fr.insee + l8n3tya0-CI-1-IP-2 + 1 + InParameter + + + not(isnull(l8n3tya0-CI-1-IP-2)) and not(isnull(l8n3tya0-CI-1-IP-1)) and cast(l8n3tya0-CI-1-IP-2,integer) < cast(l8n3tya0-CI-1-IP-1,integer) + + + + + fr.insee + l8n3tya0-CI-2 + 1 + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + fr.insee + l8n3tya0-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3tya0-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l8n3tya0-CI-2-IP-2 + 1 + + ANAI_ENFLOG8 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l8n3tya0-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l8n3tya0-QOP-l8n414mk + 1 + OutParameter + + + fr.insee + l8n3tya0-CI-2-IP-2 + 1 + InParameter + + + not(isnull(l8n3tya0-CI-2-IP-2)) and not(isnull(l8n3tya0-CI-2-IP-1)) and (cast(l8n3tya0-CI-2-IP-1,integer) + 15 > cast(l8n3tya0-CI-2-IP-2,integer)) + + + + + fr.insee + l8n3tya0-CI-3 + 1 + + bornes ANAI_ENFLOG8 + + + bornes ANAI_ENFLOG8 + + + fr.insee + l8n3tya0-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3tya0-CI-3-IP-1 + 1 + + ANAI_ENFLOG8 + + + + + fr.insee + l8n3tya0-QOP-l8n414mk + 1 + OutParameter + + + fr.insee + l8n3tya0-CI-3-IP-1 + 1 + InParameter + + + cast(l8n3tya0-CI-3-IP-1,integer) < 1920 or cast(l8n3tya0-CI-3-IP-1,integer) > 2024 + + + + + fr.insee + l8n3vr8b-CI-0 + 1 + + NEFRANCE_ENFLOG8 non renseigné + + + NEFRANCE_ENFLOG8 non renseigné + + + fr.insee + l8n3vr8b-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3vr8b-CI-0-IP-1 + 1 + + NEFRANCE_ENFLOG8 + + + + + fr.insee + l8n3vr8b-QOP-l8n49n0l + 1 + OutParameter + + + fr.insee + l8n3vr8b-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n3vr8b-CI-0-IP-1) or l8n3vr8b-CI-0-IP-1="" + + + + + fr.insee + l8n427a2-CI-0 + 1 + + PARENT_VIT_ENFLOG8 non renseigné + + + PARENT_VIT_ENFLOG8 non renseigné + + + fr.insee + l8n427a2-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n427a2-CI-0-IP-1 + 1 + + PARENT_VIT_ENFLOG8 + + + + + fr.insee + l8n427a2-QOP-l8n40s7s + 1 + OutParameter + + + fr.insee + l8n427a2-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n427a2-CI-0-IP-1) or l8n427a2-CI-0-IP-1="" + + + + + fr.insee + l8n41hvu-CI-0 + 1 + + PARENT_FR_ENFLOG8 non renseigné + + + PARENT_FR_ENFLOG8 non renseigné + + + fr.insee + l8n41hvu-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n41hvu-CI-0-IP-1 + 1 + + PARENT_FR_ENFLOG8 + + + + + fr.insee + l8n41hvu-QOP-l8n3z6kp + 1 + OutParameter + + + fr.insee + l8n41hvu-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n41hvu-CI-0-IP-1) or l8n41hvu-CI-0-IP-1="" + + + + + fr.insee + l8n41c78-CI-0 + 1 + + PARENT_DEP_ENFLOG8 non renseigné + + + PARENT_DEP_ENFLOG8 non renseigné + + + fr.insee + l8n41c78-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n41c78-CI-0-IP-1 + 1 + + PARENT_DEP_ENFLOG8 + + + + + fr.insee + l8n41c78-QOP-llvz93ha + 1 + OutParameter + + + fr.insee + l8n41c78-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n41c78-CI-0-IP-1) or l8n41c78-CI-0-IP-1="" + + + + + fr.insee + l8n3tbmd-CI-0 + 1 + + PARENT_COM_ENFLOG8 non renseigné + + + PARENT_COM_ENFLOG8 non renseigné + + + fr.insee + l8n3tbmd-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3tbmd-CI-0-IP-1 + 1 + + PARENT_COM_ENFLOG8 + + + + + fr.insee + l8n3tbmd-QOP-llvyt2m9 + 1 + OutParameter + + + fr.insee + l8n3tbmd-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n3tbmd-CI-0-IP-1) or l8n3tbmd-CI-0-IP-1="" + + + + + fr.insee + l8n40r7t-CI-0 + 1 + + PARENT_PAY_ENFLOG8 non renseigné + + + PARENT_PAY_ENFLOG8 non renseigné + + + fr.insee + l8n40r7t-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n40r7t-CI-0-IP-1 + 1 + + PARENT_PAY_ENFLOG8 + + + + + fr.insee + l8n40r7t-QOP-llvyxwit + 1 + OutParameter + + + fr.insee + l8n40r7t-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n40r7t-CI-0-IP-1) or l8n40r7t-CI-0-IP-1="" + + + + + fr.insee + l8n3fpp7-CI-0 + 1 + + PARENT_FREQ_ENFLOG8 non renseigné + + + PARENT_FREQ_ENFLOG8 non renseigné + + + fr.insee + l8n3fpp7-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3fpp7-CI-0-IP-1 + 1 + + PARENT_FREQ_ENFLOG8 + + + + + fr.insee + l8n3fpp7-QOP-l8n40f43 + 1 + OutParameter + + + fr.insee + l8n3fpp7-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n3fpp7-CI-0-IP-1) or l8n3fpp7-CI-0-IP-1="" + + + + + fr.insee + l8n3xb0z-CI-0 + 1 + + PARENT_DORT_ENFLOG8 non renseigné + + + PARENT_DORT_ENFLOG8 non renseigné + + + fr.insee + l8n3xb0z-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3xb0z-CI-0-IP-1 + 1 + + PARENT_DORT_ENFLOG8 + + + + + fr.insee + l8n3xb0z-QOP-l8n3tomk + 1 + OutParameter + + + fr.insee + l8n3xb0z-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n3xb0z-CI-0-IP-1) or l8n3xb0z-CI-0-IP-1="" + + + + + fr.insee + l8n3tjlw-CI-0 + 1 + + PARENT_VECU_ENFLOG8 non renseigné + + + PARENT_VECU_ENFLOG8 non renseigné + + + fr.insee + l8n3tjlw-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3tjlw-CI-0-IP-1 + 1 + + PARENT_VECU_ENFLOG8 + + + + + fr.insee + l8n3tjlw-QOP-l8n3nqy3 + 1 + OutParameter + + + fr.insee + l8n3tjlw-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n3tjlw-CI-0-IP-1) or l8n3tjlw-CI-0-IP-1="" + + + + + fr.insee + la6v947r-CI-0 + 1 + + SEP_AUT_PAR_ENFLOG8 non renseigné + + + SEP_AUT_PAR_ENFLOG8 non renseigné + + + fr.insee + la6v947r-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + la6v947r-CI-0-IP-1 + 1 + + SEP_AUT_PAR_ENFLOG8 + + + + + fr.insee + la6v947r-QOP-la6v9lhg + 1 + OutParameter + + + fr.insee + la6v947r-CI-0-IP-1 + 1 + InParameter + + + isnull(la6v947r-CI-0-IP-1) or la6v947r-CI-0-IP-1="" + + + + + fr.insee + l8n3ocd5-CI-0 + 1 + + RESID_ENFLOG8 non renseigné + + + RESID_ENFLOG8 non renseigné + + + fr.insee + l8n3ocd5-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3ocd5-CI-0-IP-1 + 1 + + RESID_ENFLOG8 + + + + + fr.insee + l8n3ocd5-QOP-l8n3iyus + 1 + OutParameter + + + fr.insee + l8n3ocd5-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n3ocd5-CI-0-IP-1) or l8n3ocd5-CI-0-IP-1="" + + + + + fr.insee + l8n3uqr2-CI-0 + 1 + + SANTE_ENFLOG8 non renseigné + + + SANTE_ENFLOG8 non renseigné + + + fr.insee + l8n3uqr2-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3uqr2-CI-0-IP-1 + 1 + + SANTE_ENFLOG81 + + + + fr.insee + l8n3uqr2-CI-0-IP-2 + 1 + + SANTE_ENFLOG82 + + + + fr.insee + l8n3uqr2-CI-0-IP-3 + 1 + + SANTE_ENFLOG83 + + + + fr.insee + l8n3uqr2-CI-0-IP-4 + 1 + + SANTE_ENFLOG84 + + + + + fr.insee + l8n3uqr2-QOP-la6vbpmh + 1 + OutParameter + + + fr.insee + l8n3uqr2-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l8n3uqr2-QOP-la6vpud7 + 1 + OutParameter + + + fr.insee + l8n3uqr2-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l8n3uqr2-QOP-la6vmmu5 + 1 + OutParameter + + + fr.insee + l8n3uqr2-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + l8n3uqr2-QOP-la6vp6s1 + 1 + OutParameter + + + fr.insee + l8n3uqr2-CI-0-IP-4 + 1 + InParameter + + + (nvl(l8n3uqr2-CI-0-IP-1, false) = false and nvl(l8n3uqr2-CI-0-IP-2, false) = false and nvl(l8n3uqr2-CI-0-IP-3, false) = false and nvl(l8n3uqr2-CI-0-IP-4, false) = false) + + + + + fr.insee + l8n3uqr2-CI-1 + 1 + + Non exclusif + + + Non exclusif + + + fr.insee + l8n3uqr2-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3uqr2-CI-1-IP-1 + 1 + + SANTE_ENFLOG81 + + + + fr.insee + l8n3uqr2-CI-1-IP-2 + 1 + + SANTE_ENFLOG82 + + + + fr.insee + l8n3uqr2-CI-1-IP-3 + 1 + + SANTE_ENFLOG83 + + + + fr.insee + l8n3uqr2-CI-1-IP-4 + 1 + + SANTE_ENFLOG84 + + + + + fr.insee + l8n3uqr2-QOP-la6vbpmh + 1 + OutParameter + + + fr.insee + l8n3uqr2-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l8n3uqr2-QOP-la6vpud7 + 1 + OutParameter + + + fr.insee + l8n3uqr2-CI-1-IP-2 + 1 + InParameter + + + + + fr.insee + l8n3uqr2-QOP-la6vmmu5 + 1 + OutParameter + + + fr.insee + l8n3uqr2-CI-1-IP-3 + 1 + InParameter + + + + + fr.insee + l8n3uqr2-QOP-la6vp6s1 + 1 + OutParameter + + + fr.insee + l8n3uqr2-CI-1-IP-4 + 1 + InParameter + + + (nvl(l8n3uqr2-CI-1-IP-1,false)=true and nvl(l8n3uqr2-CI-1-IP-4,false)=true) or (nvl(l8n3uqr2-CI-1-IP-2,false)=true and nvl(l8n3uqr2-CI-1-IP-4,false)=true) or (nvl(l8n3uqr2-CI-1-IP-3,false)=true and nvl(l8n3uqr2-CI-1-IP-4,false)=true) + + + + + fr.insee + l4idug6p-CI-0 + 1 + + PRENOM_ENFAIL1 non renseigné + + + PRENOM_ENFAIL1 non renseigné + + + fr.insee + l4idug6p-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4idug6p-CI-0-IP-1 + 1 + + PRENOM_ENFAIL1 + + + + + fr.insee + l4idug6p-QOP-l4idueaa + 1 + OutParameter + + + fr.insee + l4idug6p-CI-0-IP-1 + 1 + InParameter + + + isnull(l4idug6p-CI-0-IP-1) or l4idug6p-CI-0-IP-1="" + + + + + fr.insee + kwqix1j5-CI-0 + 1 + + SEXE_ENFAIL1 non renseigné + + + SEXE_ENFAIL1 non renseigné + + + fr.insee + kwqix1j5-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqix1j5-CI-0-IP-1 + 1 + + SEXE_ENFAIL1 + + + + + fr.insee + kwqix1j5-QOP-kwqixdic + 1 + OutParameter + + + fr.insee + kwqix1j5-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqix1j5-CI-0-IP-1) or kwqix1j5-CI-0-IP-1="" + + + + + fr.insee + kwqj561a-CI-0 + 1 + + ANAI_ENFAIL1 non renseigné + + + ANAI_ENFAIL1 non renseigné + + + fr.insee + kwqj561a-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqj561a-CI-0-IP-1 + 1 + + ANAI_ENFAIL1 + + + + + fr.insee + kwqj561a-QOP-kwqj8zg8 + 1 + OutParameter + + + fr.insee + kwqj561a-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqj561a-CI-0-IP-1) or kwqj561a-CI-0-IP-1="" + + + + + fr.insee + kwqj561a-CI-1 + 1 + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + fr.insee + kwqj561a-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqj561a-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + kwqj561a-CI-1-IP-2 + 1 + + ANAI_ENFAIL1 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + kwqj561a-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + kwqj561a-QOP-kwqj8zg8 + 1 + OutParameter + + + fr.insee + kwqj561a-CI-1-IP-2 + 1 + InParameter + + + not(isnull(kwqj561a-CI-1-IP-2)) and not(isnull(kwqj561a-CI-1-IP-1)) and cast(kwqj561a-CI-1-IP-2,integer) < cast(kwqj561a-CI-1-IP-1,integer) + + + + + fr.insee + kwqj561a-CI-2 + 1 + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + fr.insee + kwqj561a-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqj561a-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + kwqj561a-CI-2-IP-2 + 1 + + ANAI_ENFAIL1 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + kwqj561a-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + kwqj561a-QOP-kwqj8zg8 + 1 + OutParameter + + + fr.insee + kwqj561a-CI-2-IP-2 + 1 + InParameter + + + not(isnull(kwqj561a-CI-2-IP-2)) and not(isnull(kwqj561a-CI-2-IP-1)) and (cast(kwqj561a-CI-2-IP-1,integer) + 15 > cast(kwqj561a-CI-2-IP-2,integer)) + + + + + fr.insee + kwqj561a-CI-3 + 1 + + bornes ANAI_ENFAIL1 + + + bornes ANAI_ENFAIL1 + + + fr.insee + kwqj561a-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqj561a-CI-3-IP-1 + 1 + + ANAI_ENFAIL1 + + + + + fr.insee + kwqj561a-QOP-kwqj8zg8 + 1 + OutParameter + + + fr.insee + kwqj561a-CI-3-IP-1 + 1 + InParameter + + + cast(kwqj561a-CI-3-IP-1,integer) < 1920 or cast(kwqj561a-CI-3-IP-1,integer) > 2024 + + + + + fr.insee + l4cjlk0i-CI-0 + 1 + + NEFRANCE_ENFAIL1 non renseigné + + + NEFRANCE_ENFAIL1 non renseigné + + + fr.insee + l4cjlk0i-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4cjlk0i-CI-0-IP-1 + 1 + + NEFRANCE_ENFAIL1 + + + + + fr.insee + l4cjlk0i-QOP-l4cjenl6 + 1 + OutParameter + + + fr.insee + l4cjlk0i-CI-0-IP-1 + 1 + InParameter + + + isnull(l4cjlk0i-CI-0-IP-1) or l4cjlk0i-CI-0-IP-1="" + + + + + fr.insee + l4cjivdg-CI-0 + 1 + + PARENT_VIT_ENFAIL1 non renseigné + + + PARENT_VIT_ENFAIL1 non renseigné + + + fr.insee + l4cjivdg-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4cjivdg-CI-0-IP-1 + 1 + + PARENT_VIT_ENFAIL1 + + + + + fr.insee + l4cjivdg-QOP-l4cjvm0q + 1 + OutParameter + + + fr.insee + l4cjivdg-CI-0-IP-1 + 1 + InParameter + + + isnull(l4cjivdg-CI-0-IP-1) or l4cjivdg-CI-0-IP-1="" + + + + + fr.insee + l8lzt19v-CI-0 + 1 + + PARENT_VECU_ENFAIL1 non renseigné + + + PARENT_VECU_ENFAIL1 non renseigné + + + fr.insee + l8lzt19v-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8lzt19v-CI-0-IP-1 + 1 + + PARENT_VECU_ENFAIL1 + + + + + fr.insee + l8lzt19v-QOP-l8lzmjqf + 1 + OutParameter + + + fr.insee + l8lzt19v-CI-0-IP-1 + 1 + InParameter + + + isnull(l8lzt19v-CI-0-IP-1) or l8lzt19v-CI-0-IP-1="" + + + + + fr.insee + l4485tkr-CI-0 + 1 + + DC_ENFAIL1 non renseigné + + + DC_ENFAIL1 non renseigné + + + fr.insee + l4485tkr-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4485tkr-CI-0-IP-1 + 1 + + DC_ENFAIL1 + + + + + fr.insee + l4485tkr-QOP-l4484mb2 + 1 + OutParameter + + + fr.insee + l4485tkr-CI-0-IP-1 + 1 + InParameter + + + isnull(l4485tkr-CI-0-IP-1) or l4485tkr-CI-0-IP-1="" + + + + + fr.insee + kwqkh05l-CI-0 + 1 + + AG_DC_ENFAIL1 non renseigné + + + AG_DC_ENFAIL1 non renseigné + + + fr.insee + kwqkh05l-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqkh05l-CI-0-IP-1 + 1 + + AG_DC_ENFAIL1 + + + + + fr.insee + kwqkh05l-QOP-kwqk5oby + 1 + OutParameter + + + fr.insee + kwqkh05l-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqkh05l-CI-0-IP-1) or kwqkh05l-CI-0-IP-1="" + + + + + fr.insee + kwqkh05l-CI-1 + 1 + + "L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge." + + + "L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge." + + + fr.insee + kwqkh05l-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqkh05l-CI-1-IP-1 + 1 + + AG_ENFAIL1 + + + + fr.insee + kwqkh05l-CI-1-IP-2 + 1 + + AG_DC_ENFAIL1 + + + + + fr.insee + ljogbx4g-GOP + 1 + OutParameter + + + fr.insee + kwqkh05l-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + kwqkh05l-QOP-kwqk5oby + 1 + OutParameter + + + fr.insee + kwqkh05l-CI-1-IP-2 + 1 + InParameter + + + not(isnull(kwqkh05l-CI-1-IP-1)) and not (isnull(kwqkh05l-CI-1-IP-2)) and cast(kwqkh05l-CI-1-IP-2,integer) > cast(kwqkh05l-CI-1-IP-1,integer) + + + + + fr.insee + kwqk3ki3-CI-0 + 1 + + AG_DEPART_ENFAIL1 non renseigné + + + AG_DEPART_ENFAIL1 non renseigné + + + fr.insee + kwqk3ki3-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqk3ki3-CI-0-IP-1 + 1 + + AG_DEPART_ENFAIL1 + + + + + fr.insee + kwqk3ki3-QOP-kwqkjt71 + 1 + OutParameter + + + fr.insee + kwqk3ki3-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqk3ki3-CI-0-IP-1) or kwqk3ki3-CI-0-IP-1="" + + + + + fr.insee + kwqk3ki3-CI-1 + 1 + + "L'âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge." + + + "L'âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge." + + + fr.insee + kwqk3ki3-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqk3ki3-CI-1-IP-1 + 1 + + AG_ENFAIL1 + + + + fr.insee + kwqk3ki3-CI-1-IP-2 + 1 + + ANAI_ENFAIL1 + + + + fr.insee + kwqk3ki3-CI-1-IP-3 + 1 + + AG_DEPART_ENFAIL1 + + + + + fr.insee + ljogbx4g-GOP + 1 + OutParameter + + + fr.insee + kwqk3ki3-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + kwqj561a-QOP-kwqj8zg8 + 1 + OutParameter + + + fr.insee + kwqk3ki3-CI-1-IP-2 + 1 + InParameter + + + + + fr.insee + kwqk3ki3-QOP-kwqkjt71 + 1 + OutParameter + + + fr.insee + kwqk3ki3-CI-1-IP-3 + 1 + InParameter + + + not(isnull(kwqk3ki3-CI-1-IP-3)) and not(isnull(kwqk3ki3-CI-1-IP-2)) and kwqk3ki3-CI-1-IP-3 > kwqk3ki3-CI-1-IP-1 + + + + + fr.insee + kwqkmusz-CI-0 + 1 + + PARENT_FREQ_ENFAIL1 non renseigné + + + PARENT_FREQ_ENFAIL1 non renseigné + + + fr.insee + kwqkmusz-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqkmusz-CI-0-IP-1 + 1 + + PARENT_FREQ_ENFAIL1 + + + + + fr.insee + kwqkmusz-QOP-l34h1xd0 + 1 + OutParameter + + + fr.insee + kwqkmusz-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqkmusz-CI-0-IP-1) or kwqkmusz-CI-0-IP-1="" + + + + + fr.insee + kwqjp9yr-CI-0 + 1 + + FR_ENFAIL1 non renseigné + + + FR_ENFAIL1 non renseigné + + + fr.insee + kwqjp9yr-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqjp9yr-CI-0-IP-1 + 1 + + FR_ENFAIL1 + + + + + fr.insee + kwqjp9yr-QOP-l48dyt79 + 1 + OutParameter + + + fr.insee + kwqjp9yr-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqjp9yr-CI-0-IP-1) or kwqjp9yr-CI-0-IP-1="" + + + + + fr.insee + l4onskib-CI-0 + 1 + + DEP_ENFAIL1 + + + DEP_ENFAIL1 + + + fr.insee + l4onskib-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4onskib-CI-0-IP-1 + 1 + + DEP_ENFAIL1 + + + + + fr.insee + l4onskib-QOP-llvz9m81 + 1 + OutParameter + + + fr.insee + l4onskib-CI-0-IP-1 + 1 + InParameter + + + isnull(l4onskib-CI-0-IP-1) or l4onskib-CI-0-IP-1="" + + + + + fr.insee + l4onsq99-CI-0 + 1 + + COM_ENFAIL1 non renseigné + + + COM_ENFAIL1 non renseigné + + + fr.insee + l4onsq99-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4onsq99-CI-0-IP-1 + 1 + + COM_ENFAIL1 + + + + + fr.insee + l4onsq99-QOP-llvyydq0 + 1 + OutParameter + + + fr.insee + l4onsq99-CI-0-IP-1 + 1 + InParameter + + + isnull(l4onsq99-CI-0-IP-1) or l4onsq99-CI-0-IP-1="" + + + + + fr.insee + l4onsf7y-CI-0 + 1 + + PAY_ENFAIL1 non renseigné + + + PAY_ENFAIL1 non renseigné + + + fr.insee + l4onsf7y-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4onsf7y-CI-0-IP-1 + 1 + + PAY_ENFAIL1 + + + + + fr.insee + l4onsf7y-QOP-llvyw05u + 1 + OutParameter + + + fr.insee + l4onsf7y-CI-0-IP-1 + 1 + InParameter + + + isnull(l4onsf7y-CI-0-IP-1) or l4onsf7y-CI-0-IP-1 ="" + + + + + fr.insee + kwqk3a58-CI-0 + 1 + + LOG_ENFAIL1 non renseigné + + + LOG_ENFAIL1 non renseigné + + + fr.insee + kwqk3a58-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqk3a58-CI-0-IP-1 + 1 + + LOG_ENFAIL1 + + + + + fr.insee + kwqk3a58-QOP-kwqkfnsx + 1 + OutParameter + + + fr.insee + kwqk3a58-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqk3a58-CI-0-IP-1) or kwqk3a58-CI-0-IP-1="" + + + + + fr.insee + l44849iu-CI-0 + 1 + + AUT_PAR_ENFAIL1 non renseigné + + + AUT_PAR_ENFAIL1 non renseigné + + + fr.insee + l44849iu-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l44849iu-CI-0-IP-1 + 1 + + AUT_PAR_ENFAIL1 + + + + + fr.insee + l44849iu-QOP-l4483bnv + 1 + OutParameter + + + fr.insee + l44849iu-CI-0-IP-1 + 1 + InParameter + + + isnull(l44849iu-CI-0-IP-1) or l44849iu-CI-0-IP-1="" + + + + + fr.insee + kwqj7xh6-CI-0 + 1 + + DORT_ENFAIL1 non renseigné + + + DORT_ENFAIL1 non renseigné + + + fr.insee + kwqj7xh6-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqj7xh6-CI-0-IP-1 + 1 + + DORT_ENFAIL1 + + + + + fr.insee + kwqj7xh6-QOP-l1gkylst + 1 + OutParameter + + + fr.insee + kwqj7xh6-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqj7xh6-CI-0-IP-1) or kwqj7xh6-CI-0-IP-1="" + + + + + fr.insee + l4o74e6d-CI-0 + 1 + + SEP_AUT_PAR_ENFAIL1 non renseigné + + + SEP_AUT_PAR_ENFAIL1 non renseigné + + + fr.insee + l4o74e6d-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4o74e6d-CI-0-IP-1 + 1 + + SEP_AUT_PAR_ENFAIL1 + + + + + fr.insee + l4o74e6d-QOP-l4o73ai5 + 1 + OutParameter + + + fr.insee + l4o74e6d-CI-0-IP-1 + 1 + InParameter + + + isnull(l4o74e6d-CI-0-IP-1) or l4o74e6d-CI-0-IP-1="" + + + + + fr.insee + l1gknpsx-CI-0 + 1 + + RESID_ENFAIL1 non renseigné + + + RESID_ENFAIL1 non renseigné + + + fr.insee + l1gknpsx-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1gknpsx-CI-0-IP-1 + 1 + + RESID_ENFAIL1 + + + + + fr.insee + l1gknpsx-QOP-l1gkaoki + 1 + OutParameter + + + fr.insee + l1gknpsx-CI-0-IP-1 + 1 + InParameter + + + isnull(l1gknpsx-CI-0-IP-1) or l1gknpsx-CI-0-IP-1="" + + + + + fr.insee + l1gi8vrf-CI-0 + 1 + + SANTE_ENFAIL1 non renseigné + + + SANTE_ENFAIL1 non renseigné + + + fr.insee + l1gi8vrf-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1gi8vrf-CI-0-IP-1 + 1 + + SANTE_ENFAIL11 + + + + fr.insee + l1gi8vrf-CI-0-IP-2 + 1 + + SANTE_ENFAIL12 + + + + fr.insee + l1gi8vrf-CI-0-IP-3 + 1 + + SANTE_ENFAIL13 + + + + + fr.insee + l1gi8vrf-QOP-lagyu6fp + 1 + OutParameter + + + fr.insee + l1gi8vrf-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l1gi8vrf-QOP-lagyjdla + 1 + OutParameter + + + fr.insee + l1gi8vrf-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l1gi8vrf-QOP-lagydkrl + 1 + OutParameter + + + fr.insee + l1gi8vrf-CI-0-IP-3 + 1 + InParameter + + + (nvl(l1gi8vrf-CI-0-IP-1, false) = false and nvl(l1gi8vrf-CI-0-IP-2, false) = false and nvl(l1gi8vrf-CI-0-IP-3, false) = false ) + + + + + fr.insee + l4lg1tus-CI-0 + 1 + + PRENOM_ENFAIL2 non renseigné + + + PRENOM_ENFAIL2 non renseigné + + + fr.insee + l4lg1tus-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lg1tus-CI-0-IP-1 + 1 + + PRENOM_ENFAIL2 + + + + + fr.insee + l4lg1tus-QOP-l4lg294k + 1 + OutParameter + + + fr.insee + l4lg1tus-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lg1tus-CI-0-IP-1) or l4lg1tus-CI-0-IP-1="" + + + + + fr.insee + l4lgd8bs-CI-0 + 1 + + SEXE_ENFAIL2 non renseigné + + + SEXE_ENFAIL2 non renseigné + + + fr.insee + l4lgd8bs-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgd8bs-CI-0-IP-1 + 1 + + SEXE_ENFAIL2 + + + + + fr.insee + l4lgd8bs-QOP-l4lg3zcd + 1 + OutParameter + + + fr.insee + l4lgd8bs-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lgd8bs-CI-0-IP-1) or l4lgd8bs-CI-0-IP-1="" + + + + + fr.insee + l4lgjbi8-CI-0 + 1 + + ANAI_ENFAIL2 non renseigné + + + ANAI_ENFAIL2 non renseigné + + + fr.insee + l4lgjbi8-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgjbi8-CI-0-IP-1 + 1 + + ANAI_ENFAIL2 + + + + + fr.insee + l4lgjbi8-QOP-l4lg7r84 + 1 + OutParameter + + + fr.insee + l4lgjbi8-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lgjbi8-CI-0-IP-1) or l4lgjbi8-CI-0-IP-1="" + + + + + fr.insee + l4lgjbi8-CI-1 + 1 + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + fr.insee + l4lgjbi8-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgjbi8-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l4lgjbi8-CI-1-IP-2 + 1 + + ANAI_ENFAIL2 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l4lgjbi8-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4lgjbi8-QOP-l4lg7r84 + 1 + OutParameter + + + fr.insee + l4lgjbi8-CI-1-IP-2 + 1 + InParameter + + + not(isnull(l4lgjbi8-CI-1-IP-2)) and not(isnull(l4lgjbi8-CI-1-IP-1)) and cast(l4lgjbi8-CI-1-IP-2,integer) < cast(l4lgjbi8-CI-1-IP-1,integer) + + + + + fr.insee + l4lgjbi8-CI-2 + 1 + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + fr.insee + l4lgjbi8-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgjbi8-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l4lgjbi8-CI-2-IP-2 + 1 + + ANAI_ENFAIL2 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l4lgjbi8-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l4lgjbi8-QOP-l4lg7r84 + 1 + OutParameter + + + fr.insee + l4lgjbi8-CI-2-IP-2 + 1 + InParameter + + + not(isnull(l4lgjbi8-CI-2-IP-2)) and not(isnull(l4lgjbi8-CI-2-IP-1)) and (cast(l4lgjbi8-CI-2-IP-1,integer) + 15 > cast(l4lgjbi8-CI-2-IP-2,integer)) + + + + + fr.insee + l4lgjbi8-CI-3 + 1 + + bornes ANAI_ENFAIL2 + + + bornes ANAI_ENFAIL2 + + + fr.insee + l4lgjbi8-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgjbi8-CI-3-IP-1 + 1 + + ANAI_ENFAIL2 + + + + + fr.insee + l4lgjbi8-QOP-l4lg7r84 + 1 + OutParameter + + + fr.insee + l4lgjbi8-CI-3-IP-1 + 1 + InParameter + + + cast(l4lgjbi8-CI-3-IP-1,integer) < 1920 or cast(l4lgjbi8-CI-3-IP-1,integer) > 2024 + + + + + fr.insee + l4lgtwy7-CI-0 + 1 + + NEFRANCE_ENFAIL2 non renseigné + + + NEFRANCE_ENFAIL2 non renseigné + + + fr.insee + l4lgtwy7-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgtwy7-CI-0-IP-1 + 1 + + NEFRANCE_ENFAIL2 + + + + + fr.insee + l4lgtwy7-QOP-l4lgmy6a + 1 + OutParameter + + + fr.insee + l4lgtwy7-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lgtwy7-CI-0-IP-1) or l4lgtwy7-CI-0-IP-1="" + + + + + fr.insee + l4lgqbdk-CI-0 + 1 + + PARENT_VIT_ENFAIL2 non renseigné + + + PARENT_VIT_ENFAIL2 non renseigné + + + fr.insee + l4lgqbdk-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgqbdk-CI-0-IP-1 + 1 + + PARENT_VIT_ENFAIL2 + + + + + fr.insee + l4lgqbdk-QOP-l4lgpvm2 + 1 + OutParameter + + + fr.insee + l4lgqbdk-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lgqbdk-CI-0-IP-1) or l4lgqbdk-CI-0-IP-1="" + + + + + fr.insee + l8lzthqx-CI-0 + 1 + + PARENT_VECU_ENFAIL2 non renseigné + + + PARENT_VECU_ENFAIL2 non renseigné + + + fr.insee + l8lzthqx-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8lzthqx-CI-0-IP-1 + 1 + + PARENT_VECU_ENFAIL2 + + + + + fr.insee + l8lzthqx-QOP-l8m05h5g + 1 + OutParameter + + + fr.insee + l8lzthqx-CI-0-IP-1 + 1 + InParameter + + + isnull(l8lzthqx-CI-0-IP-1) or l8lzthqx-CI-0-IP-1="" + + + + + fr.insee + l4lh1bvw-CI-0 + 1 + + DC_ENFAIL2 non renseigné + + + DC_ENFAIL2 non renseigné + + + fr.insee + l4lh1bvw-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lh1bvw-CI-0-IP-1 + 1 + + DC_ENFAIL2 + + + + + fr.insee + l4lh1bvw-QOP-l4lgv2yw + 1 + OutParameter + + + fr.insee + l4lh1bvw-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lh1bvw-CI-0-IP-1) or l4lh1bvw-CI-0-IP-1="" + + + + + fr.insee + l4lhc03p-CI-0 + 1 + + AG_DC_ENFAIL2 non renseigné + + + AG_DC_ENFAIL2 non renseigné + + + fr.insee + l4lhc03p-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lhc03p-CI-0-IP-1 + 1 + + AG_DC_ENFAIL2 + + + + + fr.insee + l4lhc03p-QOP-l4lhgfos + 1 + OutParameter + + + fr.insee + l4lhc03p-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lhc03p-CI-0-IP-1) or l4lhc03p-CI-0-IP-1="" + + + + + fr.insee + l4lhc03p-CI-1 + 1 + + "L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge." + + + "L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge." + + + fr.insee + l4lhc03p-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lhc03p-CI-1-IP-1 + 1 + + AG_ENFAIL2 + + + + fr.insee + l4lhc03p-CI-1-IP-2 + 1 + + AG_DC_ENFAIL2 + + + + + fr.insee + ljogazh7-GOP + 1 + OutParameter + + + fr.insee + l4lhc03p-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4lhc03p-QOP-l4lhgfos + 1 + OutParameter + + + fr.insee + l4lhc03p-CI-1-IP-2 + 1 + InParameter + + + not(isnull(l4lhc03p-CI-1-IP-1)) and not (isnull(l4lhc03p-CI-1-IP-2)) and cast(l4lhc03p-CI-1-IP-2,integer) > cast(l4lhc03p-CI-1-IP-1,integer) + + + + + fr.insee + l4lhkbmw-CI-0 + 1 + + AG_DEPART_ENFAIL2 non renseigné + + + AG_DEPART_ENFAIL2 non renseigné + + + fr.insee + l4lhkbmw-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lhkbmw-CI-0-IP-1 + 1 + + AG_DEPART_ENFAIL2 + + + + + fr.insee + l4lhkbmw-QOP-l4lhq38m + 1 + OutParameter + + + fr.insee + l4lhkbmw-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lhkbmw-CI-0-IP-1) or l4lhkbmw-CI-0-IP-1="" + + + + + fr.insee + l4lhkbmw-CI-1 + 1 + + "L'âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge." + + + "L'âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge." + + + fr.insee + l4lhkbmw-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lhkbmw-CI-1-IP-1 + 1 + + AG_ENFAIL2 + + + + fr.insee + l4lhkbmw-CI-1-IP-2 + 1 + + ANAI_ENFAIL2 + + + + fr.insee + l4lhkbmw-CI-1-IP-3 + 1 + + AG_DEPART_ENFAIL2 + + + + + fr.insee + ljogazh7-GOP + 1 + OutParameter + + + fr.insee + l4lhkbmw-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4lgjbi8-QOP-l4lg7r84 + 1 + OutParameter + + + fr.insee + l4lhkbmw-CI-1-IP-2 + 1 + InParameter + + + + + fr.insee + l4lhkbmw-QOP-l4lhq38m + 1 + OutParameter + + + fr.insee + l4lhkbmw-CI-1-IP-3 + 1 + InParameter + + + not(isnull(l4lhkbmw-CI-1-IP-3)) and not(isnull(l4lhkbmw-CI-1-IP-2)) and l4lhkbmw-CI-1-IP-3 > l4lhkbmw-CI-1-IP-1 + + + + + fr.insee + l4liqyis-CI-0 + 1 + + PARENT_FREQ_ENFAIL2 non renseigné + + + PARENT_FREQ_ENFAIL2 non renseigné + + + fr.insee + l4liqyis-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4liqyis-CI-0-IP-1 + 1 + + PARENT_FREQ_ENFAIL2 + + + + + fr.insee + l4liqyis-QOP-l4lj9ipw + 1 + OutParameter + + + fr.insee + l4liqyis-CI-0-IP-1 + 1 + InParameter + + + isnull(l4liqyis-CI-0-IP-1) or l4liqyis-CI-0-IP-1="" + + + + + fr.insee + l4lj22ar-CI-0 + 1 + + FR_ENFAIL2 non renseigné + + + FR_ENFAIL2 non renseigné + + + fr.insee + l4lj22ar-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lj22ar-CI-0-IP-1 + 1 + + FR_ENFAIL2 + + + + + fr.insee + l4lj22ar-QOP-l4likfdn + 1 + OutParameter + + + fr.insee + l4lj22ar-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lj22ar-CI-0-IP-1) or l4lj22ar-CI-0-IP-1="" + + + + + fr.insee + l4oo8gk0-CI-0 + 1 + + DEP_ENFAIL2 non renseigné + + + DEP_ENFAIL2 non renseigné + + + fr.insee + l4oo8gk0-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4oo8gk0-CI-0-IP-1 + 1 + + DEP_ENFAIL2 + + + + + fr.insee + l4oo8gk0-QOP-llvz89k3 + 1 + OutParameter + + + fr.insee + l4oo8gk0-CI-0-IP-1 + 1 + InParameter + + + isnull(l4oo8gk0-CI-0-IP-1) or l4oo8gk0-CI-0-IP-1="" + + + + + fr.insee + l4oo2unu-CI-0 + 1 + + COM_ENFAIL2 non renseigné + + + COM_ENFAIL2 non renseigné + + + fr.insee + l4oo2unu-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4oo2unu-CI-0-IP-1 + 1 + + COM_ENFAIL2 + + + + + fr.insee + l4oo2unu-QOP-llvyt4to + 1 + OutParameter + + + fr.insee + l4oo2unu-CI-0-IP-1 + 1 + InParameter + + + isnull(l4oo2unu-CI-0-IP-1) or l4oo2unu-CI-0-IP-1="" + + + + + fr.insee + l4ooebmj-CI-0 + 1 + + PAY_ENFAIL2 non renseigné + + + PAY_ENFAIL2 non renseigné + + + fr.insee + l4ooebmj-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ooebmj-CI-0-IP-1 + 1 + + PAY_ENFAIL2 + + + + + fr.insee + l4ooebmj-QOP-llvz2rjo + 1 + OutParameter + + + fr.insee + l4ooebmj-CI-0-IP-1 + 1 + InParameter + + + isnull(l4ooebmj-CI-0-IP-1) or l4ooebmj-CI-0-IP-1="" + + + + + fr.insee + l4liztyl-CI-0 + 1 + + LOG_ENFAIL2 non renseigné + + + LOG_ENFAIL2 non renseigné + + + fr.insee + l4liztyl-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4liztyl-CI-0-IP-1 + 1 + + LOG_ENFAIL2 + + + + + fr.insee + l4liztyl-QOP-l4liyopf + 1 + OutParameter + + + fr.insee + l4liztyl-CI-0-IP-1 + 1 + InParameter + + + isnull(l4liztyl-CI-0-IP-1) or l4liztyl-CI-0-IP-1="" + + + + + fr.insee + l4lk1w8p-CI-0 + 1 + + AUT_PAR_ENFAIL2non renseigné + + + AUT_PAR_ENFAIL2non renseigné + + + fr.insee + l4lk1w8p-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lk1w8p-CI-0-IP-1 + 1 + + AUT_PAR_ENFAIL2 + + + + + fr.insee + l4lk1w8p-QOP-l4lk92w2 + 1 + OutParameter + + + fr.insee + l4lk1w8p-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lk1w8p-CI-0-IP-1) or l4lk1w8p-CI-0-IP-1="" + + + + + fr.insee + l4ljkmaj-CI-0 + 1 + + DORT_ENFAIL2 non renseigné + + + DORT_ENFAIL2 non renseigné + + + fr.insee + l4ljkmaj-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ljkmaj-CI-0-IP-1 + 1 + + DORT_ENFAIL2 + + + + + fr.insee + l4ljkmaj-QOP-l4lk4f59 + 1 + OutParameter + + + fr.insee + l4ljkmaj-CI-0-IP-1 + 1 + InParameter + + + isnull(l4ljkmaj-CI-0-IP-1) or l4ljkmaj-CI-0-IP-1="" + + + + + fr.insee + l4o73m0u-CI-0 + 1 + + SEP_AUT_PAR_ENFAIL2 non renseigné + + + SEP_AUT_PAR_ENFAIL2 non renseigné + + + fr.insee + l4o73m0u-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4o73m0u-CI-0-IP-1 + 1 + + SEP_AUT_PAR_ENFAIL2 + + + + + fr.insee + l4o73m0u-QOP-l4o79ydp + 1 + OutParameter + + + fr.insee + l4o73m0u-CI-0-IP-1 + 1 + InParameter + + + isnull(l4o73m0u-CI-0-IP-1) or l4o73m0u-CI-0-IP-1="" + + + + + fr.insee + l4lmxke4-CI-0 + 1 + + RESID_ENFAIL2 non renseigné + + + RESID_ENFAIL2 non renseigné + + + fr.insee + l4lmxke4-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lmxke4-CI-0-IP-1 + 1 + + RESID_ENFAIL2 + + + + + fr.insee + l4lmxke4-QOP-l4lmow3d + 1 + OutParameter + + + fr.insee + l4lmxke4-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lmxke4-CI-0-IP-1) or l4lmxke4-CI-0-IP-1="" + + + + + fr.insee + l4ljj44i-CI-0 + 1 + + SANTE_ENFAIL2 non renseigné + + + SANTE_ENFAIL2 non renseigné + + + fr.insee + l4ljj44i-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ljj44i-CI-0-IP-1 + 1 + + SANTE_ENFAIL21 + + + + fr.insee + l4ljj44i-CI-0-IP-2 + 1 + + SANTE_ENFAIL22 + + + + fr.insee + l4ljj44i-CI-0-IP-3 + 1 + + SANTE_ENFAIL23 + + + + + fr.insee + l4ljj44i-QOP-lagyowte + 1 + OutParameter + + + fr.insee + l4ljj44i-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l4ljj44i-QOP-lagyfrw1 + 1 + OutParameter + + + fr.insee + l4ljj44i-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l4ljj44i-QOP-lagyeeeb + 1 + OutParameter + + + fr.insee + l4ljj44i-CI-0-IP-3 + 1 + InParameter + + + (nvl(l4ljj44i-CI-0-IP-1, false) = false and nvl(l4ljj44i-CI-0-IP-2, false) = false and nvl(l4ljj44i-CI-0-IP-3, false) = false ) + + + + + fr.insee + l4lg3j5g-CI-0 + 1 + + PRENOM_ENFAIL3 non renseigné + + + PRENOM_ENFAIL3 non renseigné + + + fr.insee + l4lg3j5g-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lg3j5g-CI-0-IP-1 + 1 + + PRENOM_ENFAIL3 + + + + + fr.insee + l4lg3j5g-QOP-l4lg9z9j + 1 + OutParameter + + + fr.insee + l4lg3j5g-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lg3j5g-CI-0-IP-1) or l4lg3j5g-CI-0-IP-1="" + + + + + fr.insee + l4lg6nx5-CI-0 + 1 + + SEXE_ENFAIL3 non renseigné + + + SEXE_ENFAIL3 non renseigné + + + fr.insee + l4lg6nx5-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lg6nx5-CI-0-IP-1 + 1 + + SEXE_ENFAIL3 + + + + + fr.insee + l4lg6nx5-QOP-l4lg6j08 + 1 + OutParameter + + + fr.insee + l4lg6nx5-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lg6nx5-CI-0-IP-1) or l4lg6nx5-CI-0-IP-1="" + + + + + fr.insee + l4lgenh5-CI-0 + 1 + + ANAI_ENFAIL3 non renseigné + + + ANAI_ENFAIL3 non renseigné + + + fr.insee + l4lgenh5-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgenh5-CI-0-IP-1 + 1 + + ANAI_ENFAIL3 + + + + + fr.insee + l4lgenh5-QOP-l4lgj042 + 1 + OutParameter + + + fr.insee + l4lgenh5-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lgenh5-CI-0-IP-1) or l4lgenh5-CI-0-IP-1="" + + + + + fr.insee + l4lgenh5-CI-1 + 1 + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + fr.insee + l4lgenh5-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgenh5-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l4lgenh5-CI-1-IP-2 + 1 + + ANAI_ENFAIL3 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l4lgenh5-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4lgenh5-QOP-l4lgj042 + 1 + OutParameter + + + fr.insee + l4lgenh5-CI-1-IP-2 + 1 + InParameter + + + not(isnull(l4lgenh5-CI-1-IP-2)) and not(isnull(l4lgenh5-CI-1-IP-1)) and cast(l4lgenh5-CI-1-IP-2,integer) < cast(l4lgenh5-CI-1-IP-1,integer) + + + + + fr.insee + l4lgenh5-CI-2 + 1 + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + fr.insee + l4lgenh5-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgenh5-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l4lgenh5-CI-2-IP-2 + 1 + + ANAI_ENFAIL3 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l4lgenh5-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l4lgenh5-QOP-l4lgj042 + 1 + OutParameter + + + fr.insee + l4lgenh5-CI-2-IP-2 + 1 + InParameter + + + not(isnull(l4lgenh5-CI-2-IP-2)) and not(isnull(l4lgenh5-CI-2-IP-1)) and (cast(l4lgenh5-CI-2-IP-1,integer) + 15 > cast(l4lgenh5-CI-2-IP-2,integer)) + + + + + fr.insee + l4lgenh5-CI-3 + 1 + + bornes ANAI_ENFAIL3 + + + bornes ANAI_ENFAIL3 + + + fr.insee + l4lgenh5-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgenh5-CI-3-IP-1 + 1 + + ANAI_ENFAIL3 + + + + + fr.insee + l4lgenh5-QOP-l4lgj042 + 1 + OutParameter + + + fr.insee + l4lgenh5-CI-3-IP-1 + 1 + InParameter + + + cast(l4lgenh5-CI-3-IP-1,integer) < 1920 or cast(l4lgenh5-CI-3-IP-1,integer) > 2024 + + + + + fr.insee + l4lh0q7i-CI-0 + 1 + + NEFRANCE_ENFAIL3 non renseigné + + + NEFRANCE_ENFAIL3 non renseigné + + + fr.insee + l4lh0q7i-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lh0q7i-CI-0-IP-1 + 1 + + NEFRANCE_ENFAIL3 + + + + + fr.insee + l4lh0q7i-QOP-l4lgw48z + 1 + OutParameter + + + fr.insee + l4lh0q7i-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lh0q7i-CI-0-IP-1) or l4lh0q7i-CI-0-IP-1="" + + + + + fr.insee + l4lgysxq-CI-0 + 1 + + PARENT_VIT_ENFAIL3 non renseigné + + + PARENT_VIT_ENFAIL3 non renseigné + + + fr.insee + l4lgysxq-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgysxq-CI-0-IP-1 + 1 + + PARENT_VIT_ENFAIL3 + + + + + fr.insee + l4lgysxq-QOP-l4lgtxyg + 1 + OutParameter + + + fr.insee + l4lgysxq-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lgysxq-CI-0-IP-1) or l4lgysxq-CI-0-IP-1="" + + + + + fr.insee + l8m0bu1o-CI-0 + 1 + + PARENT_VECU_ENFAIL3 non renseigné + + + PARENT_VECU_ENFAIL3 non renseigné + + + fr.insee + l8m0bu1o-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8m0bu1o-CI-0-IP-1 + 1 + + PARENT_VECU_ENFAIL3 + + + + + fr.insee + l8m0bu1o-QOP-l8m0gq78 + 1 + OutParameter + + + fr.insee + l8m0bu1o-CI-0-IP-1 + 1 + InParameter + + + isnull(l8m0bu1o-CI-0-IP-1) or l8m0bu1o-CI-0-IP-1="" + + + + + fr.insee + l4lh0ofl-CI-0 + 1 + + DC_ENFAIL3 non renseigné + + + DC_ENFAIL3 non renseigné + + + fr.insee + l4lh0ofl-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lh0ofl-CI-0-IP-1 + 1 + + DC_ENFAIL3 + + + + + fr.insee + l4lh0ofl-QOP-l4lhcnt0 + 1 + OutParameter + + + fr.insee + l4lh0ofl-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lh0ofl-CI-0-IP-1) or l4lh0ofl-CI-0-IP-1="" + + + + + fr.insee + l4lhbuxg-CI-0 + 1 + + AG_DC_ENFAIL3 non renseigné + + + AG_DC_ENFAIL3 non renseigné + + + fr.insee + l4lhbuxg-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lhbuxg-CI-0-IP-1 + 1 + + AG_DC_ENFAIL3 + + + + + fr.insee + l4lhbuxg-QOP-l4lhhhhy + 1 + OutParameter + + + fr.insee + l4lhbuxg-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lhbuxg-CI-0-IP-1) or l4lhbuxg-CI-0-IP-1="" + + + + + fr.insee + l4lhbuxg-CI-1 + 1 + + "L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge." + + + "L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge." + + + fr.insee + l4lhbuxg-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lhbuxg-CI-1-IP-1 + 1 + + AG_ENFAIL3 + + + + fr.insee + l4lhbuxg-CI-1-IP-2 + 1 + + AG_DC_ENFAIL3 + + + + + fr.insee + ljogdxy3-GOP + 1 + OutParameter + + + fr.insee + l4lhbuxg-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4lhbuxg-QOP-l4lhhhhy + 1 + OutParameter + + + fr.insee + l4lhbuxg-CI-1-IP-2 + 1 + InParameter + + + not(isnull(l4lhbuxg-CI-1-IP-1)) and not (isnull(l4lhbuxg-CI-1-IP-2)) and cast(l4lhbuxg-CI-1-IP-2,integer) > cast(l4lhbuxg-CI-1-IP-1,integer) + + + + + fr.insee + l4lhdubm-CI-0 + 1 + + AG_DEPART_ENFAIL3 non renseigné + + + AG_DEPART_ENFAIL3 non renseigné + + + fr.insee + l4lhdubm-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lhdubm-CI-0-IP-1 + 1 + + AG_DEPART_ENFAIL3 + + + + + fr.insee + l4lhdubm-QOP-l4lhr1jr + 1 + OutParameter + + + fr.insee + l4lhdubm-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lhdubm-CI-0-IP-1) or l4lhdubm-CI-0-IP-1="" + + + + + fr.insee + l4lhdubm-CI-1 + 1 + + "L'âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge." + + + "L'âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge." + + + fr.insee + l4lhdubm-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lhdubm-CI-1-IP-1 + 1 + + AG_ENFAIL3 + + + + fr.insee + l4lhdubm-CI-1-IP-2 + 1 + + ANAI_ENFAIL3 + + + + fr.insee + l4lhdubm-CI-1-IP-3 + 1 + + AG_DEPART_ENFAIL3 + + + + + fr.insee + ljogdxy3-GOP + 1 + OutParameter + + + fr.insee + l4lhdubm-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4lgenh5-QOP-l4lgj042 + 1 + OutParameter + + + fr.insee + l4lhdubm-CI-1-IP-2 + 1 + InParameter + + + + + fr.insee + l4lhdubm-QOP-l4lhr1jr + 1 + OutParameter + + + fr.insee + l4lhdubm-CI-1-IP-3 + 1 + InParameter + + + not(isnull(l4lhdubm-CI-1-IP-3)) and not(isnull(l4lhdubm-CI-1-IP-2)) and l4lhdubm-CI-1-IP-3 > l4lhdubm-CI-1-IP-1 + + + + + fr.insee + l4lirpfm-CI-0 + 1 + + PARENT_FREQ_ENFAIL3 non renseigné + + + PARENT_FREQ_ENFAIL3 non renseigné + + + fr.insee + l4lirpfm-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lirpfm-CI-0-IP-1 + 1 + + PARENT_FREQ_ENFAIL3 + + + + + fr.insee + l4lirpfm-QOP-l4lj5xeo + 1 + OutParameter + + + fr.insee + l4lirpfm-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lirpfm-CI-0-IP-1) or l4lirpfm-CI-0-IP-1="" + + + + + fr.insee + l4lj2cqg-CI-0 + 1 + + FR_ENFAIL3 non renseigné + + + FR_ENFAIL3 non renseigné + + + fr.insee + l4lj2cqg-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lj2cqg-CI-0-IP-1 + 1 + + FR_ENFAIL3 + + + + + fr.insee + l4lj2cqg-QOP-l4liuj0u + 1 + OutParameter + + + fr.insee + l4lj2cqg-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lj2cqg-CI-0-IP-1) or l4lj2cqg-CI-0-IP-1="" + + + + + fr.insee + l4oo03nq-CI-0 + 1 + + DEP_ENFAIL3 non renseigné + + + DEP_ENFAIL3 non renseigné + + + fr.insee + l4oo03nq-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4oo03nq-CI-0-IP-1 + 1 + + DEP_ENFAIL3 + + + + + fr.insee + l4oo03nq-QOP-llvyxdr9 + 1 + OutParameter + + + fr.insee + l4oo03nq-CI-0-IP-1 + 1 + InParameter + + + isnull(l4oo03nq-CI-0-IP-1) or l4oo03nq-CI-0-IP-1="" + + + + + fr.insee + l4oo41j6-CI-0 + 1 + + COM_ENFAIL3 non renseigné + + + COM_ENFAIL3 non renseigné + + + fr.insee + l4oo41j6-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4oo41j6-CI-0-IP-1 + 1 + + COM_ENFAIL3 + + + + + fr.insee + l4oo41j6-QOP-llvyrgzl + 1 + OutParameter + + + fr.insee + l4oo41j6-CI-0-IP-1 + 1 + InParameter + + + isnull(l4oo41j6-CI-0-IP-1) or l4oo41j6-CI-0-IP-1="" + + + + + fr.insee + l4ooe2gj-CI-0 + 1 + + PAY_ENFAIL3 non renseigné + + + PAY_ENFAIL3 non renseigné + + + fr.insee + l4ooe2gj-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ooe2gj-CI-0-IP-1 + 1 + + PAY_ENFAIL3 + + + + + fr.insee + l4ooe2gj-QOP-llvz89lf + 1 + OutParameter + + + fr.insee + l4ooe2gj-CI-0-IP-1 + 1 + InParameter + + + isnull(l4ooe2gj-CI-0-IP-1) or l4ooe2gj-CI-0-IP-1="" + + + + + fr.insee + l4ljddzv-CI-0 + 1 + + LOG_ENFAIL3 non renseigné + + + LOG_ENFAIL3 non renseigné + + + fr.insee + l4ljddzv-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ljddzv-CI-0-IP-1 + 1 + + LOG_ENFAIL3 + + + + + fr.insee + l4ljddzv-QOP-l4lj4c9v + 1 + OutParameter + + + fr.insee + l4ljddzv-CI-0-IP-1 + 1 + InParameter + + + isnull(l4ljddzv-CI-0-IP-1) or l4ljddzv-CI-0-IP-1="" + + + + + fr.insee + l4lmjzwd-CI-0 + 1 + + AUT_PAR_ENFAIL3 non renseigné + + + AUT_PAR_ENFAIL3 non renseigné + + + fr.insee + l4lmjzwd-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lmjzwd-CI-0-IP-1 + 1 + + AUT_PAR_ENFAIL3 + + + + + fr.insee + l4lmjzwd-QOP-l4lmk2uc + 1 + OutParameter + + + fr.insee + l4lmjzwd-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lmjzwd-CI-0-IP-1) or l4lmjzwd-CI-0-IP-1="" + + + + + fr.insee + l4ljm6cp-CI-0 + 1 + + DORT_ENFAIL3 non renseigné + + + DORT_ENFAIL3 non renseigné + + + fr.insee + l4ljm6cp-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ljm6cp-CI-0-IP-1 + 1 + + DORT_ENFAIL3 + + + + + fr.insee + l4ljm6cp-QOP-l4ljuv43 + 1 + OutParameter + + + fr.insee + l4ljm6cp-CI-0-IP-1 + 1 + InParameter + + + isnull(l4ljm6cp-CI-0-IP-1) or l4ljm6cp-CI-0-IP-1="" + + + + + fr.insee + l4o7gt0n-CI-0 + 1 + + SEP_AUT_PAR_ENFAIL3 non renseigné + + + SEP_AUT_PAR_ENFAIL3 non renseigné + + + fr.insee + l4o7gt0n-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4o7gt0n-CI-0-IP-1 + 1 + + SEP_AUT_PAR_ENFAIL3 + + + + + fr.insee + l4o7gt0n-QOP-l4o7fj27 + 1 + OutParameter + + + fr.insee + l4o7gt0n-CI-0-IP-1 + 1 + InParameter + + + isnull(l4o7gt0n-CI-0-IP-1) or l4o7gt0n-CI-0-IP-1="" + + + + + fr.insee + l4lmszob-CI-0 + 1 + + RESID_ENFAIL3 non renseigné + + + RESID_ENFAIL3 non renseigné + + + fr.insee + l4lmszob-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lmszob-CI-0-IP-1 + 1 + + RESID_ENFAIL3 + + + + + fr.insee + l4lmszob-QOP-l4lmv8du + 1 + OutParameter + + + fr.insee + l4lmszob-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lmszob-CI-0-IP-1) or l4lmszob-CI-0-IP-1="" + + + + + fr.insee + l4ljg7fn-CI-0 + 1 + + SANTE_ENFAIL3 non renseigné + + + SANTE_ENFAIL3 non renseigné + + + fr.insee + l4ljg7fn-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ljg7fn-CI-0-IP-1 + 1 + + SANTE_ENFAIL31 + + + + fr.insee + l4ljg7fn-CI-0-IP-2 + 1 + + SANTE_ENFAIL32 + + + + fr.insee + l4ljg7fn-CI-0-IP-3 + 1 + + SANTE_ENFAIL33 + + + + + fr.insee + l4ljg7fn-QOP-lagyxtyg + 1 + OutParameter + + + fr.insee + l4ljg7fn-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l4ljg7fn-QOP-lagyuta3 + 1 + OutParameter + + + fr.insee + l4ljg7fn-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l4ljg7fn-QOP-lagyuxyh + 1 + OutParameter + + + fr.insee + l4ljg7fn-CI-0-IP-3 + 1 + InParameter + + + (nvl(l4ljg7fn-CI-0-IP-1, false) = false and nvl(l4ljg7fn-CI-0-IP-2, false) = false and nvl(l4ljg7fn-CI-0-IP-3, false) = false ) + + + + + fr.insee + l4lg5t9v-CI-0 + 1 + + PRENOM_ENFAIL4 non renseigné + + + PRENOM_ENFAIL4 non renseigné + + + fr.insee + l4lg5t9v-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lg5t9v-CI-0-IP-1 + 1 + + PRENOM_ENFAIL4 + + + + + fr.insee + l4lg5t9v-QOP-l4lg3csm + 1 + OutParameter + + + fr.insee + l4lg5t9v-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lg5t9v-CI-0-IP-1) or l4lg5t9v-CI-0-IP-1="" + + + + + fr.insee + l4lg3wub-CI-0 + 1 + + SEXE_ENFAIL4 non renseigné + + + SEXE_ENFAIL4 non renseigné + + + fr.insee + l4lg3wub-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lg3wub-CI-0-IP-1 + 1 + + SEXE_ENFAIL4 + + + + + fr.insee + l4lg3wub-QOP-l4lg3510 + 1 + OutParameter + + + fr.insee + l4lg3wub-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lg3wub-CI-0-IP-1) or l4lg3wub-CI-0-IP-1="" + + + + + fr.insee + l4lgfphb-CI-0 + 1 + + ANAI_ENFAIL4 non renseigné + + + ANAI_ENFAIL4 non renseigné + + + fr.insee + l4lgfphb-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgfphb-CI-0-IP-1 + 1 + + ANAI_ENFAIL4 + + + + + fr.insee + l4lgfphb-QOP-l4lgh2oy + 1 + OutParameter + + + fr.insee + l4lgfphb-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lgfphb-CI-0-IP-1) or l4lgfphb-CI-0-IP-1="" + + + + + fr.insee + l4lgfphb-CI-1 + 1 + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + fr.insee + l4lgfphb-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgfphb-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l4lgfphb-CI-1-IP-2 + 1 + + ANAI_ENFAIL4 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l4lgfphb-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4lgfphb-QOP-l4lgh2oy + 1 + OutParameter + + + fr.insee + l4lgfphb-CI-1-IP-2 + 1 + InParameter + + + not(isnull(l4lgfphb-CI-1-IP-2)) and not(isnull(l4lgfphb-CI-1-IP-1)) and cast(l4lgfphb-CI-1-IP-2,integer) < cast(l4lgfphb-CI-1-IP-1,integer) + + + + + fr.insee + l4lgfphb-CI-2 + 1 + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + fr.insee + l4lgfphb-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgfphb-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l4lgfphb-CI-2-IP-2 + 1 + + ANAI_ENFAIL4 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l4lgfphb-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l4lgfphb-QOP-l4lgh2oy + 1 + OutParameter + + + fr.insee + l4lgfphb-CI-2-IP-2 + 1 + InParameter + + + not(isnull(l4lgfphb-CI-2-IP-2)) and not(isnull(l4lgfphb-CI-2-IP-1)) and (cast(l4lgfphb-CI-2-IP-1,integer) + 15 > cast(l4lgfphb-CI-2-IP-2,integer)) + + + + + fr.insee + l4lgfphb-CI-3 + 1 + + bornes ANAI_ENFAIL4 + + + bornes ANAI_ENFAIL4 + + + fr.insee + l4lgfphb-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgfphb-CI-3-IP-1 + 1 + + ANAI_ENFAIL4 + + + + + fr.insee + l4lgfphb-QOP-l4lgh2oy + 1 + OutParameter + + + fr.insee + l4lgfphb-CI-3-IP-1 + 1 + InParameter + + + cast(l4lgfphb-CI-3-IP-1,integer) < 1920 or cast(l4lgfphb-CI-3-IP-1,integer) > 2024 + + + + + fr.insee + l4lgr9ny-CI-0 + 1 + + NEFRANCE_ENFAIL4 non renseigné + + + NEFRANCE_ENFAIL4 non renseigné + + + fr.insee + l4lgr9ny-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgr9ny-CI-0-IP-1 + 1 + + NEFRANCE_ENFAIL4 + + + + + fr.insee + l4lgr9ny-QOP-l4lgx588 + 1 + OutParameter + + + fr.insee + l4lgr9ny-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lgr9ny-CI-0-IP-1) or l4lgr9ny-CI-0-IP-1="" + + + + + fr.insee + l4lgo4yb-CI-0 + 1 + + PARENT_VIT_ENFAIL4 non renseigné + + + PARENT_VIT_ENFAIL4 non renseigné + + + fr.insee + l4lgo4yb-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgo4yb-CI-0-IP-1 + 1 + + PARENT_VIT_ENFAIL4 + + + + + fr.insee + l4lgo4yb-QOP-l4lgsplb + 1 + OutParameter + + + fr.insee + l4lgo4yb-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lgo4yb-CI-0-IP-1) or l4lgo4yb-CI-0-IP-1="" + + + + + fr.insee + l8m03w7m-CI-0 + 1 + + PARENT_VECU_ENFAIL4 non renseigné + + + PARENT_VECU_ENFAIL4 non renseigné + + + fr.insee + l8m03w7m-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8m03w7m-CI-0-IP-1 + 1 + + PARENT_VECU_ENFAIL4 + + + + + fr.insee + l8m03w7m-QOP-l8m0ghal + 1 + OutParameter + + + fr.insee + l8m03w7m-CI-0-IP-1 + 1 + InParameter + + + isnull(l8m03w7m-CI-0-IP-1) or l8m03w7m-CI-0-IP-1="" + + + + + fr.insee + l4lh1a42-CI-0 + 1 + + DC_ENFAIL4 non renseigné + + + DC_ENFAIL4 non renseigné + + + fr.insee + l4lh1a42-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lh1a42-CI-0-IP-1 + 1 + + DC_ENFAIL4 + + + + + fr.insee + l4lh1a42-QOP-l4lh8xt8 + 1 + OutParameter + + + fr.insee + l4lh1a42-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lh1a42-CI-0-IP-1) or l4lh1a42-CI-0-IP-1="" + + + + + fr.insee + l4lhbfxh-CI-0 + 1 + + AG_DC_ENFAIL4 non renseigné + + + AG_DC_ENFAIL4 non renseigné + + + fr.insee + l4lhbfxh-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lhbfxh-CI-0-IP-1 + 1 + + AG_DC_ENFAIL4 + + + + + fr.insee + l4lhbfxh-QOP-l4lh4m12 + 1 + OutParameter + + + fr.insee + l4lhbfxh-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lhbfxh-CI-0-IP-1) or l4lhbfxh-CI-0-IP-1="" + + + + + fr.insee + l4lhbfxh-CI-1 + 1 + + "L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge." + + + "L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge." + + + fr.insee + l4lhbfxh-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lhbfxh-CI-1-IP-1 + 1 + + AG_ENFAIL4 + + + + fr.insee + l4lhbfxh-CI-1-IP-2 + 1 + + AG_DC_ENFAIL4 + + + + + fr.insee + ljoghjsl-GOP + 1 + OutParameter + + + fr.insee + l4lhbfxh-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4lhbfxh-QOP-l4lh4m12 + 1 + OutParameter + + + fr.insee + l4lhbfxh-CI-1-IP-2 + 1 + InParameter + + + not(isnull(l4lhbfxh-CI-1-IP-1)) and not (isnull(l4lhbfxh-CI-1-IP-2)) and cast(l4lhbfxh-CI-1-IP-2,integer) > cast(l4lhbfxh-CI-1-IP-1,integer) + + + + + fr.insee + l4lho0e2-CI-0 + 1 + + AG_DEPART_ENFAIL4 non renseigné + + + AG_DEPART_ENFAIL4 non renseigné + + + fr.insee + l4lho0e2-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lho0e2-CI-0-IP-1 + 1 + + AG_DEPART_ENFAIL4 + + + + + fr.insee + l4lho0e2-QOP-l4lhe3eu + 1 + OutParameter + + + fr.insee + l4lho0e2-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lho0e2-CI-0-IP-1) or l4lho0e2-CI-0-IP-1="" + + + + + fr.insee + l4lho0e2-CI-1 + 1 + + "L'âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge." + + + "L'âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge." + + + fr.insee + l4lho0e2-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lho0e2-CI-1-IP-1 + 1 + + AG_ENFAIL4 + + + + fr.insee + l4lho0e2-CI-1-IP-2 + 1 + + ANAI_ENFAIL4 + + + + fr.insee + l4lho0e2-CI-1-IP-3 + 1 + + AG_DEPART_ENFAIL4 + + + + + fr.insee + ljoghjsl-GOP + 1 + OutParameter + + + fr.insee + l4lho0e2-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4lgfphb-QOP-l4lgh2oy + 1 + OutParameter + + + fr.insee + l4lho0e2-CI-1-IP-2 + 1 + InParameter + + + + + fr.insee + l4lho0e2-QOP-l4lhe3eu + 1 + OutParameter + + + fr.insee + l4lho0e2-CI-1-IP-3 + 1 + InParameter + + + not(isnull(l4lho0e2-CI-1-IP-3)) and not(isnull(l4lho0e2-CI-1-IP-2)) and l4lho0e2-CI-1-IP-3 > l4lho0e2-CI-1-IP-1 + + + + + fr.insee + l4lj5kv6-CI-0 + 1 + + PARENT_FREQ_ENFAIL4 non renseigné + + + PARENT_FREQ_ENFAIL4 non renseigné + + + fr.insee + l4lj5kv6-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lj5kv6-CI-0-IP-1 + 1 + + PARENT_FREQ_ENFAIL4 + + + + + fr.insee + l4lj5kv6-QOP-l4lj2kyh + 1 + OutParameter + + + fr.insee + l4lj5kv6-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lj5kv6-CI-0-IP-1) or l4lj5kv6-CI-0-IP-1="" + + + + + fr.insee + l4lj0iea-CI-0 + 1 + + FR_ENFAIL4 non renseigné + + + FR_ENFAIL4 non renseigné + + + fr.insee + l4lj0iea-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lj0iea-CI-0-IP-1 + 1 + + FR_ENFAIL4 + + + + + fr.insee + l4lj0iea-QOP-l4liwqkb + 1 + OutParameter + + + fr.insee + l4lj0iea-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lj0iea-CI-0-IP-1) or l4lj0iea-CI-0-IP-1="" + + + + + fr.insee + l4oo4x1t-CI-0 + 1 + + DEP_ENFAIL4 non renseigné + + + DEP_ENFAIL4 non renseigné + + + fr.insee + l4oo4x1t-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4oo4x1t-CI-0-IP-1 + 1 + + DEP_ENFAIL4 + + + + + fr.insee + l4oo4x1t-QOP-llvyr8d7 + 1 + OutParameter + + + fr.insee + l4oo4x1t-CI-0-IP-1 + 1 + InParameter + + + isnull(l4oo4x1t-CI-0-IP-1) or l4oo4x1t-CI-0-IP-1="" + + + + + fr.insee + l4onwhrf-CI-0 + 1 + + COM_ENFAIL4 non renseigné + + + COM_ENFAIL4 non renseigné + + + fr.insee + l4onwhrf-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4onwhrf-CI-0-IP-1 + 1 + + COM_ENFAIL4 + + + + + fr.insee + l4onwhrf-QOP-llvz7vfx + 1 + OutParameter + + + fr.insee + l4onwhrf-CI-0-IP-1 + 1 + InParameter + + + isnull(l4onwhrf-CI-0-IP-1) or l4onwhrf-CI-0-IP-1="" + + + + + fr.insee + l4oo1817-CI-0 + 1 + + PAY_ENFAIL4 non renseigné + + + PAY_ENFAIL4 non renseigné + + + fr.insee + l4oo1817-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4oo1817-CI-0-IP-1 + 1 + + PAY_ENFAIL4 + + + + + fr.insee + l4oo1817-QOP-llvyukzs + 1 + OutParameter + + + fr.insee + l4oo1817-CI-0-IP-1 + 1 + InParameter + + + isnull(l4oo1817-CI-0-IP-1) or l4oo1817-CI-0-IP-1="" + + + + + fr.insee + l4lixcs2-CI-0 + 1 + + LOG_ENFAIL4 non renseigné + + + LOG_ENFAIL4 non renseigné + + + fr.insee + l4lixcs2-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lixcs2-CI-0-IP-1 + 1 + + LOG_ENFAIL4 + + + + + fr.insee + l4lixcs2-QOP-l4lj1r3g + 1 + OutParameter + + + fr.insee + l4lixcs2-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lixcs2-CI-0-IP-1) or l4lixcs2-CI-0-IP-1 ="" + + + + + fr.insee + l4lms9a0-CI-0 + 1 + + AUT_PAR_ENFAIL4 non renseigné + + + AUT_PAR_ENFAIL4 non renseigné + + + fr.insee + l4lms9a0-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lms9a0-CI-0-IP-1 + 1 + + AUT_PAR_ENFAIL4 + + + + + fr.insee + l4lms9a0-QOP-l4lmo51c + 1 + OutParameter + + + fr.insee + l4lms9a0-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lms9a0-CI-0-IP-1) or l4lms9a0-CI-0-IP-1="" + + + + + fr.insee + l4ljmpiu-CI-0 + 1 + + DORT_ENFAIL4 non renseigné + + + DORT_ENFAIL4 non renseigné + + + fr.insee + l4ljmpiu-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ljmpiu-CI-0-IP-1 + 1 + + DORT_ENFAIL4 + + + + + fr.insee + l4ljmpiu-QOP-l4ljxs6c + 1 + OutParameter + + + fr.insee + l4ljmpiu-CI-0-IP-1 + 1 + InParameter + + + isnull(l4ljmpiu-CI-0-IP-1) or l4ljmpiu-CI-0-IP-1="" + + + + + fr.insee + l4o7jdze-CI-0 + 1 + + SEP_AUT_PAR_ENFAIL4 non renseigné + + + SEP_AUT_PAR_ENFAIL4 non renseigné + + + fr.insee + l4o7jdze-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4o7jdze-CI-0-IP-1 + 1 + + SEP_AUT_PAR_ENFAIL4 + + + + + fr.insee + l4o7jdze-QOP-l4o7nzi9 + 1 + OutParameter + + + fr.insee + l4o7jdze-CI-0-IP-1 + 1 + InParameter + + + isnull(l4o7jdze-CI-0-IP-1) or l4o7jdze-CI-0-IP-1="" + + + + + fr.insee + l4lmvah7-CI-0 + 1 + + RESID_ENFAIL4 non renseigné + + + RESID_ENFAIL4 non renseigné + + + fr.insee + l4lmvah7-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lmvah7-CI-0-IP-1 + 1 + + RESID_ENFAIL4 + + + + + fr.insee + l4lmvah7-QOP-l4lmu5ae + 1 + OutParameter + + + fr.insee + l4lmvah7-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lmvah7-CI-0-IP-1) or l4lmvah7-CI-0-IP-1)="" + + + + + fr.insee + l4ljjvig-CI-0 + 1 + + SANTE_ENFAIL4 non renseigné + + + SANTE_ENFAIL4 non renseigné + + + fr.insee + l4ljjvig-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ljjvig-CI-0-IP-1 + 1 + + SANTE_ENFAIL41 + + + + fr.insee + l4ljjvig-CI-0-IP-2 + 1 + + SANTE_ENFAIL42 + + + + fr.insee + l4ljjvig-CI-0-IP-3 + 1 + + SANTE_ENFAIL43 + + + + + fr.insee + l4ljjvig-QOP-lagyh7yq + 1 + OutParameter + + + fr.insee + l4ljjvig-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l4ljjvig-QOP-lagyinu2 + 1 + OutParameter + + + fr.insee + l4ljjvig-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l4ljjvig-QOP-lagyvlaz + 1 + OutParameter + + + fr.insee + l4ljjvig-CI-0-IP-3 + 1 + InParameter + + + (nvl(l4ljjvig-CI-0-IP-1, false) = false and nvl(l4ljjvig-CI-0-IP-2, false) = false and nvl(l4ljjvig-CI-0-IP-3, false) = false ) + + + + + fr.insee + l4lgayon-CI-0 + 1 + + PRENOM_ENFAIL5 non renseigné + + + PRENOM_ENFAIL5 non renseigné + + + fr.insee + l4lgayon-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgayon-CI-0-IP-1 + 1 + + PRENOM_ENFAIL5 + + + + + fr.insee + l4lgayon-QOP-l4lg49i3 + 1 + OutParameter + + + fr.insee + l4lgayon-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lgayon-CI-0-IP-1) or l4lgayon-CI-0-IP-1="" + + + + + fr.insee + l4lgep4c-CI-0 + 1 + + SEXE_ENFAIL5 non renseigné + + + SEXE_ENFAIL5 non renseigné + + + fr.insee + l4lgep4c-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgep4c-CI-0-IP-1 + 1 + + SEXE_ENFAIL5 + + + + + fr.insee + l4lgep4c-QOP-l4lg9rqy + 1 + OutParameter + + + fr.insee + l4lgep4c-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lgep4c-CI-0-IP-1) or l4lgep4c-CI-0-IP-1="" + + + + + fr.insee + l4lgp1ft-CI-0 + 1 + + ANAI_ENFAIL5 non renseigné + + + ANAI_ENFAIL5 non renseigné + + + fr.insee + l4lgp1ft-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgp1ft-CI-0-IP-1 + 1 + + ANAI_ENFAIL5 + + + + + fr.insee + l4lgp1ft-QOP-l4lgleu5 + 1 + OutParameter + + + fr.insee + l4lgp1ft-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lgp1ft-CI-0-IP-1) or l4lgp1ft-CI-0-IP-1="" + + + + + fr.insee + l4lgp1ft-CI-1 + 1 + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + fr.insee + l4lgp1ft-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgp1ft-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l4lgp1ft-CI-1-IP-2 + 1 + + ANAI_ENFAIL5 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l4lgp1ft-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4lgp1ft-QOP-l4lgleu5 + 1 + OutParameter + + + fr.insee + l4lgp1ft-CI-1-IP-2 + 1 + InParameter + + + not(isnull(l4lgp1ft-CI-1-IP-2)) and not(isnull(l4lgp1ft-CI-1-IP-1)) and cast(l4lgp1ft-CI-1-IP-2,integer) < cast(l4lgp1ft-CI-1-IP-1,integer) + + + + + fr.insee + l4lgp1ft-CI-2 + 1 + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + fr.insee + l4lgp1ft-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgp1ft-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l4lgp1ft-CI-2-IP-2 + 1 + + ANAI_ENFAIL5 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l4lgp1ft-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l4lgp1ft-QOP-l4lgleu5 + 1 + OutParameter + + + fr.insee + l4lgp1ft-CI-2-IP-2 + 1 + InParameter + + + not(isnull(l4lgp1ft-CI-2-IP-2)) and not(isnull(l4lgp1ft-CI-2-IP-1)) and (cast(l4lgp1ft-CI-2-IP-1,integer) + 15 > cast(l4lgp1ft-CI-2-IP-2,integer)) + + + + + fr.insee + l4lgp1ft-CI-3 + 1 + + bornes ANAI_ENFAIL5 + + + bornes ANAI_ENFAIL5 + + + fr.insee + l4lgp1ft-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgp1ft-CI-3-IP-1 + 1 + + ANAI_ENFAIL5 + + + + + fr.insee + l4lgp1ft-QOP-l4lgleu5 + 1 + OutParameter + + + fr.insee + l4lgp1ft-CI-3-IP-1 + 1 + InParameter + + + cast(l4lgp1ft-CI-3-IP-1,integer) < 1920 or cast(l4lgp1ft-CI-3-IP-1,integer) > 2024 + + + + + fr.insee + l4lgnphx-CI-0 + 1 + + NEFRANCE_ENFAIL5 non renseigné + + + NEFRANCE_ENFAIL5 non renseigné + + + fr.insee + l4lgnphx-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgnphx-CI-0-IP-1 + 1 + + NEFRANCE_ENFAIL5 + + + + + fr.insee + l4lgnphx-QOP-l4lgsfsx + 1 + OutParameter + + + fr.insee + l4lgnphx-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lgnphx-CI-0-IP-1) or l4lgnphx-CI-0-IP-1="" + + + + + fr.insee + l4lh672z-CI-0 + 1 + + PARENT_VIT_ENFAIL5 non renseigné + + + PARENT_VIT_ENFAIL5 non renseigné + + + fr.insee + l4lh672z-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lh672z-CI-0-IP-1 + 1 + + PARENT_VIT_ENFAIL5 + + + + + fr.insee + l4lh672z-QOP-l4lh0pbe + 1 + OutParameter + + + fr.insee + l4lh672z-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lh672z-CI-0-IP-1) or l4lh672z-CI-0-IP-1="" + + + + + fr.insee + l8m0ld6c-CI-0 + 1 + + PARENT_VECU_ENFAIL5 non renseigné + + + PARENT_VECU_ENFAIL5 non renseigné + + + fr.insee + l8m0ld6c-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8m0ld6c-CI-0-IP-1 + 1 + + PARENT_VECU_ENFAIL5 + + + + + fr.insee + l8m0ld6c-QOP-l8m08umx + 1 + OutParameter + + + fr.insee + l8m0ld6c-CI-0-IP-1 + 1 + InParameter + + + isnull(l8m0ld6c-CI-0-IP-1) or l8m0ld6c-CI-0-IP-1="" + + + + + fr.insee + l4lhcdf6-CI-0 + 1 + + DC_ENFAIL5 non renseigné + + + DC_ENFAIL5 non renseigné + + + fr.insee + l4lhcdf6-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lhcdf6-CI-0-IP-1 + 1 + + DC_ENFAIL5 + + + + + fr.insee + l4lhcdf6-QOP-l4lgwio5 + 1 + OutParameter + + + fr.insee + l4lhcdf6-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lhcdf6-CI-0-IP-1) or l4lhcdf6-CI-0-IP-1="" + + + + + fr.insee + l4lh8c72-CI-0 + 1 + + AG_DC_ENFAIL5 non renseigné + + + AG_DC_ENFAIL5 non renseigné + + + fr.insee + l4lh8c72-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lh8c72-CI-0-IP-1 + 1 + + AG_DC_ENFAIL5 + + + + + fr.insee + l4lh8c72-QOP-l4lh96gc + 1 + OutParameter + + + fr.insee + l4lh8c72-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lh8c72-CI-0-IP-1) or l4lh8c72-CI-0-IP-1="" + + + + + fr.insee + l4lh8c72-CI-1 + 1 + + "L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge." + + + "L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge." + + + fr.insee + l4lh8c72-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lh8c72-CI-1-IP-1 + 1 + + AG_ENFAIL5 + + + + fr.insee + l4lh8c72-CI-1-IP-2 + 1 + + AG_DC_ENFAIL5 + + + + + fr.insee + ljogjmnt-GOP + 1 + OutParameter + + + fr.insee + l4lh8c72-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4lh8c72-QOP-l4lh96gc + 1 + OutParameter + + + fr.insee + l4lh8c72-CI-1-IP-2 + 1 + InParameter + + + not(isnull(l4lh8c72-CI-1-IP-1)) and not (isnull(l4lh8c72-CI-1-IP-2)) and cast(l4lh8c72-CI-1-IP-2,integer) > cast(l4lh8c72-CI-1-IP-1,integer) + + + + + fr.insee + l4lhn614-CI-0 + 1 + + AG_DEPART_ENFAIL5 non renseigné + + + AG_DEPART_ENFAIL5 non renseigné + + + fr.insee + l4lhn614-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lhn614-CI-0-IP-1 + 1 + + AG_DEPART_ENFAIL5 + + + + + fr.insee + l4lhn614-QOP-l4lhi8ks + 1 + OutParameter + + + fr.insee + l4lhn614-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lhn614-CI-0-IP-1) or l4lhn614-CI-0-IP-1="" + + + + + fr.insee + l4lhn614-CI-1 + 1 + + "L'âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge." + + + "L'âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge." + + + fr.insee + l4lhn614-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lhn614-CI-1-IP-1 + 1 + + AG_ENFAIL5 + + + + fr.insee + l4lhn614-CI-1-IP-2 + 1 + + ANAI_ENFAIL5 + + + + fr.insee + l4lhn614-CI-1-IP-3 + 1 + + AG_DEPART_ENFAIL5 + + + + + fr.insee + ljogjmnt-GOP + 1 + OutParameter + + + fr.insee + l4lhn614-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4lgp1ft-QOP-l4lgleu5 + 1 + OutParameter + + + fr.insee + l4lhn614-CI-1-IP-2 + 1 + InParameter + + + + + fr.insee + l4lhn614-QOP-l4lhi8ks + 1 + OutParameter + + + fr.insee + l4lhn614-CI-1-IP-3 + 1 + InParameter + + + not(isnull(l4lhn614-CI-1-IP-3)) and not(isnull(l4lhn614-CI-1-IP-2)) and l4lhn614-CI-1-IP-3 > l4lhn614-CI-1-IP-1 + + + + + fr.insee + l4lj98cz-CI-0 + 1 + + PARENT_FREQ_ENFAIL5 non renseigné + + + PARENT_FREQ_ENFAIL5 non renseigné + + + fr.insee + l4lj98cz-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lj98cz-CI-0-IP-1 + 1 + + PARENT_FREQ_ENFAIL5 + + + + + fr.insee + l4lj98cz-QOP-l4lj2b7z + 1 + OutParameter + + + fr.insee + l4lj98cz-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lj98cz-CI-0-IP-1) or l4lj98cz-CI-0-IP-1="" + + + + + fr.insee + l4lijtvo-CI-0 + 1 + + FR_ENFAIL5 non renseigné + + + FR_ENFAIL5 non renseigné + + + fr.insee + l4lijtvo-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lijtvo-CI-0-IP-1 + 1 + + FR_ENFAIL5 + + + + + fr.insee + l4lijtvo-QOP-l4liqibl + 1 + OutParameter + + + fr.insee + l4lijtvo-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lijtvo-CI-0-IP-1) or l4lijtvo-CI-0-IP-1="" + + + + + fr.insee + l4oo7lwi-CI-0 + 1 + + DEP_ENFAIL5 non renseigné + + + DEP_ENFAIL5 non renseigné + + + fr.insee + l4oo7lwi-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4oo7lwi-CI-0-IP-1 + 1 + + DEP_ENFAIL5 + + + + + fr.insee + l4oo7lwi-QOP-llvz93jz + 1 + OutParameter + + + fr.insee + l4oo7lwi-CI-0-IP-1 + 1 + InParameter + + + isnull(l4oo7lwi-CI-0-IP-1) or l4oo7lwi-CI-0-IP-1="" + + + + + fr.insee + l4oo41q4-CI-0 + 1 + + COM_ENFAIL5 non renseigné + + + COM_ENFAIL5 non renseigné + + + fr.insee + l4oo41q4-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4oo41q4-CI-0-IP-1 + 1 + + COM_ENFAIL5 + + + + + fr.insee + l4oo41q4-QOP-llvz0237 + 1 + OutParameter + + + fr.insee + l4oo41q4-CI-0-IP-1 + 1 + InParameter + + + isnull(l4oo41q4-CI-0-IP-1) or l4oo41q4-CI-0-IP-1="" + + + + + fr.insee + l4oo5bj9-CI-0 + 1 + + PAY_ENFAIL5 non renseigné + + + PAY_ENFAIL5 non renseigné + + + fr.insee + l4oo5bj9-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4oo5bj9-CI-0-IP-1 + 1 + + PAY_ENFAIL5 + + + + + fr.insee + l4oo5bj9-QOP-llvz2kjk + 1 + OutParameter + + + fr.insee + l4oo5bj9-CI-0-IP-1 + 1 + InParameter + + + isnull(l4oo5bj9-CI-0-IP-1) or l4oo5bj9-CI-0-IP-1="" + + + + + fr.insee + l4lizygc-CI-0 + 1 + + LOG_ENFAIL5 non renseigné + + + LOG_ENFAIL5 non renseigné + + + fr.insee + l4lizygc-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lizygc-CI-0-IP-1 + 1 + + LOG_ENFAIL5 + + + + + fr.insee + l4lizygc-QOP-l4lj1p4y + 1 + OutParameter + + + fr.insee + l4lizygc-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lizygc-CI-0-IP-1) or l4lizygc-CI-0-IP-1="" + + + + + fr.insee + l4lmc52p-CI-0 + 1 + + AUT_PAR_ENFAIL5 non renseigné + + + AUT_PAR_ENFAIL5 non renseigné + + + fr.insee + l4lmc52p-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lmc52p-CI-0-IP-1 + 1 + + AUT_PAR_ENFAIL5 + + + + + fr.insee + l4lmc52p-QOP-l4lmdw7z + 1 + OutParameter + + + fr.insee + l4lmc52p-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lmc52p-CI-0-IP-1) or l4lmc52p-CI-0-IP-1="" + + + + + fr.insee + l4ljxer7-CI-0 + 1 + + DORT_ENFAIL5 non renseigné + + + DORT_ENFAIL5 non renseigné + + + fr.insee + l4ljxer7-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ljxer7-CI-0-IP-1 + 1 + + DORT_ENFAIL5 + + + + + fr.insee + l4ljxer7-QOP-l4ljxwvx + 1 + OutParameter + + + fr.insee + l4ljxer7-CI-0-IP-1 + 1 + InParameter + + + isnull(l4ljxer7-CI-0-IP-1) or l4ljxer7-CI-0-IP-1="" + + + + + fr.insee + l4o7vzru-CI-0 + 1 + + SEP_AUT_PAR_ENFAIL5 non renseigné + + + SEP_AUT_PAR_ENFAIL5 non renseigné + + + fr.insee + l4o7vzru-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4o7vzru-CI-0-IP-1 + 1 + + SEP_AUT_PAR_ENFAIL5 + + + + + fr.insee + l4o7vzru-QOP-l4o80pka + 1 + OutParameter + + + fr.insee + l4o7vzru-CI-0-IP-1 + 1 + InParameter + + + isnull(l4o7vzru-CI-0-IP-1) or l4o7vzru-CI-0-IP-1="" + + + + + fr.insee + l4lms6u4-CI-0 + 1 + + RESID_ENFAIL5 non renseigné + + + RESID_ENFAIL5 non renseigné + + + fr.insee + l4lms6u4-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lms6u4-CI-0-IP-1 + 1 + + RESID_ENFAIL5 + + + + + fr.insee + l4lms6u4-QOP-l4ln2eva + 1 + OutParameter + + + fr.insee + l4lms6u4-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lms6u4-CI-0-IP-1) or l4lms6u4-CI-0-IP-1="" + + + + + fr.insee + l4ljcdar-CI-0 + 1 + + SANTE_ENFAIL5 non renseigné + + + SANTE_ENFAIL5 non renseigné + + + fr.insee + l4ljcdar-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ljcdar-CI-0-IP-1 + 1 + + SANTE_ENFAIL51 + + + + fr.insee + l4ljcdar-CI-0-IP-2 + 1 + + SANTE_ENFAIL52 + + + + fr.insee + l4ljcdar-CI-0-IP-3 + 1 + + SANTE_ENFAIL53 + + + + + fr.insee + l4ljcdar-QOP-lagyt3hb + 1 + OutParameter + + + fr.insee + l4ljcdar-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l4ljcdar-QOP-lagyitoa + 1 + OutParameter + + + fr.insee + l4ljcdar-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l4ljcdar-QOP-lagyycd1 + 1 + OutParameter + + + fr.insee + l4ljcdar-CI-0-IP-3 + 1 + InParameter + + + (nvl(l4ljcdar-CI-0-IP-1, false) = false and nvl(l4ljcdar-CI-0-IP-2, false) = false and nvl(l4ljcdar-CI-0-IP-3, false) = false ) + + + + + fr.insee + l8oign0h-CI-0 + 1 + + PRENOM_ENFAIL6 non renseigné + + + PRENOM_ENFAIL6 non renseigné + + + fr.insee + l8oign0h-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oign0h-CI-0-IP-1 + 1 + + PRENOM_ENFAIL6 + + + + + fr.insee + l8oign0h-QOP-l8oifcrp + 1 + OutParameter + + + fr.insee + l8oign0h-CI-0-IP-1 + 1 + InParameter + + + isnull(l8oign0h-CI-0-IP-1) or l8oign0h-CI-0-IP-1="" + + + + + fr.insee + l8oi92w4-CI-0 + 1 + + SEXE_ENFAIL6 non renseigné + + + SEXE_ENFAIL6 non renseigné + + + fr.insee + l8oi92w4-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oi92w4-CI-0-IP-1 + 1 + + SEXE_ENFAIL6 + + + + + fr.insee + l8oi92w4-QOP-l8oihhrs + 1 + OutParameter + + + fr.insee + l8oi92w4-CI-0-IP-1 + 1 + InParameter + + + isnull(l8oi92w4-CI-0-IP-1) or l8oi92w4-CI-0-IP-1="" + + + + + fr.insee + l8oi7q9f-CI-0 + 1 + + ANAI_ENFAIL6 non renseigné + + + ANAI_ENFAIL6 non renseigné + + + fr.insee + l8oi7q9f-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oi7q9f-CI-0-IP-1 + 1 + + ANAI_ENFAIL6 + + + + + fr.insee + l8oi7q9f-QOP-l8oijkad + 1 + OutParameter + + + fr.insee + l8oi7q9f-CI-0-IP-1 + 1 + InParameter + + + isnull(l8oi7q9f-CI-0-IP-1) or l8oi7q9f-CI-0-IP-1="" + + + + + fr.insee + l8oi7q9f-CI-1 + 1 + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + fr.insee + l8oi7q9f-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oi7q9f-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l8oi7q9f-CI-1-IP-2 + 1 + + ANAI_ENFAIL6 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l8oi7q9f-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l8oi7q9f-QOP-l8oijkad + 1 + OutParameter + + + fr.insee + l8oi7q9f-CI-1-IP-2 + 1 + InParameter + + + not(isnull(l8oi7q9f-CI-1-IP-2)) and not(isnull(l8oi7q9f-CI-1-IP-1)) and (cast(l8oi7q9f-CI-1-IP-1,integer) + 15 > cast(l8oi7q9f-CI-1-IP-2,integer)) + + + + + fr.insee + l8oi7q9f-CI-2 + 1 + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + fr.insee + l8oi7q9f-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oi7q9f-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l8oi7q9f-CI-2-IP-2 + 1 + + ANAI_ENFAIL6 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l8oi7q9f-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l8oi7q9f-QOP-l8oijkad + 1 + OutParameter + + + fr.insee + l8oi7q9f-CI-2-IP-2 + 1 + InParameter + + + not(isnull(l8oi7q9f-CI-2-IP-2)) and not(isnull(l8oi7q9f-CI-2-IP-1)) and cast(l8oi7q9f-CI-2-IP-2,integer) < cast(l8oi7q9f-CI-2-IP-1,integer) + + + + + fr.insee + l8oi7q9f-CI-3 + 1 + + bornes ANAI_ENFAIL6 + + + bornes ANAI_ENFAIL6 + + + fr.insee + l8oi7q9f-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oi7q9f-CI-3-IP-1 + 1 + + ANAI_ENFAIL6 + + + + + fr.insee + l8oi7q9f-QOP-l8oijkad + 1 + OutParameter + + + fr.insee + l8oi7q9f-CI-3-IP-1 + 1 + InParameter + + + cast(l8oi7q9f-CI-3-IP-1,integer) < 1920 or cast(l8oi7q9f-CI-3-IP-1,integer) > 2024 + + + + + fr.insee + l8oientz-CI-0 + 1 + + NEFRANCE_ENFAIL6 non renseigné + + + NEFRANCE_ENFAIL6 non renseigné + + + fr.insee + l8oientz-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oientz-CI-0-IP-1 + 1 + + NEFRANCE_ENFAIL6 + + + + + fr.insee + l8oientz-QOP-l8oib8l6 + 1 + OutParameter + + + fr.insee + l8oientz-CI-0-IP-1 + 1 + InParameter + + + isnull(l8oientz-CI-0-IP-1) or l8oientz-CI-0-IP-1="" + + + + + fr.insee + l8oidc2m-CI-0 + 1 + + PARENT_VIT_ENFAIL6 non renseigné + + + PARENT_VIT_ENFAIL6 non renseigné + + + fr.insee + l8oidc2m-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oidc2m-CI-0-IP-1 + 1 + + PARENT_VIT_ENFAIL6 + + + + + fr.insee + l8oidc2m-QOP-l8ohy4u9 + 1 + OutParameter + + + fr.insee + l8oidc2m-CI-0-IP-1 + 1 + InParameter + + + isnull(l8oidc2m-CI-0-IP-1) or l8oidc2m-CI-0-IP-1="" + + + + + fr.insee + l8oib75g-CI-0 + 1 + + PARENT_VECU_ENFAIL6 non renseigné + + + PARENT_VECU_ENFAIL6 non renseigné + + + fr.insee + l8oib75g-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oib75g-CI-0-IP-1 + 1 + + PARENT_VECU_ENFAIL6 + + + + + fr.insee + l8oib75g-QOP-l8oi8s9r + 1 + OutParameter + + + fr.insee + l8oib75g-CI-0-IP-1 + 1 + InParameter + + + isnull(l8oib75g-CI-0-IP-1) or l8oib75g-CI-0-IP-1="" + + + + + fr.insee + l8ohus0v-CI-0 + 1 + + DC_ENFAIL6 non renseigné + + + DC_ENFAIL6 non renseigné + + + fr.insee + l8ohus0v-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ohus0v-CI-0-IP-1 + 1 + + DC_ENFAIL6 + + + + + fr.insee + l8ohus0v-QOP-l8oi6wxh + 1 + OutParameter + + + fr.insee + l8ohus0v-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ohus0v-CI-0-IP-1) or l8ohus0v-CI-0-IP-1="" + + + + + fr.insee + l8ohrpn7-CI-0 + 1 + + AG_DC_ENFAIL6 non renseigné + + + AG_DC_ENFAIL6 non renseigné + + + fr.insee + l8ohrpn7-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ohrpn7-CI-0-IP-1 + 1 + + AG_DC_ENFAIL6 + + + + + fr.insee + l8ohrpn7-QOP-l8ohwfm9 + 1 + OutParameter + + + fr.insee + l8ohrpn7-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ohrpn7-CI-0-IP-1) or l8ohrpn7-CI-0-IP-1="" + + + + + fr.insee + l8ohrpn7-CI-1 + 1 + + "L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge." + + + "L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge." + + + fr.insee + l8ohrpn7-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ohrpn7-CI-1-IP-1 + 1 + + AG_ENFAIL6 + + + + fr.insee + l8ohrpn7-CI-1-IP-2 + 1 + + AG_DC_ENFAIL6 + + + + + fr.insee + ljog3bu3-GOP + 1 + OutParameter + + + fr.insee + l8ohrpn7-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l8ohrpn7-QOP-l8ohwfm9 + 1 + OutParameter + + + fr.insee + l8ohrpn7-CI-1-IP-2 + 1 + InParameter + + + not(isnull(l8ohrpn7-CI-1-IP-1)) and not (isnull(l8ohrpn7-CI-1-IP-2)) and cast(l8ohrpn7-CI-1-IP-2,integer) > cast(l8ohrpn7-CI-1-IP-1,integer) + + + + + fr.insee + l8ohwpt9-CI-0 + 1 + + AG_DEPART_ENFAIL6 non renseigné + + + AG_DEPART_ENFAIL6 non renseigné + + + fr.insee + l8ohwpt9-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ohwpt9-CI-0-IP-1 + 1 + + AG_DEPART_ENFAIL6 + + + + + fr.insee + l8ohwpt9-QOP-l8ohnljo + 1 + OutParameter + + + fr.insee + l8ohwpt9-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ohwpt9-CI-0-IP-1) or l8ohwpt9-CI-0-IP-1="" + + + + + fr.insee + l8ohwpt9-CI-1 + 1 + + "L'âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge." + + + "L'âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge." + + + fr.insee + l8ohwpt9-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ohwpt9-CI-1-IP-1 + 1 + + AG_ENFAIL6 + + + + fr.insee + l8ohwpt9-CI-1-IP-2 + 1 + + ANAI_ENFAIL6 + + + + fr.insee + l8ohwpt9-CI-1-IP-3 + 1 + + AG_DEPART_ENFAIL6 + + + + + fr.insee + ljog3bu3-GOP + 1 + OutParameter + + + fr.insee + l8ohwpt9-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l8oi7q9f-QOP-l8oijkad + 1 + OutParameter + + + fr.insee + l8ohwpt9-CI-1-IP-2 + 1 + InParameter + + + + + fr.insee + l8ohwpt9-QOP-l8ohnljo + 1 + OutParameter + + + fr.insee + l8ohwpt9-CI-1-IP-3 + 1 + InParameter + + + not(isnull(l8ohwpt9-CI-1-IP-3)) and not(isnull(l8ohwpt9-CI-1-IP-2)) and l8ohwpt9-CI-1-IP-3 > l8ohwpt9-CI-1-IP-1 + + + + + fr.insee + l8oh46rn-CI-0 + 1 + + PARENT_FREQ_ENFAIL6 non renseigné + + + PARENT_FREQ_ENFAIL6 non renseigné + + + fr.insee + l8oh46rn-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oh46rn-CI-0-IP-1 + 1 + + PARENT_FREQ_ENFAIL6 + + + + + fr.insee + l8oh46rn-QOP-l8oh8ggp + 1 + OutParameter + + + fr.insee + l8oh46rn-CI-0-IP-1 + 1 + InParameter + + + isnull(l8oh46rn-CI-0-IP-1) or l8oh46rn-CI-0-IP-1="" + + + + + fr.insee + l8ogysyp-CI-0 + 1 + + FR_ENFAIL6 non renseigné + + + FR_ENFAIL6 non renseigné + + + fr.insee + l8ogysyp-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ogysyp-CI-0-IP-1 + 1 + + FR_ENFAIL6 + + + + + fr.insee + l8ogysyp-QOP-l8ogwc5d + 1 + OutParameter + + + fr.insee + l8ogysyp-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ogysyp-CI-0-IP-1) or l8ogysyp-CI-0-IP-1="" + + + + + fr.insee + l8ogp9jo-CI-0 + 1 + + DEP_ENFAIL6 non renseigné + + + DEP_ENFAIL6 non renseigné + + + fr.insee + l8ogp9jo-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ogp9jo-CI-0-IP-1 + 1 + + DEP_ENFAIL6 + + + + + fr.insee + l8ogp9jo-QOP-llvz1v15 + 1 + OutParameter + + + fr.insee + l8ogp9jo-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ogp9jo-CI-0-IP-1) or l8ogp9jo-CI-0-IP-1="" + + + + + fr.insee + l8ogqig3-CI-0 + 1 + + COM_ENFAIL6 non renseigné + + + COM_ENFAIL6 non renseigné + + + fr.insee + l8ogqig3-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ogqig3-CI-0-IP-1 + 1 + + COM_ENFAIL6 + + + + + fr.insee + l8ogqig3-QOP-llvzas4q + 1 + OutParameter + + + fr.insee + l8ogqig3-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ogqig3-CI-0-IP-1) or l8ogqig3-CI-0-IP-1="" + + + + + fr.insee + l8ogpnbn-CI-0 + 1 + + PAY_ENFAIL6 non renseigné + + + PAY_ENFAIL6 non renseigné + + + fr.insee + l8ogpnbn-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ogpnbn-CI-0-IP-1 + 1 + + PAY_ENFAIL6 + + + + + fr.insee + l8ogpnbn-QOP-llvz3tao + 1 + OutParameter + + + fr.insee + l8ogpnbn-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ogpnbn-CI-0-IP-1) or l8ogpnbn-CI-0-IP-1="" + + + + + fr.insee + l8ogukpt-CI-0 + 1 + + LOG_ENFAIL6 non renseigné + + + LOG_ENFAIL6 non renseigné + + + fr.insee + l8ogukpt-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ogukpt-CI-0-IP-1 + 1 + + LOG_ENFAIL6 + + + + + fr.insee + l8ogukpt-QOP-l8ogy42h + 1 + OutParameter + + + fr.insee + l8ogukpt-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ogukpt-CI-0-IP-1) or l8ogukpt-CI-0-IP-1="" + + + + + fr.insee + l8ob0dk4-CI-0 + 1 + + AUT_PAR_ENFAIL6 non renseigné + + + AUT_PAR_ENFAIL6 non renseigné + + + fr.insee + l8ob0dk4-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ob0dk4-CI-0-IP-1 + 1 + + AUT_PAR_ENFAIL6 + + + + + fr.insee + l8ob0dk4-QOP-l8oakgr4 + 1 + OutParameter + + + fr.insee + l8ob0dk4-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ob0dk4-CI-0-IP-1) or l8ob0dk4-CI-0-IP-1="" + + + + + fr.insee + l8oarkxm-CI-0 + 1 + + DORT_ENFAIL6 non renseigné + + + DORT_ENFAIL6 non renseigné + + + fr.insee + l8oarkxm-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oarkxm-CI-0-IP-1 + 1 + + DORT_ENFAIL6 + + + + + fr.insee + l8oarkxm-QOP-l8oaqk9w + 1 + OutParameter + + + fr.insee + l8oarkxm-CI-0-IP-1 + 1 + InParameter + + + isnull(l8oarkxm-CI-0-IP-1) or l8oarkxm-CI-0-IP-1="" + + + + + fr.insee + l8oaqbj5-CI-0 + 1 + + SEP_AUT_PAR_ENFAIL6 non renseigné + + + SEP_AUT_PAR_ENFAIL6 non renseigné + + + fr.insee + l8oaqbj5-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oaqbj5-CI-0-IP-1 + 1 + + SEP_AUT_PAR_ENFAIL6 + + + + + fr.insee + l8oaqbj5-QOP-l8ob57h3 + 1 + OutParameter + + + fr.insee + l8oaqbj5-CI-0-IP-1 + 1 + InParameter + + + isnull(l8oaqbj5-CI-0-IP-1) or l8oaqbj5-CI-0-IP-1="" + + + + + fr.insee + l8oanpzw-CI-0 + 1 + + RESID_ENFAIL6 non renseigné + + + RESID_ENFAIL6 non renseigné + + + fr.insee + l8oanpzw-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oanpzw-CI-0-IP-1 + 1 + + RESID_ENFAIL6 + + + + + fr.insee + l8oanpzw-QOP-l8oayvjg + 1 + OutParameter + + + fr.insee + l8oanpzw-CI-0-IP-1 + 1 + InParameter + + + isnull(l8oanpzw-CI-0-IP-1) or l8oanpzw-CI-0-IP-1="" + + + + + fr.insee + l8oasgat-CI-0 + 1 + + SANTE_ENFAIL6 non renseigné + + + SANTE_ENFAIL6 non renseigné + + + fr.insee + l8oasgat-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oasgat-CI-0-IP-1 + 1 + + SANTE_ENFAIL61 + + + + fr.insee + l8oasgat-CI-0-IP-2 + 1 + + SANTE_ENFAIL62 + + + + fr.insee + l8oasgat-CI-0-IP-3 + 1 + + SANTE_ENFAIL63 + + + + + fr.insee + l8oasgat-QOP-lagyuenn + 1 + OutParameter + + + fr.insee + l8oasgat-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l8oasgat-QOP-lagyvzmn + 1 + OutParameter + + + fr.insee + l8oasgat-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l8oasgat-QOP-lagyviqg + 1 + OutParameter + + + fr.insee + l8oasgat-CI-0-IP-3 + 1 + InParameter + + + (nvl(l8oasgat-CI-0-IP-1, false) = false and nvl(l8oasgat-CI-0-IP-2, false) = false and nvl(l8oasgat-CI-0-IP-3, false) = false ) + + + + + fr.insee + l8ok9kmj-CI-0 + 1 + + PRENOM_ENFAIL7 non renseigné + + + PRENOM_ENFAIL7 non renseigné + + + fr.insee + l8ok9kmj-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ok9kmj-CI-0-IP-1 + 1 + + PRENOM_ENFAIL7 + + + + + fr.insee + l8ok9kmj-QOP-l8okjmzy + 1 + OutParameter + + + fr.insee + l8ok9kmj-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ok9kmj-CI-0-IP-1) or l8ok9kmj-CI-0-IP-1="" + + + + + fr.insee + l8okbmv3-CI-0 + 1 + + SEXE_ENFAIL7 non renseigné + + + SEXE_ENFAIL7 non renseigné + + + fr.insee + l8okbmv3-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8okbmv3-CI-0-IP-1 + 1 + + SEXE_ENFAIL7 + + + + + fr.insee + l8okbmv3-QOP-l8ok3iy5 + 1 + OutParameter + + + fr.insee + l8okbmv3-CI-0-IP-1 + 1 + InParameter + + + isnull(l8okbmv3-CI-0-IP-1) or l8okbmv3-CI-0-IP-1="" + + + + + fr.insee + l8okh65e-CI-0 + 1 + + ANAI_ENFAIL7 non renseigné + + + ANAI_ENFAIL7 non renseigné + + + fr.insee + l8okh65e-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8okh65e-CI-0-IP-1 + 1 + + ANAI_ENFAIL7 + + + + + fr.insee + l8okh65e-QOP-l8okdvkx + 1 + OutParameter + + + fr.insee + l8okh65e-CI-0-IP-1 + 1 + InParameter + + + isnull(l8okh65e-CI-0-IP-1) or l8okh65e-CI-0-IP-1="" + + + + + fr.insee + l8okh65e-CI-1 + 1 + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + fr.insee + l8okh65e-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8okh65e-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l8okh65e-CI-1-IP-2 + 1 + + ANAI_ENFAIL7 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l8okh65e-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l8okh65e-QOP-l8okdvkx + 1 + OutParameter + + + fr.insee + l8okh65e-CI-1-IP-2 + 1 + InParameter + + + not(isnull(l8okh65e-CI-1-IP-2)) and not(isnull(l8okh65e-CI-1-IP-1)) and cast(l8okh65e-CI-1-IP-2,integer) < cast(l8okh65e-CI-1-IP-1,integer) + + + + + fr.insee + l8okh65e-CI-2 + 1 + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + fr.insee + l8okh65e-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8okh65e-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l8okh65e-CI-2-IP-2 + 1 + + ANAI_ENFAIL7 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l8okh65e-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l8okh65e-QOP-l8okdvkx + 1 + OutParameter + + + fr.insee + l8okh65e-CI-2-IP-2 + 1 + InParameter + + + not(isnull(l8okh65e-CI-2-IP-2)) and not(isnull(l8okh65e-CI-2-IP-1)) and (cast(l8okh65e-CI-2-IP-1,integer) + 15 > cast(l8okh65e-CI-2-IP-2,integer)) + + + + + fr.insee + l8okh65e-CI-3 + 1 + + bornes ANAI_ENFAIL7 + + + bornes ANAI_ENFAIL7 + + + fr.insee + l8okh65e-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8okh65e-CI-3-IP-1 + 1 + + ANAI_ENFAIL7 + + + + + fr.insee + l8okh65e-QOP-l8okdvkx + 1 + OutParameter + + + fr.insee + l8okh65e-CI-3-IP-1 + 1 + InParameter + + + cast(l8okh65e-CI-3-IP-1,integer) < 1920 or cast(l8okh65e-CI-3-IP-1,integer) > 2024 + + + + + fr.insee + l8okc5z9-CI-0 + 1 + + NEFRANCE_ENFAIL7 non renseigné + + + NEFRANCE_ENFAIL7 non renseigné + + + fr.insee + l8okc5z9-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8okc5z9-CI-0-IP-1 + 1 + + NEFRANCE_ENFAIL7 + + + + + fr.insee + l8okc5z9-QOP-l8ok6z0e + 1 + OutParameter + + + fr.insee + l8okc5z9-CI-0-IP-1 + 1 + InParameter + + + isnull(l8okc5z9-CI-0-IP-1) or l8okc5z9-CI-0-IP-1="" + + + + + fr.insee + l8okdoof-CI-0 + 1 + + PARENT_VIT_ENFAIL7 non renseigné + + + PARENT_VIT_ENFAIL7 non renseigné + + + fr.insee + l8okdoof-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8okdoof-CI-0-IP-1 + 1 + + PARENT_VIT_ENFAIL7 + + + + + fr.insee + l8okdoof-QOP-l8ojuyat + 1 + OutParameter + + + fr.insee + l8okdoof-CI-0-IP-1 + 1 + InParameter + + + isnull(l8okdoof-CI-0-IP-1) or l8okdoof-CI-0-IP-1="" + + + + + fr.insee + l8ok0d4y-CI-0 + 1 + + PARENT_VECU_ENFAIL7 non renseigné + + + PARENT_VECU_ENFAIL7 non renseigné + + + fr.insee + l8ok0d4y-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ok0d4y-CI-0-IP-1 + 1 + + PARENT_VECU_ENFAIL7 + + + + + fr.insee + l8ok0d4y-QOP-l8ojxc00 + 1 + OutParameter + + + fr.insee + l8ok0d4y-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ok0d4y-CI-0-IP-1) or l8ok0d4y-CI-0-IP-1="" + + + + + fr.insee + l8ok0acp-CI-0 + 1 + + DC_ENFAIL7 non renseigné + + + DC_ENFAIL7 non renseigné + + + fr.insee + l8ok0acp-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ok0acp-CI-0-IP-1 + 1 + + DC_ENFAIL7 + + + + + fr.insee + l8ok0acp-QOP-l8ok9idc + 1 + OutParameter + + + fr.insee + l8ok0acp-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ok0acp-CI-0-IP-1) or l8ok0acp-CI-0-IP-1="" + + + + + fr.insee + l8ojs3vl-CI-0 + 1 + + AG_DC_ENFAIL7 non renseigné + + + AG_DC_ENFAIL7 non renseigné + + + fr.insee + l8ojs3vl-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ojs3vl-CI-0-IP-1 + 1 + + AG_DC_ENFAIL7 + + + + + fr.insee + l8ojs3vl-QOP-l8ojtruw + 1 + OutParameter + + + fr.insee + l8ojs3vl-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ojs3vl-CI-0-IP-1) or l8ojs3vl-CI-0-IP-1="" + + + + + fr.insee + l8ojs3vl-CI-1 + 1 + + "L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge." + + + "L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge." + + + fr.insee + l8ojs3vl-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ojs3vl-CI-1-IP-1 + 1 + + AG_ENFAIL7 + + + + fr.insee + l8ojs3vl-CI-1-IP-2 + 1 + + AG_DC_ENFAIL7 + + + + + fr.insee + ljog3j43-GOP + 1 + OutParameter + + + fr.insee + l8ojs3vl-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l8ojs3vl-QOP-l8ojtruw + 1 + OutParameter + + + fr.insee + l8ojs3vl-CI-1-IP-2 + 1 + InParameter + + + not(isnull(l8ojs3vl-CI-1-IP-1)) and not (isnull(l8ojs3vl-CI-1-IP-2)) and cast(l8ojs3vl-CI-1-IP-2,integer) > cast(l8ojs3vl-CI-1-IP-1,integer) + + + + + fr.insee + l8ojuhud-CI-0 + 1 + + AG_DEPART_ENFAIL7 non renseigné + + + AG_DEPART_ENFAIL7 non renseigné + + + fr.insee + l8ojuhud-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ojuhud-CI-0-IP-1 + 1 + + AG_DEPART_ENFAIL7 + + + + + fr.insee + l8ojuhud-QOP-l8ojvwk7 + 1 + OutParameter + + + fr.insee + l8ojuhud-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ojuhud-CI-0-IP-1) or l8ojuhud-CI-0-IP-1="" + + + + + fr.insee + l8ojuhud-CI-1 + 1 + + "L'âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge." + + + "L'âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge." + + + fr.insee + l8ojuhud-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ojuhud-CI-1-IP-1 + 1 + + AG_ENFAIL7 + + + + fr.insee + l8ojuhud-CI-1-IP-2 + 1 + + ANAI_ENFAIL7 + + + + fr.insee + l8ojuhud-CI-1-IP-3 + 1 + + AG_DEPART_ENFAIL7 + + + + + fr.insee + ljog3j43-GOP + 1 + OutParameter + + + fr.insee + l8ojuhud-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l8okh65e-QOP-l8okdvkx + 1 + OutParameter + + + fr.insee + l8ojuhud-CI-1-IP-2 + 1 + InParameter + + + + + fr.insee + l8ojuhud-QOP-l8ojvwk7 + 1 + OutParameter + + + fr.insee + l8ojuhud-CI-1-IP-3 + 1 + InParameter + + + not(isnull(l8ojuhud-CI-1-IP-3)) and not(isnull(l8ojuhud-CI-1-IP-2)) and l8ojuhud-CI-1-IP-3 > l8ojuhud-CI-1-IP-1 + + + + + fr.insee + l8ojmjws-CI-0 + 1 + + PARENT_FREQ_ENFAIL7 non renseigné + + + PARENT_FREQ_ENFAIL7 non renseigné + + + fr.insee + l8ojmjws-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ojmjws-CI-0-IP-1 + 1 + + PARENT_FREQ_ENFAIL7 + + + + + fr.insee + l8ojmjws-QOP-l8ojhru1 + 1 + OutParameter + + + fr.insee + l8ojmjws-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ojmjws-CI-0-IP-1) or l8ojmjws-CI-0-IP-1="" + + + + + fr.insee + l8oj98gw-CI-0 + 1 + + FR_ENFAIL7 non renseigné + + + FR_ENFAIL7 non renseigné + + + fr.insee + l8oj98gw-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oj98gw-CI-0-IP-1 + 1 + + FR_ENFAIL7 + + + + + fr.insee + l8oj98gw-QOP-l8ojo8na + 1 + OutParameter + + + fr.insee + l8oj98gw-CI-0-IP-1 + 1 + InParameter + + + isnull(l8oj98gw-CI-0-IP-1) or l8oj98gw-CI-0-IP-1="" + + + + + fr.insee + l8ojb4ub-CI-0 + 1 + + DEP_ENFAIL7 non renseigné + + + DEP_ENFAIL7 non renseigné + + + fr.insee + l8ojb4ub-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ojb4ub-CI-0-IP-1 + 1 + + DEP_ENFAIL7 + + + + + fr.insee + l8ojb4ub-QOP-llvzaolo + 1 + OutParameter + + + fr.insee + l8ojb4ub-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ojb4ub-CI-0-IP-1) or l8ojb4ub-CI-0-IP-1="" + + + + + fr.insee + l8ojczfv-CI-0 + 1 + + COM_ENFAIL7 non renseigné + + + COM_ENFAIL7 non renseigné + + + fr.insee + l8ojczfv-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ojczfv-CI-0-IP-1 + 1 + + COM_ENFAIL7 + + + + + fr.insee + l8ojczfv-QOP-llvz57ns + 1 + OutParameter + + + fr.insee + l8ojczfv-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ojczfv-CI-0-IP-1) or l8ojczfv-CI-0-IP-1="" + + + + + fr.insee + l8ojif3m-CI-0 + 1 + + PAY_ENFAIL7 non renseigné + + + PAY_ENFAIL7 non renseigné + + + fr.insee + l8ojif3m-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ojif3m-CI-0-IP-1 + 1 + + PAY_ENFAIL7 + + + + + fr.insee + l8ojif3m-QOP-llvyqwz8 + 1 + OutParameter + + + fr.insee + l8ojif3m-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ojif3m-CI-0-IP-1) or l8ojif3m-CI-0-IP-1="" + + + + + fr.insee + l8oja1pz-CI-0 + 1 + + LOG_ENFAIL7 non renseigné + + + LOG_ENFAIL7 non renseigné + + + fr.insee + l8oja1pz-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oja1pz-CI-0-IP-1 + 1 + + LOG_ENFAIL7 + + + + + fr.insee + l8oja1pz-QOP-l8oj6h19 + 1 + OutParameter + + + fr.insee + l8oja1pz-CI-0-IP-1 + 1 + InParameter + + + isnull(l8oja1pz-CI-0-IP-1) or l8oja1pz-CI-0-IP-1="" + + + + + fr.insee + l8oiinpy-CI-0 + 1 + + AUT_PAR_ENFAIL7 non renseigné + + + AUT_PAR_ENFAIL7 non renseigné + + + fr.insee + l8oiinpy-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oiinpy-CI-0-IP-1 + 1 + + AUT_PAR_ENFAIL7 + + + + + fr.insee + l8oiinpy-QOP-l8oia0f4 + 1 + OutParameter + + + fr.insee + l8oiinpy-CI-0-IP-1 + 1 + InParameter + + + isnull(l8oiinpy-CI-0-IP-1) or l8oiinpy-CI-0-IP-1="" + + + + + fr.insee + l8oj67fo-CI-0 + 1 + + DORT_ENFAIL7 non renseigné + + + DORT_ENFAIL7 non renseigné + + + fr.insee + l8oj67fo-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oj67fo-CI-0-IP-1 + 1 + + DORT_ENFAIL7 + + + + + fr.insee + l8oj67fo-QOP-l8oiz02v + 1 + OutParameter + + + fr.insee + l8oj67fo-CI-0-IP-1 + 1 + InParameter + + + isnull(l8oj67fo-CI-0-IP-1) or l8oj67fo-CI-0-IP-1="" + + + + + fr.insee + l8oiu9ax-CI-0 + 1 + + SEP_AUT_PAR_ENFAIL7 non renseigné + + + SEP_AUT_PAR_ENFAIL7 non renseigné + + + fr.insee + l8oiu9ax-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oiu9ax-CI-0-IP-1 + 1 + + SEP_AUT_PAR_ENFAIL7 + + + + + fr.insee + l8oiu9ax-QOP-l8oimcso + 1 + OutParameter + + + fr.insee + l8oiu9ax-CI-0-IP-1 + 1 + InParameter + + + isnull(l8oiu9ax-CI-0-IP-1) or l8oiu9ax-CI-0-IP-1="" + + + + + fr.insee + l8oicj6e-CI-0 + 1 + + RESID_ENFAIL7 non renseigné + + + RESID_ENFAIL7 non renseigné + + + fr.insee + l8oicj6e-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oicj6e-CI-0-IP-1 + 1 + + RESID_ENFAIL7 + + + + + fr.insee + l8oicj6e-QOP-l8oirvyk + 1 + OutParameter + + + fr.insee + l8oicj6e-CI-0-IP-1 + 1 + InParameter + + + isnull(l8oicj6e-CI-0-IP-1) or l8oicj6e-CI-0-IP-1="" + + + + + fr.insee + l8oizp0r-CI-0 + 1 + + SANTE_ENFAIL7 non renseigné + + + SANTE_ENFAIL7 non renseigné + + + fr.insee + l8oizp0r-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oizp0r-CI-0-IP-1 + 1 + + SANTE_ENFAIL71 + + + + fr.insee + l8oizp0r-CI-0-IP-2 + 1 + + SANTE_ENFAIL72 + + + + fr.insee + l8oizp0r-CI-0-IP-3 + 1 + + SANTE_ENFAIL73 + + + + + fr.insee + l8oizp0r-QOP-lagyku3m + 1 + OutParameter + + + fr.insee + l8oizp0r-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l8oizp0r-QOP-lagyel8m + 1 + OutParameter + + + fr.insee + l8oizp0r-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l8oizp0r-QOP-lagyk7tb + 1 + OutParameter + + + fr.insee + l8oizp0r-CI-0-IP-3 + 1 + InParameter + + + (nvl(l8oizp0r-CI-0-IP-1, false) = false and nvl(l8oizp0r-CI-0-IP-2, false) = false and nvl(l8oizp0r-CI-0-IP-3, false) = false ) + + + + + fr.insee + l8olci32-CI-0 + 1 + + PRENOM_ENFAIL8 non renseigné + + + PRENOM_ENFAIL8 non renseigné + + + fr.insee + l8olci32-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8olci32-CI-0-IP-1 + 1 + + PRENOM_ENFAIL8 + + + + + fr.insee + l8olci32-QOP-l8oln1gt + 1 + OutParameter + + + fr.insee + l8olci32-CI-0-IP-1 + 1 + InParameter + + + isnull(l8olci32-CI-0-IP-1) or l8olci32-CI-0-IP-1="" + + + + + fr.insee + l8olbhxj-CI-0 + 1 + + SEXE_ENFAIL8 non renseigné + + + SEXE_ENFAIL8 non renseigné + + + fr.insee + l8olbhxj-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8olbhxj-CI-0-IP-1 + 1 + + SEXE_ENFAIL8 + + + + + fr.insee + l8olbhxj-QOP-l8ol8o60 + 1 + OutParameter + + + fr.insee + l8olbhxj-CI-0-IP-1 + 1 + InParameter + + + isnull(l8olbhxj-CI-0-IP-1) or l8olbhxj-CI-0-IP-1="" + + + + + fr.insee + l8ol9xy3-CI-0 + 1 + + ANAI_ENFAIL8 non renseigné + + + ANAI_ENFAIL8 non renseigné + + + fr.insee + l8ol9xy3-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ol9xy3-CI-0-IP-1 + 1 + + ANAI_ENFAIL8 + + + + + fr.insee + l8ol9xy3-QOP-l8ol6h1q + 1 + OutParameter + + + fr.insee + l8ol9xy3-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ol9xy3-CI-0-IP-1) or l8ol9xy3-CI-0-IP-1="" + + + + + fr.insee + l8ol9xy3-CI-1 + 1 + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + fr.insee + l8ol9xy3-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ol9xy3-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l8ol9xy3-CI-1-IP-2 + 1 + + ANAI_ENFAIL8 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l8ol9xy3-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l8ol9xy3-QOP-l8ol6h1q + 1 + OutParameter + + + fr.insee + l8ol9xy3-CI-1-IP-2 + 1 + InParameter + + + not(isnull(l8ol9xy3-CI-1-IP-2)) and not(isnull(l8ol9xy3-CI-1-IP-1)) and (cast(l8ol9xy3-CI-1-IP-1,integer) + 15 > cast(l8ol9xy3-CI-1-IP-2,integer)) + + + + + fr.insee + l8ol9xy3-CI-2 + 1 + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + "L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance." + + + fr.insee + l8ol9xy3-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ol9xy3-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l8ol9xy3-CI-2-IP-2 + 1 + + ANAI_ENFAIL8 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l8ol9xy3-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l8ol9xy3-QOP-l8ol6h1q + 1 + OutParameter + + + fr.insee + l8ol9xy3-CI-2-IP-2 + 1 + InParameter + + + not(isnull(l8ol9xy3-CI-2-IP-2)) and not(isnull(l8ol9xy3-CI-2-IP-1)) and cast(l8ol9xy3-CI-2-IP-2,integer) < cast(l8ol9xy3-CI-2-IP-1,integer) + + + + + fr.insee + l8ol9xy3-CI-3 + 1 + + bornes ANAI_ENFAIL8 + + + bornes ANAI_ENFAIL8 + + + fr.insee + l8ol9xy3-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ol9xy3-CI-3-IP-1 + 1 + + ANAI_ENFAIL8 + + + + + fr.insee + l8ol9xy3-QOP-l8ol6h1q + 1 + OutParameter + + + fr.insee + l8ol9xy3-CI-3-IP-1 + 1 + InParameter + + + cast(l8ol9xy3-CI-3-IP-1,integer) < 1920 or cast(l8ol9xy3-CI-3-IP-1,integer) > 2024 + + + + + fr.insee + l8ola1mr-CI-0 + 1 + + NEFRANCE_ENFAIL8 non renseigné + + + NEFRANCE_ENFAIL8 non renseigné + + + fr.insee + l8ola1mr-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ola1mr-CI-0-IP-1 + 1 + + NEFRANCE_ENFAIL8 + + + + + fr.insee + l8ola1mr-QOP-l8olb2am + 1 + OutParameter + + + fr.insee + l8ola1mr-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ola1mr-CI-0-IP-1) or l8ola1mr-CI-0-IP-1="" + + + + + fr.insee + l8okz45l-CI-0 + 1 + + PARENT_VIT_ENFAIL8 non renseigné + + + PARENT_VIT_ENFAIL8 non renseigné + + + fr.insee + l8okz45l-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8okz45l-CI-0-IP-1 + 1 + + PARENT_VIT_ENFAIL8 + + + + + fr.insee + l8okz45l-QOP-l8olfzvu + 1 + OutParameter + + + fr.insee + l8okz45l-CI-0-IP-1 + 1 + InParameter + + + isnull(l8okz45l-CI-0-IP-1) or l8okz45l-CI-0-IP-1="" + + + + + fr.insee + l8ol369l-CI-0 + 1 + + PARENT_VECU_ENFAIL8 non renseigné + + + PARENT_VECU_ENFAIL8 non renseigné + + + fr.insee + l8ol369l-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ol369l-CI-0-IP-1 + 1 + + PARENT_VECU_ENFAIL8 + + + + + fr.insee + l8ol369l-QOP-l8okxkvv + 1 + OutParameter + + + fr.insee + l8ol369l-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ol369l-CI-0-IP-1) or l8ol369l-CI-0-IP-1="" + + + + + fr.insee + l8ole120-CI-0 + 1 + + DC_ENFAIL8 non renseigné + + + DC_ENFAIL8 non renseigné + + + fr.insee + l8ole120-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ole120-CI-0-IP-1 + 1 + + DC_ENFAIL8 + + + + + fr.insee + l8ole120-QOP-l8ol3o2i + 1 + OutParameter + + + fr.insee + l8ole120-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ole120-CI-0-IP-1) or l8ole120-CI-0-IP-1="" + + + + + fr.insee + l8olcd8n-CI-0 + 1 + + AG_DC_ENFAIL8 non renseigné + + + AG_DC_ENFAIL8 non renseigné + + + fr.insee + l8olcd8n-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8olcd8n-CI-0-IP-1 + 1 + + AG_DC_ENFAIL8 + + + + + fr.insee + l8olcd8n-QOP-l8oku4vn + 1 + OutParameter + + + fr.insee + l8olcd8n-CI-0-IP-1 + 1 + InParameter + + + isnull(l8olcd8n-CI-0-IP-1) or l8olcd8n-CI-0-IP-1="" + + + + + fr.insee + l8olcd8n-CI-1 + 1 + + "L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge." + + + "L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge." + + + fr.insee + l8olcd8n-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8olcd8n-CI-1-IP-1 + 1 + + AG_ENFAIL8 + + + + fr.insee + l8olcd8n-CI-1-IP-2 + 1 + + AG_DC_ENFAIL8 + + + + + fr.insee + ljogax1t-GOP + 1 + OutParameter + + + fr.insee + l8olcd8n-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l8olcd8n-QOP-l8oku4vn + 1 + OutParameter + + + fr.insee + l8olcd8n-CI-1-IP-2 + 1 + InParameter + + + not(isnull(l8olcd8n-CI-1-IP-1)) and not (isnull(l8olcd8n-CI-1-IP-2)) and cast(l8olcd8n-CI-1-IP-2,integer) > cast(l8olcd8n-CI-1-IP-1,integer) + + + + + fr.insee + l8ol84b7-CI-0 + 1 + + AG_DEPART_ENFAIL8 non renseigné + + + AG_DEPART_ENFAIL8 non renseigné + + + fr.insee + l8ol84b7-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ol84b7-CI-0-IP-1 + 1 + + AG_DEPART_ENFAIL8 + + + + + fr.insee + l8ol84b7-QOP-l8ol1ust + 1 + OutParameter + + + fr.insee + l8ol84b7-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ol84b7-CI-0-IP-1) or l8ol84b7-CI-0-IP-1="" + + + + + fr.insee + l8ol84b7-CI-1 + 1 + + L’âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge. + + + L’âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge. + + + fr.insee + l8ol84b7-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ol84b7-CI-1-IP-1 + 1 + + AG_ENFAIL8 + + + + fr.insee + l8ol84b7-CI-1-IP-2 + 1 + + ANAI_ENFAIL8 + + + + fr.insee + l8ol84b7-CI-1-IP-3 + 1 + + AG_DEPART_ENFAIL8 + + + + + fr.insee + ljogax1t-GOP + 1 + OutParameter + + + fr.insee + l8ol84b7-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l8ol9xy3-QOP-l8ol6h1q + 1 + OutParameter + + + fr.insee + l8ol84b7-CI-1-IP-2 + 1 + InParameter + + + + + fr.insee + l8ol84b7-QOP-l8ol1ust + 1 + OutParameter + + + fr.insee + l8ol84b7-CI-1-IP-3 + 1 + InParameter + + + not(isnull(l8ol84b7-CI-1-IP-3)) and not(isnull(l8ol84b7-CI-1-IP-2)) and l8ol84b7-CI-1-IP-3 > l8ol84b7-CI-1-IP-1 + + + + + fr.insee + l8okx7cd-CI-0 + 1 + + PARENT_FREQ_ENFAIL8 non renseigné + + + PARENT_FREQ_ENFAIL8 non renseigné + + + fr.insee + l8okx7cd-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8okx7cd-CI-0-IP-1 + 1 + + PARENT_FREQ_ENFAIL8 + + + + + fr.insee + l8okx7cd-QOP-l8ol3s4a + 1 + OutParameter + + + fr.insee + l8okx7cd-CI-0-IP-1 + 1 + InParameter + + + isnull(l8okx7cd-CI-0-IP-1) or l8okx7cd-CI-0-IP-1="" + + + + + fr.insee + l8okpxv8-CI-0 + 1 + + FR_ENFAIL8 non renseigné + + + FR_ENFAIL8 non renseigné + + + fr.insee + l8okpxv8-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8okpxv8-CI-0-IP-1 + 1 + + FR_ENFAIL8 + + + + + fr.insee + l8okpxv8-QOP-l8okk1db + 1 + OutParameter + + + fr.insee + l8okpxv8-CI-0-IP-1 + 1 + InParameter + + + isnull(l8okpxv8-CI-0-IP-1) or l8okpxv8-CI-0-IP-1="" + + + + + fr.insee + l8okue2t-CI-0 + 1 + + DEP_ENFAIL8 non renseigné + + + DEP_ENFAIL8 non renseigné + + + fr.insee + l8okue2t-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8okue2t-CI-0-IP-1 + 1 + + DEP_ENFAIL8 + + + + + fr.insee + l8okue2t-QOP-llvz6npr + 1 + OutParameter + + + fr.insee + l8okue2t-CI-0-IP-1 + 1 + InParameter + + + isnull(l8okue2t-CI-0-IP-1) or l8okue2t-CI-0-IP-1="" + + + + + fr.insee + l8okjfla-CI-0 + 1 + + COM_ENFAIL8 non renseigné + + + COM_ENFAIL8 non renseigné + + + fr.insee + l8okjfla-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8okjfla-CI-0-IP-1 + 1 + + COM_ENFAIL8 + + + + + fr.insee + l8okjfla-QOP-llvz0mdc + 1 + OutParameter + + + fr.insee + l8okjfla-CI-0-IP-1 + 1 + InParameter + + + isnull(l8okjfla-CI-0-IP-1) or l8okjfla-CI-0-IP-1="" + + + + + fr.insee + l8okxgwv-CI-0 + 1 + + PAY_ENFAIL8 non renseigné + + + PAY_ENFAIL8 non renseigné + + + fr.insee + l8okxgwv-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8okxgwv-CI-0-IP-1 + 1 + + PAY_ENFAIL8 + + + + + fr.insee + l8okxgwv-QOP-llvz12vx + 1 + OutParameter + + + fr.insee + l8okxgwv-CI-0-IP-1 + 1 + InParameter + + + isnul(l8okxgwv-CI-0-IP-1) or l8okxgwv-CI-0-IP-1="" + + + + + fr.insee + l8oksuft-CI-0 + 1 + + LOG_ENFAIL8 non renseigné + + + LOG_ENFAIL8 non renseigné + + + fr.insee + l8oksuft-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oksuft-CI-0-IP-1 + 1 + + LOG_ENFAIL8 + + + + + fr.insee + l8oksuft-QOP-l8okh5d0 + 1 + OutParameter + + + fr.insee + l8oksuft-CI-0-IP-1 + 1 + InParameter + + + isnull(l8oksuft-CI-0-IP-1) or l8oksuft-CI-0-IP-1="" + + + + + fr.insee + l8okked6-CI-0 + 1 + + AUT_PAR_ENFAIL8 non renseigné + + + AUT_PAR_ENFAIL8 non renseigné + + + fr.insee + l8okked6-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8okked6-CI-0-IP-1 + 1 + + AUT_PAR_ENFAIL8 + + + + + fr.insee + l8okked6-QOP-l8okd51b + 1 + OutParameter + + + fr.insee + l8okked6-CI-0-IP-1 + 1 + InParameter + + + isnull(l8okked6-CI-0-IP-1) or l8okked6-CI-0-IP-1="" + + + + + fr.insee + l8okkkef-CI-0 + 1 + + DORT_ENFAIL8 non renseigné + + + DORT_ENFAIL8 non renseigné + + + fr.insee + l8okkkef-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8okkkef-CI-0-IP-1 + 1 + + DORT_ENFAIL8 + + + + + fr.insee + l8okkkef-QOP-l8oktkgp + 1 + OutParameter + + + fr.insee + l8okkkef-CI-0-IP-1 + 1 + InParameter + + + isnull(l8okkkef-CI-0-IP-1) or l8okkkef-CI-0-IP-1="" + + + + + fr.insee + l8okfvhy-CI-0 + 1 + + SEP_AUT_PAR_ENFAIL8 non renseigné + + + SEP_AUT_PAR_ENFAIL8 non renseigné + + + fr.insee + l8okfvhy-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8okfvhy-CI-0-IP-1 + 1 + + SEP_AUT_PAR_ENFAIL8 + + + + + fr.insee + l8okfvhy-QOP-l8oke48c + 1 + OutParameter + + + fr.insee + l8okfvhy-CI-0-IP-1 + 1 + InParameter + + + isnull(l8okfvhy-CI-0-IP-1) or l8okfvhy-CI-0-IP-1="" + + + + + fr.insee + l8okioqc-CI-0 + 1 + + RESID_ENFAIL8 non renseigné + + + RESID_ENFAIL8 non renseigné + + + fr.insee + l8okioqc-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8okioqc-CI-0-IP-1 + 1 + + RESID_ENFAIL8 + + + + + fr.insee + l8okioqc-QOP-l8oksr34 + 1 + OutParameter + + + fr.insee + l8okioqc-CI-0-IP-1 + 1 + InParameter + + + isnull(l8okioqc-CI-0-IP-1) or l8okioqc-CI-0-IP-1="" + + + + + fr.insee + l8oklb21-CI-0 + 1 + + SANTE_ENFAIL8 non renseigné + + + SANTE_ENFAIL8 non renseigné + + + fr.insee + l8oklb21-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oklb21-CI-0-IP-1 + 1 + + SANTE_ENFAIL81 + + + + fr.insee + l8oklb21-CI-0-IP-2 + 1 + + SANTE_ENFAIL82 + + + + fr.insee + l8oklb21-CI-0-IP-3 + 1 + + SANTE_ENFAIL83 + + + + + fr.insee + l8oklb21-QOP-lagyjvmi + 1 + OutParameter + + + fr.insee + l8oklb21-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l8oklb21-QOP-lagynhci + 1 + OutParameter + + + fr.insee + l8oklb21-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l8oklb21-QOP-lagyehg2 + 1 + OutParameter + + + fr.insee + l8oklb21-CI-0-IP-3 + 1 + InParameter + + + (nvl(l8oklb21-CI-0-IP-1, false) = false and nvl(l8oklb21-CI-0-IP-2, false) = false and nvl(l8oklb21-CI-0-IP-3, false) = false ) + + + + + fr.insee + l1f6a3qv-CI-0 + 1 + + PETIT_ENF non renseigné + + + PETIT_ENF non renseigné + + + fr.insee + l1f6a3qv-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1f6a3qv-CI-0-IP-1 + 1 + + PETIT_ENF + + + + + fr.insee + l1f6a3qv-QOP-l1f67xik + 1 + OutParameter + + + fr.insee + l1f6a3qv-CI-0-IP-1 + 1 + InParameter + + + isnull(l1f6a3qv-CI-0-IP-1) or l1f6a3qv-CI-0-IP-1="" + + + + + fr.insee + l1f6dz1j-CI-0 + 1 + + NB_PETIT_ENF non renseigné + + + NB_PETIT_ENF non renseigné + + + fr.insee + l1f6dz1j-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1f6dz1j-CI-0-IP-1 + 1 + + NB_PETIT_ENF + + + + + fr.insee + l1f6dz1j-QOP-l1f6aqky + 1 + OutParameter + + + fr.insee + l1f6dz1j-CI-0-IP-1 + 1 + InParameter + + + isnull(l1f6dz1j-CI-0-IP-1) or l1f6dz1j-CI-0-IP-1="" + + + + + fr.insee + l1f69ivh-CI-0 + 1 + + AG_PETIT_ENF non renseigné + + + AG_PETIT_ENF non renseigné + + + fr.insee + l1f69ivh-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1f69ivh-CI-0-IP-1 + 1 + + AG_PETIT_ENF + + + + + fr.insee + l1f69ivh-QOP-l1f6h1an + 1 + OutParameter + + + fr.insee + l1f69ivh-CI-0-IP-1 + 1 + InParameter + + + isnull(l1f69ivh-CI-0-IP-1) or l1f69ivh-CI-0-IP-1="" + + + + + fr.insee + l1g3hka7-CI-0 + 1 + + FREQ_VU_PETIT_ENF non renseignée + + + FREQ_VU_PETIT_ENF non renseignée + + + fr.insee + l1g3hka7-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1g3hka7-CI-0-IP-1 + 1 + + FREQ_VU_PETIT_ENF1 + + + + fr.insee + l1g3hka7-CI-0-IP-2 + 1 + + FREQ_VU_PETIT_ENF2 + + + + fr.insee + l1g3hka7-CI-0-IP-3 + 1 + + FREQ_VU_PETIT_ENF3 + + + + fr.insee + l1g3hka7-CI-0-IP-4 + 1 + + FREQ_VU_PETIT_ENF4 + + + + + fr.insee + l1g3hka7-QOP-llf32z1d + 1 + OutParameter + + + fr.insee + l1g3hka7-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l1g3hka7-QOP-llf309m5 + 1 + OutParameter + + + fr.insee + l1g3hka7-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l1g3hka7-QOP-llf3bgof + 1 + OutParameter + + + fr.insee + l1g3hka7-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + l1g3hka7-QOP-llf38epk + 1 + OutParameter + + + fr.insee + l1g3hka7-CI-0-IP-4 + 1 + InParameter + + + (nvl(l1g3hka7-CI-0-IP-1, false) = false and nvl(l1g3hka7-CI-0-IP-2, false) = false and nvl(l1g3hka7-CI-0-IP-3, false) = false and nvl(l1g3hka7-CI-0-IP-4, false) = false ) + + + + + fr.insee + l1f4yrno-CI-0 + 1 + + FREQ_CONT_PETIT_ENF non renseignée + + + FREQ_CONT_PETIT_ENF non renseignée + + + fr.insee + l1f4yrno-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1f4yrno-CI-0-IP-1 + 1 + + FREQ_CONT_PETIT_ENF1 + + + + fr.insee + l1f4yrno-CI-0-IP-2 + 1 + + FREQ_CONT_PETIT_ENF2 + + + + fr.insee + l1f4yrno-CI-0-IP-3 + 1 + + FREQ_CONT_PETIT_ENF3 + + + + fr.insee + l1f4yrno-CI-0-IP-4 + 1 + + FREQ_CONT_PETIT_ENF4 + + + + + fr.insee + l1f4yrno-QOP-llf334dp + 1 + OutParameter + + + fr.insee + l1f4yrno-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l1f4yrno-QOP-llf35l7f + 1 + OutParameter + + + fr.insee + l1f4yrno-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l1f4yrno-QOP-llf2xk2h + 1 + OutParameter + + + fr.insee + l1f4yrno-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + l1f4yrno-QOP-llf355j1 + 1 + OutParameter + + + fr.insee + l1f4yrno-CI-0-IP-4 + 1 + InParameter + + + (nvl(l1f4yrno-CI-0-IP-1, false) = false and nvl(l1f4yrno-CI-0-IP-2, false) = false and nvl(l1f4yrno-CI-0-IP-3, false) = false and nvl(l1f4yrno-CI-0-IP-4, false) = false ) + + + + + fr.insee + l1g87t8t-CI-0 + 1 + + AIDE_APPORT non renseignée + + + AIDE_APPORT non renseignée + + + fr.insee + l1g87t8t-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1g87t8t-CI-0-IP-1 + 1 + + AIDE_APPORT1 + + + + fr.insee + l1g87t8t-CI-0-IP-2 + 1 + + AIDE_APPORT2 + + + + fr.insee + l1g87t8t-CI-0-IP-3 + 1 + + AIDE_APPORT3 + + + + fr.insee + l1g87t8t-CI-0-IP-4 + 1 + + AIDE_APPORT4 + + + + fr.insee + l1g87t8t-CI-0-IP-5 + 1 + + AIDE_APPORT5 + + + + + fr.insee + l1g87t8t-QOP-lmrsjz2q + 1 + OutParameter + + + fr.insee + l1g87t8t-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l1g87t8t-QOP-lmrsu19x + 1 + OutParameter + + + fr.insee + l1g87t8t-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l1g87t8t-QOP-lmrsjxl8 + 1 + OutParameter + + + fr.insee + l1g87t8t-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + l1g87t8t-QOP-lmrswobh + 1 + OutParameter + + + fr.insee + l1g87t8t-CI-0-IP-4 + 1 + InParameter + + + + + fr.insee + l1g87t8t-QOP-lmrsncuh + 1 + OutParameter + + + fr.insee + l1g87t8t-CI-0-IP-5 + 1 + InParameter + + + (nvl(l1g87t8t-CI-0-IP-1, false) = false and nvl(l1g87t8t-CI-0-IP-2, false) = false and nvl(l1g87t8t-CI-0-IP-3, false) = false and nvl(l1g87t8t-CI-0-IP-4, false) = false and nvl(l1g87t8t-CI-0-IP-5, false) = false ) + + + + + fr.insee + l1g87t8t-CI-1 + 1 + + NON exclusif + + + NON exclusif + + + fr.insee + l1g87t8t-CI-1-II-1 + 1 + Instruction + + stumblingblock + + + vtl + + fr.insee + l1g87t8t-CI-1-IP-1 + 1 + + AIDE_APPORT1 + + + + fr.insee + l1g87t8t-CI-1-IP-2 + 1 + + AIDE_APPORT2 + + + + fr.insee + l1g87t8t-CI-1-IP-3 + 1 + + AIDE_APPORT3 + + + + fr.insee + l1g87t8t-CI-1-IP-4 + 1 + + AIDE_APPORT4 + + + + fr.insee + l1g87t8t-CI-1-IP-5 + 1 + + AIDE_APPORT5 + + + + + fr.insee + l1g87t8t-QOP-lmrsjz2q + 1 + OutParameter + + + fr.insee + l1g87t8t-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l1g87t8t-QOP-lmrsu19x + 1 + OutParameter + + + fr.insee + l1g87t8t-CI-1-IP-2 + 1 + InParameter + + + + + fr.insee + l1g87t8t-QOP-lmrsjxl8 + 1 + OutParameter + + + fr.insee + l1g87t8t-CI-1-IP-3 + 1 + InParameter + + + + + fr.insee + l1g87t8t-QOP-lmrswobh + 1 + OutParameter + + + fr.insee + l1g87t8t-CI-1-IP-4 + 1 + InParameter + + + + + fr.insee + l1g87t8t-QOP-lmrsncuh + 1 + OutParameter + + + fr.insee + l1g87t8t-CI-1-IP-5 + 1 + InParameter + + + (nvl(l1g87t8t-CI-1-IP-1,false)=true and nvl(l1g87t8t-CI-1-IP-5,false)=true) or (nvl(l1g87t8t-CI-1-IP-2,false)=true and nvl(l1g87t8t-CI-1-IP-5,false)=true) or (nvl(l1g87t8t-CI-1-IP-3,false)=true and nvl(l1g87t8t-CI-1-IP-5,false)=true) or (nvl(l1g87t8t-CI-1-IP-4,false)=true and nvl(l1g87t8t-CI-1-IP-5,false)=true) + + + + + fr.insee + l1ggssgl-CI-0 + 1 + + QUI_AID_APP_11 non renseigné + + + QUI_AID_APP_11 non renseigné + + + fr.insee + l1ggssgl-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1ggssgl-CI-0-IP-1 + 1 + + QUI_AID_APP_11 + + + + fr.insee + l1ggssgl-CI-0-IP-2 + 1 + + QUI_AID_APP_12 + + + + fr.insee + l1ggssgl-CI-0-IP-3 + 1 + + QUI_AID_APP_13 + + + + fr.insee + l1ggssgl-CI-0-IP-4 + 1 + + QUI_AID_APP_14 + + + + + fr.insee + l1ggssgl-QOP-llz50h9h + 1 + OutParameter + + + fr.insee + l1ggssgl-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l1ggssgl-QOP-llz4zodt + 1 + OutParameter + + + fr.insee + l1ggssgl-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l1ggssgl-QOP-llz4thr9 + 1 + OutParameter + + + fr.insee + l1ggssgl-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + l1ggssgl-QOP-llz4uavy + 1 + OutParameter + + + fr.insee + l1ggssgl-CI-0-IP-4 + 1 + InParameter + + + (nvl(l1ggssgl-CI-0-IP-1, false) = false and nvl(l1ggssgl-CI-0-IP-2, false) = false and nvl(l1ggssgl-CI-0-IP-3, false) = false and nvl(l1ggssgl-CI-0-IP-4, false) = false ) + + + + + fr.insee + l1ggm06b-CI-0 + 1 + + QUI_AID_APP_2 non renseigné + + + QUI_AID_APP_2 non renseigné + + + fr.insee + l1ggm06b-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1ggm06b-CI-0-IP-1 + 1 + + QUI_AID_APP_21 + + + + fr.insee + l1ggm06b-CI-0-IP-2 + 1 + + QUI_AID_APP_22 + + + + fr.insee + l1ggm06b-CI-0-IP-3 + 1 + + QUI_AID_APP_23 + + + + fr.insee + l1ggm06b-CI-0-IP-4 + 1 + + QUI_AID_APP_24 + + + + + fr.insee + l1ggm06b-QOP-l8lfgbqf + 1 + OutParameter + + + fr.insee + l1ggm06b-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l1ggm06b-QOP-l8lfhiwk + 1 + OutParameter + + + fr.insee + l1ggm06b-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l1ggm06b-QOP-l8lffrns + 1 + OutParameter + + + fr.insee + l1ggm06b-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + l1ggm06b-QOP-l8lffy1z + 1 + OutParameter + + + fr.insee + l1ggm06b-CI-0-IP-4 + 1 + InParameter + + + (nvl(l1ggm06b-CI-0-IP-1, false) = false and nvl(l1ggm06b-CI-0-IP-2, false) = false and nvl(l1ggm06b-CI-0-IP-3, false) = false and nvl(l1ggm06b-CI-0-IP-4, false) = false ) + + + + + fr.insee + l1ggtznr-CI-0 + 1 + + QUI_AID_APP_3 non renseigné + + + QUI_AID_APP_3 non renseigné + + + fr.insee + l1ggtznr-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1ggtznr-CI-0-IP-1 + 1 + + QUI_AID_APP_31 + + + + fr.insee + l1ggtznr-CI-0-IP-2 + 1 + + QUI_AID_APP_32 + + + + fr.insee + l1ggtznr-CI-0-IP-3 + 1 + + QUI_AID_APP_33 + + + + fr.insee + l1ggtznr-CI-0-IP-4 + 1 + + QUI_AID_APP_34 + + + + + fr.insee + l1ggtznr-QOP-l8lfrnl6 + 1 + OutParameter + + + fr.insee + l1ggtznr-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l1ggtznr-QOP-l8lftaoi + 1 + OutParameter + + + fr.insee + l1ggtznr-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l1ggtznr-QOP-l8lfdroz + 1 + OutParameter + + + fr.insee + l1ggtznr-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + l1ggtznr-QOP-l8lfgqn9 + 1 + OutParameter + + + fr.insee + l1ggtznr-CI-0-IP-4 + 1 + InParameter + + + (nvl(l1ggtznr-CI-0-IP-1, false) = false and nvl(l1ggtznr-CI-0-IP-2, false) = false and nvl(l1ggtznr-CI-0-IP-3, false) = false and nvl(l1ggtznr-CI-0-IP-4, false) = false ) + + + + + fr.insee + l4lf0y9m-CI-0 + 1 + + QUI_AID_APP_4 non renseigné + + + QUI_AID_APP_4 non renseigné + + + fr.insee + l4lf0y9m-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lf0y9m-CI-0-IP-1 + 1 + + QUI_AID_APP_41 + + + + fr.insee + l4lf0y9m-CI-0-IP-2 + 1 + + QUI_AID_APP_42 + + + + fr.insee + l4lf0y9m-CI-0-IP-3 + 1 + + QUI_AID_APP_43 + + + + fr.insee + l4lf0y9m-CI-0-IP-4 + 1 + + QUI_AID_APP_44 + + + + + fr.insee + l4lf0y9m-QOP-l8lfdihy + 1 + OutParameter + + + fr.insee + l4lf0y9m-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l4lf0y9m-QOP-l8lfirt9 + 1 + OutParameter + + + fr.insee + l4lf0y9m-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l4lf0y9m-QOP-l8lfeq6r + 1 + OutParameter + + + fr.insee + l4lf0y9m-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + l4lf0y9m-QOP-l8lfjwx6 + 1 + OutParameter + + + fr.insee + l4lf0y9m-CI-0-IP-4 + 1 + InParameter + + + (nvl(l4lf0y9m-CI-0-IP-1, false) = false and nvl(l4lf0y9m-CI-0-IP-2, false) = false and nvl(l4lf0y9m-CI-0-IP-3, false) = false and nvl(l4lf0y9m-CI-0-IP-4, false) = false ) + + + + + fr.insee + l1g8o84g-CI-0 + 1 + + AIDE_RECUE non renseignée + + + AIDE_RECUE non renseignée + + + fr.insee + l1g8o84g-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1g8o84g-CI-0-IP-1 + 1 + + AIDE_RECUE1 + + + + fr.insee + l1g8o84g-CI-0-IP-2 + 1 + + AIDE_RECUE2 + + + + fr.insee + l1g8o84g-CI-0-IP-3 + 1 + + AIDE_RECUE3 + + + + fr.insee + l1g8o84g-CI-0-IP-4 + 1 + + AIDE_RECUE4 + + + + + fr.insee + l1g8o84g-QOP-lmrsrwwh + 1 + OutParameter + + + fr.insee + l1g8o84g-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l1g8o84g-QOP-lmrsiwcj + 1 + OutParameter + + + fr.insee + l1g8o84g-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l1g8o84g-QOP-lmrslpuw + 1 + OutParameter + + + fr.insee + l1g8o84g-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + l1g8o84g-QOP-lmrspudh + 1 + OutParameter + + + fr.insee + l1g8o84g-CI-0-IP-4 + 1 + InParameter + + + (nvl(l1g8o84g-CI-0-IP-1, false) = false and nvl(l1g8o84g-CI-0-IP-2, false) = false and nvl(l1g8o84g-CI-0-IP-3, false) = false and nvl(l1g8o84g-CI-0-IP-4, false) = false ) + + + + + fr.insee + l1g8o84g-CI-1 + 1 + + NON exclusif + + + NON exclusif + + + fr.insee + l1g8o84g-CI-1-II-1 + 1 + Instruction + + stumblingblock + + + vtl + + fr.insee + l1g8o84g-CI-1-IP-1 + 1 + + AIDE_RECUE1 + + + + fr.insee + l1g8o84g-CI-1-IP-2 + 1 + + AIDE_RECUE2 + + + + fr.insee + l1g8o84g-CI-1-IP-3 + 1 + + AIDE_RECUE3 + + + + fr.insee + l1g8o84g-CI-1-IP-4 + 1 + + AIDE_RECUE4 + + + + + fr.insee + l1g8o84g-QOP-lmrsrwwh + 1 + OutParameter + + + fr.insee + l1g8o84g-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l1g8o84g-QOP-lmrsiwcj + 1 + OutParameter + + + fr.insee + l1g8o84g-CI-1-IP-2 + 1 + InParameter + + + + + fr.insee + l1g8o84g-QOP-lmrslpuw + 1 + OutParameter + + + fr.insee + l1g8o84g-CI-1-IP-3 + 1 + InParameter + + + + + fr.insee + l1g8o84g-QOP-lmrspudh + 1 + OutParameter + + + fr.insee + l1g8o84g-CI-1-IP-4 + 1 + InParameter + + + (nvl(l1g8o84g-CI-1-IP-1,false)=true and nvl(l1g8o84g-CI-1-IP-4,false)=true) or (nvl(l1g8o84g-CI-1-IP-2,false)=true and nvl(l1g8o84g-CI-1-IP-4,false)=true) or (nvl(l1g8o84g-CI-1-IP-3,false)=true and nvl(l1g8o84g-CI-1-IP-4,false)=true) + + + + + fr.insee + l1ggpjd7-CI-0 + 1 + + QUI_AID_REC_1 non renseignée + + + QUI_AID_REC_1 non renseignée + + + fr.insee + l1ggpjd7-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1ggpjd7-CI-0-IP-1 + 1 + + QUI_AID_REC_11 + + + + fr.insee + l1ggpjd7-CI-0-IP-2 + 1 + + QUI_AID_REC_12 + + + + fr.insee + l1ggpjd7-CI-0-IP-3 + 1 + + QUI_AID_REC_13 + + + + fr.insee + l1ggpjd7-CI-0-IP-4 + 1 + + QUI_AID_REC_14 + + + + + fr.insee + l1ggpjd7-QOP-l8lfnnly + 1 + OutParameter + + + fr.insee + l1ggpjd7-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l1ggpjd7-QOP-l8lflmwj + 1 + OutParameter + + + fr.insee + l1ggpjd7-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l1ggpjd7-QOP-l8lfhcl4 + 1 + OutParameter + + + fr.insee + l1ggpjd7-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + l1ggpjd7-QOP-l8lfi83w + 1 + OutParameter + + + fr.insee + l1ggpjd7-CI-0-IP-4 + 1 + InParameter + + + (nvl(l1ggpjd7-CI-0-IP-1, false) = false and nvl(l1ggpjd7-CI-0-IP-2, false) = false and nvl(l1ggpjd7-CI-0-IP-3, false) = false and nvl(l1ggpjd7-CI-0-IP-4, false) = false ) + + + + + fr.insee + l1ggp8js-CI-0 + 1 + + QUI_AID_REC_2 non renseignée + + + QUI_AID_REC_2 non renseignée + + + fr.insee + l1ggp8js-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1ggp8js-CI-0-IP-1 + 1 + + QUI_AID_REC_21 + + + + fr.insee + l1ggp8js-CI-0-IP-2 + 1 + + QUI_AID_REC_22 + + + + fr.insee + l1ggp8js-CI-0-IP-3 + 1 + + QUI_AID_REC_23 + + + + fr.insee + l1ggp8js-CI-0-IP-4 + 1 + + QUI_AID_REC_24 + + + + + fr.insee + l1ggp8js-QOP-l8lfslzm + 1 + OutParameter + + + fr.insee + l1ggp8js-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l1ggp8js-QOP-l8lf8uhf + 1 + OutParameter + + + fr.insee + l1ggp8js-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l1ggp8js-QOP-l8lfnjgv + 1 + OutParameter + + + fr.insee + l1ggp8js-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + l1ggp8js-QOP-l8lfccyo + 1 + OutParameter + + + fr.insee + l1ggp8js-CI-0-IP-4 + 1 + InParameter + + + (nvl(l1ggp8js-CI-0-IP-1, false) = false and nvl(l1ggp8js-CI-0-IP-2, false) = false and nvl(l1ggp8js-CI-0-IP-3, false) = false and nvl(l1ggp8js-CI-0-IP-4, false) = false ) + + + + + fr.insee + l1gh36ky-CI-0 + 1 + + QUI_AID_REC_3 non renseigné + + + QUI_AID_REC_3 non renseigné + + + fr.insee + l1gh36ky-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1gh36ky-CI-0-IP-1 + 1 + + QUI_AID_REC_31 + + + + fr.insee + l1gh36ky-CI-0-IP-2 + 1 + + QUI_AID_REC_32 + + + + fr.insee + l1gh36ky-CI-0-IP-3 + 1 + + QUI_AID_REC_33 + + + + fr.insee + l1gh36ky-CI-0-IP-4 + 1 + + QUI_AID_REC_34 + + + + + fr.insee + l1gh36ky-QOP-l5jp75md + 1 + OutParameter + + + fr.insee + l1gh36ky-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l1gh36ky-QOP-l5jpgd0s + 1 + OutParameter + + + fr.insee + l1gh36ky-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l1gh36ky-QOP-l5jplm82 + 1 + OutParameter + + + fr.insee + l1gh36ky-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + l1gh36ky-QOP-l5jpm5d8 + 1 + OutParameter + + + fr.insee + l1gh36ky-CI-0-IP-4 + 1 + InParameter + + + (nvl(l1gh36ky-CI-0-IP-1, false) = false and nvl(l1gh36ky-CI-0-IP-2, false) = false and nvl(l1gh36ky-CI-0-IP-3, false) = false and nvl(l1gh36ky-CI-0-IP-4, false) = false ) + + + + + fr.insee + l1g8apw2-CI-0 + 1 + + LANGUE1_ENTOU non renseignée + + + LANGUE1_ENTOU non renseignée + + + fr.insee + l1g8apw2-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1g8apw2-CI-0-IP-1 + 1 + + LANGUE1_ENTOU + + + + + fr.insee + l1g8apw2-QOP-llvz9ewy + 1 + OutParameter + + + fr.insee + l1g8apw2-CI-0-IP-1 + 1 + InParameter + + + isnull(l1g8apw2-CI-0-IP-1) or l1g8apw2-CI-0-IP-1="" + + + + + fr.insee + l43tgurz-CI-0 + 1 + + même langue + + + même langue + + + fr.insee + l43tgurz-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l43tgurz-CI-0-IP-1 + 1 + + LANGUE1_ENTOU + + + + fr.insee + l43tgurz-CI-0-IP-2 + 1 + + LANGUE2_ENTOU + + + + + fr.insee + l1g8apw2-QOP-llvz9ewy + 1 + OutParameter + + + fr.insee + l43tgurz-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l43tgurz-QOP-llvz9gdb + 1 + OutParameter + + + fr.insee + l43tgurz-CI-0-IP-2 + 1 + InParameter + + + not(isnull(l43tgurz-CI-0-IP-1)) and not(isnull(l43tgurz-CI-0-IP-2)) and l43tgurz-CI-0-IP-2=l43tgurz-CI-0-IP-1 + + + + + fr.insee + l2kjnm8k-CI-0 + 1 + + PRENOM_PAR1 non renseigné + + + PRENOM_PAR1 non renseigné + + + fr.insee + l2kjnm8k-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l2kjnm8k-CI-0-IP-1 + 1 + + PRENOM_PAR1 + + + + + fr.insee + l2kjnm8k-QOP-l2kjn4vg + 1 + OutParameter + + + fr.insee + l2kjnm8k-CI-0-IP-1 + 1 + InParameter + + + isnull(l2kjnm8k-CI-0-IP-1) or l2kjnm8k-CI-0-IP-1="" + + + + + fr.insee + l2kjy49o-CI-0 + 1 + + ANAI_PAR1 non renseigné + + + ANAI_PAR1 non renseigné + + + fr.insee + l2kjy49o-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l2kjy49o-CI-0-IP-1 + 1 + + ANAI_PAR1 + + + + + fr.insee + l2kjy49o-QOP-l2kjupyp + 1 + OutParameter + + + fr.insee + l2kjy49o-CI-0-IP-1 + 1 + InParameter + + + isnull(l2kjy49o-CI-0-IP-1) or l2kjy49o-CI-0-IP-1="" + + + + + fr.insee + l2kjy49o-CI-1 + 1 + + "L'année de naissance de votre parent ne peut pas être postérieure à votre année de naissance." + + + "L'année de naissance de votre parent ne peut pas être postérieure à votre année de naissance." + + + fr.insee + l2kjy49o-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l2kjy49o-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l2kjy49o-CI-1-IP-2 + 1 + + ANAI_PAR1 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l2kjy49o-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l2kjy49o-QOP-l2kjupyp + 1 + OutParameter + + + fr.insee + l2kjy49o-CI-1-IP-2 + 1 + InParameter + + + not(isnull(l2kjy49o-CI-1-IP-2)) and not(isnull(l2kjy49o-CI-1-IP-1)) and cast(l2kjy49o-CI-1-IP-2,integer) > cast(l2kjy49o-CI-1-IP-1,integer) + + + + + fr.insee + l2kjy49o-CI-2 + 1 + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre parent, est-ce que vous confirmez?" + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre parent, est-ce que vous confirmez?" + + + fr.insee + l2kjy49o-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l2kjy49o-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l2kjy49o-CI-2-IP-2 + 1 + + ANAI_PAR1 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l2kjy49o-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l2kjy49o-QOP-l2kjupyp + 1 + OutParameter + + + fr.insee + l2kjy49o-CI-2-IP-2 + 1 + InParameter + + + not(isnull(l2kjy49o-CI-2-IP-2)) and not(isnull(l2kjy49o-CI-2-IP-1)) and (cast(l2kjy49o-CI-2-IP-2,integer) + 12 > cast(l2kjy49o-CI-2-IP-1,integer)) + + + + + fr.insee + l2kjy49o-CI-3 + 1 + + bornes ANAI_PAR1 + + + bornes ANAI_PAR1 + + + fr.insee + l2kjy49o-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l2kjy49o-CI-3-IP-1 + 1 + + ANAI_PAR1 + + + + + fr.insee + l2kjy49o-QOP-l2kjupyp + 1 + OutParameter + + + fr.insee + l2kjy49o-CI-3-IP-1 + 1 + InParameter + + + cast(l2kjy49o-CI-3-IP-1,integer) < 1860 or cast(l2kjy49o-CI-3-IP-1,integer) > 1991 + + + + + fr.insee + l2kkvar7-CI-0 + 1 + + SEXE_PAR1 non renseigné + + + SEXE_PAR1 non renseigné + + + fr.insee + l2kkvar7-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l2kkvar7-CI-0-IP-1 + 1 + + SEXE_PAR1 + + + + + fr.insee + l2kkvar7-QOP-l2kkywzf + 1 + OutParameter + + + fr.insee + l2kkvar7-CI-0-IP-1 + 1 + InParameter + + + isnull (l2kkvar7-CI-0-IP-1) or l2kkvar7-CI-0-IP-1="" + + + + + fr.insee + l2kk539f-CI-0 + 1 + + NATIO_PAR1 non renseignée + + + NATIO_PAR1 non renseignée + + + fr.insee + l2kk539f-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l2kk539f-CI-0-IP-1 + 1 + + NATIO_PAR1 + + + + + fr.insee + l2kk539f-QOP-l2kk2tl9 + 1 + OutParameter + + + fr.insee + l2kk539f-CI-0-IP-1 + 1 + InParameter + + + isnull(l2kk539f-CI-0-IP-1) or l2kk539f-CI-0-IP-1 ="" + + + + + fr.insee + l7ywp1vk-CI-0 + 1 + + TRAV_PAR1 non renseigné + + + TRAV_PAR1 non renseigné + + + fr.insee + l7ywp1vk-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l7ywp1vk-CI-0-IP-1 + 1 + + TRAV_PAR1 + + + + + fr.insee + l7ywp1vk-QOP-l7yx6ylx + 1 + OutParameter + + + fr.insee + l7ywp1vk-CI-0-IP-1 + 1 + InParameter + + + isnull(l7ywp1vk-CI-0-IP-1) or l7ywp1vk-CI-0-IP-1="" + + + + + fr.insee + l45cjoj7-CI-0 + 1 + + PROF_PAR1_2 non renseignée + + + PROF_PAR1_2 non renseignée + + + fr.insee + l45cjoj7-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l45cjoj7-CI-0-IP-1 + 1 + + PROF_PAR1_2 + + + + + fr.insee + l45cjoj7-QOP-l4o6wqdy + 1 + OutParameter + + + fr.insee + l45cjoj7-CI-0-IP-1 + 1 + InParameter + + + isnull(l45cjoj7-CI-0-IP-1) or l45cjoj7-CI-0-IP-1="" + + + + + fr.insee + l2kjshy4-CI-0 + 1 + + STATUT_PAR1 non renseigné + + + STATUT_PAR1 non renseigné + + + fr.insee + l2kjshy4-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l2kjshy4-CI-0-IP-1 + 1 + + STATUT_PAR1 + + + + + fr.insee + l2kjshy4-QOP-l2kk0l5l + 1 + OutParameter + + + fr.insee + l2kjshy4-CI-0-IP-1 + 1 + InParameter + + + isnull(l2kjshy4-CI-0-IP-1) or l2kjshy4-CI-0-IP-1="" + + + + + fr.insee + llgo5n7b-CI-0 + 1 + + SAL_FP_PAR1 non renseigné + + + SAL_FP_PAR1 non renseigné + + + fr.insee + llgo5n7b-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + llgo5n7b-CI-0-IP-1 + 1 + + SAL_FP_PAR1 + + + + + fr.insee + llgo5n7b-QOP-llgozn3p + 1 + OutParameter + + + fr.insee + llgo5n7b-CI-0-IP-1 + 1 + InParameter + + + llgo5n7b-CI-0-IP-1="" or isnull(llgo5n7b-CI-0-IP-1) + + + + + fr.insee + llgqspnh-CI-0 + 1 + + SAL_ENT_PAR1 non renseignée + + + SAL_ENT_PAR1 non renseignée + + + fr.insee + llgqspnh-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + llgqspnh-CI-0-IP-1 + 1 + + SAL_ENT_PAR1 + + + + + fr.insee + llgqspnh-QOP-llgqj9en + 1 + OutParameter + + + fr.insee + llgqspnh-CI-0-IP-1 + 1 + InParameter + + + isnull(llgqspnh-CI-0-IP-1) or llgqspnh-CI-0-IP-1="" + + + + + fr.insee + l2kk4seh-CI-0 + 1 + + LANGUE1_PAR1 non renseignée + + + LANGUE1_PAR1 non renseignée + + + fr.insee + l2kk4seh-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l2kk4seh-CI-0-IP-1 + 1 + + LANGUE1_PAR1 + + + + + fr.insee + l2kk4seh-QOP-llvyt5ul + 1 + OutParameter + + + fr.insee + l2kk4seh-CI-0-IP-1 + 1 + InParameter + + + isnull(l2kk4seh-CI-0-IP-1) or l2kk4seh-CI-0-IP-1="" + + + + + fr.insee + l447j7cx-CI-0 + 1 + + même langue + + + même langue + + + fr.insee + l447j7cx-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l447j7cx-CI-0-IP-1 + 1 + + LANGUE1_PAR1 + + + + fr.insee + l447j7cx-CI-0-IP-2 + 1 + + LANGUE2_PAR1 + + + + + fr.insee + l2kk4seh-QOP-llvyt5ul + 1 + OutParameter + + + fr.insee + l447j7cx-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l447j7cx-QOP-llvyrge5 + 1 + OutParameter + + + fr.insee + l447j7cx-CI-0-IP-2 + 1 + InParameter + + + not(isnull(l447j7cx-CI-0-IP-1)) and not(isnull(l447j7cx-CI-0-IP-2)) and l447j7cx-CI-0-IP-2=l447j7cx-CI-0-IP-1 + + + + + fr.insee + l2kjzugb-CI-0 + 1 + + VIV_PAR1 non renseignée + + + VIV_PAR1 non renseignée + + + fr.insee + l2kjzugb-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l2kjzugb-CI-0-IP-1 + 1 + + VIV_PAR1 + + + + + fr.insee + l2kjzugb-QOP-l2kjv6tv + 1 + OutParameter + + + fr.insee + l2kjzugb-CI-0-IP-1 + 1 + InParameter + + + isnull(l2kjzugb-CI-0-IP-1) or l2kjzugb-CI-0-IP-1="" + + + + + fr.insee + l2kkd59n-CI-0 + 1 + + ANNEE_DC_PAR1 non renseignée + + + ANNEE_DC_PAR1 non renseignée + + + fr.insee + l2kkd59n-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l2kkd59n-CI-0-IP-1 + 1 + + ANNEE_DC_PAR1 + + + + + fr.insee + l2kkd59n-QOP-l2kk3398 + 1 + OutParameter + + + fr.insee + l2kkd59n-CI-0-IP-1 + 1 + InParameter + + + isnull(l2kkd59n-CI-0-IP-1) or l2kkd59n-CI-0-IP-1="" + + + + + fr.insee + l2kkd59n-CI-1 + 1 + + "L'année du décès de votre parent ne peut pas être antérieure à son année de naissance." + + + "L'année du décès de votre parent ne peut pas être antérieure à son année de naissance." + + + fr.insee + l2kkd59n-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l2kkd59n-CI-1-IP-1 + 1 + + ANAI_PAR1 + + + + fr.insee + l2kkd59n-CI-1-IP-2 + 1 + + ANNEE_DC_PAR1 + + + + + fr.insee + l2kjy49o-QOP-l2kjupyp + 1 + OutParameter + + + fr.insee + l2kkd59n-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l2kkd59n-QOP-l2kk3398 + 1 + OutParameter + + + fr.insee + l2kkd59n-CI-1-IP-2 + 1 + InParameter + + + not(isnull(l2kkd59n-CI-1-IP-2)) and not(isnull(l2kkd59n-CI-1-IP-1)) and cast(l2kkd59n-CI-1-IP-2,integer) < cast(l2kkd59n-CI-1-IP-1,integer) + + + + + fr.insee + l2kkd59n-CI-2 + 1 + + bornes ANNEE_DC_PAR1 + + + bornes ANNEE_DC_PAR1 + + + fr.insee + l2kkd59n-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l2kkd59n-CI-2-IP-1 + 1 + + ANNEE_DC_PAR1 + + + + + fr.insee + l2kkd59n-QOP-l2kk3398 + 1 + OutParameter + + + fr.insee + l2kkd59n-CI-2-IP-1 + 1 + InParameter + + + cast(l2kkd59n-CI-2-IP-1,integer) < 1880 or cast(l2kkd59n-CI-2-IP-1,integer) > 2024 + + + + + fr.insee + l2kk4snz-CI-0 + 1 + + LOG_PAR1 non renseigné + + + LOG_PAR1 non renseigné + + + fr.insee + l2kk4snz-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l2kk4snz-CI-0-IP-1 + 1 + + LOG_PAR1 + + + + + fr.insee + l2kk4snz-QOP-l34gopr4 + 1 + OutParameter + + + fr.insee + l2kk4snz-CI-0-IP-1 + 1 + InParameter + + + isnull(l2kk4snz-CI-0-IP-1) or l2kk4snz-CI-0-IP-1="" + + + + + fr.insee + l2kkb4xa-CI-0 + 1 + + FR_PAR1 non renseigné + + + FR_PAR1 non renseigné + + + fr.insee + l2kkb4xa-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l2kkb4xa-CI-0-IP-1 + 1 + + FR_PAR1 + + + + + fr.insee + l2kkb4xa-QOP-l2kk5rd6 + 1 + OutParameter + + + fr.insee + l2kkb4xa-CI-0-IP-1 + 1 + InParameter + + + isnull(l2kkb4xa-CI-0-IP-1) or l2kkb4xa-CI-0-IP-1="" + + + + + fr.insee + l4o7ufzl-CI-0 + 1 + + DEP_PAR1 non renseigné + + + DEP_PAR1 non renseigné + + + fr.insee + l4o7ufzl-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4o7ufzl-CI-0-IP-1 + 1 + + DEP_PAR1 + + + + + fr.insee + l4o7ufzl-QOP-llvzb0k0 + 1 + OutParameter + + + fr.insee + l4o7ufzl-CI-0-IP-1 + 1 + InParameter + + + isnull(l4o7ufzl-CI-0-IP-1) or l4o7ufzl-CI-0-IP-1="" + + + + + fr.insee + l4onhpvd-CI-0 + 1 + + COM_PAR1 non renseigné + + + COM_PAR1 non renseigné + + + fr.insee + l4onhpvd-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4onhpvd-CI-0-IP-1 + 1 + + COM_PAR1 + + + + + fr.insee + l4onhpvd-QOP-llvz5uy3 + 1 + OutParameter + + + fr.insee + l4onhpvd-CI-0-IP-1 + 1 + InParameter + + + isnull(l4onhpvd-CI-0-IP-1) or l4onhpvd-CI-0-IP-1="" + + + + + fr.insee + l4o8eale-CI-0 + 1 + + PAY_PAR1 non renseigné + + + PAY_PAR1 non renseigné + + + fr.insee + l4o8eale-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4o8eale-CI-0-IP-1 + 1 + + PAY_PAR1 + + + + + fr.insee + l4o8eale-QOP-llvzajdd + 1 + OutParameter + + + fr.insee + l4o8eale-CI-0-IP-1 + 1 + InParameter + + + isnull(l4o8eale-CI-0-IP-1) or l4o8eale-CI-0-IP-1="" + + + + + fr.insee + l1ezkqes-CI-0 + 1 + + ETAB_PAR1 non renseigné + + + ETAB_PAR1 non renseigné + + + fr.insee + l1ezkqes-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1ezkqes-CI-0-IP-1 + 1 + + ETAB_PAR1 + + + + + fr.insee + l1ezkqes-QOP-l1ezmkcq + 1 + OutParameter + + + fr.insee + l1ezkqes-CI-0-IP-1 + 1 + InParameter + + + isnull(l1ezkqes-CI-0-IP-1) or l1ezkqes-CI-0-IP-1="" + + + + + fr.insee + l2kkeqsz-CI-0 + 1 + + FREQ_VU_PAR1 non renseignée + + + FREQ_VU_PAR1 non renseignée + + + fr.insee + l2kkeqsz-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l2kkeqsz-CI-0-IP-1 + 1 + + FREQ_VU_PAR1 + + + + + fr.insee + l2kkeqsz-QOP-l2kjzdaf + 1 + OutParameter + + + fr.insee + l2kkeqsz-CI-0-IP-1 + 1 + InParameter + + + isnull(l2kkeqsz-CI-0-IP-1) or l2kkeqsz-CI-0-IP-1="" + + + + + fr.insee + l2kk296y-CI-0 + 1 + + FREQ_CONT_PAR1 non renseignée + + + FREQ_CONT_PAR1 non renseignée + + + fr.insee + l2kk296y-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l2kk296y-CI-0-IP-1 + 1 + + FREQ_CONT_PAR1 + + + + + fr.insee + l2kk296y-QOP-l2kkit9z + 1 + OutParameter + + + fr.insee + l2kk296y-CI-0-IP-1 + 1 + InParameter + + + isnull(l2kk296y-CI-0-IP-1) or l2kk296y-CI-0-IP-1="" + + + + + fr.insee + l4lojzxg-CI-0 + 1 + + PROX_EGO_PAR1 + + + PROX_EGO_PAR1 + + + fr.insee + l4lojzxg-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lojzxg-CI-0-IP-1 + 1 + + PROX_EGO_PAR1 + + + + + fr.insee + l4lojzxg-QOP-l4lop1g7 + 1 + OutParameter + + + fr.insee + l4lojzxg-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lojzxg-CI-0-IP-1) or l4lojzxg-CI-0-IP-1="" + + + + + fr.insee + l43yap7r-CI-0 + 1 + + PROX_FRAT_PAR1 non renseigné + + + PROX_FRAT_PAR1 non renseigné + + + fr.insee + l43yap7r-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l43yap7r-CI-0-IP-1 + 1 + + PROX_FRAT_PAR1 + + + + + fr.insee + l43yap7r-QOP-l43xwxm8 + 1 + OutParameter + + + fr.insee + l43yap7r-CI-0-IP-1 + 1 + InParameter + + + isnull(l43yap7r-CI-0-IP-1) or l43yap7r-CI-0-IP-1 ="" + + + + + fr.insee + l5axrwsa-CI-0 + 1 + + EXIST_PAR2 non renseigné + + + EXIST_PAR2 non renseigné + + + fr.insee + l5axrwsa-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l5axrwsa-CI-0-IP-1 + 1 + + EXIST_PAR2 + + + + + fr.insee + l5axrwsa-QOP-l5ay3o3r + 1 + OutParameter + + + fr.insee + l5axrwsa-CI-0-IP-1 + 1 + InParameter + + + isnull(l5axrwsa-CI-0-IP-1) or l5axrwsa-CI-0-IP-1="" + + + + + fr.insee + l27ijusa-CI-0 + 1 + + PRENOM_PAR2 non renseigné + + + PRENOM_PAR2 non renseigné + + + fr.insee + l27ijusa-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27ijusa-CI-0-IP-1 + 1 + + PRENOM_PAR2 + + + + + fr.insee + l27ijusa-QOP-l27i3154 + 1 + OutParameter + + + fr.insee + l27ijusa-CI-0-IP-1 + 1 + InParameter + + + isnull(l27ijusa-CI-0-IP-1) or l27ijusa-CI-0-IP-1="" + + + + + fr.insee + kwqfufye-CI-0 + 1 + + ANAI_PAR2 non renseignée + + + ANAI_PAR2 non renseignée + + + fr.insee + kwqfufye-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqfufye-CI-0-IP-1 + 1 + + ANAI_PAR2 + + + + + fr.insee + kwqfufye-QOP-l0wf22g3 + 1 + OutParameter + + + fr.insee + kwqfufye-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqfufye-CI-0-IP-1) or kwqfufye-CI-0-IP-1="" + + + + + fr.insee + kwqfufye-CI-1 + 1 + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre parent, est-ce que vous confirmez ?" + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre parent, est-ce que vous confirmez ?" + + + fr.insee + kwqfufye-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqfufye-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + kwqfufye-CI-1-IP-2 + 1 + + ANAI_PAR2 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + kwqfufye-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + kwqfufye-QOP-l0wf22g3 + 1 + OutParameter + + + fr.insee + kwqfufye-CI-1-IP-2 + 1 + InParameter + + + not(isnull(kwqfufye-CI-1-IP-2)) and not(isnull(kwqfufye-CI-1-IP-1)) and (cast(kwqfufye-CI-1-IP-2,integer) + 12 > cast(kwqfufye-CI-1-IP-1,integer)) + + + + + fr.insee + kwqfufye-CI-2 + 1 + + "L'année de naissance de votre parent ne peut pas être postérieure à votre année de naissance." + + + "L'année de naissance de votre parent ne peut pas être postérieure à votre année de naissance." + + + fr.insee + kwqfufye-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqfufye-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + kwqfufye-CI-2-IP-2 + 1 + + ANAI_PAR2 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + kwqfufye-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + kwqfufye-QOP-l0wf22g3 + 1 + OutParameter + + + fr.insee + kwqfufye-CI-2-IP-2 + 1 + InParameter + + + not(isnull(kwqfufye-CI-2-IP-2)) and not(isnull(kwqfufye-CI-2-IP-1)) and cast(kwqfufye-CI-2-IP-2,integer) > cast(kwqfufye-CI-2-IP-1,integer) + + + + + fr.insee + kwqfufye-CI-3 + 1 + + bornes ANAI_PAR2 + + + bornes ANAI_PAR2 + + + fr.insee + kwqfufye-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqfufye-CI-3-IP-1 + 1 + + ANAI_PAR2 + + + + + fr.insee + kwqfufye-QOP-l0wf22g3 + 1 + OutParameter + + + fr.insee + kwqfufye-CI-3-IP-1 + 1 + InParameter + + + cast(kwqfufye-CI-3-IP-1,integer) < 1860 or cast(kwqfufye-CI-3-IP-1,integer) > 1991 + + + + + fr.insee + l27ig4yy-CI-0 + 1 + + SEXE_PAR2 non renseigné + + + SEXE_PAR2 non renseigné + + + fr.insee + l27ig4yy-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27ig4yy-CI-0-IP-1 + 1 + + SEXE_PAR2 + + + + + fr.insee + l27ig4yy-QOP-l27ii3c9 + 1 + OutParameter + + + fr.insee + l27ig4yy-CI-0-IP-1 + 1 + InParameter + + + isnull(l27ig4yy-CI-0-IP-1) or l27ig4yy-CI-0-IP-1="" + + + + + fr.insee + kwqfhhge-CI-0 + 1 + + NATIO_PAR2 non renseignée + + + NATIO_PAR2 non renseignée + + + fr.insee + kwqfhhge-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqfhhge-CI-0-IP-1 + 1 + + NATIO_PAR2 + + + + + fr.insee + kwqfhhge-QOP-kwqft4ub + 1 + OutParameter + + + fr.insee + kwqfhhge-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqfhhge-CI-0-IP-1) or kwqfhhge-CI-0-IP-1="" + + + + + fr.insee + l7ywxphs-CI-0 + 1 + + TRAV_PAR2 non renseigné + + + TRAV_PAR2 non renseigné + + + fr.insee + l7ywxphs-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l7ywxphs-CI-0-IP-1 + 1 + + TRAV_PAR2 + + + + + fr.insee + l7ywxphs-QOP-l7yx8jjw + 1 + OutParameter + + + fr.insee + l7ywxphs-CI-0-IP-1 + 1 + InParameter + + + isnull(l7ywxphs-CI-0-IP-1) or l7ywxphs-CI-0-IP-1="" + + + + + fr.insee + l444t31z-CI-0 + 1 + + PROF_PAR2_2 non renseignée + + + PROF_PAR2_2 non renseignée + + + fr.insee + l444t31z-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l444t31z-CI-0-IP-1 + 1 + + PROF_PAR2_2 + + + + + fr.insee + l444t31z-QOP-l4o6zyol + 1 + OutParameter + + + fr.insee + l444t31z-CI-0-IP-1 + 1 + InParameter + + + isnull(l444t31z-CI-0-IP-1) or l444t31z-CI-0-IP-1 ="" + + + + + fr.insee + kwqfto3c-CI-0 + 1 + + STATUT_PAR2 non renseigné + + + STATUT_PAR2 non renseigné + + + fr.insee + kwqfto3c-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqfto3c-CI-0-IP-1 + 1 + + STATUT_PAR2 + + + + + fr.insee + kwqfto3c-QOP-kwqg4dq2 + 1 + OutParameter + + + fr.insee + kwqfto3c-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqfto3c-CI-0-IP-1) or kwqfto3c-CI-0-IP-1="" + + + + + fr.insee + llgosp3i-CI-0 + 1 + + SAL_FP_PAR2 non renseigné + + + SAL_FP_PAR2 non renseigné + + + fr.insee + llgosp3i-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + llgosp3i-CI-0-IP-1 + 1 + + SAL_FP_PAR2 + + + + + fr.insee + llgosp3i-QOP-llgom4r9 + 1 + OutParameter + + + fr.insee + llgosp3i-CI-0-IP-1 + 1 + InParameter + + + llgosp3i-CI-0-IP-1="" or isnull(llgosp3i-CI-0-IP-1) + + + + + fr.insee + llgrqyqg-CI-0 + 1 + + SAL_ENT_PAR2 non renseigné + + + SAL_ENT_PAR2 non renseigné + + + fr.insee + llgrqyqg-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + llgrqyqg-CI-0-IP-1 + 1 + + SAL_ENT_PAR2 + + + + + fr.insee + llgrqyqg-QOP-llgs2ez2 + 1 + OutParameter + + + fr.insee + llgrqyqg-CI-0-IP-1 + 1 + InParameter + + + isnull(llgrqyqg-CI-0-IP-1) or llgrqyqg-CI-0-IP-1="" + + + + + fr.insee + l1ezgxe3-CI-0 + 1 + + LANGUE1_PAR2non renseigné + + + LANGUE1_PAR2non renseigné + + + fr.insee + l1ezgxe3-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1ezgxe3-CI-0-IP-1 + 1 + + LANGUE1_PAR2 + + + + + fr.insee + l1ezgxe3-QOP-llvz4083 + 1 + OutParameter + + + fr.insee + l1ezgxe3-CI-0-IP-1 + 1 + InParameter + + + isnull(l1ezgxe3-CI-0-IP-1) or l1ezgxe3-CI-0-IP-1="" + + + + + fr.insee + l444xjux-CI-0 + 1 + + même langue + + + même langue + + + fr.insee + l444xjux-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l444xjux-CI-0-IP-1 + 1 + + LANGUE1_PAR2 + + + + fr.insee + l444xjux-CI-0-IP-2 + 1 + + LANGUE2_PAR2 + + + + + fr.insee + l1ezgxe3-QOP-llvz4083 + 1 + OutParameter + + + fr.insee + l444xjux-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l444xjux-QOP-llvzbbbd + 1 + OutParameter + + + fr.insee + l444xjux-CI-0-IP-2 + 1 + InParameter + + + not(isnull(l444xjux-CI-0-IP-1)) and not(isnull(l444xjux-CI-0-IP-2)) and l444xjux-CI-0-IP-2=l444xjux-CI-0-IP-1 + + + + + fr.insee + kwqhjfzk-CI-0 + 1 + + VIV_PAR2 non renseigné + + + VIV_PAR2 non renseigné + + + fr.insee + kwqhjfzk-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqhjfzk-CI-0-IP-1 + 1 + + VIV_PAR2 + + + + + fr.insee + kwqhjfzk-QOP-kwqhv63j + 1 + OutParameter + + + fr.insee + kwqhjfzk-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqhjfzk-CI-0-IP-1) or kwqhjfzk-CI-0-IP-1="" + + + + + fr.insee + kwqg35i9-CI-0 + 1 + + ANNEE_DC_PAR2 non renseignée + + + ANNEE_DC_PAR2 non renseignée + + + fr.insee + kwqg35i9-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqg35i9-CI-0-IP-1 + 1 + + ANNEE_DC_PAR2 + + + + + fr.insee + kwqg35i9-QOP-kwqg1sjf + 1 + OutParameter + + + fr.insee + kwqg35i9-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqg35i9-CI-0-IP-1) or kwqg35i9-CI-0-IP-1="" + + + + + fr.insee + kwqg35i9-CI-1 + 1 + + "L'année du décès de votre parent ne peut pas être antérieure à son année de naissance." + + + "L'année du décès de votre parent ne peut pas être antérieure à son année de naissance." + + + fr.insee + kwqg35i9-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqg35i9-CI-1-IP-1 + 1 + + ANAI_PAR2 + + + + fr.insee + kwqg35i9-CI-1-IP-2 + 1 + + ANNEE_DC_PAR2 + + + + + fr.insee + kwqfufye-QOP-l0wf22g3 + 1 + OutParameter + + + fr.insee + kwqg35i9-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + kwqg35i9-QOP-kwqg1sjf + 1 + OutParameter + + + fr.insee + kwqg35i9-CI-1-IP-2 + 1 + InParameter + + + not(isnull(kwqg35i9-CI-1-IP-2)) and not(isnull(kwqg35i9-CI-1-IP-1)) and cast(kwqg35i9-CI-1-IP-2,integer) < cast(kwqg35i9-CI-1-IP-1,integer) + + + + + fr.insee + kwqg35i9-CI-2 + 1 + + bornes ANNEE_DC_PAR2 + + + bornes ANNEE_DC_PAR2 + + + fr.insee + kwqg35i9-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqg35i9-CI-2-IP-1 + 1 + + ANNEE_DC_PAR2 + + + + + fr.insee + kwqg35i9-QOP-kwqg1sjf + 1 + OutParameter + + + fr.insee + kwqg35i9-CI-2-IP-1 + 1 + InParameter + + + cast(kwqg35i9-CI-2-IP-1,integer) < 1880 or cast(kwqg35i9-CI-2-IP-1,integer) > 2024 + + + + + fr.insee + kwqgffvw-CI-0 + 1 + + LOG_PAR2A non renseigné + + + LOG_PAR2A non renseigné + + + fr.insee + kwqgffvw-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqgffvw-CI-0-IP-1 + 1 + + LOG_PAR2A1 + + + + fr.insee + kwqgffvw-CI-0-IP-2 + 1 + + LOG_PAR2A2 + + + + fr.insee + kwqgffvw-CI-0-IP-3 + 1 + + LOG_PAR2A3 + + + + + fr.insee + kwqgffvw-QOP-lm0fqbdz + 1 + OutParameter + + + fr.insee + kwqgffvw-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + kwqgffvw-QOP-lm0f8md7 + 1 + OutParameter + + + fr.insee + kwqgffvw-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + kwqgffvw-QOP-lm0fpbr7 + 1 + OutParameter + + + fr.insee + kwqgffvw-CI-0-IP-3 + 1 + InParameter + + + (nvl(kwqgffvw-CI-0-IP-1, false) = false and nvl(kwqgffvw-CI-0-IP-2, false) = false and nvl(kwqgffvw-CI-0-IP-3, false) = false ) + + + + + fr.insee + kwqgffvw-CI-1 + 1 + + NON exclusif + + + NON exclusif + + + fr.insee + kwqgffvw-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqgffvw-CI-1-IP-1 + 1 + + LOG_PAR2A1 + + + + fr.insee + kwqgffvw-CI-1-IP-2 + 1 + + LOG_PAR2A2 + + + + fr.insee + kwqgffvw-CI-1-IP-3 + 1 + + LOG_PAR2A3 + + + + + fr.insee + kwqgffvw-QOP-lm0fqbdz + 1 + OutParameter + + + fr.insee + kwqgffvw-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + kwqgffvw-QOP-lm0f8md7 + 1 + OutParameter + + + fr.insee + kwqgffvw-CI-1-IP-2 + 1 + InParameter + + + + + fr.insee + kwqgffvw-QOP-lm0fpbr7 + 1 + OutParameter + + + fr.insee + kwqgffvw-CI-1-IP-3 + 1 + InParameter + + + (nvl(kwqgffvw-CI-1-IP-1,false)=true and nvl(kwqgffvw-CI-1-IP-3,false)=true) or (nvl(kwqgffvw-CI-1-IP-2,false)=true and nvl(kwqgffvw-CI-1-IP-3,false)=true) + + + + + fr.insee + lab6xfk9-CI-0 + 1 + + LOG_PAR2B non renseigné + + + LOG_PAR2B non renseigné + + + fr.insee + lab6xfk9-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lab6xfk9-CI-0-IP-1 + 1 + + LOG_PAR2B + + + + + fr.insee + lab6xfk9-QOP-lab73lgn + 1 + OutParameter + + + fr.insee + lab6xfk9-CI-0-IP-1 + 1 + InParameter + + + isnull(lab6xfk9-CI-0-IP-1) or lab6xfk9-CI-0-IP-1="" + + + + + fr.insee + kwqgawqp-CI-0 + 1 + + FR_PAR2 non renseigné + + + FR_PAR2 non renseigné + + + fr.insee + kwqgawqp-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqgawqp-CI-0-IP-1 + 1 + + FR_PAR2 + + + + + fr.insee + kwqgawqp-QOP-kwqgeipr + 1 + OutParameter + + + fr.insee + kwqgawqp-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqgawqp-CI-0-IP-1) or kwqgawqp-CI-0-IP-1="" + + + + + fr.insee + l4o8co0c-CI-0 + 1 + + DEP_PAR2 non renseigné + + + DEP_PAR2 non renseigné + + + fr.insee + l4o8co0c-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4o8co0c-CI-0-IP-1 + 1 + + DEP_PAR2 + + + + + fr.insee + l4o8co0c-QOP-llvyr5wh + 1 + OutParameter + + + fr.insee + l4o8co0c-CI-0-IP-1 + 1 + InParameter + + + isnull(l4o8co0c-CI-0-IP-1) or l4o8co0c-CI-0-IP-1="" + + + + + fr.insee + l4onk34z-CI-0 + 1 + + COM_PAR2 non renseigné + + + COM_PAR2 non renseigné + + + fr.insee + l4onk34z-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4onk34z-CI-0-IP-1 + 1 + + COM_PAR2 + + + + + fr.insee + l4onk34z-QOP-llvz0ewe + 1 + OutParameter + + + fr.insee + l4onk34z-CI-0-IP-1 + 1 + InParameter + + + isnull(l4onk34z-CI-0-IP-1) or l4onk34z-CI-0-IP-1="" + + + + + fr.insee + l4o8dk7q-CI-0 + 1 + + PAY_PAR2 non renseigné + + + PAY_PAR2 non renseigné + + + fr.insee + l4o8dk7q-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4o8dk7q-CI-0-IP-1 + 1 + + PAY_PAR2 + + + + + fr.insee + l4o8dk7q-QOP-llvyu3jn + 1 + OutParameter + + + fr.insee + l4o8dk7q-CI-0-IP-1 + 1 + InParameter + + + isnull(l4o8dk7q-CI-0-IP-1) or l4o8dk7q-CI-0-IP-1="" + + + + + fr.insee + l2kkc8s9-CI-0 + 1 + + ETAB_PAR2 non renseigné + + + ETAB_PAR2 non renseigné + + + fr.insee + l2kkc8s9-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l2kkc8s9-CI-0-IP-1 + 1 + + ETAB_PAR2 + + + + + fr.insee + l2kkc8s9-QOP-l2kkfxvm + 1 + OutParameter + + + fr.insee + l2kkc8s9-CI-0-IP-1 + 1 + InParameter + + + isnull(l2kkc8s9-CI-0-IP-1) or l2kkc8s9-CI-0-IP-1="" + + + + + fr.insee + l1gl4054-CI-0 + 1 + + FREQ_VU_PAR2 non renseigné + + + FREQ_VU_PAR2 non renseigné + + + fr.insee + l1gl4054-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1gl4054-CI-0-IP-1 + 1 + + FREQ_VU_PAR2 + + + + + fr.insee + l1gl4054-QOP-l1gl5e3e + 1 + OutParameter + + + fr.insee + l1gl4054-CI-0-IP-1 + 1 + InParameter + + + isnull(l1gl4054-CI-0-IP-1) or l1gl4054-CI-0-IP-1="" + + + + + fr.insee + l1ezkbsf-CI-0 + 1 + + FREQ_CONT_PAR2 non renseigné + + + FREQ_CONT_PAR2 non renseigné + + + fr.insee + l1ezkbsf-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1ezkbsf-CI-0-IP-1 + 1 + + FREQ_CONT_PAR2 + + + + + fr.insee + l1ezkbsf-QOP-l1ezevjd + 1 + OutParameter + + + fr.insee + l1ezkbsf-CI-0-IP-1 + 1 + InParameter + + + isnull(l1ezkbsf-CI-0-IP-1) or l1ezkbsf-CI-0-IP-1="" + + + + + fr.insee + l445itcb-CI-0 + 1 + + PROX_EGO_PAR2 non renseigné + + + PROX_EGO_PAR2 non renseigné + + + fr.insee + l445itcb-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l445itcb-CI-0-IP-1 + 1 + + PROX_EGO_PAR2 + + + + + fr.insee + l445itcb-QOP-l445hldo + 1 + OutParameter + + + fr.insee + l445itcb-CI-0-IP-1 + 1 + InParameter + + + isnull(l445itcb-CI-0-IP-1) or l445itcb-CI-0-IP-1 ="" + + + + + fr.insee + l4cjeqc0-CI-0 + 1 + + PROX_FRAT_PAR2 non renseigné + + + PROX_FRAT_PAR2 non renseigné + + + fr.insee + l4cjeqc0-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4cjeqc0-CI-0-IP-1 + 1 + + PROX_FRAT_PAR2 + + + + + fr.insee + l4cjeqc0-QOP-l4ciywxr + 1 + OutParameter + + + fr.insee + l4cjeqc0-CI-0-IP-1 + 1 + InParameter + + + isnull(l4cjeqc0-CI-0-IP-1) or l4cjeqc0-CI-0-IP-1 ="" + + + + + fr.insee + l473kp51-CI-0 + 1 + + NB_FRERES non renseigné + + + NB_FRERES non renseigné + + + fr.insee + l473kp51-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l473kp51-CI-0-IP-1 + 1 + + NB_FRERES + + + + + fr.insee + l473kp51-QOP-l473rzw1 + 1 + OutParameter + + + fr.insee + l473kp51-CI-0-IP-1 + 1 + InParameter + + + isnull(l473kp51-CI-0-IP-1) or l473kp51-CI-0-IP-1="" + + + + + fr.insee + l5ikk5zq-CI-0 + 1 + + NB_FRERES_VIV1 non renseigné + + + NB_FRERES_VIV1 non renseigné + + + fr.insee + l5ikk5zq-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l5ikk5zq-CI-0-IP-1 + 1 + + NB_FRERES_VIV1 + + + + + fr.insee + l5ikk5zq-QOP-l5iken9h + 1 + OutParameter + + + fr.insee + l5ikk5zq-CI-0-IP-1 + 1 + InParameter + + + isnull(l5ikk5zq-CI-0-IP-1) or l5ikk5zq-CI-0-IP-1="" + + + + + fr.insee + l4740wd1-CI-0 + 1 + + NB_FRERES_VIV non renseigné + + + NB_FRERES_VIV non renseigné + + + fr.insee + l4740wd1-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4740wd1-CI-0-IP-1 + 1 + + NB_FRERES_VIV + + + + + fr.insee + l4740wd1-QOP-l473vroh + 1 + OutParameter + + + fr.insee + l4740wd1-CI-0-IP-1 + 1 + InParameter + + + isnull(l4740wd1-CI-0-IP-1) or l4740wd1-CI-0-IP-1="" + + + + + fr.insee + l4740wd1-CI-1 + 1 + + "Le nombre de frères vivants ne peut pas être supérieur au nombre total de frères." + + + "Le nombre de frères vivants ne peut pas être supérieur au nombre total de frères." + + + fr.insee + l4740wd1-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4740wd1-CI-1-IP-1 + 1 + + NB_FRERES + + + + fr.insee + l4740wd1-CI-1-IP-2 + 1 + + NB_FRERES_VIV + + + + + fr.insee + l473kp51-QOP-l473rzw1 + 1 + OutParameter + + + fr.insee + l4740wd1-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4740wd1-QOP-l473vroh + 1 + OutParameter + + + fr.insee + l4740wd1-CI-1-IP-2 + 1 + InParameter + + + nvl(l4740wd1-CI-1-IP-2,0) > nvl(l4740wd1-CI-1-IP-1,0) + + + + + fr.insee + l4742c2v-CI-0 + 1 + + NB_SOEURS non renseigné + + + NB_SOEURS non renseigné + + + fr.insee + l4742c2v-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4742c2v-CI-0-IP-1 + 1 + + NB_SOEURS + + + + + fr.insee + l4742c2v-QOP-l473q5ei + 1 + OutParameter + + + fr.insee + l4742c2v-CI-0-IP-1 + 1 + InParameter + + + isnull(l4742c2v-CI-0-IP-1) or l4742c2v-CI-0-IP-1="" + + + + + fr.insee + l5ikyrbc-CI-0 + 1 + + NB_SOEURS_VIV1 non renseigné + + + NB_SOEURS_VIV1 non renseigné + + + fr.insee + l5ikyrbc-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l5ikyrbc-CI-0-IP-1 + 1 + + NB_SOEURS_VIV1 + + + + + fr.insee + l5ikyrbc-QOP-l5ikxm9l + 1 + OutParameter + + + fr.insee + l5ikyrbc-CI-0-IP-1 + 1 + InParameter + + + isnull(l5ikyrbc-CI-0-IP-1) or l5ikyrbc-CI-0-IP-1="" + + + + + fr.insee + l473w273-CI-0 + 1 + + NB_SOEURS_VIV non renseigné + + + NB_SOEURS_VIV non renseigné + + + fr.insee + l473w273-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l473w273-CI-0-IP-1 + 1 + + NB_SOEURS_VIV + + + + + fr.insee + l473w273-QOP-l4741u6l + 1 + OutParameter + + + fr.insee + l473w273-CI-0-IP-1 + 1 + InParameter + + + isnull(l473w273-CI-0-IP-1) or l473w273-CI-0-IP-1="" + + + + + fr.insee + l473w273-CI-1 + 1 + + "Le nombre de sœurs vivantes ne peut pas être supérieur au nombre total de sœurs." + + + "Le nombre de sœurs vivantes ne peut pas être supérieur au nombre total de sœurs." + + + fr.insee + l473w273-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l473w273-CI-1-IP-1 + 1 + + NB_SOEURS + + + + fr.insee + l473w273-CI-1-IP-2 + 1 + + NB_SOEURS_VIV + + + + + fr.insee + l4742c2v-QOP-l473q5ei + 1 + OutParameter + + + fr.insee + l473w273-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l473w273-QOP-l4741u6l + 1 + OutParameter + + + fr.insee + l473w273-CI-1-IP-2 + 1 + InParameter + + + nvl(l473w273-CI-1-IP-2,0) > nvl(l473w273-CI-1-IP-1,0) + + + + + fr.insee + l1f5th3i-CI-0 + 1 + + AG_DEP_PARENT non renseigné + + + AG_DEP_PARENT non renseigné + + + fr.insee + l1f5th3i-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1f5th3i-CI-0-IP-1 + 1 + + AG_DEP_PARENT + + + + + fr.insee + l1f5th3i-QOP-l1f5ynl3 + 1 + OutParameter + + + fr.insee + l1f5th3i-CI-0-IP-1 + 1 + InParameter + + + isnull(l1f5th3i-CI-0-IP-1) or l1f5th3i-CI-0-IP-1="" + + + + + fr.insee + l1f5th3i-CI-1 + 1 + + "L’âge de départ de chez vos parents ne peut pas être supérieur à votre âge." + + + "L’âge de départ de chez vos parents ne peut pas être supérieur à votre âge." + + + fr.insee + l1f5th3i-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1f5th3i-CI-1-IP-1 + 1 + + AGE + + + + fr.insee + l1f5th3i-CI-1-IP-2 + 1 + + AG_DEP_PARENT + + + + + fr.insee + ljog08x8-GOP + 1 + OutParameter + + + fr.insee + l1f5th3i-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l1f5th3i-QOP-l1f5ynl3 + 1 + OutParameter + + + fr.insee + l1f5th3i-CI-1-IP-2 + 1 + InParameter + + + l1f5th3i-CI-1-IP-2 <> 99 and not(isnull(l1f5th3i-CI-1-IP-2)) and not(isnull(l1f5th3i-CI-1-IP-1)) and cast(l1f5th3i-CI-1-IP-2,integer) > cast(l1f5th3i-CI-1-IP-1,integer) + + + + + fr.insee + l1f61fa3-CI-0 + 1 + + VECU_JEUNESSE non renseigné + + + VECU_JEUNESSE non renseigné + + + fr.insee + l1f61fa3-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1f61fa3-CI-0-IP-1 + 1 + + VECU_JEUNESSE1 + + + + fr.insee + l1f61fa3-CI-0-IP-2 + 1 + + VECU_JEUNESSE2 + + + + fr.insee + l1f61fa3-CI-0-IP-3 + 1 + + VECU_JEUNESSE3 + + + + fr.insee + l1f61fa3-CI-0-IP-4 + 1 + + VECU_JEUNESSE4 + + + + fr.insee + l1f61fa3-CI-0-IP-5 + 1 + + VECU_JEUNESSE5 + + + + fr.insee + l1f61fa3-CI-0-IP-6 + 1 + + VECU_JEUNESSE6 + + + + fr.insee + l1f61fa3-CI-0-IP-7 + 1 + + VECU_JEUNESSE7 + + + + + fr.insee + l1f61fa3-QOP-llevctvx + 1 + OutParameter + + + fr.insee + l1f61fa3-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l1f61fa3-QOP-llevmlms + 1 + OutParameter + + + fr.insee + l1f61fa3-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l1f61fa3-QOP-llevhkg9 + 1 + OutParameter + + + fr.insee + l1f61fa3-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + l1f61fa3-QOP-llevc737 + 1 + OutParameter + + + fr.insee + l1f61fa3-CI-0-IP-4 + 1 + InParameter + + + + + fr.insee + l1f61fa3-QOP-llevfk5v + 1 + OutParameter + + + fr.insee + l1f61fa3-CI-0-IP-5 + 1 + InParameter + + + + + fr.insee + l1f61fa3-QOP-llevqbyz + 1 + OutParameter + + + fr.insee + l1f61fa3-CI-0-IP-6 + 1 + InParameter + + + + + fr.insee + l1f61fa3-QOP-lleve2gb + 1 + OutParameter + + + fr.insee + l1f61fa3-CI-0-IP-7 + 1 + InParameter + + + (nvl(l1f61fa3-CI-0-IP-1, false) = false and nvl(l1f61fa3-CI-0-IP-2, false) = false and nvl(l1f61fa3-CI-0-IP-3, false) = false and nvl(l1f61fa3-CI-0-IP-4, false) = false and nvl(l1f61fa3-CI-0-IP-5, false) = false and nvl(l1f61fa3-CI-0-IP-6, false) = false and nvl(l1f61fa3-CI-0-IP-7, false) = false ) + + + + + fr.insee + l43ttd47-CI-0 + 1 + + VECU_PLACE non renseigné + + + VECU_PLACE non renseigné + + + fr.insee + l43ttd47-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l43ttd47-CI-0-IP-1 + 1 + + VECU_PLACE + + + + + fr.insee + l43ttd47-QOP-l43tsfar + 1 + OutParameter + + + fr.insee + l43ttd47-CI-0-IP-1 + 1 + InParameter + + + isnull(l43ttd47-CI-0-IP-1) or l43ttd47-CI-0-IP-1="" + + + + + fr.insee + l43u439h-CI-0 + 1 + + TYP_PLACE non renseigné + + + TYP_PLACE non renseigné + + + fr.insee + l43u439h-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l43u439h-CI-0-IP-1 + 1 + + TYP_PLACE1 + + + + fr.insee + l43u439h-CI-0-IP-2 + 1 + + TYP_PLACE2 + + + + fr.insee + l43u439h-CI-0-IP-3 + 1 + + TYP_PLACE3 + + + + fr.insee + l43u439h-CI-0-IP-4 + 1 + + TYP_PLACE4 + + + + + fr.insee + l43u439h-QOP-l43tpzt7 + 1 + OutParameter + + + fr.insee + l43u439h-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l43u439h-QOP-l43tpqco + 1 + OutParameter + + + fr.insee + l43u439h-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l43u439h-QOP-l43tov3w + 1 + OutParameter + + + fr.insee + l43u439h-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + l43u439h-QOP-l43trgyp + 1 + OutParameter + + + fr.insee + l43u439h-CI-0-IP-4 + 1 + InParameter + + + (nvl(l43u439h-CI-0-IP-1, false) = false and nvl(l43u439h-CI-0-IP-2, false) = false and nvl(l43u439h-CI-0-IP-3, false) = false and nvl(l43u439h-CI-0-IP-4, false) = false) + + + + + fr.insee + l1f65zkh-CI-0 + 1 + + HEBERG non renseigné + + + HEBERG non renseigné + + + fr.insee + l1f65zkh-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1f65zkh-CI-0-IP-1 + 1 + + HEBERG + + + + + fr.insee + l1f65zkh-QOP-l1f6bv9c + 1 + OutParameter + + + fr.insee + l1f65zkh-CI-0-IP-1 + 1 + InParameter + + + isnull(l1f65zkh-CI-0-IP-1) or l1f65zkh-CI-0-IP-1="" + + + + + fr.insee + l1g3unwh-CI-0 + 1 + + FINETU non renseignée + + + FINETU non renseignée + + + fr.insee + l1g3unwh-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1g3unwh-CI-0-IP-1 + 1 + + FINETU + + + + + fr.insee + l1g3unwh-QOP-l1g3npll + 1 + OutParameter + + + fr.insee + l1g3unwh-CI-0-IP-1 + 1 + InParameter + + + isnull(l1g3unwh-CI-0-IP-1) or l1g3unwh-CI-0-IP-1="" + + + + + fr.insee + l1g3yk6q-CI-0 + 1 + + "L'année de fin d'études ne peut pas être antérieure à votre année de naissance." + + + "L'année de fin d'études ne peut pas être antérieure à votre année de naissance." + + + fr.insee + l1g3yk6q-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1g3yk6q-CI-0-IP-1 + 1 + + ANAIS + + + + fr.insee + l1g3yk6q-CI-0-IP-2 + 1 + + ANNEE_FINETU + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l1g3yk6q-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l1g3yk6q-QOP-l1g42814 + 1 + OutParameter + + + fr.insee + l1g3yk6q-CI-0-IP-2 + 1 + InParameter + + + not(isnull(l1g3yk6q-CI-0-IP-2)) and not(isnull(l1g3yk6q-CI-0-IP-1)) and cast(l1g3yk6q-CI-0-IP-2,integer) < cast(l1g3yk6q-CI-0-IP-1,integer) + + + + + fr.insee + l1g3yk6q-CI-1 + 1 + + "Il semble y avoir peu d'écart entre votre année de naissance et votre année de fin d'études, est-ce que vous confirmez ?" + + + "Il semble y avoir peu d'écart entre votre année de naissance et votre année de fin d'études, est-ce que vous confirmez ?" + + + fr.insee + l1g3yk6q-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1g3yk6q-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l1g3yk6q-CI-1-IP-2 + 1 + + ANNEE_FINETU + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l1g3yk6q-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l1g3yk6q-QOP-l1g42814 + 1 + OutParameter + + + fr.insee + l1g3yk6q-CI-1-IP-2 + 1 + InParameter + + + not(isnull(l1g3yk6q-CI-1-IP-1)) and not(isnull(l1g3yk6q-CI-1-IP-2)) and (cast(l1g3yk6q-CI-1-IP-1,integer) + 12 > cast(l1g3yk6q-CI-1-IP-2,integer)) + + + + + fr.insee + l1g3yk6q-CI-2 + 1 + + ANNEE_FINETU non renseigné + + + ANNEE_FINETU non renseigné + + + fr.insee + l1g3yk6q-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1g3yk6q-CI-2-IP-1 + 1 + + ANNEE_FINETU + + + + + fr.insee + l1g3yk6q-QOP-l1g42814 + 1 + OutParameter + + + fr.insee + l1g3yk6q-CI-2-IP-1 + 1 + InParameter + + + isnull(l1g3yk6q-CI-2-IP-1) or l1g3yk6q-CI-2-IP-1="" + + + + + fr.insee + l1g3yk6q-CI-3 + 1 + + bornes ANNEE_FINETU + + + bornes ANNEE_FINETU + + + fr.insee + l1g3yk6q-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1g3yk6q-CI-3-IP-1 + 1 + + ANNEE_FINETU + + + + + fr.insee + l1g3yk6q-QOP-l1g42814 + 1 + OutParameter + + + fr.insee + l1g3yk6q-CI-3-IP-1 + 1 + InParameter + + + cast(l1g3yk6q-CI-3-IP-1,integer) < 1920 or cast(l1g3yk6q-CI-3-IP-1,integer) > 2024 + + + + + fr.insee + l1g7pgbn-CI-0 + 1 + + DEJATRAV non renseigné + + + DEJATRAV non renseigné + + + fr.insee + l1g7pgbn-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1g7pgbn-CI-0-IP-1 + 1 + + DEJATRAV + + + + + fr.insee + l1g7pgbn-QOP-l1g7tm7z + 1 + OutParameter + + + fr.insee + l1g7pgbn-CI-0-IP-1 + 1 + InParameter + + + isnull(l1g7pgbn-CI-0-IP-1) or l1g7pgbn-CI-0-IP-1="" + + + + + fr.insee + l1g4pid1-CI-0 + 1 + + ANNEE_EMPLOI1 non renseigné + + + ANNEE_EMPLOI1 non renseigné + + + fr.insee + l1g4pid1-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1g4pid1-CI-0-IP-1 + 1 + + ANNEE_EMPLOI1 + + + + + fr.insee + l1g4pid1-QOP-l1g4r0qn + 1 + OutParameter + + + fr.insee + l1g4pid1-CI-0-IP-1 + 1 + InParameter + + + isnull(l1g4pid1-CI-0-IP-1) or l1g4pid1-CI-0-IP-1="" + + + + + fr.insee + l1g4pid1-CI-1 + 1 + + "L'année de votre premier emploi ne peut pas être antérieure à votre année de naissance." + + + "L'année de votre premier emploi ne peut pas être antérieure à votre année de naissance." + + + fr.insee + l1g4pid1-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1g4pid1-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l1g4pid1-CI-1-IP-2 + 1 + + ANNEE_EMPLOI1 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l1g4pid1-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l1g4pid1-QOP-l1g4r0qn + 1 + OutParameter + + + fr.insee + l1g4pid1-CI-1-IP-2 + 1 + InParameter + + + not(isnull(l1g4pid1-CI-1-IP-2)) and not(isnull(l1g4pid1-CI-1-IP-1)) and cast(l1g4pid1-CI-1-IP-2,integer) < cast(l1g4pid1-CI-1-IP-1,integer) + + + + + fr.insee + l1g4pid1-CI-2 + 1 + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre premier emploi, est-ce que vous confirmez ?" + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre premier emploi, est-ce que vous confirmez ?" + + + fr.insee + l1g4pid1-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1g4pid1-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l1g4pid1-CI-2-IP-2 + 1 + + ANNEE_EMPLOI1 + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l1g4pid1-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l1g4pid1-QOP-l1g4r0qn + 1 + OutParameter + + + fr.insee + l1g4pid1-CI-2-IP-2 + 1 + InParameter + + + not(isnull(l1g4pid1-CI-2-IP-1)) and not(isnull(l1g4pid1-CI-2-IP-2)) and (cast(l1g4pid1-CI-2-IP-1,integer) + 14 > cast(l1g4pid1-CI-2-IP-2,integer)) + + + + + fr.insee + l1g4pid1-CI-3 + 1 + + bornes ANNEE_EMPLOI1 + + + bornes ANNEE_EMPLOI1 + + + fr.insee + l1g4pid1-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1g4pid1-CI-3-IP-1 + 1 + + ANNEE_EMPLOI1 + + + + + fr.insee + l1g4pid1-QOP-l1g4r0qn + 1 + OutParameter + + + fr.insee + l1g4pid1-CI-3-IP-1 + 1 + InParameter + + + cast(l1g4pid1-CI-3-IP-1,integer) < 1920 or cast(l1g4pid1-CI-3-IP-1,integer) > 2024 + + + + + fr.insee + l445x7tq-CI-0 + 1 + + TRAVACT non renseignée + + + TRAVACT non renseignée + + + fr.insee + l445x7tq-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l445x7tq-CI-0-IP-1 + 1 + + TRAVACT + + + + + fr.insee + l445x7tq-QOP-l445yz7o + 1 + OutParameter + + + fr.insee + l445x7tq-CI-0-IP-1 + 1 + InParameter + + + isnull(l445x7tq-CI-0-IP-1) or l445x7tq-CI-0-IP-1="" + + + + + fr.insee + l1g7iu0j-CI-0 + 1 + + ANNEE_FINEMP non renseignée + + + ANNEE_FINEMP non renseignée + + + fr.insee + l1g7iu0j-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1g7iu0j-CI-0-IP-1 + 1 + + ANNEE_FINEMP + + + + + fr.insee + l1g7iu0j-QOP-l1g7p8dq + 1 + OutParameter + + + fr.insee + l1g7iu0j-CI-0-IP-1 + 1 + InParameter + + + isnull(l1g7iu0j-CI-0-IP-1) or l1g7iu0j-CI-0-IP-1="" + + + + + fr.insee + l1g7iu0j-CI-1 + 1 + + "L'année de cessation d'activité ne peut pas être antérieure à votre année de naissance." + + + "L'année de cessation d'activité ne peut pas être antérieure à votre année de naissance." + + + fr.insee + l1g7iu0j-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1g7iu0j-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l1g7iu0j-CI-1-IP-2 + 1 + + ANNEE_FINEMP + + + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + l1g7iu0j-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l1g7iu0j-QOP-l1g7p8dq + 1 + OutParameter + + + fr.insee + l1g7iu0j-CI-1-IP-2 + 1 + InParameter + + + not(isnull(l1g7iu0j-CI-1-IP-2)) and not(isnull(l1g7iu0j-CI-1-IP-1)) and cast(l1g7iu0j-CI-1-IP-2,integer) < cast(l1g7iu0j-CI-1-IP-1,integer) + + + + + fr.insee + l1g7iu0j-CI-2 + 1 + + bornes ANNEE_FINEMP + + + bornes ANNEE_FINEMP + + + fr.insee + l1g7iu0j-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1g7iu0j-CI-2-IP-1 + 1 + + ANNEE_FINEMP + + + + + fr.insee + l1g7iu0j-QOP-l1g7p8dq + 1 + OutParameter + + + fr.insee + l1g7iu0j-CI-2-IP-1 + 1 + InParameter + + + cast(l1g7iu0j-CI-2-IP-1,integer) < 1920 or cast(l1g7iu0j-CI-2-IP-1,integer) > 2024 + + + + + fr.insee + l1g7iu0j-CI-3 + 1 + + "L'année de cessation d'activité ne peut pas être antérieure à l'année de votre premier emploi." + + + "L'année de cessation d'activité ne peut pas être antérieure à l'année de votre premier emploi." + + + fr.insee + l1g7iu0j-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1g7iu0j-CI-3-IP-1 + 1 + + ANNEE_EMPLOI1 + + + + fr.insee + l1g7iu0j-CI-3-IP-2 + 1 + + ANNEE_FINEMP + + + + + fr.insee + l1g4pid1-QOP-l1g4r0qn + 1 + OutParameter + + + fr.insee + l1g7iu0j-CI-3-IP-1 + 1 + InParameter + + + + + fr.insee + l1g7iu0j-QOP-l1g7p8dq + 1 + OutParameter + + + fr.insee + l1g7iu0j-CI-3-IP-2 + 1 + InParameter + + + not(isnull(l1g7iu0j-CI-3-IP-2)) and not(isnull(l1g7iu0j-CI-3-IP-1)) and cast(l1g7iu0j-CI-3-IP-2,integer) < cast(l1g7iu0j-CI-3-IP-1,integer) + + + + + fr.insee + l1g7vwo6-CI-0 + 1 + + INTER_TRAV1 non renseignée + + + INTER_TRAV1 non renseignée + + + fr.insee + l1g7vwo6-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1g7vwo6-CI-0-IP-1 + 1 + + INTER_TRAV1 + + + + + fr.insee + l1g7vwo6-QOP-lleu3ict + 1 + OutParameter + + + fr.insee + l1g7vwo6-CI-0-IP-1 + 1 + InParameter + + + l1g7vwo6-CI-0-IP-1="" or isnull(l1g7vwo6-CI-0-IP-1) + + + + + fr.insee + lletbq7t-CI-0 + 1 + + INTER_TRAV2 non renseigné + + + INTER_TRAV2 non renseigné + + + fr.insee + lletbq7t-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lletbq7t-CI-0-IP-1 + 1 + + INTER_TRAV2 + + + + + fr.insee + lletbq7t-QOP-lletstp8 + 1 + OutParameter + + + fr.insee + lletbq7t-CI-0-IP-1 + 1 + InParameter + + + lletbq7t-CI-0-IP-1="" or isnull(lletbq7t-CI-0-IP-1) + + + + + fr.insee + lletqevy-CI-0 + 1 + + INTER_TRAV3 non renseigné + + + INTER_TRAV3 non renseigné + + + fr.insee + lletqevy-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lletqevy-CI-0-IP-1 + 1 + + INTER_TRAV3 + + + + + fr.insee + lletqevy-QOP-lletwvhh + 1 + OutParameter + + + fr.insee + lletqevy-CI-0-IP-1 + 1 + InParameter + + + lletqevy-CI-0-IP-1="" or isnull(lletqevy-CI-0-IP-1) + + + + + fr.insee + lna1z5hs-CI-0 + 1 + + Non exclusif + + + Non exclusif + + + fr.insee + lna1z5hs-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lna1z5hs-CI-0-IP-1 + 1 + + AVIS_DIFF1 + + + + fr.insee + lna1z5hs-CI-0-IP-2 + 1 + + AVIS_DIFF2 + + + + fr.insee + lna1z5hs-CI-0-IP-3 + 1 + + AVIS_DIFF3 + + + + fr.insee + lna1z5hs-CI-0-IP-4 + 1 + + AVIS_DIFF4 + + + + fr.insee + lna1z5hs-CI-0-IP-5 + 1 + + AVIS_DIFF5 + + + + fr.insee + lna1z5hs-CI-0-IP-6 + 1 + + AVIS_DIFF6 + + + + fr.insee + lna1z5hs-CI-0-IP-7 + 1 + + AVIS_DIFF7 + + + + fr.insee + lna1z5hs-CI-0-IP-8 + 1 + + AVIS_DIFF8 + + + + + fr.insee + lna1z5hs-QOP-lna3g9og + 1 + OutParameter + + + fr.insee + lna1z5hs-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lna1z5hs-QOP-lna3o7x6 + 1 + OutParameter + + + fr.insee + lna1z5hs-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + lna1z5hs-QOP-lna3atiw + 1 + OutParameter + + + fr.insee + lna1z5hs-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + lna1z5hs-QOP-lna3cm7h + 1 + OutParameter + + + fr.insee + lna1z5hs-CI-0-IP-4 + 1 + InParameter + + + + + fr.insee + lna1z5hs-QOP-lna3ih02 + 1 + OutParameter + + + fr.insee + lna1z5hs-CI-0-IP-5 + 1 + InParameter + + + + + fr.insee + lna1z5hs-QOP-lna3iyg6 + 1 + OutParameter + + + fr.insee + lna1z5hs-CI-0-IP-6 + 1 + InParameter + + + + + fr.insee + lna1z5hs-QOP-lna3n335 + 1 + OutParameter + + + fr.insee + lna1z5hs-CI-0-IP-7 + 1 + InParameter + + + + + fr.insee + lna1z5hs-QOP-lna38km4 + 1 + OutParameter + + + fr.insee + lna1z5hs-CI-0-IP-8 + 1 + InParameter + + + (nvl(lna1z5hs-CI-0-IP-1,false)=true and nvl(lna1z5hs-CI-0-IP-8,false)=true) or (nvl(lna1z5hs-CI-0-IP-2,false)=true and nvl(lna1z5hs-CI-0-IP-8,false)=true) or (nvl(lna1z5hs-CI-0-IP-3,false)=true and nvl(lna1z5hs-CI-0-IP-8,false)=true) or (nvl(lna1z5hs-CI-0-IP-4,false)=true and nvl(lna1z5hs-CI-0-IP-8,false)=true) or (nvl(lna1z5hs-CI-0-IP-5,false)=true and nvl(lna1z5hs-CI-0-IP-8,false)=true) or (nvl(lna1z5hs-CI-0-IP-6,false)=true and nvl(lna1z5hs-CI-0-IP-8,false)=true) or (nvl(lna1z5hs-CI-0-IP-7,false)=true and nvl(lna1z5hs-CI-0-IP-8,false)=true) + + + + + + fr.insee + QuestionScheme-lnycjn6n + 1 + + A définir + + + fr.insee + l473latk + 1 + + VAL_ANNAISS + + + fr.insee + l473latk-QOP-ll2h5il3 + 1 + + VAL_ANNAISS + + + + + fr.insee + l473latk-RDOP-ll2h5il3 + 1 + OutParameter + + + fr.insee + l473latk-QOP-ll2h5il3 + 1 + OutParameter + + + + + "Avant de commencer le questionnaire, nous vous demandons de bien vouloir confirmer l'information suivante : l'année de naissance de " || ¤RPPRENOM¤ || " est-elle bien " || cast(¤RPANAISENQ¤,string) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l473latk-RDOP-ll2h5il3 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + kwq9wijq + 1 + + DATNAIS_X + + + fr.insee + kwq9wijq-QOP-kwq9l0nj + 1 + + DATNAIS_X + + + + + fr.insee + kwq9wijq-RDOP-kwq9l0nj + 1 + OutParameter + + + fr.insee + kwq9wijq-QOP-kwq9l0nj + 1 + OutParameter + + + + + "" || nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", quelle est votre date de naissance ?" + + + + YYYY-MM-DD + date + + 1900-01-01 + 2006-01-01 + + + fr.insee + kwq9wijq-RDOP-kwq9l0nj + 1 + + + + + fr.insee + kwq9y19w + 1 + + COUPLE + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + + COUPLE + + + + + fr.insee + kwq9y19w-RDOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + + + "" || nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", êtes-vous actuellement en couple ?" + + + + radio-button + + fr.insee + kwqfz7tj + 1 + CodeList + + + fr.insee + kwq9y19w-RDOP-kwq9xmzm + 1 + + + fr.insee + kwqfz7tj + 1 + CodeList + + + + + + + + fr.insee + l0qkj23a + 1 + + RAISON_VIE_CJT + + + fr.insee + l0qkj23a-QOP-l34fp0w3 + 1 + + RAISON_VIE_CJT + + + + + fr.insee + l0qkj23a-RDOP-l34fp0w3 + 1 + OutParameter + + + fr.insee + l0qkj23a-QOP-l34fp0w3 + 1 + OutParameter + + + + + "Pour quelle raison ne vivez-vous pas ensemble ?" + + + + radio-button + + fr.insee + kwqf7soc + 1 + CodeList + + + fr.insee + l0qkj23a-RDOP-l34fp0w3 + 1 + + + fr.insee + kwqf7soc + 1 + CodeList + + + + + + + fr.insee + l15159qb + 1 + Instruction + + + + fr.insee + li353rhu + 1 + + PRECIS_VIE_CJT + + + fr.insee + li353rhu-QOP-li3584nx + 1 + + PRECIS_VIECJT + + + + + fr.insee + li353rhu-RDOP-li3584nx + 1 + OutParameter + + + fr.insee + li353rhu-QOP-li3584nx + 1 + OutParameter + + + + + "Pouvez-vous préciser cette raison ?" + + + + + fr.insee + li353rhu-RDOP-li3584nx + 1 + + + + + + fr.insee + l34grb6h + 1 + + PRENOM_C + + + fr.insee + l34grb6h-QOP-l34guyz9 + 1 + + PRENOM_C + + + + + fr.insee + l34grb6h-RDOP-l34guyz9 + 1 + OutParameter + + + fr.insee + l34grb6h-QOP-l34guyz9 + 1 + OutParameter + + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", quel est le prénom de votre " || if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤ ="2") then "conjoint(e) actuel(le) ?" else "dernier(ère) conjoint(e) ?" + + + + + fr.insee + l34grb6h-RDOP-l34guyz9 + 1 + + + + + + fr.insee + kwqa0ism + 1 + + DATNAIS_C + + + fr.insee + kwqa0ism-QOP-kwqa5c2z + 1 + + DATNAIS_C + + + + + fr.insee + kwqa0ism-RDOP-kwqa5c2z + 1 + OutParameter + + + fr.insee + kwqa0ism-QOP-kwqa5c2z + 1 + OutParameter + + + + + "Quelle est la date de naissance de " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then "votre conjoint(e) actuel(le) " else "votre dernier(ère) conjoint(e) ") else ¤l34grb6h-QOP-l34guyz9¤) || " ?" + + + + YYYY-MM-DD + date + + 1900-01-01 + 2011-01-01 + + + fr.insee + kwqa0ism-RDOP-kwqa5c2z + 1 + + + + + fr.insee + kwqabjga + 1 + + SEXE_CH + + + fr.insee + kwqabjga-QOP-kwqai8pk + 1 + + SEXE_CH + + + + + fr.insee + kwqabjga-RDOP-kwqai8pk + 1 + OutParameter + + + fr.insee + kwqabjga-QOP-kwqai8pk + 1 + OutParameter + + + + + "" || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then "Votre conjoint(e) est-il/elle ?" else "Votre dernier(ère) conjoint(e) est-il/elle ? ") else (¤l34grb6h-QOP-l34guyz9¤ || " est-il/elle ?")) + + + + radio-button + + fr.insee + kwqir1cc + 1 + CodeList + + + fr.insee + kwqabjga-RDOP-kwqai8pk + 1 + + + fr.insee + kwqir1cc + 1 + CodeList + + + + + + + + fr.insee + l4o59ei7 + 1 + + LIEUNAIS_CH + + + fr.insee + l4o59ei7-QOP-l4o57gfv + 1 + + LIEUNAIS_CH + + + + + fr.insee + l4o59ei7-RDOP-l4o57gfv + 1 + OutParameter + + + fr.insee + l4o59ei7-QOP-l4o57gfv + 1 + OutParameter + + + + + "" || (if nvl(¤l34grb6h-QOP-l34guyz9¤,"") <> "" then ¤l34grb6h-QOP-l34guyz9¤ else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤))) then "Votre conjoint " else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ¤kwqabjga-QOP-kwqai8pk¤="1") then "Votre conjointe " else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3" and (¤kwqabjga-QOP-kwqai8pk¤ ="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤))) then "Votre dernier conjoint " else "Votre dernière conjointe ")))) || " est-" || (if (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) then "il né en France ?" else "elle née en France ?") + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4o59ei7-RDOP-l4o57gfv + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l4pa18h0 + 1 + Instruction + + + + fr.insee + l0quikkt + 1 + + DNAI_CH + + + fr.insee + l0quikkt-QOP-llvz459i + 1 + + DNAI_CH + + + + + fr.insee + l0quikkt-RDOP-llvz459i + 1 + OutParameter + + + fr.insee + l0quikkt-QOP-llvz459i + 1 + OutParameter + + + + + "Quel est le département de naissance de " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) then "votre conjoint " else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ¤kwqabjga-QOP-kwqai8pk¤="1") then "votre conjointe " else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3" and (¤kwqabjga-QOP-kwqai8pk¤ ="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤))) then "votre dernier conjoint " else "votre dernière conjointe "))) else ¤l34grb6h-QOP-l34guyz9¤) || " ?" + + + + + fr.insee + l0quikkt-RDOP-llvz459i + 1 + + + + + fr.insee + l4o5rn9i + 1 + Instruction + + + + fr.insee + l4o57595 + 1 + + PNAI_CH + + + fr.insee + l4o57595-QOP-llvz9iqu + 1 + + PNAI_CH + + + + + fr.insee + l4o57595-RDOP-llvz9iqu + 1 + OutParameter + + + fr.insee + l4o57595-QOP-llvz9iqu + 1 + OutParameter + + + + + "Quel est le pays de naissance de " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) then "votre conjoint " else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ¤kwqabjga-QOP-kwqai8pk¤="1") then "votre conjointe " else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3" and (¤kwqabjga-QOP-kwqai8pk¤ ="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤))) then "votre dernier conjoint " else "votre dernière conjointe "))) else ¤l34grb6h-QOP-l34guyz9¤) || " ?" + + + + + fr.insee + l4o57595-RDOP-llvz9iqu + 1 + + + + + fr.insee + l4o5lb2p + 1 + Instruction + + + + fr.insee + l7ywou64 + 1 + + TRAV_CH + + + fr.insee + l7ywou64-QOP-l7ywme7g + 1 + + TRAV_CH + + + + + fr.insee + l7ywou64-RDOP-l7ywme7g + 1 + OutParameter + + + fr.insee + l7ywou64-QOP-l7ywme7g + 1 + OutParameter + + + + + "" || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) then "Votre conjoint " else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ¤kwqabjga-QOP-kwqai8pk¤="1") then "Votre conjointe " else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3" and (¤kwqabjga-QOP-kwqai8pk¤ ="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤))) then "Votre dernier conjoint " else "Votre dernière conjointe "))) else ¤l34grb6h-QOP-l34guyz9¤) || " a-t-" || (if (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) then "il " else "elle ") || "déjà travaillé ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l7ywou64-RDOP-l7ywme7g + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l0qudtd2 + 1 + + PROF_CH1 + + + fr.insee + l0qudtd2-QOP-llvzbt5w + 1 + + PROF_CH1 + + + + + fr.insee + l0qudtd2-RDOP-llvzbt5w + 1 + OutParameter + + + fr.insee + l0qudtd2-QOP-llvzbt5w + 1 + OutParameter + + + + + "Quelle est la profession actuelle ou la dernière profession de " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then "votre conjoint" else "votre dernier conjoint") else ¤l34grb6h-QOP-l34guyz9¤) || " s'il ne travaille pas ?" + + + + + fr.insee + l0qudtd2-RDOP-llvzbt5w + 1 + + + + + fr.insee + l4o5bu87 + 1 + Instruction + + + fr.insee + l7ykp7bx + 1 + Instruction + + + + fr.insee + lldp4562 + 1 + + PROF_CH2 + + + fr.insee + lldp4562-QOP-llvywmha + 1 + + PROF_CH2 + + + + + fr.insee + lldp4562-RDOP-llvywmha + 1 + OutParameter + + + fr.insee + lldp4562-QOP-llvywmha + 1 + OutParameter + + + + + "Quelle est la profession actuelle ou la dernière profession de " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then "votre conjointe" else "votre dernière conjointe") else ¤l34grb6h-QOP-l34guyz9¤) || " si elle ne travaille pas ?" + + + + + fr.insee + lldp4562-RDOP-llvywmha + 1 + + + + + fr.insee + lldoqdme + 1 + Instruction + + + fr.insee + lldoyoi4 + 1 + Instruction + + + + fr.insee + l43zea6v + 1 + + PROF_C2H + + + fr.insee + l43zea6v-QOP-l4o6x8gg + 1 + + PROF_C2H + + + + + fr.insee + l43zea6v-RDOP-l4o6x8gg + 1 + OutParameter + + + fr.insee + l43zea6v-QOP-l4o6x8gg + 1 + OutParameter + + + + + "Vous n'avez pas trouvé le libellé de profession recherché dans la liste. Veuillez saisir le libellé de profession le plus précis et complet possible." + + + + + fr.insee + l43zea6v-RDOP-l4o6x8gg + 1 + + + + + + fr.insee + l0quphwx + 1 + + STATUT_CH + + + fr.insee + l0quphwx-QOP-l43z7g5s + 1 + + STATUT_CH + + + + + fr.insee + l0quphwx-RDOP-l43z7g5s + 1 + OutParameter + + + fr.insee + l0quphwx-QOP-l43z7g5s + 1 + OutParameter + + + + + "Quel est le statut professionnel (actuel ou dernier) de " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) then "votre conjoint " else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ¤kwqabjga-QOP-kwqai8pk¤="1") then "votre conjointe " else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3" and (¤kwqabjga-QOP-kwqai8pk¤ ="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤))) then "votre dernier conjoint " else "votre dernière conjointe "))) else ¤l34grb6h-QOP-l34guyz9¤) || " ?" + + + + radio-button + + fr.insee + l43yp3tr + 1 + CodeList + + + fr.insee + l0quphwx-RDOP-l43z7g5s + 1 + + + fr.insee + l43yp3tr + 1 + CodeList + + + + + + + + fr.insee + llgt315z + 1 + + SAL_FP_CH + + + fr.insee + llgt315z-QOP-llgsts0b + 1 + + SAL_FP_CH + + + + + fr.insee + llgt315z-RDOP-llgsts0b + 1 + OutParameter + + + fr.insee + llgt315z-QOP-llgsts0b + 1 + OutParameter + + + + + "Dans son emploi, " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) then "votre conjoint " else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ¤kwqabjga-QOP-kwqai8pk¤="1") then "votre conjointe " else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3" and (¤kwqabjga-QOP-kwqai8pk¤ ="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤))) then "votre dernier conjoint " else "votre dernière conjointe "))) else ¤l34grb6h-QOP-l34guyz9¤) || " est ou était ?" + + + + radio-button + + fr.insee + llmhtv0t + 1 + CodeList + + + fr.insee + llgt315z-RDOP-llgsts0b + 1 + + + fr.insee + llmhtv0t + 1 + CodeList + + + + + + + + fr.insee + llgt75zv + 1 + + SAL_ENT_CH + + + fr.insee + llgt75zv-QOP-llgt1faa + 1 + + SAL_ENT_CH + + + + + fr.insee + llgt75zv-RDOP-llgt1faa + 1 + OutParameter + + + fr.insee + llgt75zv-QOP-llgt1faa + 1 + OutParameter + + + + + "Dans son emploi, " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) then "votre conjoint " else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ¤kwqabjga-QOP-kwqai8pk¤="1") then "votre conjointe " else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3" and (¤kwqabjga-QOP-kwqai8pk¤ ="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤))) then "votre dernier conjoint " else "votre dernière conjointe "))) else ¤l34grb6h-QOP-l34guyz9¤) || " est ou était ?" + + + + radio-button + + fr.insee + llnh4uj2 + 1 + CodeList + + + fr.insee + llgt75zv-RDOP-llgt1faa + 1 + + + fr.insee + llnh4uj2 + 1 + CodeList + + + + + + + + fr.insee + llde3pgg + 1 + + SEXE_CF + + + fr.insee + llde3pgg-QOP-lldeidzi + 1 + + SEXE_CF + + + + + fr.insee + llde3pgg-RDOP-lldeidzi + 1 + OutParameter + + + fr.insee + llde3pgg-QOP-lldeidzi + 1 + OutParameter + + + + + "" || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then "Votre conjoint(e) est-il/elle ?" else "Votre dernier(ère) conjoint(e) est-il/elle ? ") else (¤l34grb6h-QOP-l34guyz9¤ || " est-il/elle ?")) + + + + radio-button + + fr.insee + lldegmb1 + 1 + CodeList + + + fr.insee + llde3pgg-RDOP-lldeidzi + 1 + + + fr.insee + lldegmb1 + 1 + CodeList + + + + + + + + fr.insee + lldpi629 + 1 + + LIEUNAIS_CF + + + fr.insee + lldpi629-QOP-lldpfefv + 1 + + LIEUNAIS_CF + + + + + fr.insee + lldpi629-RDOP-lldpfefv + 1 + OutParameter + + + fr.insee + lldpi629-QOP-lldpfefv + 1 + OutParameter + + + + + "" || (if nvl(¤l34grb6h-QOP-l34guyz9¤,"") <> "" then ¤l34grb6h-QOP-l34guyz9¤ else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤))) then "Votre conjoint " else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ¤llde3pgg-QOP-lldeidzi¤="2") then "Votre conjointe " else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3" and (¤llde3pgg-QOP-lldeidzi¤ ="1" or isnull(¤llde3pgg-QOP-lldeidzi¤))) then "Votre dernier conjoint " else "Votre dernière conjointe ")))) || " est-" || (if (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "il né en France ?" else "elle née en France ?") + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lldpi629-RDOP-lldpfefv + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + lldp0f22 + 1 + Instruction + + + + fr.insee + lldp8203 + 1 + + DNAI_CF + + + fr.insee + lldp8203-QOP-llvz9d48 + 1 + + DNAI_CF + + + + + fr.insee + lldp8203-RDOP-llvz9d48 + 1 + OutParameter + + + fr.insee + lldp8203-QOP-llvz9d48 + 1 + OutParameter + + + + + "Quel est le département de naissance de " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "votre conjoint " else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ¤llde3pgg-QOP-lldeidzi¤="2") then "votre conjointe " else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3" and (¤llde3pgg-QOP-lldeidzi¤ ="1" or isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre dernier conjoint " else "votre dernière conjointe "))) else ¤l34grb6h-QOP-l34guyz9¤) || " ?" + + + + + fr.insee + lldp8203-RDOP-llvz9d48 + 1 + + + + + fr.insee + lldpcfe1 + 1 + Instruction + + + + fr.insee + lldpejfa + 1 + + PNAI_CF + + + fr.insee + lldpejfa-QOP-llvzbi5b + 1 + + PNAI_CF + + + + + fr.insee + lldpejfa-RDOP-llvzbi5b + 1 + OutParameter + + + fr.insee + lldpejfa-QOP-llvzbi5b + 1 + OutParameter + + + + + "Quel est le pays de naissance de " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "votre conjoint " else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ¤llde3pgg-QOP-lldeidzi¤="2") then "votre conjointe " else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3" and (¤llde3pgg-QOP-lldeidzi¤ ="1" or isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre dernier conjoint " else "votre dernière conjointe "))) else ¤l34grb6h-QOP-l34guyz9¤) || " ?" + + + + + fr.insee + lldpejfa-RDOP-llvzbi5b + 1 + + + + + fr.insee + lldp3of6 + 1 + Instruction + + + + fr.insee + lldqco3p + 1 + + TRAV_CF + + + fr.insee + lldqco3p-QOP-lldq01q6 + 1 + + TRAV_CF + + + + + fr.insee + lldqco3p-RDOP-lldq01q6 + 1 + OutParameter + + + fr.insee + lldqco3p-QOP-lldq01q6 + 1 + OutParameter + + + + + "" || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "Votre conjoint " else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ¤llde3pgg-QOP-lldeidzi¤="2") then "Votre conjointe " else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3" and (¤llde3pgg-QOP-lldeidzi¤ ="1" or isnull(¤llde3pgg-QOP-lldeidzi¤))) then "Votre dernier conjoint " else "Votre dernière conjointe "))) else ¤l34grb6h-QOP-l34guyz9¤) || " a-t-" || (if (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "il " else "elle ") || "déjà travaillé ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lldqco3p-RDOP-lldq01q6 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4quaxvt + 1 + + PROF_CF1 + + + fr.insee + l4quaxvt-QOP-llvz89y7 + 1 + + PROF_CF1 + + + + + fr.insee + l4quaxvt-RDOP-llvz89y7 + 1 + OutParameter + + + fr.insee + l4quaxvt-QOP-llvz89y7 + 1 + OutParameter + + + + + "Quelle est la profession actuelle ou la dernière profession de " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then "votre conjoint" else "votre dernier conjoint") else ¤l34grb6h-QOP-l34guyz9¤) || " s'il ne travaille pas ?" + + + + + fr.insee + l4quaxvt-RDOP-llvz89y7 + 1 + + + + + fr.insee + l4qu3r4l + 1 + Instruction + + + fr.insee + l7yku2q0 + 1 + Instruction + + + + fr.insee + lldpqtrp + 1 + + PROF_CF2 + + + fr.insee + lldpqtrp-QOP-llvz4gqz + 1 + + PROF_CF2 + + + + + fr.insee + lldpqtrp-RDOP-llvz4gqz + 1 + OutParameter + + + fr.insee + lldpqtrp-QOP-llvz4gqz + 1 + OutParameter + + + + + "Quelle est la profession actuelle ou la dernière profession de " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then "votre conjointe" else "votre dernière conjointe") else ¤l34grb6h-QOP-l34guyz9¤) || " si elle ne travaille pas ?" + + + + + fr.insee + lldpqtrp-RDOP-llvz4gqz + 1 + + + + + fr.insee + lldp9mst + 1 + Instruction + + + fr.insee + lldpdl3w + 1 + Instruction + + + + fr.insee + lldqd2sd + 1 + + PROF_C2F + + + fr.insee + lldqd2sd-QOP-lldqfnvv + 1 + + PROF_C2F + + + + + fr.insee + lldqd2sd-RDOP-lldqfnvv + 1 + OutParameter + + + fr.insee + lldqd2sd-QOP-lldqfnvv + 1 + OutParameter + + + + + "Vous n'avez pas trouvé le libellé de profession recherché dans la liste. Veuillez saisir le libellé de profession le plus précis et complet possible." + + + + + fr.insee + lldqd2sd-RDOP-lldqfnvv + 1 + + + + + + fr.insee + llmhdvun + 1 + + STATUT_CF + + + fr.insee + llmhdvun-QOP-llmhi8tu + 1 + + STATUT_CF + + + + + fr.insee + llmhdvun-RDOP-llmhi8tu + 1 + OutParameter + + + fr.insee + llmhdvun-QOP-llmhi8tu + 1 + OutParameter + + + + + "Quel est le statut professionnel (actuel ou dernier) de " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "votre conjoint " else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ¤llde3pgg-QOP-lldeidzi¤="2") then "votre conjointe " else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3" and (¤llde3pgg-QOP-lldeidzi¤ ="1" or isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre dernier conjoint " else "votre dernière conjointe "))) else ¤l34grb6h-QOP-l34guyz9¤) || " ?" + + + + radio-button + + fr.insee + llmhgfca + 1 + CodeList + + + fr.insee + llmhdvun-RDOP-llmhi8tu + 1 + + + fr.insee + llmhgfca + 1 + CodeList + + + + + + + + fr.insee + llmhi6fd + 1 + + SAL_FP_CF + + + fr.insee + llmhi6fd-QOP-llmhkcpp + 1 + + SAL_FP_CF + + + + + fr.insee + llmhi6fd-RDOP-llmhkcpp + 1 + OutParameter + + + fr.insee + llmhi6fd-QOP-llmhkcpp + 1 + OutParameter + + + + + "Dans son emploi, " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "votre conjoint " else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ¤llde3pgg-QOP-lldeidzi¤="2") then "votre conjointe " else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3" and (¤llde3pgg-QOP-lldeidzi¤ ="1" or isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre dernier conjoint " else "votre dernière conjointe "))) else ¤l34grb6h-QOP-l34guyz9¤) || " est ou était ?" + + + + radio-button + + fr.insee + llgrti9z + 1 + CodeList + + + fr.insee + llmhi6fd-RDOP-llmhkcpp + 1 + + + fr.insee + llgrti9z + 1 + CodeList + + + + + + + + fr.insee + llnh2qpm + 1 + + SAL_ENT_CF + + + fr.insee + llnh2qpm-QOP-llnh4jb1 + 1 + + SAL_ENT_CF + + + + + fr.insee + llnh2qpm-RDOP-llnh4jb1 + 1 + OutParameter + + + fr.insee + llnh2qpm-QOP-llnh4jb1 + 1 + OutParameter + + + + + "Dans son emploi, " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "votre conjoint " else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ¤llde3pgg-QOP-lldeidzi¤="2") then "votre conjointe " else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3" and (¤llde3pgg-QOP-lldeidzi¤ ="1" or isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre dernier conjoint " else "votre dernière conjointe "))) else ¤l34grb6h-QOP-l34guyz9¤) || " est ou était ?" + + + + radio-button + + fr.insee + llnhh1go + 1 + CodeList + + + fr.insee + llnh2qpm-RDOP-llnh4jb1 + 1 + + + fr.insee + llnhh1go + 1 + CodeList + + + + + + + + fr.insee + l27dlmvl + 1 + + ANNEE_U + + + fr.insee + l27dlmvl-QOP-l27dtcgo + 1 + + ANNEE_U + + + + + fr.insee + l27dlmvl-RDOP-l27dtcgo + 1 + OutParameter + + + fr.insee + l27dlmvl-QOP-l27dtcgo + 1 + OutParameter + + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", en quelle année vous êtes-vous mis" || (if (isnull(¤ln0892lt-GOP¤)) then "" else (if (¤ln0892lt-GOP¤ = "2") then "e" else "")) || " en couple avec " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ((¤kwqabjga-QOP-kwqai8pk¤="2" and isnull(¤llde3pgg-QOP-lldeidzi¤)) or (¤llde3pgg-QOP-lldeidzi¤="1" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre conjoint " else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ((¤llde3pgg-QOP-lldeidzi¤ ="2" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) or (¤kwqabjga-QOP-kwqai8pk¤ = "1" and isnull(¤llde3pgg-QOP-lldeidzi¤)))) then "votre conjointe " else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3") and ((¤kwqabjga-QOP-kwqai8pk¤="2" and isnull(¤llde3pgg-QOP-lldeidzi¤)) or (¤llde3pgg-QOP-lldeidzi¤="1" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre dernier conjoint " else "votre dernière conjointe "))) else ¤l34grb6h-QOP-l34guyz9¤) || " ?" + + + + + fr.insee + l27dlmvl-RDOP-l27dtcgo + 1 + + + + + + fr.insee + kwqa4zjf + 1 + + PACS + + + fr.insee + kwqa4zjf-QOP-kwqanscn + 1 + + PACS + + + + + fr.insee + kwqa4zjf-RDOP-kwqanscn + 1 + OutParameter + + + fr.insee + kwqa4zjf-QOP-kwqanscn + 1 + OutParameter + + + + + "Vous " || (if (¤kwq9y19w-QOP-kwq9xmzm¤="3") then "étiez" else "êtes") || "-vous pacsé" || (if (isnull(¤ln0892lt-GOP¤)) then "" else (if (¤ln0892lt-GOP¤ = "2") then "e" else "")) || " avec " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ((¤kwqabjga-QOP-kwqai8pk¤="2" and isnull(¤llde3pgg-QOP-lldeidzi¤)) or (¤llde3pgg-QOP-lldeidzi¤="1" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre conjoint " else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ((¤llde3pgg-QOP-lldeidzi¤ ="2" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) or (¤kwqabjga-QOP-kwqai8pk¤ = "1" and isnull(¤llde3pgg-QOP-lldeidzi¤)))) then "votre conjointe " else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3") and ((¤kwqabjga-QOP-kwqai8pk¤="2" and isnull(¤llde3pgg-QOP-lldeidzi¤)) or (¤llde3pgg-QOP-lldeidzi¤="1" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre dernier conjoint " else "votre dernière conjointe "))) else ¤l34grb6h-QOP-l34guyz9¤) || " ? " + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + kwqa4zjf-RDOP-kwqanscn + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l157fqi8 + 1 + Instruction + + + + fr.insee + l0qu7e2g + 1 + + ANNEE_PACS + + + fr.insee + l0qu7e2g-QOP-l0qu1ddb + 1 + + ANNEE_PACS + + + + + fr.insee + l0qu7e2g-RDOP-l0qu1ddb + 1 + OutParameter + + + fr.insee + l0qu7e2g-QOP-l0qu1ddb + 1 + OutParameter + + + + + "En quelle année vous " || (if (¤kwq9y19w-QOP-kwq9xmzm¤="3") then "étiez" else "êtes") || "-vous pacsé" || (if (isnull(¤ln0892lt-GOP¤)) then "" else (if (¤ln0892lt-GOP¤ = "2") then "e" else "")) || " avec " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ((¤kwqabjga-QOP-kwqai8pk¤="2" and isnull(¤llde3pgg-QOP-lldeidzi¤)) or (¤llde3pgg-QOP-lldeidzi¤="1" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre conjoint " else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ((¤llde3pgg-QOP-lldeidzi¤ ="2" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) or (¤kwqabjga-QOP-kwqai8pk¤ = "1" and isnull(¤llde3pgg-QOP-lldeidzi¤)))) then "votre conjointe " else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3") and ((¤kwqabjga-QOP-kwqai8pk¤="2" and isnull(¤llde3pgg-QOP-lldeidzi¤)) or (¤llde3pgg-QOP-lldeidzi¤="1" and isnull(¤kwqabjga-QOP-kwqai8pk¤))or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre dernier conjoint " else "votre dernière conjointe "))) else ¤l34grb6h-QOP-l34guyz9¤) || " ? " + + + + + fr.insee + l0qu7e2g-RDOP-l0qu1ddb + 1 + + + + + + fr.insee + l0qujqzn + 1 + + MARI + + + fr.insee + l0qujqzn-QOP-l0queysd + 1 + + MARI + + + + + fr.insee + l0qujqzn-RDOP-l0queysd + 1 + OutParameter + + + fr.insee + l0qujqzn-QOP-l0queysd + 1 + OutParameter + + + + + "Vous " || (if (¤kwq9y19w-QOP-kwq9xmzm¤="3") then "étiez" else "êtes") || "-vous marié" || (if (isnull(¤ln0892lt-GOP¤)) then "" else (if (¤ln0892lt-GOP¤ = "2") then "e" else "")) || " avec " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ((¤kwqabjga-QOP-kwqai8pk¤="2" and isnull(¤llde3pgg-QOP-lldeidzi¤)) or (¤llde3pgg-QOP-lldeidzi¤="1" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre conjoint " else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ((¤llde3pgg-QOP-lldeidzi¤ ="2" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) or (¤kwqabjga-QOP-kwqai8pk¤ = "1" and isnull(¤llde3pgg-QOP-lldeidzi¤)))) then "votre conjointe " else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3") and ((¤kwqabjga-QOP-kwqai8pk¤="2" and isnull(¤llde3pgg-QOP-lldeidzi¤)) or (¤llde3pgg-QOP-lldeidzi¤="1" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre dernier conjoint " else "votre dernière conjointe "))) else ¤l34grb6h-QOP-l34guyz9¤) || " ? " + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l0qujqzn-RDOP-l0queysd + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l0qul94p + 1 + + ANNEE_MARI + + + fr.insee + l0qul94p-QOP-l0qum61j + 1 + + ANNEE_MARI + + + + + fr.insee + l0qul94p-RDOP-l0qum61j + 1 + OutParameter + + + fr.insee + l0qul94p-QOP-l0qum61j + 1 + OutParameter + + + + + "En quelle année vous " || (if (¤kwq9y19w-QOP-kwq9xmzm¤="3") then "étiez" else "êtes") || "-vous marié" || (if (isnull(¤ln0892lt-GOP¤)) then "" else (if (¤ln0892lt-GOP¤ = "2") then "e" else "")) || " avec " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ((¤kwqabjga-QOP-kwqai8pk¤="2" and isnull(¤llde3pgg-QOP-lldeidzi¤)) or (¤llde3pgg-QOP-lldeidzi¤="1" and isnull(¤kwqabjga-QOP-kwqai8pk¤))or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre conjoint " else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ((¤llde3pgg-QOP-lldeidzi¤ ="2" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) or (¤kwqabjga-QOP-kwqai8pk¤ = "1" and isnull(¤llde3pgg-QOP-lldeidzi¤)))) then "votre conjointe " else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3") and ((¤kwqabjga-QOP-kwqai8pk¤="2" and isnull(¤llde3pgg-QOP-lldeidzi¤)) or (¤llde3pgg-QOP-lldeidzi¤="1" and isnull(¤kwqabjga-QOP-kwqai8pk¤))or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre dernier conjoint " else "votre dernière conjointe "))) else ¤l34grb6h-QOP-l34guyz9¤) || " ? " + + + + + fr.insee + l0qul94p-RDOP-l0qum61j + 1 + + + + + + fr.insee + l5kszr2f + 1 + + SEPARE + + + fr.insee + l5kszr2f-QOP-l5kt58n3 + 1 + + SEPARE + + + + + fr.insee + l5kszr2f-RDOP-l5kt58n3 + 1 + OutParameter + + + fr.insee + l5kszr2f-QOP-l5kt58n3 + 1 + OutParameter + + + + + "Si vous n'êtes plus en couple, est-ce parce que " + + + + radio-button + + fr.insee + l5ksmbco + 1 + CodeList + + + fr.insee + l5kszr2f-RDOP-l5kt58n3 + 1 + + + fr.insee + l5ksmbco + 1 + CodeList + + + + + + + + fr.insee + l27dzhpw + 1 + + ANNEE_S + + + fr.insee + l27dzhpw-QOP-l27e9xg5 + 1 + + ANNEE_S + + + + + fr.insee + l27dzhpw-RDOP-l27e9xg5 + 1 + OutParameter + + + fr.insee + l27dzhpw-QOP-l27e9xg5 + 1 + OutParameter + + + + + "En quelle année vous êtes-vous séparé" ||(if (isnull(¤ln0892lt-GOP¤)) then "" else (if (¤ln0892lt-GOP¤ = "2") then "e" else "")) || " de " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwqabjga-QOP-kwqai8pk¤="2" and isnull(¤llde3pgg-QOP-lldeidzi¤)) or (¤llde3pgg-QOP-lldeidzi¤="1" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤)) then "votre dernier conjoint " else "votre dernière conjointe ") else ¤l34grb6h-QOP-l34guyz9¤) || " ? " + + + + + fr.insee + l27dzhpw-RDOP-l27e9xg5 + 1 + + + + + + fr.insee + l155mqhc + 1 + + ANNEE_D + + + fr.insee + l155mqhc-QOP-l155u3w9 + 1 + + ANNEE_D + + + + + fr.insee + l155mqhc-RDOP-l155u3w9 + 1 + OutParameter + + + fr.insee + l155mqhc-QOP-l155u3w9 + 1 + OutParameter + + + + + "En quelle année " || (if(nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if ((¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre dernier conjoint " else "votre dernière conjointe ") else ¤l34grb6h-QOP-l34guyz9¤) || " est-" || (if (((nvl(¤llde3pgg-QOP-lldeidzi¤,"")="") and (nvl(¤kwqabjga-QOP-kwqai8pk¤,"")="")) or (¤llde3pgg-QOP-lldeidzi¤ ="1" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) or (¤kwqabjga-QOP-kwqai8pk¤ = "2" and isnull(¤llde3pgg-QOP-lldeidzi¤))or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "il" else "elle") || " décédé" || (if (((nvl(¤llde3pgg-QOP-lldeidzi¤,"")="") and (nvl(¤kwqabjga-QOP-kwqai8pk¤,"")="")) or (¤llde3pgg-QOP-lldeidzi¤ ="1" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) or (¤kwqabjga-QOP-kwqai8pk¤ = "2" and isnull(¤llde3pgg-QOP-lldeidzi¤))or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then " ?" else "e ?") + + + + + fr.insee + l155mqhc-RDOP-l155u3w9 + 1 + + + + + + fr.insee + l43u9qqf + 1 + + ENFAV_C + + + fr.insee + l43u9qqf-QOP-l43udnys + 1 + + ENFAV_C + + + + + fr.insee + l43u9qqf-RDOP-l43udnys + 1 + OutParameter + + + fr.insee + l43u9qqf-QOP-l43udnys + 1 + OutParameter + + + + + "Avant d'être en couple avec vous, " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ((¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤))or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre conjoint " else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ((¤llde3pgg-QOP-lldeidzi¤ ="2" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) or (¤kwqabjga-QOP-kwqai8pk¤ = "1" and isnull(¤llde3pgg-QOP-lldeidzi¤)))) then "votre conjointe " else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3" and ((¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤))or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤)))) then "votre dernier conjoint " else "votre dernière conjointe "))) else ¤l34grb6h-QOP-l34guyz9¤) || " avait-" || (if (((nvl(¤llde3pgg-QOP-lldeidzi¤,"")="") and (nvl(¤kwqabjga-QOP-kwqai8pk¤,"")="")) or (¤llde3pgg-QOP-lldeidzi¤ ="1" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) or (¤kwqabjga-QOP-kwqai8pk¤ = "2" and isnull(¤llde3pgg-QOP-lldeidzi¤))or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "il déjà des enfants ?" else "elle déjà des enfants ?") + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l43u9qqf-RDOP-l43udnys + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l43u4x96 + 1 + + NBENFAV_C + + + fr.insee + l43u4x96-QOP-l43udkpq + 1 + + NBENFAV_C + + + + + fr.insee + l43u4x96-RDOP-l43udkpq + 1 + OutParameter + + + fr.insee + l43u4x96-QOP-l43udkpq + 1 + OutParameter + + + + + "Combien d'enfants avait-" || (if (((nvl(¤llde3pgg-QOP-lldeidzi¤,"")="") and (nvl(¤kwqabjga-QOP-kwqai8pk¤,"")="")) or (¤llde3pgg-QOP-lldeidzi¤ ="1" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) or (¤kwqabjga-QOP-kwqai8pk¤ = "2" and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "il ?" else "elle ?") + + + + + 1 + 20 + + Decimal + + fr.insee + l43u4x96-RDOP-l43udkpq + 1 + + + + + fr.insee + l5jnmvs2 + 1 + + NBENFAV_VENU_C1 + + + fr.insee + l5jnmvs2-QOP-l5jnikmw + 1 + + NBENFAV_VENU_C1 + + + + + fr.insee + l5jnmvs2-RDOP-l5jnikmw + 1 + OutParameter + + + fr.insee + l5jnmvs2-QOP-l5jnikmw + 1 + OutParameter + + + + + "Cet enfant vit-il ou a-t-il vécu avec vous ?" + + + + radio-button + + fr.insee + l4onk0te + 1 + CodeList + + + fr.insee + l5jnmvs2-RDOP-l5jnikmw + 1 + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + + + fr.insee + l43why6c + 1 + + NBENFAV_VENU_C + + + fr.insee + l43why6c-QOP-l43wz325 + 1 + + NBENFAV_VENU_C + + + + + fr.insee + l43why6c-RDOP-l43wz325 + 1 + OutParameter + + + fr.insee + l43why6c-QOP-l43wz325 + 1 + OutParameter + + + + + "Combien vivent ou ont vécu avec vous ?" + + + + + 0 + 20 + + Decimal + + fr.insee + l43why6c-RDOP-l43wz325 + 1 + + + + fr.insee + liiz5sj3 + 1 + Instruction + + + + fr.insee + l8lz0355 + 1 + + VECU_C + + + fr.insee + l8lz0355-QOP-l8lyoa9v + 1 + + VECU_C + + + + + fr.insee + l8lz0355-RDOP-l8lyoa9v + 1 + OutParameter + + + fr.insee + l8lz0355-QOP-l8lyoa9v + 1 + OutParameter + + + + + "Avez-vous déjà vécu avec " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (((if ((¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre dernier conjoint" else "votre dernière conjointe"))) else ¤l34grb6h-QOP-l34guyz9¤) || ", dans le même logement ?" + + + + radio-button + + fr.insee + l4onk0te + 1 + CodeList + + + fr.insee + l8lz0355-RDOP-l8lyoa9v + 1 + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + + + fr.insee + l15131wu + 1 + + AUT_UNION + + + fr.insee + l15131wu-QOP-l43xhx4c + 1 + + AUT_UNION + + + + + fr.insee + l15131wu-RDOP-l43xhx4c + 1 + OutParameter + + + fr.insee + l15131wu-QOP-l43xhx4c + 1 + OutParameter + + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", avez-vous eu d'autres périodes de vie en couple auparavant, pendant au moins six mois sous le même toit, avec ou sans mariage ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l15131wu-RDOP-l43xhx4c + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l43x1amr + 1 + + NB_AUT_UNION + + + fr.insee + l43x1amr-QOP-l43xhfsb + 1 + + NB_AUT_UNION + + + + + fr.insee + l43x1amr-RDOP-l43xhfsb + 1 + OutParameter + + + fr.insee + l43x1amr-QOP-l43xhfsb + 1 + OutParameter + + + + + "Combien de périodes de vie en couple auparavant, pendant au moins six mois sous le même toit, avec ou sans mariage ?" + + + + + 1 + 20 + + Decimal + + fr.insee + l43x1amr-RDOP-l43xhfsb + 1 + + + + + fr.insee + kwqa53jx + 1 + + PRENOM_U1 + + + fr.insee + kwqa53jx-QOP-kwqa5f6j + 1 + + PRENOM_U1 + + + + + fr.insee + kwqa53jx-RDOP-kwqa5f6j + 1 + OutParameter + + + fr.insee + kwqa53jx-QOP-kwqa5f6j + 1 + OutParameter + + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", quel est le prénom de votre premier(ère) conjoint(e) ? " + + + + + fr.insee + kwqa53jx-RDOP-kwqa5f6j + 1 + + + + + + fr.insee + l4p8skko + 1 + + SEXE_U1H + + + fr.insee + l4p8skko-QOP-l4p8w47s + 1 + + SEXE_U1H + + + + + fr.insee + l4p8skko-RDOP-l4p8w47s + 1 + OutParameter + + + fr.insee + l4p8skko-QOP-l4p8w47s + 1 + OutParameter + + + + + "" || (if (nvl(¤kwqa53jx-QOP-kwqa5f6j¤,"")="") then ("Votre premier(ère) conjoint(e) est-il/elle ? ") else (¤kwqa53jx-QOP-kwqa5f6j¤ || " est-il/elle ?")) + + + + radio-button + + fr.insee + kwqir1cc + 1 + CodeList + + + fr.insee + l4p8skko-RDOP-l4p8w47s + 1 + + + fr.insee + kwqir1cc + 1 + CodeList + + + + + + + + fr.insee + lldenssh + 1 + + SEXE_U1F + + + fr.insee + lldenssh-QOP-lldeceld + 1 + + SEXE_U1F + + + + + fr.insee + lldenssh-RDOP-lldeceld + 1 + OutParameter + + + fr.insee + lldenssh-QOP-lldeceld + 1 + OutParameter + + + + + "" || (if (nvl(¤kwqa53jx-QOP-kwqa5f6j¤,"")="") then ("Votre premier(ère) conjoint(e) est-il/elle ? ") else (¤kwqa53jx-QOP-kwqa5f6j¤ || " est-il/elle ?")) + + + + radio-button + + fr.insee + lldegmb1 + 1 + CodeList + + + fr.insee + lldenssh-RDOP-lldeceld + 1 + + + fr.insee + lldegmb1 + 1 + CodeList + + + + + + + + fr.insee + l34fzu5m + 1 + + ANNEE_U1 + + + fr.insee + l34fzu5m-QOP-l34fz29f + 1 + + ANNEE_U1 + + + + + fr.insee + l34fzu5m-RDOP-l34fz29f + 1 + OutParameter + + + fr.insee + l34fzu5m-QOP-l34fz29f + 1 + OutParameter + + + + + "En quelle année vous étiez-vous mis" || (if (isnull(¤ln0892lt-GOP¤)) then "" else (if (¤ln0892lt-GOP¤ = "2") then "e" else "")) || " en couple avec " || (if(nvl(¤kwqa53jx-QOP-kwqa5f6j¤,"")="") then (if ((¤l4p8skko-QOP-l4p8w47s¤="2" or isnull(¤l4p8skko-QOP-l4p8w47s¤)) and (¤lldenssh-QOP-lldeceld¤="1" or isnull(¤lldenssh-QOP-lldeceld¤)) or (isnull(¤l4p8skko-QOP-l4p8w47s¤) and isnull(¤lldenssh-QOP-lldeceld¤))) then "votre premier conjoint " else "votre première conjointe ") else ¤kwqa53jx-QOP-kwqa5f6j¤) || " ?" + + + + + fr.insee + l34fzu5m-RDOP-l34fz29f + 1 + + + + + + fr.insee + l27dlnmq + 1 + + PACS_U1 + + + fr.insee + l27dlnmq-QOP-l27dler4 + 1 + + PACS_U1 + + + + + fr.insee + l27dlnmq-RDOP-l27dler4 + 1 + OutParameter + + + fr.insee + l27dlnmq-QOP-l27dler4 + 1 + OutParameter + + + + + "Vous étiez-vous pacsé" || (if (isnull(¤ln0892lt-GOP¤)) then "" else (if (¤ln0892lt-GOP¤ = "2") then "e" else "")) || " avec " || (if(nvl(¤kwqa53jx-QOP-kwqa5f6j¤,"")="") then (if ((¤l4p8skko-QOP-l4p8w47s¤="2" or isnull(¤l4p8skko-QOP-l4p8w47s¤)) and (¤lldenssh-QOP-lldeceld¤="1" or isnull(¤lldenssh-QOP-lldeceld¤)) or (isnull(¤l4p8skko-QOP-l4p8w47s¤) and isnull(¤lldenssh-QOP-lldeceld¤))) then "votre premier conjoint " else "votre première conjointe ") else ¤kwqa53jx-QOP-kwqa5f6j¤) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l27dlnmq-RDOP-l27dler4 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l27e0i68 + 1 + Instruction + + + + fr.insee + l27dns8a + 1 + + ANNEE_PACS_U1 + + + fr.insee + l27dns8a-QOP-l27dy9w1 + 1 + + ANNEE_PACS_U1 + + + + + fr.insee + l27dns8a-RDOP-l27dy9w1 + 1 + OutParameter + + + fr.insee + l27dns8a-QOP-l27dy9w1 + 1 + OutParameter + + + + + "En quelle année vous étiez-vous pacsé" || (if (isnull(¤ln0892lt-GOP¤)) then "" else (if (¤ln0892lt-GOP¤ = "2") then "e" else "")) || " avec " || (if(nvl(¤kwqa53jx-QOP-kwqa5f6j¤,"")="") then (if ((¤l4p8skko-QOP-l4p8w47s¤="2" or isnull(¤l4p8skko-QOP-l4p8w47s¤)) and (¤lldenssh-QOP-lldeceld¤="1" or isnull(¤lldenssh-QOP-lldeceld¤)) or (isnull(¤l4p8skko-QOP-l4p8w47s¤) and isnull(¤lldenssh-QOP-lldeceld¤))) then "votre premier conjoint " else "votre première conjointe ") else ¤kwqa53jx-QOP-kwqa5f6j¤) || " ?" + + + + + fr.insee + l27dns8a-RDOP-l27dy9w1 + 1 + + + + + + fr.insee + l27duust + 1 + + MARI_U1 + + + fr.insee + l27duust-QOP-l27dl55t + 1 + + MARI_U1 + + + + + fr.insee + l27duust-RDOP-l27dl55t + 1 + OutParameter + + + fr.insee + l27duust-QOP-l27dl55t + 1 + OutParameter + + + + + "Vous étiez-vous marié" || (if (isnull(¤ln0892lt-GOP¤)) then "" else (if (¤ln0892lt-GOP¤ = "2") then "e" else "")) || " avec " || (if(nvl(¤kwqa53jx-QOP-kwqa5f6j¤,"")="") then (if ((¤l4p8skko-QOP-l4p8w47s¤="2" or isnull(¤l4p8skko-QOP-l4p8w47s¤)) and (¤lldenssh-QOP-lldeceld¤="1" or isnull(¤lldenssh-QOP-lldeceld¤)) or (isnull(¤l4p8skko-QOP-l4p8w47s¤) and isnull(¤lldenssh-QOP-lldeceld¤))) then "votre premier conjoint " else "votre première conjointe ") else ¤kwqa53jx-QOP-kwqa5f6j¤) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l27duust-RDOP-l27dl55t + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l27e50tv + 1 + + ANNEE_MARI_U1 + + + fr.insee + l27e50tv-QOP-l27dy96e + 1 + + ANNEE_MARI_U1 + + + + + fr.insee + l27e50tv-RDOP-l27dy96e + 1 + OutParameter + + + fr.insee + l27e50tv-QOP-l27dy96e + 1 + OutParameter + + + + + "En quelle année vous étiez-vous marié" || (if (isnull(¤ln0892lt-GOP¤)) then "" else (if (¤ln0892lt-GOP¤ = "2") then "e" else "")) || " avec " || (if(nvl(¤kwqa53jx-QOP-kwqa5f6j¤,"")="") then (if ((¤l4p8skko-QOP-l4p8w47s¤="2" or isnull(¤l4p8skko-QOP-l4p8w47s¤)) and (¤lldenssh-QOP-lldeceld¤="1" or isnull(¤lldenssh-QOP-lldeceld¤)) or (isnull(¤l4p8skko-QOP-l4p8w47s¤) and isnull(¤lldenssh-QOP-lldeceld¤))) then "votre premier conjoint " else "votre première conjointe ") else ¤kwqa53jx-QOP-kwqa5f6j¤) || " ?" + + + + + fr.insee + l27e50tv-RDOP-l27dy96e + 1 + + + + + + fr.insee + l5ktf1wn + 1 + + SEPARE_U1 + + + fr.insee + l5ktf1wn-QOP-l5kt1un9 + 1 + + SEPARE_U1 + + + + + fr.insee + l5ktf1wn-RDOP-l5kt1un9 + 1 + OutParameter + + + fr.insee + l5ktf1wn-QOP-l5kt1un9 + 1 + OutParameter + + + + + "Cette période de vie en couple s'est-elle achevée parce que " + + + + radio-button + + fr.insee + l5ktegqo + 1 + CodeList + + + fr.insee + l5ktf1wn-RDOP-l5kt1un9 + 1 + + + fr.insee + l5ktegqo + 1 + CodeList + + + + + + + + fr.insee + l27dzhzv + 1 + + ANNEE_S_U1 + + + fr.insee + l27dzhzv-QOP-l27e9d05 + 1 + + ANNEE_S_U1 + + + + + fr.insee + l27dzhzv-RDOP-l27e9d05 + 1 + OutParameter + + + fr.insee + l27dzhzv-QOP-l27e9d05 + 1 + OutParameter + + + + + "En quelle année vous êtes-vous séparé" ||(if (isnull(¤ln0892lt-GOP¤)) then "" else (if (¤ln0892lt-GOP¤ = "2") then "e" else "")) || " de " || (if (nvl(¤kwqa53jx-QOP-kwqa5f6j¤,"")="") then (if (¤l4p8skko-QOP-l4p8w47s¤="2" and isnull(¤lldenssh-QOP-lldeceld¤)) or (¤lldenssh-QOP-lldeceld¤="1" and isnull(¤l4p8skko-QOP-l4p8w47s¤)) or (isnull(¤l4p8skko-QOP-l4p8w47s¤) and isnull(¤lldenssh-QOP-lldeceld¤)) then "votre premier conjoint " else "votre première conjointe ") else ¤kwqa53jx-QOP-kwqa5f6j¤) || " ?" + + + + + fr.insee + l27dzhzv-RDOP-l27e9d05 + 1 + + + + + + fr.insee + l27e0qyq + 1 + + ANNEE_D_U1 + + + fr.insee + l27e0qyq-QOP-l27e0zm5 + 1 + + ANNEE_D_U1 + + + + + fr.insee + l27e0qyq-RDOP-l27e0zm5 + 1 + OutParameter + + + fr.insee + l27e0qyq-QOP-l27e0zm5 + 1 + OutParameter + + + + + "En quelle année " || (if(nvl(¤kwqa53jx-QOP-kwqa5f6j¤,"")="") then (if ((¤l4p8skko-QOP-l4p8w47s¤="2" or isnull(¤l4p8skko-QOP-l4p8w47s¤)) and (¤lldenssh-QOP-lldeceld¤="1" or isnull(¤lldenssh-QOP-lldeceld¤)) or (isnull(¤l4p8skko-QOP-l4p8w47s¤) and isnull(¤lldenssh-QOP-lldeceld¤))) then "votre premier conjoint " else "votre première conjointe ") else ¤kwqa53jx-QOP-kwqa5f6j¤) || " est-" || (if (((nvl(¤lldenssh-QOP-lldeceld¤,"")="") and (nvl(¤l4p8skko-QOP-l4p8w47s¤,"")="")) or (¤lldenssh-QOP-lldeceld¤ ="1" and isnull(¤l4p8skko-QOP-l4p8w47s¤)) or (¤l4p8skko-QOP-l4p8w47s¤ = "2" and isnull(¤lldenssh-QOP-lldeceld¤)) or (isnull(¤l4p8skko-QOP-l4p8w47s¤) and isnull(¤lldenssh-QOP-lldeceld¤))) then "il décédé ?" else "elle décédée ?") + + + + + fr.insee + l27e0qyq-RDOP-l27e0zm5 + 1 + + + + + + fr.insee + l4cjg2rp + 1 + + ENFAV_C_U1 + + + fr.insee + l4cjg2rp-QOP-l4cjcmvn + 1 + + ENFAV_C_U1 + + + + + fr.insee + l4cjg2rp-RDOP-l4cjcmvn + 1 + OutParameter + + + fr.insee + l4cjg2rp-QOP-l4cjcmvn + 1 + OutParameter + + + + + "Avant d'être en couple avec vous, " || (if(nvl(¤kwqa53jx-QOP-kwqa5f6j¤,"")="") then (if ((¤l4p8skko-QOP-l4p8w47s¤="2" or isnull(¤l4p8skko-QOP-l4p8w47s¤)) and (¤lldenssh-QOP-lldeceld¤="1" or isnull(¤lldenssh-QOP-lldeceld¤)) or (isnull(¤l4p8skko-QOP-l4p8w47s¤) and isnull(¤lldenssh-QOP-lldeceld¤))) then "votre premier conjoint" else "votre première conjointe") else ¤kwqa53jx-QOP-kwqa5f6j¤) || " avait-" || (if (((nvl(¤lldenssh-QOP-lldeceld¤,"")="") and (nvl(¤l4p8skko-QOP-l4p8w47s¤,"")="")) or (¤lldenssh-QOP-lldeceld¤ ="1" and isnull(¤l4p8skko-QOP-l4p8w47s¤)) or (¤l4p8skko-QOP-l4p8w47s¤ = "2" and isnull(¤lldenssh-QOP-lldeceld¤)) or (isnull(¤l4p8skko-QOP-l4p8w47s¤) and isnull(¤lldenssh-QOP-lldeceld¤))) then "il" else "elle") || " déjà des enfants ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4cjg2rp-RDOP-l4cjcmvn + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4cja8pm + 1 + + NBENFAV_C_U1 + + + fr.insee + l4cja8pm-QOP-l4cjc9rj + 1 + + NBENFAV_C_U1 + + + + + fr.insee + l4cja8pm-RDOP-l4cjc9rj + 1 + OutParameter + + + fr.insee + l4cja8pm-QOP-l4cjc9rj + 1 + OutParameter + + + + + "Combien d'enfants avait-" || (if (((nvl(¤lldenssh-QOP-lldeceld¤,"")="") and (nvl(¤l4p8skko-QOP-l4p8w47s¤,"")="")) or (¤lldenssh-QOP-lldeceld¤ ="1" and isnull(¤l4p8skko-QOP-l4p8w47s¤)) or (¤l4p8skko-QOP-l4p8w47s¤ = "2" and isnull(¤lldenssh-QOP-lldeceld¤))) then "il ?" else "elle ?") + + + + + 1 + 20 + + Decimal + + fr.insee + l4cja8pm-RDOP-l4cjc9rj + 1 + + + + + fr.insee + l5ilbb89 + 1 + + NBENFAV_C1_VENU_U1 + + + fr.insee + l5ilbb89-QOP-l5ild1d2 + 1 + + NBENFAV_C1_VENU_U1 + + + + + fr.insee + l5ilbb89-RDOP-l5ild1d2 + 1 + OutParameter + + + fr.insee + l5ilbb89-QOP-l5ild1d2 + 1 + OutParameter + + + + + "Cet enfant a-t-il vécu avec vous ?" + + + + radio-button + + fr.insee + l4onk0te + 1 + CodeList + + + fr.insee + l5ilbb89-RDOP-l5ild1d2 + 1 + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + + + fr.insee + l4o5x7yq + 1 + + NBENFAV_C_VENU_U1 + + + fr.insee + l4o5x7yq-QOP-l4o5y0na + 1 + + NBENFAV_C_VENU_U1 + + + + + fr.insee + l4o5x7yq-RDOP-l4o5y0na + 1 + OutParameter + + + fr.insee + l4o5x7yq-QOP-l4o5y0na + 1 + OutParameter + + + + + "Combien ont vécu avec vous ?" + + + + + 0 + 20 + + Decimal + + fr.insee + l4o5x7yq-RDOP-l4o5y0na + 1 + + + + fr.insee + liiz9el9 + 1 + Instruction + + + + fr.insee + l9il0i0h + 1 + + AUT_U2 + + + fr.insee + l9il0i0h-QOP-l9ilguvv + 1 + + AUT_U2 + + + + + fr.insee + l9il0i0h-RDOP-l9ilguvv + 1 + OutParameter + + + fr.insee + l9il0i0h-QOP-l9ilguvv + 1 + OutParameter + + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", souhaitez-vous décrire une autre période de vie en couple qui est importante pour vous ? " + + + + radio-button + + fr.insee + l4onk0te + 1 + CodeList + + + fr.insee + l9il0i0h-RDOP-l9ilguvv + 1 + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + + + fr.insee + l9ilcol6 + 1 + + PRENOM_U2 + + + fr.insee + l9ilcol6-QOP-l9il24xt + 1 + + PRENOM_U2 + + + + + fr.insee + l9ilcol6-RDOP-l9il24xt + 1 + OutParameter + + + fr.insee + l9ilcol6-QOP-l9il24xt + 1 + OutParameter + + + + + "Quel est le prénom de votre autre conjoint(e) ? " + + + + + fr.insee + l9ilcol6-RDOP-l9il24xt + 1 + + + + + + fr.insee + l9ikne2h + 1 + + SEXE_U2H + + + fr.insee + l9ikne2h-QOP-l9ikmsqc + 1 + + SEXE_U2H + + + + + fr.insee + l9ikne2h-RDOP-l9ikmsqc + 1 + OutParameter + + + fr.insee + l9ikne2h-QOP-l9ikmsqc + 1 + OutParameter + + + + + "" || (if (nvl(¤l9ilcol6-QOP-l9il24xt¤,"")="") then ("Votre autre conjoint(e) est-il/elle ? ") else (¤l9ilcol6-QOP-l9il24xt¤ || " est-il/elle ?")) + + + + radio-button + + fr.insee + kwqir1cc + 1 + CodeList + + + fr.insee + l9ikne2h-RDOP-l9ikmsqc + 1 + + + fr.insee + kwqir1cc + 1 + CodeList + + + + + + + + fr.insee + lldetngg + 1 + + SEXE_U2F + + + fr.insee + lldetngg-QOP-lldefr60 + 1 + + SEXE_U2F + + + + + fr.insee + lldetngg-RDOP-lldefr60 + 1 + OutParameter + + + fr.insee + lldetngg-QOP-lldefr60 + 1 + OutParameter + + + + + "" || (if (nvl(¤l9ilcol6-QOP-l9il24xt¤,"")="") then ("Votre autre conjoint(e) est-il/elle ? ") else (¤l9ilcol6-QOP-l9il24xt¤ || " est-il/elle ?")) + + + + radio-button + + fr.insee + lldegmb1 + 1 + CodeList + + + fr.insee + lldetngg-RDOP-lldefr60 + 1 + + + fr.insee + lldegmb1 + 1 + CodeList + + + + + + + + fr.insee + l9ikn3ea + 1 + + ANNEE_U2 + + + fr.insee + l9ikn3ea-QOP-l9il1x2i + 1 + + ANNEE_U2 + + + + + fr.insee + l9ikn3ea-RDOP-l9il1x2i + 1 + OutParameter + + + fr.insee + l9ikn3ea-QOP-l9il1x2i + 1 + OutParameter + + + + + "En quelle année vous étiez-vous mis" || (if (isnull(¤ln0892lt-GOP¤)) then "" else (if (¤ln0892lt-GOP¤ = "2") then "e" else "")) || " en couple avec " || (if(nvl(¤l9ilcol6-QOP-l9il24xt¤,"")="") then (if ((¤l9ikne2h-QOP-l9ikmsqc¤="2" or isnull(¤l9ikne2h-QOP-l9ikmsqc¤)) and (¤lldetngg-QOP-lldefr60¤="1" or isnull(¤lldetngg-QOP-lldefr60¤)) or (isnull(¤l9ikne2h-QOP-l9ikmsqc¤) and isnull(¤lldetngg-QOP-lldefr60¤))) then "votre autre conjoint " else "votre autre conjointe ") else ¤l9ilcol6-QOP-l9il24xt¤) || " ?" + + + + + fr.insee + l9ikn3ea-RDOP-l9il1x2i + 1 + + + + + + fr.insee + l9il24ft + 1 + + PACS_U2 + + + fr.insee + l9il24ft-QOP-l9iks5py + 1 + + PACS_U2 + + + + + fr.insee + l9il24ft-RDOP-l9iks5py + 1 + OutParameter + + + fr.insee + l9il24ft-QOP-l9iks5py + 1 + OutParameter + + + + + "Vous étiez-vous pacsé" || (if (isnull(¤ln0892lt-GOP¤)) then "" else (if (¤ln0892lt-GOP¤ = "2") then "e" else "")) || " avec " || (if(nvl(¤l9ilcol6-QOP-l9il24xt¤,"")="") then (if ((¤l9ikne2h-QOP-l9ikmsqc¤="2" or isnull(¤l9ikne2h-QOP-l9ikmsqc¤)) and (¤lldetngg-QOP-lldefr60¤="1" or isnull(¤lldetngg-QOP-lldefr60¤)) or (isnull(¤l9ikne2h-QOP-l9ikmsqc¤) and isnull(¤lldetngg-QOP-lldefr60¤))) then "votre autre conjoint " else "votre autre conjointe ") else ¤l9ilcol6-QOP-l9il24xt¤) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l9il24ft-RDOP-l9iks5py + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l9ikt4wn + 1 + Instruction + + + + fr.insee + l9ikxoxa + 1 + + ANNEE_PACS_U2 + + + fr.insee + l9ikxoxa-QOP-l9iktamx + 1 + + ANNEE_PACS_U2 + + + + + fr.insee + l9ikxoxa-RDOP-l9iktamx + 1 + OutParameter + + + fr.insee + l9ikxoxa-QOP-l9iktamx + 1 + OutParameter + + + + + "En quelle année vous étiez-vous pacsé" || (if (isnull(¤ln0892lt-GOP¤)) then "" else (if (¤ln0892lt-GOP¤ = "2") then "e" else "")) || " avec " || (if(nvl(¤l9ilcol6-QOP-l9il24xt¤,"")="") then (if ((¤l9ikne2h-QOP-l9ikmsqc¤="2" or isnull(¤l9ikne2h-QOP-l9ikmsqc¤)) and (¤lldetngg-QOP-lldefr60¤="1" or isnull(¤lldetngg-QOP-lldefr60¤)) or (isnull(¤l9ikne2h-QOP-l9ikmsqc¤) and isnull(¤lldetngg-QOP-lldefr60¤))) then "votre autre conjoint " else "votre autre conjointe ") else ¤l9ilcol6-QOP-l9il24xt¤) || " ?" + + + + + fr.insee + l9ikxoxa-RDOP-l9iktamx + 1 + + + + + + fr.insee + l9ikvx4n + 1 + + MARI_U2 + + + fr.insee + l9ikvx4n-QOP-l9ikpuls + 1 + + MARI_U2 + + + + + fr.insee + l9ikvx4n-RDOP-l9ikpuls + 1 + OutParameter + + + fr.insee + l9ikvx4n-QOP-l9ikpuls + 1 + OutParameter + + + + + "Vous étiez-vous marié" || (if (isnull(¤ln0892lt-GOP¤)) then "" else (if (¤ln0892lt-GOP¤ = "2") then "e" else "")) || " avec " || (if(nvl(¤l9ilcol6-QOP-l9il24xt¤,"")="") then (if ((¤l9ikne2h-QOP-l9ikmsqc¤="2" or isnull(¤l9ikne2h-QOP-l9ikmsqc¤)) and (¤lldetngg-QOP-lldefr60¤="1" or isnull(¤lldetngg-QOP-lldefr60¤)) or (isnull(¤l9ikne2h-QOP-l9ikmsqc¤) and isnull(¤lldetngg-QOP-lldefr60¤))) then "votre autre conjoint " else "votre autre conjointe ") else ¤l9ilcol6-QOP-l9il24xt¤) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l9ikvx4n-RDOP-l9ikpuls + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l9iklcix + 1 + + ANNEE_MARI_U2 + + + fr.insee + l9iklcix-QOP-l9ikgh6x + 1 + + ANNEE_MARI_U2 + + + + + fr.insee + l9iklcix-RDOP-l9ikgh6x + 1 + OutParameter + + + fr.insee + l9iklcix-QOP-l9ikgh6x + 1 + OutParameter + + + + + "En quelle année vous étiez-vous marié" || (if (isnull(¤ln0892lt-GOP¤)) then "" else (if (¤ln0892lt-GOP¤ = "2") then "e" else "")) || " avec " || (if(nvl(¤l9ilcol6-QOP-l9il24xt¤,"")="") then (if ((¤l9ikne2h-QOP-l9ikmsqc¤="2" or isnull(¤l9ikne2h-QOP-l9ikmsqc¤)) and (¤lldetngg-QOP-lldefr60¤="1" or isnull(¤lldetngg-QOP-lldefr60¤)) or (isnull(¤l9ikne2h-QOP-l9ikmsqc¤) and isnull(¤lldetngg-QOP-lldefr60¤))) then "votre autre conjoint " else "votre autre conjointe ") else ¤l9ilcol6-QOP-l9il24xt¤) || " ?" + + + + + fr.insee + l9iklcix-RDOP-l9ikgh6x + 1 + + + + + + fr.insee + l9ikqlwv + 1 + + SEPARE_U2 + + + fr.insee + l9ikqlwv-QOP-l9ikoz30 + 1 + + SEPARE_U2 + + + + + fr.insee + l9ikqlwv-RDOP-l9ikoz30 + 1 + OutParameter + + + fr.insee + l9ikqlwv-QOP-l9ikoz30 + 1 + OutParameter + + + + + "Cette période de vie en couple s'est-elle achevée parce que " + + + + radio-button + + fr.insee + las91jew + 1 + CodeList + + + fr.insee + l9ikqlwv-RDOP-l9ikoz30 + 1 + + + fr.insee + las91jew + 1 + CodeList + + + + + + + + fr.insee + l9ikze1y + 1 + + ANNEE_S_U2 + + + fr.insee + l9ikze1y-QOP-l9ikq8j6 + 1 + + ANNEE_S_U2 + + + + + fr.insee + l9ikze1y-RDOP-l9ikq8j6 + 1 + OutParameter + + + fr.insee + l9ikze1y-QOP-l9ikq8j6 + 1 + OutParameter + + + + + "En quelle année vous êtes-vous séparé" ||(if (isnull(¤ln0892lt-GOP¤)) then "" else (if (¤ln0892lt-GOP¤ = "2") then "e" else "")) || " de " || (if (nvl(¤l9ilcol6-QOP-l9il24xt¤,"")="") then (if (¤l9ikne2h-QOP-l9ikmsqc¤="2" and isnull(¤lldetngg-QOP-lldefr60¤)) or (¤lldetngg-QOP-lldefr60¤="1" and isnull(¤l9ikne2h-QOP-l9ikmsqc¤)) or (isnull(¤l9ikne2h-QOP-l9ikmsqc¤) and isnull(¤lldetngg-QOP-lldefr60¤)) then "votre autre conjoint " else "votre autre conjointe ") else ¤l9ilcol6-QOP-l9il24xt¤) || " ?" + + + + + fr.insee + l9ikze1y-RDOP-l9ikq8j6 + 1 + + + + + + fr.insee + l9ikmjqm + 1 + + ANNEE_D_U2 + + + fr.insee + l9ikmjqm-QOP-l9ikmj5h + 1 + + ANNEE_D_U2 + + + + + fr.insee + l9ikmjqm-RDOP-l9ikmj5h + 1 + OutParameter + + + fr.insee + l9ikmjqm-QOP-l9ikmj5h + 1 + OutParameter + + + + + "En quelle année " || (if(nvl(¤l9ilcol6-QOP-l9il24xt¤,"")="") then (if ((¤l9ikne2h-QOP-l9ikmsqc¤="2" or isnull(¤l9ikne2h-QOP-l9ikmsqc¤)) and (¤lldetngg-QOP-lldefr60¤="1" or isnull(¤lldetngg-QOP-lldefr60¤)) or (isnull(¤l9ikne2h-QOP-l9ikmsqc¤) and isnull(¤lldetngg-QOP-lldefr60¤))) then "votre autre conjoint " else "votre autre conjointe ") else ¤l9ilcol6-QOP-l9il24xt¤) || " est-" || (if (((nvl(¤lldetngg-QOP-lldefr60¤,"")="") and (nvl(¤l9ikne2h-QOP-l9ikmsqc¤,"")="")) or (¤lldetngg-QOP-lldefr60¤ ="1" and isnull(¤l9ikne2h-QOP-l9ikmsqc¤)) or (¤l9ikne2h-QOP-l9ikmsqc¤ = "2" and isnull(¤lldetngg-QOP-lldefr60¤)) or (isnull(¤l9ikne2h-QOP-l9ikmsqc¤) and isnull(¤lldetngg-QOP-lldefr60¤))) then "il décédé ?" else "elle décédée ?") + + + + + fr.insee + l9ikmjqm-RDOP-l9ikmj5h + 1 + + + + + + fr.insee + l9ikxndo + 1 + + ENFAV_C_U2 + + + fr.insee + l9ikxndo-QOP-l9ikxjkq + 1 + + ENFAV_C_U2 + + + + + fr.insee + l9ikxndo-RDOP-l9ikxjkq + 1 + OutParameter + + + fr.insee + l9ikxndo-QOP-l9ikxjkq + 1 + OutParameter + + + + + "Avant d'être en couple avec vous, " || (if(nvl(¤l9ilcol6-QOP-l9il24xt¤,"")="") then (if ((¤l9ikne2h-QOP-l9ikmsqc¤="2" or isnull(¤l9ikne2h-QOP-l9ikmsqc¤)) and (¤lldetngg-QOP-lldefr60¤="1" or isnull(¤lldetngg-QOP-lldefr60¤)) or (isnull(¤l9ikne2h-QOP-l9ikmsqc¤) and isnull(¤lldetngg-QOP-lldefr60¤))) then "votre autre conjoint" else "votre autre conjointe") else ¤l9ilcol6-QOP-l9il24xt¤) || " avait-" || (if (((nvl(¤lldetngg-QOP-lldefr60¤,"")="") and (nvl(¤l9ikne2h-QOP-l9ikmsqc¤,"")="")) or (¤lldetngg-QOP-lldefr60¤ ="1" and isnull(¤l9ikne2h-QOP-l9ikmsqc¤)) or (¤l9ikne2h-QOP-l9ikmsqc¤ = "2" and isnull(¤lldetngg-QOP-lldefr60¤)) or (isnull(¤l9ikne2h-QOP-l9ikmsqc¤) and isnull(¤lldetngg-QOP-lldefr60¤))) then "il" else "elle") || " déjà des enfants ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l9ikxndo-RDOP-l9ikxjkq + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l9ikuqoe + 1 + + NBENFAV_C_U2 + + + fr.insee + l9ikuqoe-QOP-l9ikmqgf + 1 + + NBENFAV_C_U2 + + + + + fr.insee + l9ikuqoe-RDOP-l9ikmqgf + 1 + OutParameter + + + fr.insee + l9ikuqoe-QOP-l9ikmqgf + 1 + OutParameter + + + + + "Combien d'enfants avait-" || (if (((nvl(¤lldetngg-QOP-lldefr60¤,"")="") and (nvl(¤l9ikne2h-QOP-l9ikmsqc¤,"")="")) or (¤lldetngg-QOP-lldefr60¤ ="1" and isnull(¤l9ikne2h-QOP-l9ikmsqc¤)) or (¤l9ikne2h-QOP-l9ikmsqc¤ = "2" and isnull(¤lldetngg-QOP-lldefr60¤))) then "il ?" else "elle ?") + + + + + 1 + 20 + + Decimal + + fr.insee + l9ikuqoe-RDOP-l9ikmqgf + 1 + + + + + fr.insee + l9ikekzu + 1 + + NBENFAV_C1_VENU_U2 + + + fr.insee + l9ikekzu-QOP-l9ikbyxh + 1 + + NBENFAV_C1_VENU_U2 + + + + + fr.insee + l9ikekzu-RDOP-l9ikbyxh + 1 + OutParameter + + + fr.insee + l9ikekzu-QOP-l9ikbyxh + 1 + OutParameter + + + + + "Cet enfant a-t-il vécu avec vous ?" + + + + radio-button + + fr.insee + l4onk0te + 1 + CodeList + + + fr.insee + l9ikekzu-RDOP-l9ikbyxh + 1 + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + + + fr.insee + l9iks078 + 1 + + NBENFAV_C_VENU_U2 + + + fr.insee + l9iks078-QOP-l9ikl02v + 1 + + NBENFAV_C_VENU_U2 + + + + + fr.insee + l9iks078-RDOP-l9ikl02v + 1 + OutParameter + + + fr.insee + l9iks078-QOP-l9ikl02v + 1 + OutParameter + + + + + "Combien ont vécu avec vous ?" + + + + + 0 + 20 + + Decimal + + fr.insee + l9iks078-RDOP-l9ikl02v + 1 + + + + fr.insee + liizbc3w + 1 + Instruction + + + + fr.insee + kwqigxtx + 1 + + ENF + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + + ENF + + + + + fr.insee + kwqigxtx-RDOP-kwqianb6 + 1 + OutParameter + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + OutParameter + + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", avez-vous eu des enfants ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + kwqigxtx-RDOP-kwqianb6 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l1gkoo46 + 1 + Instruction + + + + fr.insee + kwqi5zsm + 1 + + NBENF + + + fr.insee + kwqi5zsm-QOP-kwqilzs8 + 1 + + NBENF + + + + + fr.insee + kwqi5zsm-RDOP-kwqilzs8 + 1 + OutParameter + + + fr.insee + kwqi5zsm-QOP-kwqilzs8 + 1 + OutParameter + + + + + "Combien d'enfants avez-vous eus en tout ?" + + + + + 1 + 20 + + Decimal + + fr.insee + kwqi5zsm-RDOP-kwqilzs8 + 1 + + + + + fr.insee + l1gkeq97 + 1 + + NBENF_ADOP1 + + + fr.insee + l1gkeq97-QOP-l7rlttxu + 1 + + NBENF_ADOP1 + + + + + fr.insee + l1gkeq97-RDOP-l7rlttxu + 1 + OutParameter + + + fr.insee + l1gkeq97-QOP-l7rlttxu + 1 + OutParameter + + + + + "Cet enfant a-t-il été adopté ?" + + + + radio-button + + fr.insee + l7rlvd0y + 1 + CodeList + + + fr.insee + l1gkeq97-RDOP-l7rlttxu + 1 + + + fr.insee + l7rlvd0y + 1 + CodeList + + + + + + + fr.insee + l5cm1kac + 1 + Instruction + + + + fr.insee + l7rlim3p + 1 + + NBENF_ADOP + + + fr.insee + l7rlim3p-QOP-l7rlfeda + 1 + + NBENF_ADOP + + + + + fr.insee + l7rlim3p-RDOP-l7rlfeda + 1 + OutParameter + + + fr.insee + l7rlim3p-QOP-l7rlfeda + 1 + OutParameter + + + + + "Parmi eux, combien d'enfants ont-ils été adoptés ?" + + + + + 0 + 20 + + Decimal + + fr.insee + l7rlim3p-RDOP-l7rlfeda + 1 + + + + fr.insee + l7rltw55 + 1 + Instruction + + + fr.insee + l7rlwtef + 1 + Instruction + + + + fr.insee + l1gi76wy + 1 + + LANGUE1_ENF + + + fr.insee + l1gi76wy-QOP-llvz7u99 + 1 + + LANGUE1_ENF + + + + + fr.insee + l1gi76wy-RDOP-llvz7u99 + 1 + OutParameter + + + fr.insee + l1gi76wy-QOP-llvz7u99 + 1 + OutParameter + + + + + "En quelle langue, dialecte, ou patois parliez-vous avec " || (if (¤kwqi5zsm-QOP-kwqilzs8¤ = 1) then "votre enfant" else "vos enfants") || " lorsqu’il" || (if (¤kwqi5zsm-QOP-kwqilzs8¤ = 1) then " était jeune ou lui" else "s étaient jeunes ou leur") || " parlez-vous maintenant s’il" || (if (¤kwqi5zsm-QOP-kwqilzs8¤ = 1) then " est encore mineur ?" else "s sont encore mineurs ?") + + + + + + fr.insee + l1gi76wy-RDOP-llvz7u99 + 1 + + + + + fr.insee + laib1x47 + 1 + Instruction + + + fr.insee + laiambix + 1 + Instruction + + + + fr.insee + l445u9x8 + 1 + + LANGUE2_ENF + + + fr.insee + l445u9x8-QOP-llvyyveq + 1 + + LANGUE2_ENF + + + + + fr.insee + l445u9x8-RDOP-llvyyveq + 1 + OutParameter + + + fr.insee + l445u9x8-QOP-llvyyveq + 1 + OutParameter + + + + + "Y-a-t-il une autre langue, dialecte ou patois ?" + + + + + fr.insee + l445u9x8-RDOP-llvyyveq + 1 + + + + + fr.insee + l4o6hnbu + 1 + Instruction + + + + fr.insee + l4idom4o + 1 + + NBENFLOG + + + fr.insee + l4idom4o-QOP-l4idkl19 + 1 + + NBENFLOG + + + + + fr.insee + l4idom4o-RDOP-l4idkl19 + 1 + OutParameter + + + fr.insee + l4idom4o-QOP-l4idkl19 + 1 + OutParameter + + + + + "Avez-vous des enfants qui vivent avec vous, même une petite partie du temps seulement ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4idom4o-RDOP-l4idkl19 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lcr3vb + 1 + + CBENFLOG + + + fr.insee + l4lcr3vb-QOP-l4lcyzfy + 1 + + CBENFLOG + + + + + fr.insee + l4lcr3vb-RDOP-l4lcyzfy + 1 + OutParameter + + + fr.insee + l4lcr3vb-QOP-l4lcyzfy + 1 + OutParameter + + + + + "Combien d'enfants vivent avec vous, même une petite partie du temps seulement ?" + + + + + 1 + 20 + + Decimal + + fr.insee + l4lcr3vb-RDOP-l4lcyzfy + 1 + + + + + fr.insee + l447nuda + 1 + + NBENFAIL + + + fr.insee + l447nuda-QOP-l4idwhis + 1 + + NBENFAIL + + + + + fr.insee + l447nuda-RDOP-l4idwhis + 1 + OutParameter + + + fr.insee + l447nuda-QOP-l4idwhis + 1 + OutParameter + + + + + "Avez-vous des enfants qui ne vivent pas avec vous ou qui sont décédés ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l447nuda-RDOP-l4idwhis + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lfzig7 + 1 + + CBENFAIL + + + fr.insee + l4lfzig7-QOP-l4lgbag5 + 1 + + CBENFAIL + + + + + fr.insee + l4lfzig7-RDOP-l4lgbag5 + 1 + OutParameter + + + fr.insee + l4lfzig7-QOP-l4lgbag5 + 1 + OutParameter + + + + + "Combien d'enfants ne vivent pas avec vous ou sont décédés ?" + + + + + 1 + 20 + + Decimal + + fr.insee + l4lfzig7-RDOP-l4lgbag5 + 1 + + + + + fr.insee + l446nede + 1 + + PRENOM_ENFLOG1 + + + fr.insee + l446nede-QOP-l446c5pz + 1 + + PRENOM_ENFLOG1 + + + + + fr.insee + l446nede-RDOP-l446c5pz + 1 + OutParameter + + + fr.insee + l446nede-QOP-l446c5pz + 1 + OutParameter + + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", comment s'appelle " || (if (¤l4lcr3vb-QOP-l4lcyzfy¤=1 or isnull(¤l4lcr3vb-QOP-l4lcyzfy¤)) then "votre enfant qui vit avec vous, même une petite partie du temps seulement ?" else "votre premier enfant qui vit avec vous, même une petite partie du temps seulement ?") + + + + + fr.insee + l446nede-RDOP-l446c5pz + 1 + + + + + + fr.insee + kwqjk80w + 1 + + SEXE_ENFLOG1 + + + fr.insee + kwqjk80w-QOP-kwqjqaig + 1 + + SEXE_ENFLOG1 + + + + + fr.insee + kwqjk80w-RDOP-kwqjqaig + 1 + OutParameter + + + fr.insee + kwqjk80w-QOP-kwqjqaig + 1 + OutParameter + + + + + "Quel est le sexe de " || (if (nvl(¤l446nede-QOP-l446c5pz¤,"")="") then "cet enfant" else ¤l446nede-QOP-l446c5pz¤) || " ?" + + + + radio-button + + fr.insee + llgbzo78 + 1 + CodeList + + + fr.insee + kwqjk80w-RDOP-kwqjqaig + 1 + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + + + fr.insee + kwqjmq2o + 1 + + ANAI_ENFLOG1 + + + fr.insee + kwqjmq2o-QOP-kwqjvmys + 1 + + ANAI_ENFLOG1 + + + + + fr.insee + kwqjmq2o-RDOP-kwqjvmys + 1 + OutParameter + + + fr.insee + kwqjmq2o-QOP-kwqjvmys + 1 + OutParameter + + + + + "Quelle est l'année de naissance de " || (if (nvl(¤l446nede-QOP-l446c5pz¤,"")="") then "cet enfant" else ¤l446nede-QOP-l446c5pz¤) || " ?" + + + + + fr.insee + kwqjmq2o-RDOP-kwqjvmys + 1 + + + + + + fr.insee + l4qtls9o + 1 + + NEFRANCE_ENFLOG1 + + + fr.insee + l4qtls9o-QOP-l4qtebrx + 1 + + NEFRANCE_ENFLOG1 + + + + + fr.insee + l4qtls9o-RDOP-l4qtebrx + 1 + OutParameter + + + fr.insee + l4qtls9o-QOP-l4qtebrx + 1 + OutParameter + + + + + "" || (if (nvl(¤l446nede-QOP-l446c5pz¤,"")="") then "Cet enfant" else ¤l446nede-QOP-l446c5pz¤) || " est-" || (if (¤kwqjk80w-QOP-kwqjqaig¤="1" or isnull(¤kwqjk80w-QOP-kwqjqaig¤)) then "il né" else "elle née") || " en France ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4qtls9o-RDOP-l4qtebrx + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l4qth2nf + 1 + Instruction + + + + fr.insee + kwqjol7e + 1 + + PARENT_VIT_ENFLOG1 + + + fr.insee + kwqjol7e-QOP-kwqj742g + 1 + + PARENT_VIT_ENFLOG1 + + + + + fr.insee + kwqjol7e-RDOP-kwqj742g + 1 + OutParameter + + + fr.insee + kwqjol7e-QOP-kwqj742g + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l446nede-QOP-l446c5pz¤,"")="") then "cet enfant" else ¤l446nede-QOP-l446c5pz¤) || " vit-il/elle avec vous dans ce logement ?" + + + + radio-button + + fr.insee + l44726g4 + 1 + CodeList + + + fr.insee + kwqjol7e-RDOP-kwqj742g + 1 + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + + + fr.insee + l4iaicn8 + 1 + + PARENT_FR_ENFLOG1 + + + fr.insee + l4iaicn8-QOP-l4ia62t2 + 1 + + PARENT_FR_ENFLOG1 + + + + + fr.insee + l4iaicn8-RDOP-l4ia62t2 + 1 + OutParameter + + + fr.insee + l4iaicn8-QOP-l4ia62t2 + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l446nede-QOP-l446c5pz¤,"")="") then "cet enfant" else ¤l446nede-QOP-l446c5pz¤) || " vit-il/elle en France ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4iaicn8-RDOP-l4ia62t2 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l4paxo23 + 1 + Instruction + + + + fr.insee + l4pav1bd + 1 + + PARENT_DEP_ENFLOG1 + + + fr.insee + l4pav1bd-QOP-llvz43dk + 1 + + PARENT_DEP_ENFLOG1 + + + + + fr.insee + l4pav1bd-RDOP-llvz43dk + 1 + OutParameter + + + fr.insee + l4pav1bd-QOP-llvz43dk + 1 + OutParameter + + + + + "Dans quel département vit l'autre parent de " || (if (nvl(¤l446nede-QOP-l446c5pz¤,"")="") then "cet enfant" else ¤l446nede-QOP-l446c5pz¤) || " ?" + + + + + fr.insee + l4pav1bd-RDOP-llvz43dk + 1 + + + + + fr.insee + l4papcwn + 1 + Instruction + + + + fr.insee + l4parilg + 1 + + PARENT_COM_ENFLOG1 + + + fr.insee + l4parilg-QOP-llvz00eo + 1 + + PARENT_COM_ENFLOG1 + + + + + fr.insee + l4parilg-RDOP-llvz00eo + 1 + OutParameter + + + fr.insee + l4parilg-QOP-llvz00eo + 1 + OutParameter + + + + + "Dans quelle commune vit l'autre parent de " || (if (nvl(¤l446nede-QOP-l446c5pz¤,"")="") then "cet enfant" else ¤l446nede-QOP-l446c5pz¤) || " ?" + + + + + fr.insee + l4parilg-RDOP-llvz00eo + 1 + + + + + fr.insee + l4pb5c8v + 1 + Instruction + + + + fr.insee + l4pavrnh + 1 + + PARENT_PAY_ENFLOG1 + + + fr.insee + l4pavrnh-QOP-llvz0tqh + 1 + + PARENT_PAY_ENFLOG1 + + + + + fr.insee + l4pavrnh-RDOP-llvz0tqh + 1 + OutParameter + + + fr.insee + l4pavrnh-QOP-llvz0tqh + 1 + OutParameter + + + + + "Dans quel pays vit l'autre parent de " || (if (nvl(¤l446nede-QOP-l446c5pz¤,"")="") then "cet enfant" else ¤l446nede-QOP-l446c5pz¤) || " ?" + + + + + fr.insee + l4pavrnh-RDOP-llvz0tqh + 1 + + + + + fr.insee + l4pbeb5v + 1 + Instruction + + + + fr.insee + l1ez78st + 1 + + PARENT_FREQ_ENFLOG1 + + + fr.insee + l1ez78st-QOP-l1ezqoac + 1 + + PARENT_FREQ_ENFLOG1 + + + + + fr.insee + l1ez78st-RDOP-l1ezqoac + 1 + OutParameter + + + fr.insee + l1ez78st-QOP-l1ezqoac + 1 + OutParameter + + + + + "A quelle fréquence " || (if (nvl(¤l446nede-QOP-l446c5pz¤,"")="") then "cet enfant" else ¤l446nede-QOP-l446c5pz¤) || " est-" || (if (¤kwqjk80w-QOP-kwqjqaig¤="1" or isnull(¤kwqjk80w-QOP-kwqjqaig¤)) then "il" else "elle") || " en contact avec son autre parent ?" + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + l1ez78st-RDOP-l1ezqoac + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + fr.insee + l1eze0cf + 1 + Instruction + + + + fr.insee + l4iain70 + 1 + + PARENT_DORT_ENFLOG1 + + + fr.insee + l4iain70-QOP-l4iapk3a + 1 + + PARENT_DORT_ENFLOG1 + + + + + fr.insee + l4iain70-RDOP-l4iapk3a + 1 + OutParameter + + + fr.insee + l4iain70-QOP-l4iapk3a + 1 + OutParameter + + + + + "Arrive-t-il à " || (if (nvl(¤l446nede-QOP-l446c5pz¤,"")="") then "cet enfant" else ¤l446nede-QOP-l446c5pz¤) || " de dormir chez son autre parent ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4iain70-RDOP-l4iapk3a + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + kwqk3gx2 + 1 + + PARENT_VECU_ENFLOG1 + + + fr.insee + kwqk3gx2-QOP-kwqjmrl7 + 1 + + PARENT_VECU_ENFLOG1 + + + + + fr.insee + kwqk3gx2-RDOP-kwqjmrl7 + 1 + OutParameter + + + fr.insee + kwqk3gx2-QOP-kwqjmrl7 + 1 + OutParameter + + + + + "Avez-vous déjà vécu avec l'autre parent de " || (if (nvl(¤l446nede-QOP-l446c5pz¤,"")="") then "cet enfant" else ¤l446nede-QOP-l446c5pz¤) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + kwqk3gx2-RDOP-kwqjmrl7 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + la6ydnyh + 1 + + SEP_AUT_PAR_ENFLOG1 + + + fr.insee + la6ydnyh-QOP-la6ylcb8 + 1 + + SEP_AUT_PAR_ENFLOG1 + + + + + fr.insee + la6ydnyh-RDOP-la6ylcb8 + 1 + OutParameter + + + fr.insee + la6ydnyh-QOP-la6ylcb8 + 1 + OutParameter + + + + + "Vous êtes-vous séparé" || (if (¤ln0892lt-GOP¤ = "2") then "e" else "") || " de l'autre parent de " || (if (nvl(¤l446nede-QOP-l446c5pz¤,"")="") then "cet enfant" else ¤l446nede-QOP-l446c5pz¤) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + la6ydnyh-RDOP-la6ylcb8 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + kwqjmy9d + 1 + + RESID_ENFLOG1 + + + fr.insee + kwqjmy9d-QOP-kwqjfzw0 + 1 + + RESID_ENFLOG1 + + + + + fr.insee + kwqjmy9d-RDOP-kwqjfzw0 + 1 + OutParameter + + + fr.insee + kwqjmy9d-QOP-kwqjfzw0 + 1 + OutParameter + + + + + "Quel a été le mode de résidence fixé par décision de justice ?" + + + + radio-button + + fr.insee + kwqjqlpa + 1 + CodeList + + + fr.insee + kwqjmy9d-RDOP-kwqjfzw0 + 1 + + + fr.insee + kwqjqlpa + 1 + CodeList + + + + + + + + fr.insee + l4i9118b + 1 + + PRENOM_ENFLOG2 + + + fr.insee + l4i9118b-QOP-l4i95yyt + 1 + + PRENOM_ENFLOG2 + + + + + fr.insee + l4i9118b-RDOP-l4i95yyt + 1 + OutParameter + + + fr.insee + l4i9118b-QOP-l4i95yyt + 1 + OutParameter + + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", comment s'appelle votre deuxième enfant qui vit avec vous, même une petite partie du temps seulement ?" + + + + + fr.insee + l4i9118b-RDOP-l4i95yyt + 1 + + + + + + fr.insee + l4i8zu5m + 1 + + SEXE_ENFLOG2 + + + fr.insee + l4i8zu5m-QOP-l4i9doqz + 1 + + SEXE_ENFLOG2 + + + + + fr.insee + l4i8zu5m-RDOP-l4i9doqz + 1 + OutParameter + + + fr.insee + l4i8zu5m-QOP-l4i9doqz + 1 + OutParameter + + + + + "Quel est le sexe de " || (if (nvl(¤l4i9118b-QOP-l4i95yyt¤,"")="") then "cet enfant" else ¤l4i9118b-QOP-l4i95yyt¤) || " ?" + + + + radio-button + + fr.insee + llgbzo78 + 1 + CodeList + + + fr.insee + l4i8zu5m-RDOP-l4i9doqz + 1 + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + + + fr.insee + l4ia7rxn + 1 + + ANAI_ENFLOG2 + + + fr.insee + l4ia7rxn-QOP-l4iad1cc + 1 + + ANAI_ENFLOG2 + + + + + fr.insee + l4ia7rxn-RDOP-l4iad1cc + 1 + OutParameter + + + fr.insee + l4ia7rxn-QOP-l4iad1cc + 1 + OutParameter + + + + + "Quelle est l'année de naissance de " || (if (nvl(¤l4i9118b-QOP-l4i95yyt¤,"")="") then "cet enfant" else ¤l4i9118b-QOP-l4i95yyt¤) || " ?" + + + + + fr.insee + l4ia7rxn-RDOP-l4iad1cc + 1 + + + + + + fr.insee + l4qtpg9f + 1 + + NEFRANCE_ENFLOG2 + + + fr.insee + l4qtpg9f-QOP-l4qtj10v + 1 + + NEFRANCE_ENFLOG2 + + + + + fr.insee + l4qtpg9f-RDOP-l4qtj10v + 1 + OutParameter + + + fr.insee + l4qtpg9f-QOP-l4qtj10v + 1 + OutParameter + + + + + "" || (if (nvl(¤l4i9118b-QOP-l4i95yyt¤,"")="") then "Cet enfant" else ¤l4i9118b-QOP-l4i95yyt¤) || " est-" || (if (¤l4i8zu5m-QOP-l4i9doqz¤="1" or isnull(¤l4i8zu5m-QOP-l4i9doqz¤)) then "il né" else "elle née") || " en France ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4qtpg9f-RDOP-l4qtj10v + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l4qtdwhq + 1 + Instruction + + + + fr.insee + l4iano52 + 1 + + PARENT_VIT_ENFLOG2 + + + fr.insee + l4iano52-QOP-l4ia429z + 1 + + PARENT_VIT_ENFLOG2 + + + + + fr.insee + l4iano52-RDOP-l4ia429z + 1 + OutParameter + + + fr.insee + l4iano52-QOP-l4ia429z + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l4i9118b-QOP-l4i95yyt¤,"")="") then "cet enfant" else ¤l4i9118b-QOP-l4i95yyt¤) || " vit-il/elle avec vous dans ce logement ?" + + + + radio-button + + fr.insee + l44726g4 + 1 + CodeList + + + fr.insee + l4iano52-RDOP-l4ia429z + 1 + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + + + fr.insee + kwqjmujx + 1 + + PARENT_FR_ENFLOG2 + + + fr.insee + kwqjmujx-QOP-kwqjglld + 1 + + PARENT_FR_ENFLOG2 + + + + + fr.insee + kwqjmujx-RDOP-kwqjglld + 1 + OutParameter + + + fr.insee + kwqjmujx-QOP-kwqjglld + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l4i9118b-QOP-l4i95yyt¤,"")="") then "cet enfant" else ¤l4i9118b-QOP-l4i95yyt¤) || " vit-il/elle en France ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + kwqjmujx-RDOP-kwqjglld + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l4pavsqb + 1 + Instruction + + + + fr.insee + l4pannoa + 1 + + PARENT_DEP_ENFLOG2 + + + fr.insee + l4pannoa-QOP-llvz35s7 + 1 + + PARENT_DEP_ENFLOG2 + + + + + fr.insee + l4pannoa-RDOP-llvz35s7 + 1 + OutParameter + + + fr.insee + l4pannoa-QOP-llvz35s7 + 1 + OutParameter + + + + + "Dans quel département vit l'autre parent de " || (if (nvl(¤l4i9118b-QOP-l4i95yyt¤,"")="") then "cet enfant" else ¤l4i9118b-QOP-l4i95yyt¤) || " ?" + + + + + fr.insee + l4pannoa-RDOP-llvz35s7 + 1 + + + + + fr.insee + l4pakgkw + 1 + Instruction + + + + fr.insee + l4pasuts + 1 + + PARENT_COM_ENFLOG2 + + + fr.insee + l4pasuts-QOP-llvz300g + 1 + + PARENT_COM_ENFLOG2 + + + + + fr.insee + l4pasuts-RDOP-llvz300g + 1 + OutParameter + + + fr.insee + l4pasuts-QOP-llvz300g + 1 + OutParameter + + + + + "Dans quelle commune vit l'autre parent de " || (if (nvl(¤l4i9118b-QOP-l4i95yyt¤,"")="") then "cet enfant" else ¤l4i9118b-QOP-l4i95yyt¤) || " ?" + + + + + fr.insee + l4pasuts-RDOP-llvz300g + 1 + + + + + fr.insee + l4pat1rt + 1 + Instruction + + + + fr.insee + l4pbc5wa + 1 + + PARENT_PAY_ENFLOG2 + + + fr.insee + l4pbc5wa-QOP-llvz3uou + 1 + + PARENT_PAY_ENFLOG2 + + + + + fr.insee + l4pbc5wa-RDOP-llvz3uou + 1 + OutParameter + + + fr.insee + l4pbc5wa-QOP-llvz3uou + 1 + OutParameter + + + + + "Dans quel pays vit l'autre parent de " || (if (nvl(¤l4i9118b-QOP-l4i95yyt¤,"")="") then "cet enfant" else ¤l4i9118b-QOP-l4i95yyt¤) || " ?" + + + + + fr.insee + l4pbc5wa-RDOP-llvz3uou + 1 + + + + + fr.insee + l4pbep5s + 1 + Instruction + + + + fr.insee + l4idgpbr + 1 + + PARENT_FREQ_ENFLOG2 + + + fr.insee + l4idgpbr-QOP-l4idauus + 1 + + PARENT_FREQ_ENFLOG2 + + + + + fr.insee + l4idgpbr-RDOP-l4idauus + 1 + OutParameter + + + fr.insee + l4idgpbr-QOP-l4idauus + 1 + OutParameter + + + + + "A quelle fréquence " || (if (nvl(¤l4i9118b-QOP-l4i95yyt¤,"")="") then "cet enfant" else ¤l4i9118b-QOP-l4i95yyt¤) || " est-" || (if (¤l4i8zu5m-QOP-l4i9doqz¤="1" or isnull(¤l4i8zu5m-QOP-l4i9doqz¤)) then "il" else "elle") || " en contact avec son autre parent ?" + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + l4idgpbr-RDOP-l4idauus + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + fr.insee + l4id8tmg + 1 + Instruction + + + + fr.insee + l4486unb + 1 + + PARENT_DORT_ENFLOG2 + + + fr.insee + l4486unb-QOP-l4486uz3 + 1 + + PARENT_DORT_ENFLOG2 + + + + + fr.insee + l4486unb-RDOP-l4486uz3 + 1 + OutParameter + + + fr.insee + l4486unb-QOP-l4486uz3 + 1 + OutParameter + + + + + "Arrive-t-il à " || (if (nvl(¤l4i9118b-QOP-l4i95yyt¤,"")="") then "cet enfant" else ¤l4i9118b-QOP-l4i95yyt¤) || " de dormir chez son autre parent ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4486unb-RDOP-l4486uz3 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4ia5o28 + 1 + + PARENT_VECU_ENFLOG2 + + + fr.insee + l4ia5o28-QOP-l4ia9b25 + 1 + + PARENT_VECU_ENFLOG2 + + + + + fr.insee + l4ia5o28-RDOP-l4ia9b25 + 1 + OutParameter + + + fr.insee + l4ia5o28-QOP-l4ia9b25 + 1 + OutParameter + + + + + "Avez-vous déjà vécu avec l'autre parent de " || (if (nvl(¤l4i9118b-QOP-l4i95yyt¤,"")="") then "cet enfant" else ¤l4i9118b-QOP-l4i95yyt¤) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4ia5o28-RDOP-l4ia9b25 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + la6yjh65 + 1 + + SEP_AUT_PAR_ENFLOG2 + + + fr.insee + la6yjh65-QOP-la6yhprv + 1 + + SEP_AUT_PAR_ENFLOG2 + + + + + fr.insee + la6yjh65-RDOP-la6yhprv + 1 + OutParameter + + + fr.insee + la6yjh65-QOP-la6yhprv + 1 + OutParameter + + + + + "Vous êtes-vous séparé" || (if (¤ln0892lt-GOP¤ = "2") then "e" else "") || " de l'autre parent de " || (if (nvl(¤l4i9118b-QOP-l4i95yyt¤,"")="") then "cet enfant" else ¤l4i9118b-QOP-l4i95yyt¤) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + la6yjh65-RDOP-la6yhprv + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4idgqx9 + 1 + + RESID_ENFLOG2 + + + fr.insee + l4idgqx9-QOP-l4idnmx1 + 1 + + RESID_ENFLOG2 + + + + + fr.insee + l4idgqx9-RDOP-l4idnmx1 + 1 + OutParameter + + + fr.insee + l4idgqx9-QOP-l4idnmx1 + 1 + OutParameter + + + + + "Quel a été le mode de résidence fixé par décision de justice ?" + + + + radio-button + + fr.insee + kwqjqlpa + 1 + CodeList + + + fr.insee + l4idgqx9-RDOP-l4idnmx1 + 1 + + + fr.insee + kwqjqlpa + 1 + CodeList + + + + + + + + fr.insee + l4ld0ziw + 1 + + PRENOM_ENFLOG3 + + + fr.insee + l4ld0ziw-QOP-l4lco011 + 1 + + PRENOM_ENFLOG3 + + + + + fr.insee + l4ld0ziw-RDOP-l4lco011 + 1 + OutParameter + + + fr.insee + l4ld0ziw-QOP-l4lco011 + 1 + OutParameter + + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", comment s'appelle votre troisième enfant qui vit avec vous, même une petite partie du temps seulement ?" + + + + + fr.insee + l4ld0ziw-RDOP-l4lco011 + 1 + + + + + + fr.insee + l4lcp4co + 1 + + SEXE_ENFLOG3 + + + fr.insee + l4lcp4co-QOP-l4ld0wcd + 1 + + SEXE_ENFLOG3 + + + + + fr.insee + l4lcp4co-RDOP-l4ld0wcd + 1 + OutParameter + + + fr.insee + l4lcp4co-QOP-l4ld0wcd + 1 + OutParameter + + + + + "Quel est le sexe de " || (if (nvl(¤l4ld0ziw-QOP-l4lco011¤,"")="") then "cet enfant" else ¤l4ld0ziw-QOP-l4lco011¤) || " ?" + + + + radio-button + + fr.insee + llgbzo78 + 1 + CodeList + + + fr.insee + l4lcp4co-RDOP-l4ld0wcd + 1 + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + + + fr.insee + l4ld3y0j + 1 + + ANAI_ENFLOG3 + + + fr.insee + l4ld3y0j-QOP-l4ld1d4p + 1 + + ANAI_ENFLOG3 + + + + + fr.insee + l4ld3y0j-RDOP-l4ld1d4p + 1 + OutParameter + + + fr.insee + l4ld3y0j-QOP-l4ld1d4p + 1 + OutParameter + + + + + "Quelle est l'année de naissance de " || (if (nvl(¤l4ld0ziw-QOP-l4lco011¤,"")="") then "cet enfant" else ¤l4ld0ziw-QOP-l4lco011¤) || " ?" + + + + + fr.insee + l4ld3y0j-RDOP-l4ld1d4p + 1 + + + + + + fr.insee + l4qty53i + 1 + + NEFRANCE_ENFLOG3 + + + fr.insee + l4qty53i-QOP-l4qtewva + 1 + + NEFRANCE_ENFLOG3 + + + + + fr.insee + l4qty53i-RDOP-l4qtewva + 1 + OutParameter + + + fr.insee + l4qty53i-QOP-l4qtewva + 1 + OutParameter + + + + + "" || (if (nvl(¤l4ld0ziw-QOP-l4lco011¤,"")="") then "Cet enfant" else ¤l4ld0ziw-QOP-l4lco011¤) || " est-" || (if (¤l4lcp4co-QOP-l4ld0wcd¤="1" or isnull(¤l4lcp4co-QOP-l4ld0wcd¤)) then "il né" else "elle née") || " en France ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4qty53i-RDOP-l4qtewva + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l4qthko2 + 1 + Instruction + + + + fr.insee + l4lct7cb + 1 + + PARENT_VIT_ENFLOG3 + + + fr.insee + l4lct7cb-QOP-l4lctczi + 1 + + PARENT_VIT_ENFLOG3 + + + + + fr.insee + l4lct7cb-RDOP-l4lctczi + 1 + OutParameter + + + fr.insee + l4lct7cb-QOP-l4lctczi + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l4ld0ziw-QOP-l4lco011¤,"")="") then "cet enfant" else ¤l4ld0ziw-QOP-l4lco011¤) || " vit-il/elle avec vous dans ce logement ?" + + + + radio-button + + fr.insee + l44726g4 + 1 + CodeList + + + fr.insee + l4lct7cb-RDOP-l4lctczi + 1 + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + + + fr.insee + l4ld827i + 1 + + PARENT_FR_ENFLOG3 + + + fr.insee + l4ld827i-QOP-l4ld6gqw + 1 + + PARENT_FR_ENFLOG3 + + + + + fr.insee + l4ld827i-RDOP-l4ld6gqw + 1 + OutParameter + + + fr.insee + l4ld827i-QOP-l4ld6gqw + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l4ld0ziw-QOP-l4lco011¤,"")="") then "cet enfant" else ¤l4ld0ziw-QOP-l4lco011¤) || " vit-il/elle en France ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4ld827i-RDOP-l4ld6gqw + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l4pawrpv + 1 + Instruction + + + + fr.insee + l4pat7vx + 1 + + PARENT_DEP_ENFLOG3 + + + fr.insee + l4pat7vx-QOP-llvyw7q3 + 1 + + PARENT_DEP_ENFLOG3 + + + + + fr.insee + l4pat7vx-RDOP-llvyw7q3 + 1 + OutParameter + + + fr.insee + l4pat7vx-QOP-llvyw7q3 + 1 + OutParameter + + + + + "Dans quel département vit l'autre parent de " || (if (nvl(¤l4ld0ziw-QOP-l4lco011¤,"")="") then "cet enfant" else ¤l4ld0ziw-QOP-l4lco011¤) || " ?" + + + + + fr.insee + l4pat7vx-RDOP-llvyw7q3 + 1 + + + + + fr.insee + l4pb2s4u + 1 + Instruction + + + + fr.insee + l4pavp6y + 1 + + PARENT_COM_ENFLOG3 + + + fr.insee + l4pavp6y-QOP-llvyyz9y + 1 + + PARENT_COM_ENFLOG3 + + + + + fr.insee + l4pavp6y-RDOP-llvyyz9y + 1 + OutParameter + + + fr.insee + l4pavp6y-QOP-llvyyz9y + 1 + OutParameter + + + + + "Dans quelle commune vit l'autre parent de " || (if (nvl(¤l4ld0ziw-QOP-l4lco011¤,"")="") then "cet enfant" else ¤l4ld0ziw-QOP-l4lco011¤) || " ?" + + + + + fr.insee + l4pavp6y-RDOP-llvyyz9y + 1 + + + + + fr.insee + l4paydhw + 1 + Instruction + + + + fr.insee + l4pb77tv + 1 + + PARENT_PAY_ENFLOG3 + + + fr.insee + l4pb77tv-QOP-llvyspw0 + 1 + + PARENT_PAY_ENFLOG3 + + + + + fr.insee + l4pb77tv-RDOP-llvyspw0 + 1 + OutParameter + + + fr.insee + l4pb77tv-QOP-llvyspw0 + 1 + OutParameter + + + + + "Dans quel pays vit l'autre parent de " || (if (nvl(¤l4ld0ziw-QOP-l4lco011¤,"")="") then "cet enfant" else ¤l4ld0ziw-QOP-l4lco011¤) || " ?" + + + + + fr.insee + l4pb77tv-RDOP-llvyspw0 + 1 + + + + + fr.insee + l4pbgztm + 1 + Instruction + + + + fr.insee + l4ld15su + 1 + + PARENT_FREQ_ENFLOG3 + + + fr.insee + l4ld15su-QOP-l4ld55kd + 1 + + PARENT_FREQ_ENFLOG3 + + + + + fr.insee + l4ld15su-RDOP-l4ld55kd + 1 + OutParameter + + + fr.insee + l4ld15su-QOP-l4ld55kd + 1 + OutParameter + + + + + "A quelle fréquence " || (if (nvl(¤l4ld0ziw-QOP-l4lco011¤,"")="") then "cet enfant" else ¤l4ld0ziw-QOP-l4lco011¤) || " est-" || (if (¤l4lcp4co-QOP-l4ld0wcd¤="1" or isnull(¤l4lcp4co-QOP-l4ld0wcd¤)) then "il" else "elle") || " en contact avec son autre parent ?" + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + l4ld15su-RDOP-l4ld55kd + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + fr.insee + l4lczwxy + 1 + Instruction + + + + fr.insee + l4ld0zmv + 1 + + PARENT_DORT_ENFLOG3 + + + fr.insee + l4ld0zmv-QOP-l4lda7jw + 1 + + PARENT_DORT_ENFLOG3 + + + + + fr.insee + l4ld0zmv-RDOP-l4lda7jw + 1 + OutParameter + + + fr.insee + l4ld0zmv-QOP-l4lda7jw + 1 + OutParameter + + + + + "Arrive-t-il à " || (if (nvl(¤l4ld0ziw-QOP-l4lco011¤,"")="") then "cet enfant" else ¤l4ld0ziw-QOP-l4lco011¤) || " de dormir chez son autre parent ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4ld0zmv-RDOP-l4lda7jw + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4ld0jea + 1 + + PARENT_VECU_ENFLOG3 + + + fr.insee + l4ld0jea-QOP-l4ld7yr1 + 1 + + PARENT_VECU_ENFLOG3 + + + + + fr.insee + l4ld0jea-RDOP-l4ld7yr1 + 1 + OutParameter + + + fr.insee + l4ld0jea-QOP-l4ld7yr1 + 1 + OutParameter + + + + + "Avez-vous déjà vécu avec l'autre parent de " || (if (nvl(¤l4ld0ziw-QOP-l4lco011¤,"")="") then "cet enfant" else ¤l4ld0ziw-QOP-l4lco011¤) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4ld0jea-RDOP-l4ld7yr1 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + la6y9flo + 1 + + SEP_AUT_PAR_ENFLOG3 + + + fr.insee + la6y9flo-QOP-la6y6kev + 1 + + SEP_AUT_PAR_ENFLOG3 + + + + + fr.insee + la6y9flo-RDOP-la6y6kev + 1 + OutParameter + + + fr.insee + la6y9flo-QOP-la6y6kev + 1 + OutParameter + + + + + "Vous êtes-vous séparé" || (if (¤ln0892lt-GOP¤ = "2") then "e" else "") || " de l'autre parent de " || (if (nvl(¤l4ld0ziw-QOP-l4lco011¤,"")="") then "cet enfant" else ¤l4ld0ziw-QOP-l4lco011¤) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + la6y9flo-RDOP-la6y6kev + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lde13h + 1 + + RESID_ENFLOG3 + + + fr.insee + l4lde13h-QOP-l4lddsd8 + 1 + + RESID_ENFLOG3 + + + + + fr.insee + l4lde13h-RDOP-l4lddsd8 + 1 + OutParameter + + + fr.insee + l4lde13h-QOP-l4lddsd8 + 1 + OutParameter + + + + + "Quel a été le mode de résidence fixé par décision de justice ?" + + + + radio-button + + fr.insee + kwqjqlpa + 1 + CodeList + + + fr.insee + l4lde13h-RDOP-l4lddsd8 + 1 + + + fr.insee + kwqjqlpa + 1 + CodeList + + + + + + + + fr.insee + l4lec0rk + 1 + + PRENOM_ENFLOG4 + + + fr.insee + l4lec0rk-QOP-l4lefzhk + 1 + + PRENOM_ENFLOG4 + + + + + fr.insee + l4lec0rk-RDOP-l4lefzhk + 1 + OutParameter + + + fr.insee + l4lec0rk-QOP-l4lefzhk + 1 + OutParameter + + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", comment s'appelle votre quatrième enfant qui vit avec vous, même une petite partie du temps seulement ?" + + + + + fr.insee + l4lec0rk-RDOP-l4lefzhk + 1 + + + + + + fr.insee + l4lefdoh + 1 + + SEXE_ENFLOG4 + + + fr.insee + l4lefdoh-QOP-l4le4jn4 + 1 + + SEXE_ENFLOG4 + + + + + fr.insee + l4lefdoh-RDOP-l4le4jn4 + 1 + OutParameter + + + fr.insee + l4lefdoh-QOP-l4le4jn4 + 1 + OutParameter + + + + + "Quel est le sexe de " || (if (nvl(¤l4lec0rk-QOP-l4lefzhk¤,"")="") then "cet enfant" else ¤l4lec0rk-QOP-l4lefzhk¤) || " ?" + + + + radio-button + + fr.insee + llgbzo78 + 1 + CodeList + + + fr.insee + l4lefdoh-RDOP-l4le4jn4 + 1 + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + + + fr.insee + l4le9rs3 + 1 + + ANAI_ENFLOG4 + + + fr.insee + l4le9rs3-QOP-l4le8tph + 1 + + ANAI_ENFLOG4 + + + + + fr.insee + l4le9rs3-RDOP-l4le8tph + 1 + OutParameter + + + fr.insee + l4le9rs3-QOP-l4le8tph + 1 + OutParameter + + + + + "Quelle est l'année de naissance de " || (if (nvl(¤l4lec0rk-QOP-l4lefzhk¤,"")="") then "cet enfant" else ¤l4lec0rk-QOP-l4lefzhk¤) || " ?" + + + + + fr.insee + l4le9rs3-RDOP-l4le8tph + 1 + + + + + + fr.insee + l4qtvt71 + 1 + + NEFRANCE_ENFLOG4 + + + fr.insee + l4qtvt71-QOP-l4qtzd2y + 1 + + NEFRANCE_ENFLOG4 + + + + + fr.insee + l4qtvt71-RDOP-l4qtzd2y + 1 + OutParameter + + + fr.insee + l4qtvt71-QOP-l4qtzd2y + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lec0rk-QOP-l4lefzhk¤,"")="") then "Cet enfant" else ¤l4lec0rk-QOP-l4lefzhk¤) || " est-" || (if (¤l4lefdoh-QOP-l4le4jn4¤="1" or isnull(¤l4lefdoh-QOP-l4le4jn4¤)) then "il né" else "elle née") || " en France ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4qtvt71-RDOP-l4qtzd2y + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l4qty3sm + 1 + Instruction + + + + fr.insee + l4ler7fu + 1 + + PARENT_VIT_ENFLOG4 + + + fr.insee + l4ler7fu-QOP-l4lequew + 1 + + PARENT_VIT_ENFLOG4 + + + + + fr.insee + l4ler7fu-RDOP-l4lequew + 1 + OutParameter + + + fr.insee + l4ler7fu-QOP-l4lequew + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l4lec0rk-QOP-l4lefzhk¤,"")="") then "cet enfant" else ¤l4lec0rk-QOP-l4lefzhk¤) || " vit-il/elle avec vous dans ce logement ?" + + + + radio-button + + fr.insee + l44726g4 + 1 + CodeList + + + fr.insee + l4ler7fu-RDOP-l4lequew + 1 + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + + + fr.insee + l4lemegm + 1 + + PARENT_FR_ENFLOG4 + + + fr.insee + l4lemegm-QOP-l4leh99i + 1 + + PARENT_FR_ENFLOG4 + + + + + fr.insee + l4lemegm-RDOP-l4leh99i + 1 + OutParameter + + + fr.insee + l4lemegm-QOP-l4leh99i + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l4lec0rk-QOP-l4lefzhk¤,"")="") then "cet enfant" else ¤l4lec0rk-QOP-l4lefzhk¤) || " vit-il/elle en France ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lemegm-RDOP-l4leh99i + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l4paro0f + 1 + Instruction + + + + fr.insee + l4payjff + 1 + + PARENT_DEP_ENFLOG4 + + + fr.insee + l4payjff-QOP-llvyruw7 + 1 + + PARENT_DEP_ENFLOG4 + + + + + fr.insee + l4payjff-RDOP-llvyruw7 + 1 + OutParameter + + + fr.insee + l4payjff-QOP-llvyruw7 + 1 + OutParameter + + + + + "Dans quel département vit l'autre parent de " || (if (nvl(¤l4lec0rk-QOP-l4lefzhk¤,"")="") then "cet enfant" else ¤l4lec0rk-QOP-l4lefzhk¤) || " ?" + + + + + fr.insee + l4payjff-RDOP-llvyruw7 + 1 + + + + + fr.insee + l4paqxkg + 1 + Instruction + + + + fr.insee + l4paz6m4 + 1 + + PARENT_COM_ENFLOG4 + + + fr.insee + l4paz6m4-QOP-llvyy20q + 1 + + PARENT_COM_ENFLOG4 + + + + + fr.insee + l4paz6m4-RDOP-llvyy20q + 1 + OutParameter + + + fr.insee + l4paz6m4-QOP-llvyy20q + 1 + OutParameter + + + + + "Dans quelle commune vit l'autre parent de " || (if (nvl(¤l4lec0rk-QOP-l4lefzhk¤,"")="") then "cet enfant" else ¤l4lec0rk-QOP-l4lefzhk¤) || " ?" + + + + + fr.insee + l4paz6m4-RDOP-llvyy20q + 1 + + + + + fr.insee + l4pat094 + 1 + Instruction + + + + fr.insee + l4pbax4x + 1 + + PARENT_PAY_ENFLOG4 + + + fr.insee + l4pbax4x-QOP-llvz97hj + 1 + + PARENT_PAY_ENFLOG4 + + + + + fr.insee + l4pbax4x-RDOP-llvz97hj + 1 + OutParameter + + + fr.insee + l4pbax4x-QOP-llvz97hj + 1 + OutParameter + + + + + "Dans quel pays vit l'autre parent de " || (if (nvl(¤l4lec0rk-QOP-l4lefzhk¤,"")="") then "cet enfant" else ¤l4lec0rk-QOP-l4lefzhk¤) || " ?" + + + + + fr.insee + l4pbax4x-RDOP-llvz97hj + 1 + + + + + fr.insee + l4pbe5ur + 1 + Instruction + + + + fr.insee + l4letwtq + 1 + + PARENT_FREQ_ENFLOG4 + + + fr.insee + l4letwtq-QOP-l4lesyhr + 1 + + PARENT_FREQ_ENFLOG4 + + + + + fr.insee + l4letwtq-RDOP-l4lesyhr + 1 + OutParameter + + + fr.insee + l4letwtq-QOP-l4lesyhr + 1 + OutParameter + + + + + "A quelle fréquence " || (if (nvl(¤l4lec0rk-QOP-l4lefzhk¤,"")="") then "cet enfant" else ¤l4lec0rk-QOP-l4lefzhk¤) || " est-" || (if (¤l4lefdoh-QOP-l4le4jn4¤="1" or isnull(¤l4lefdoh-QOP-l4le4jn4¤)) then "il" else "elle") || " en contact avec son autre parent ?" + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + l4letwtq-RDOP-l4lesyhr + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + fr.insee + l4lergdt + 1 + Instruction + + + + fr.insee + l4letk9j + 1 + + PARENT_DORT_ENFLOG4 + + + fr.insee + l4letk9j-QOP-l4lergt1 + 1 + + PARENT_DORT_ENFLOG4 + + + + + fr.insee + l4letk9j-RDOP-l4lergt1 + 1 + OutParameter + + + fr.insee + l4letk9j-QOP-l4lergt1 + 1 + OutParameter + + + + + "Arrive-t-il à " || (if (nvl(¤l4lec0rk-QOP-l4lefzhk¤,"")="") then "cet enfant" else ¤l4lec0rk-QOP-l4lefzhk¤) || " de dormir chez son autre parent ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4letk9j-RDOP-l4lergt1 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lekh2t + 1 + + PARENT_VECU_ENFLOG4 + + + fr.insee + l4lekh2t-QOP-l4leazvr + 1 + + PARENT_VECU_ENFLOG4 + + + + + fr.insee + l4lekh2t-RDOP-l4leazvr + 1 + OutParameter + + + fr.insee + l4lekh2t-QOP-l4leazvr + 1 + OutParameter + + + + + "Avez-vous déjà vécu avec l'autre parent de " || (if (nvl(¤l4lec0rk-QOP-l4lefzhk¤,"")="") then "cet enfant" else ¤l4lec0rk-QOP-l4lefzhk¤) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lekh2t-RDOP-l4leazvr + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + la6y7rno + 1 + + SEP_AUT_PAR_ENFLOG4 + + + fr.insee + la6y7rno-QOP-la6yfcb1 + 1 + + SEP_AUT_PAR_ENFLOG4 + + + + + fr.insee + la6y7rno-RDOP-la6yfcb1 + 1 + OutParameter + + + fr.insee + la6y7rno-QOP-la6yfcb1 + 1 + OutParameter + + + + + "Vous êtes-vous séparé" || (if (¤ln0892lt-GOP¤ = "2") then "e" else "") || " de l'autre parent de " || (if (nvl(¤l4lec0rk-QOP-l4lefzhk¤,"")="") then "cet enfant" else ¤l4lec0rk-QOP-l4lefzhk¤) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + la6y7rno-RDOP-la6yfcb1 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lexatl + 1 + + RESID_ENFLOG4 + + + fr.insee + l4lexatl-QOP-l4leps7n + 1 + + RESID_ENFLOG4 + + + + + fr.insee + l4lexatl-RDOP-l4leps7n + 1 + OutParameter + + + fr.insee + l4lexatl-QOP-l4leps7n + 1 + OutParameter + + + + + "Quel a été le mode de résidence fixé par décision de justice ?" + + + + radio-button + + fr.insee + kwqjqlpa + 1 + CodeList + + + fr.insee + l4lexatl-RDOP-l4leps7n + 1 + + + fr.insee + kwqjqlpa + 1 + CodeList + + + + + + + + fr.insee + l4leulqw + 1 + + PRENOM_ENFLOG5 + + + fr.insee + l4leulqw-QOP-l4leruxk + 1 + + PRENOM_ENFLOG5 + + + + + fr.insee + l4leulqw-RDOP-l4leruxk + 1 + OutParameter + + + fr.insee + l4leulqw-QOP-l4leruxk + 1 + OutParameter + + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", comment s'appelle votre cinquième enfant qui vit avec vous, même une petite partie du temps seulement ?" + + + + + fr.insee + l4leulqw-RDOP-l4leruxk + 1 + + + + + + fr.insee + l4lem0yg + 1 + + SEXE_ENFLOG5 + + + fr.insee + l4lem0yg-QOP-l4leqtd3 + 1 + + SEXE_ENFLOG5 + + + + + fr.insee + l4lem0yg-RDOP-l4leqtd3 + 1 + OutParameter + + + fr.insee + l4lem0yg-QOP-l4leqtd3 + 1 + OutParameter + + + + + "Quel est le sexe de " || (if (nvl(¤l4leulqw-QOP-l4leruxk¤,"")="") then "cet enfant" else ¤l4leulqw-QOP-l4leruxk¤) || " ?" + + + + radio-button + + fr.insee + llgbzo78 + 1 + CodeList + + + fr.insee + l4lem0yg-RDOP-l4leqtd3 + 1 + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + + + fr.insee + l4lffj1f + 1 + + ANAI_ENFLOG5 + + + fr.insee + l4lffj1f-QOP-l4lfqb24 + 1 + + ANAI_ENFLOG5 + + + + + fr.insee + l4lffj1f-RDOP-l4lfqb24 + 1 + OutParameter + + + fr.insee + l4lffj1f-QOP-l4lfqb24 + 1 + OutParameter + + + + + "Quelle est l'année de naissance de " || (if (nvl(¤l4leulqw-QOP-l4leruxk¤,"")="") then "cet enfant" else ¤l4leulqw-QOP-l4leruxk¤) || " ?" + + + + + fr.insee + l4lffj1f-RDOP-l4lfqb24 + 1 + + + + + + fr.insee + l4qtm8di + 1 + + NEFRANCE_ENFLOG5 + + + fr.insee + l4qtm8di-QOP-l4qtqnl5 + 1 + + NEFRANCE_ENFLOG5 + + + + + fr.insee + l4qtm8di-RDOP-l4qtqnl5 + 1 + OutParameter + + + fr.insee + l4qtm8di-QOP-l4qtqnl5 + 1 + OutParameter + + + + + "" || (if (nvl(¤l4leulqw-QOP-l4leruxk¤,"")="") then "Cet enfant" else ¤l4leulqw-QOP-l4leruxk¤) || " est-" || (if (¤l4lem0yg-QOP-l4leqtd3¤="1" or isnull(¤l4lem0yg-QOP-l4leqtd3¤)) then "il né" else "elle née") || " en France ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4qtm8di-RDOP-l4qtqnl5 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l4qu07sd + 1 + Instruction + + + + fr.insee + l4lfye1g + 1 + + PARENT_VIT_ENFLOG5 + + + fr.insee + l4lfye1g-QOP-l4lfqvi9 + 1 + + PARENT_VIT_ENFLOG5 + + + + + fr.insee + l4lfye1g-RDOP-l4lfqvi9 + 1 + OutParameter + + + fr.insee + l4lfye1g-QOP-l4lfqvi9 + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l4leulqw-QOP-l4leruxk¤,"")="") then "cet enfant" else ¤l4leulqw-QOP-l4leruxk¤) || " vit-il/elle avec vous dans ce logement ?" + + + + radio-button + + fr.insee + l44726g4 + 1 + CodeList + + + fr.insee + l4lfye1g-RDOP-l4lfqvi9 + 1 + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + + + fr.insee + l4lfoek4 + 1 + + PARENT_FR_ENFLOG5 + + + fr.insee + l4lfoek4-QOP-l4lfrft6 + 1 + + PARENT_FR_ENFLOG5 + + + + + fr.insee + l4lfoek4-RDOP-l4lfrft6 + 1 + OutParameter + + + fr.insee + l4lfoek4-QOP-l4lfrft6 + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l4leulqw-QOP-l4leruxk¤,"")="") then "cet enfant" else ¤l4leulqw-QOP-l4leruxk¤) || " vit-il/elle en France ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lfoek4-RDOP-l4lfrft6 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l4papqg4 + 1 + Instruction + + + + fr.insee + l4pauqgi + 1 + + PARENT_DEP_ENFLOG5 + + + fr.insee + l4pauqgi-QOP-llvyw6mw + 1 + + PARENT_DEP_ENFLOG5 + + + + + fr.insee + l4pauqgi-RDOP-llvyw6mw + 1 + OutParameter + + + fr.insee + l4pauqgi-QOP-llvyw6mw + 1 + OutParameter + + + + + "Dans quel département vit l'autre parent de " || (if (nvl(¤l4leulqw-QOP-l4leruxk¤,"")="") then "cet enfant" else ¤l4leulqw-QOP-l4leruxk¤) || " ?" + + + + + fr.insee + l4pauqgi-RDOP-llvyw6mw + 1 + + + + + fr.insee + l4pb0t6z + 1 + Instruction + + + + fr.insee + l4paw4ax + 1 + + PARENT_COM_ENFLOG5 + + + fr.insee + l4paw4ax-QOP-llvyqmlu + 1 + + PARENT_COM_ENFLOG5 + + + + + fr.insee + l4paw4ax-RDOP-llvyqmlu + 1 + OutParameter + + + fr.insee + l4paw4ax-QOP-llvyqmlu + 1 + OutParameter + + + + + "Dans quelle commune vit l'autre parent de " || (if (nvl(¤l4leulqw-QOP-l4leruxk¤,"")="") then "cet enfant" else ¤l4leulqw-QOP-l4leruxk¤) || " ?" + + + + + fr.insee + l4paw4ax-RDOP-llvyqmlu + 1 + + + + + fr.insee + l4paz690 + 1 + Instruction + + + + fr.insee + l4pb234a + 1 + + PARENT_PAY_ENFLOG5 + + + fr.insee + l4pb234a-QOP-llvz0jpe + 1 + + PARENT_PAY_ENFLOG5 + + + + + fr.insee + l4pb234a-RDOP-llvz0jpe + 1 + OutParameter + + + fr.insee + l4pb234a-QOP-llvz0jpe + 1 + OutParameter + + + + + "Dans quel pays vit l'autre parent de " || (if (nvl(¤l4leulqw-QOP-l4leruxk¤,"")="") then "cet enfant" else ¤l4leulqw-QOP-l4leruxk¤) || " ?" + + + + + fr.insee + l4pb234a-RDOP-llvz0jpe + 1 + + + + + fr.insee + l4pb68fn + 1 + Instruction + + + + fr.insee + l8n262ck + 1 + + PARENT_FREQ_ENFLOG5 + + + fr.insee + l8n262ck-QOP-l8n27wnd + 1 + + PARENT_FREQ_ENFLOG5 + + + + + fr.insee + l8n262ck-RDOP-l8n27wnd + 1 + OutParameter + + + fr.insee + l8n262ck-QOP-l8n27wnd + 1 + OutParameter + + + + + "A quelle fréquence " || (if (nvl(¤l4leulqw-QOP-l4leruxk¤,"")="") then "cet enfant" else ¤l4leulqw-QOP-l4leruxk¤) || " est-" || (if (¤l4lem0yg-QOP-l4leqtd3¤="1" or isnull(¤l4lem0yg-QOP-l4leqtd3¤)) then "il" else "elle") || " en contact avec son autre parent ?" + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + l8n262ck-RDOP-l8n27wnd + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + fr.insee + l8n1urc0 + 1 + Instruction + + + + fr.insee + l4lfr4qa + 1 + + PARENT_DORT_ENFLOG5 + + + fr.insee + l4lfr4qa-QOP-l4lfvr6s + 1 + + PARENT_DORT_ENFLOG5 + + + + + fr.insee + l4lfr4qa-RDOP-l4lfvr6s + 1 + OutParameter + + + fr.insee + l4lfr4qa-QOP-l4lfvr6s + 1 + OutParameter + + + + + "Arrive-t-il à " || (if (nvl(¤l4leulqw-QOP-l4leruxk¤,"")="") then "cet enfant" else ¤l4leulqw-QOP-l4leruxk¤) || " de dormir chez son autre parent ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lfr4qa-RDOP-l4lfvr6s + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lfvape + 1 + + PARENT_VECU_ENFLOG5 + + + fr.insee + l4lfvape-QOP-l4lfk081 + 1 + + PARENT_VECU_ENFLOG5 + + + + + fr.insee + l4lfvape-RDOP-l4lfk081 + 1 + OutParameter + + + fr.insee + l4lfvape-QOP-l4lfk081 + 1 + OutParameter + + + + + "Avez-vous déjà vécu avec l'autre parent de " || (if (nvl(¤l4leulqw-QOP-l4leruxk¤,"")="") then "cet enfant" else ¤l4leulqw-QOP-l4leruxk¤) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lfvape-RDOP-l4lfk081 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + la6yfjnf + 1 + + SEP_AUT_PAR_ENFLOG5 + + + fr.insee + la6yfjnf-QOP-la6y9op3 + 1 + + SEP_AUT_PAR_ENFLOG5 + + + + + fr.insee + la6yfjnf-RDOP-la6y9op3 + 1 + OutParameter + + + fr.insee + la6yfjnf-QOP-la6y9op3 + 1 + OutParameter + + + + + "Vous êtes-vous séparé" || (if (¤ln0892lt-GOP¤ = "2") then "e" else "") || " de l'autre parent de " || (if (nvl(¤l4leulqw-QOP-l4leruxk¤,"")="") then "cet enfant" else ¤l4leulqw-QOP-l4leruxk¤) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + la6yfjnf-RDOP-la6y9op3 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lg25av + 1 + + RESID_ENFLOG5 + + + fr.insee + l4lg25av-QOP-l4lfuclq + 1 + + RESID_ENFLOG5 + + + + + fr.insee + l4lg25av-RDOP-l4lfuclq + 1 + OutParameter + + + fr.insee + l4lg25av-QOP-l4lfuclq + 1 + OutParameter + + + + + "Quel a été le mode de résidence fixé par décision de justice ?" + + + + radio-button + + fr.insee + kwqjqlpa + 1 + CodeList + + + fr.insee + l4lg25av-RDOP-l4lfuclq + 1 + + + fr.insee + kwqjqlpa + 1 + CodeList + + + + + + + + fr.insee + l8n2umnw + 1 + + PRENOM_ENFLOG6 + + + fr.insee + l8n2umnw-QOP-l8n2q8ti + 1 + + PRENOM_ENFLOG6 + + + + + fr.insee + l8n2umnw-RDOP-l8n2q8ti + 1 + OutParameter + + + fr.insee + l8n2umnw-QOP-l8n2q8ti + 1 + OutParameter + + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", comment s'appelle votre sixième enfant qui vit avec vous, même une petite partie du temps seulement ?" + + + + + fr.insee + l8n2umnw-RDOP-l8n2q8ti + 1 + + + + + + fr.insee + l8n2e1mr + 1 + + SEXE_ENFLOG6 + + + fr.insee + l8n2e1mr-QOP-l8n2ef3o + 1 + + SEXE_ENFLOG6 + + + + + fr.insee + l8n2e1mr-RDOP-l8n2ef3o + 1 + OutParameter + + + fr.insee + l8n2e1mr-QOP-l8n2ef3o + 1 + OutParameter + + + + + "Quel est le sexe de " || (if (nvl(¤l8n2umnw-QOP-l8n2q8ti¤,"")="") then "cet enfant" else ¤l8n2umnw-QOP-l8n2q8ti¤) || " ?" + + + + radio-button + + fr.insee + llgbzo78 + 1 + CodeList + + + fr.insee + l8n2e1mr-RDOP-l8n2ef3o + 1 + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + + + fr.insee + l8n2lctv + 1 + + ANAI_ENFLOG6 + + + fr.insee + l8n2lctv-QOP-l8n2f2zr + 1 + + ANAI_ENFLOG6 + + + + + fr.insee + l8n2lctv-RDOP-l8n2f2zr + 1 + OutParameter + + + fr.insee + l8n2lctv-QOP-l8n2f2zr + 1 + OutParameter + + + + + "Quelle est l'année de naissance de " || (if (nvl(¤l8n2umnw-QOP-l8n2q8ti¤,"")="") then "cet enfant" else ¤l8n2umnw-QOP-l8n2q8ti¤) || " ?" + + + + + fr.insee + l8n2lctv-RDOP-l8n2f2zr + 1 + + + + + + fr.insee + l8n2gmuq + 1 + + NEFRANCE_ENFLOG6 + + + fr.insee + l8n2gmuq-QOP-l8n2bcdy + 1 + + NEFRANCE_ENFLOG6 + + + + + fr.insee + l8n2gmuq-RDOP-l8n2bcdy + 1 + OutParameter + + + fr.insee + l8n2gmuq-QOP-l8n2bcdy + 1 + OutParameter + + + + + "" || (if (nvl(¤l8n2umnw-QOP-l8n2q8ti¤,"")="") then "Cet enfant" else ¤l8n2umnw-QOP-l8n2q8ti¤) || " est-" || (if (¤l8n2e1mr-QOP-l8n2ef3o¤="1" or isnull(¤l8n2e1mr-QOP-l8n2ef3o¤)) then "il né" else "elle née") || " en France ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8n2gmuq-RDOP-l8n2bcdy + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l8n2r8je + 1 + Instruction + + + + fr.insee + l8n2ilpb + 1 + + PARENT_VIT_ENFLOG6 + + + fr.insee + l8n2ilpb-QOP-l8n290y2 + 1 + + PARENT_VIT_ENFLOG6 + + + + + fr.insee + l8n2ilpb-RDOP-l8n290y2 + 1 + OutParameter + + + fr.insee + l8n2ilpb-QOP-l8n290y2 + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l8n2umnw-QOP-l8n2q8ti¤,"")="") then "cet enfant" else ¤l8n2umnw-QOP-l8n2q8ti¤) || " vit-il/elle avec vous dans ce logement ?" + + + + radio-button + + fr.insee + l44726g4 + 1 + CodeList + + + fr.insee + l8n2ilpb-RDOP-l8n290y2 + 1 + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + + + fr.insee + l8n1zy7o + 1 + + PARENT_FR_ENFLOG6 + + + fr.insee + l8n1zy7o-QOP-l8n23nvd + 1 + + PARENT_FR_ENFLOG6 + + + + + fr.insee + l8n1zy7o-RDOP-l8n23nvd + 1 + OutParameter + + + fr.insee + l8n1zy7o-QOP-l8n23nvd + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l8n2umnw-QOP-l8n2q8ti¤,"")="") then "cet enfant" else ¤l8n2umnw-QOP-l8n2q8ti¤) || " vit-il/elle en France ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8n1zy7o-RDOP-l8n23nvd + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l8n2g2zx + 1 + Instruction + + + + fr.insee + l8n2awb0 + 1 + + PARENT_DEP_ENFLOG6 + + + fr.insee + l8n2awb0-QOP-llvz079i + 1 + + PARENT_DEP_ENFLOG6 + + + + + fr.insee + l8n2awb0-RDOP-llvz079i + 1 + OutParameter + + + fr.insee + l8n2awb0-QOP-llvz079i + 1 + OutParameter + + + + + "Dans quel département vit l'autre parent de " || (if (nvl(¤l8n2umnw-QOP-l8n2q8ti¤,"")="") then "cet enfant" else ¤l8n2umnw-QOP-l8n2q8ti¤) || " ?" + + + + + fr.insee + l8n2awb0-RDOP-llvz079i + 1 + + + + + fr.insee + l8n24jzh + 1 + Instruction + + + + fr.insee + l8n1u6yt + 1 + + PARENT_COM_ENFLOG6 + + + fr.insee + l8n1u6yt-QOP-llvz20va + 1 + + PARENT_COM_ENFLOG6 + + + + + fr.insee + l8n1u6yt-RDOP-llvz20va + 1 + OutParameter + + + fr.insee + l8n1u6yt-QOP-llvz20va + 1 + OutParameter + + + + + "Dans quelle commune vit l'autre parent de " || (if (nvl(¤l8n2umnw-QOP-l8n2q8ti¤,"")="") then "cet enfant" else ¤l8n2umnw-QOP-l8n2q8ti¤) || " ?" + + + + + fr.insee + l8n1u6yt-RDOP-llvz20va + 1 + + + + + fr.insee + l8n208lx + 1 + Instruction + + + + fr.insee + l8n20r8i + 1 + + PARENT_PAY_ENFLOG6 + + + fr.insee + l8n20r8i-QOP-llvz6xrr + 1 + + PARENT_PAY_ENFLOG6 + + + + + fr.insee + l8n20r8i-RDOP-llvz6xrr + 1 + OutParameter + + + fr.insee + l8n20r8i-QOP-llvz6xrr + 1 + OutParameter + + + + + "Dans quel pays vit l'autre parent de " || (if (nvl(¤l8n2umnw-QOP-l8n2q8ti¤,"")="") then "cet enfant" else ¤l8n2umnw-QOP-l8n2q8ti¤) || " ?" + + + + + fr.insee + l8n20r8i-RDOP-llvz6xrr + 1 + + + + + fr.insee + l8n2b8s7 + 1 + Instruction + + + + fr.insee + l4lfnqiq + 1 + + PARENT_FREQ_ENFLOG6 + + + fr.insee + l4lfnqiq-QOP-l4lg2h6j + 1 + + PARENT_FREQ_ENFLOG6 + + + + + fr.insee + l4lfnqiq-RDOP-l4lg2h6j + 1 + OutParameter + + + fr.insee + l4lfnqiq-QOP-l4lg2h6j + 1 + OutParameter + + + + + "A quelle fréquence " || (if (nvl(¤l8n2umnw-QOP-l8n2q8ti¤,"")="") then "cet enfant" else ¤l8n2umnw-QOP-l8n2q8ti¤) || " est-" || (if (¤l8n2e1mr-QOP-l8n2ef3o¤="1" or isnull(¤l8n2e1mr-QOP-l8n2ef3o¤)) then "il" else "elle") || " en contact avec son autre parent ?" + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + l4lfnqiq-RDOP-l4lg2h6j + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + fr.insee + l4lfskzd + 1 + Instruction + + + + fr.insee + l8n29jww + 1 + + PARENT_DORT_ENFLOG6 + + + fr.insee + l8n29jww-QOP-l8n23c9r + 1 + + PARENT_DORT_ENFLOG6 + + + + + fr.insee + l8n29jww-RDOP-l8n23c9r + 1 + OutParameter + + + fr.insee + l8n29jww-QOP-l8n23c9r + 1 + OutParameter + + + + + "Arrive-t-il à " || (if (nvl(¤l8n2umnw-QOP-l8n2q8ti¤,"")="") then "cet enfant" else ¤l8n2umnw-QOP-l8n2q8ti¤) || " de dormir chez son autre parent ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8n29jww-RDOP-l8n23c9r + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8n1p0yj + 1 + + PARENT_VECU_ENFLOG6 + + + fr.insee + l8n1p0yj-QOP-l8n23ghn + 1 + + PARENT_VECU_ENFLOG6 + + + + + fr.insee + l8n1p0yj-RDOP-l8n23ghn + 1 + OutParameter + + + fr.insee + l8n1p0yj-QOP-l8n23ghn + 1 + OutParameter + + + + + "Avez-vous déjà vécu avec l'autre parent de " || (if (nvl(¤l8n2umnw-QOP-l8n2q8ti¤,"")="") then "cet enfant" else ¤l8n2umnw-QOP-l8n2q8ti¤) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8n1p0yj-RDOP-l8n23ghn + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + la6y7ni0 + 1 + + SEP_AUT_PAR_ENFLOG6 + + + fr.insee + la6y7ni0-QOP-la6y43a4 + 1 + + SEP_AUT_PAR_ENFLOG6 + + + + + fr.insee + la6y7ni0-RDOP-la6y43a4 + 1 + OutParameter + + + fr.insee + la6y7ni0-QOP-la6y43a4 + 1 + OutParameter + + + + + "Vous êtes-vous séparé" || (if (¤ln0892lt-GOP¤ = "2") then "e" else "") || " de l'autre parent de " || (if (nvl(¤l8n2umnw-QOP-l8n2q8ti¤,"")="") then "cet enfant" else ¤l8n2umnw-QOP-l8n2q8ti¤) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + la6y7ni0-RDOP-la6y43a4 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8n1u2kg + 1 + + RESID_ENFLOG6 + + + fr.insee + l8n1u2kg-QOP-l8n1lsvh + 1 + + RESID_ENFLOG6 + + + + + fr.insee + l8n1u2kg-RDOP-l8n1lsvh + 1 + OutParameter + + + fr.insee + l8n1u2kg-QOP-l8n1lsvh + 1 + OutParameter + + + + + "Quel a été le mode de résidence fixé par décision de justice ?" + + + + radio-button + + fr.insee + kwqjqlpa + 1 + CodeList + + + fr.insee + l8n1u2kg-RDOP-l8n1lsvh + 1 + + + fr.insee + kwqjqlpa + 1 + CodeList + + + + + + + + fr.insee + l8n3pb4f + 1 + + PRENOM_ENFLOG7 + + + fr.insee + l8n3pb4f-QOP-l8n3v5q6 + 1 + + PRENOM_ENFLOG7 + + + + + fr.insee + l8n3pb4f-RDOP-l8n3v5q6 + 1 + OutParameter + + + fr.insee + l8n3pb4f-QOP-l8n3v5q6 + 1 + OutParameter + + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", comment s'appelle votre septième enfant qui vit avec vous, même une petite partie du temps seulement ?" + + + + + fr.insee + l8n3pb4f-RDOP-l8n3v5q6 + 1 + + + + + + fr.insee + l8n3mik2 + 1 + + SEXE_ENFLOG7 + + + fr.insee + l8n3mik2-QOP-l8n3szau + 1 + + SEXE_ENFLOG7 + + + + + fr.insee + l8n3mik2-RDOP-l8n3szau + 1 + OutParameter + + + fr.insee + l8n3mik2-QOP-l8n3szau + 1 + OutParameter + + + + + "Quel est le sexe de " || (if (nvl(¤l8n3pb4f-QOP-l8n3v5q6¤,"")="") then "cet enfant" else ¤l8n3pb4f-QOP-l8n3v5q6¤) || " ?" + + + + radio-button + + fr.insee + llgbzo78 + 1 + CodeList + + + fr.insee + l8n3mik2-RDOP-l8n3szau + 1 + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + + + fr.insee + l8n3jmk8 + 1 + + ANAI_ENFLOG7 + + + fr.insee + l8n3jmk8-QOP-l8n3qluw + 1 + + ANAI_ENFLOG7 + + + + + fr.insee + l8n3jmk8-RDOP-l8n3qluw + 1 + OutParameter + + + fr.insee + l8n3jmk8-QOP-l8n3qluw + 1 + OutParameter + + + + + "Quelle est l'année de naissance de " || (if (nvl(¤l8n3pb4f-QOP-l8n3v5q6¤,"")="") then "cet enfant" else ¤l8n3pb4f-QOP-l8n3v5q6¤) || " ?" + + + + + fr.insee + l8n3jmk8-RDOP-l8n3qluw + 1 + + + + + + fr.insee + l8n36fv3 + 1 + + NEFRANCE_ENFLOG7 + + + fr.insee + l8n36fv3-QOP-l8n384e4 + 1 + + NEFRANCE_ENFLOG7 + + + + + fr.insee + l8n36fv3-RDOP-l8n384e4 + 1 + OutParameter + + + fr.insee + l8n36fv3-QOP-l8n384e4 + 1 + OutParameter + + + + + "" || (if (nvl(¤l8n3pb4f-QOP-l8n3v5q6¤,"")="") then "Cet enfant" else ¤l8n3pb4f-QOP-l8n3v5q6¤) || " est-" || (if (¤l8n3mik2-QOP-l8n3szau¤="1" or isnull(¤l8n3mik2-QOP-l8n3szau¤)) then "il né" else "elle née") || " en France ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8n36fv3-RDOP-l8n384e4 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l8n38zes + 1 + Instruction + + + + fr.insee + l8n3ff6s + 1 + + PARENT_VIT_ENFLOG7 + + + fr.insee + l8n3ff6s-QOP-l8n3ns0y + 1 + + PARENT_VIT_ENFLOG7 + + + + + fr.insee + l8n3ff6s-RDOP-l8n3ns0y + 1 + OutParameter + + + fr.insee + l8n3ff6s-QOP-l8n3ns0y + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l8n3pb4f-QOP-l8n3v5q6¤,"")="") then "cet enfant" else ¤l8n3pb4f-QOP-l8n3v5q6¤) || " vit-il/elle avec vous dans ce logement ?" + + + + radio-button + + fr.insee + l44726g4 + 1 + CodeList + + + fr.insee + l8n3ff6s-RDOP-l8n3ns0y + 1 + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + + + fr.insee + l8n3b7uo + 1 + + PARENT_FR_ENFLOG7 + + + fr.insee + l8n3b7uo-QOP-l8n3h6xz + 1 + + PARENT_FR_ENFLOG7 + + + + + fr.insee + l8n3b7uo-RDOP-l8n3h6xz + 1 + OutParameter + + + fr.insee + l8n3b7uo-QOP-l8n3h6xz + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l8n3pb4f-QOP-l8n3v5q6¤,"")="") then "cet enfant" else ¤l8n3pb4f-QOP-l8n3v5q6¤) || " vit-il/elle en France ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8n3b7uo-RDOP-l8n3h6xz + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l8n32k1l + 1 + Instruction + + + + fr.insee + l8n3fzap + 1 + + PARENT_DEP_ENFLOG7 + + + fr.insee + l8n3fzap-QOP-llvz2fkv + 1 + + PARENT_DEP_ENFLOG7 + + + + + fr.insee + l8n3fzap-RDOP-llvz2fkv + 1 + OutParameter + + + fr.insee + l8n3fzap-QOP-llvz2fkv + 1 + OutParameter + + + + + "Dans quel département vit l'autre parent de " || (if (nvl(¤l8n3pb4f-QOP-l8n3v5q6¤,"")="") then "cet enfant" else ¤l8n3pb4f-QOP-l8n3v5q6¤) || " ?" + + + + + fr.insee + l8n3fzap-RDOP-llvz2fkv + 1 + + + + + fr.insee + l8n3j9rq + 1 + Instruction + + + + fr.insee + l8n3485v + 1 + + PARENT_COM_ENFLOG7 + + + fr.insee + l8n3485v-QOP-llvyxcs0 + 1 + + PARENT_COM_ENFLOG7 + + + + + fr.insee + l8n3485v-RDOP-llvyxcs0 + 1 + OutParameter + + + fr.insee + l8n3485v-QOP-llvyxcs0 + 1 + OutParameter + + + + + "Dans quelle commune vit l'autre parent de " || (if (nvl(¤l8n3pb4f-QOP-l8n3v5q6¤,"")="") then "cet enfant" else ¤l8n3pb4f-QOP-l8n3v5q6¤) || " ?" + + + + + fr.insee + l8n3485v-RDOP-llvyxcs0 + 1 + + + + + fr.insee + l8n33lad + 1 + Instruction + + + + fr.insee + l8n3burz + 1 + + PARENT_PAY_ENFLOG7 + + + fr.insee + l8n3burz-QOP-llvz5jsq + 1 + + PARENT_PAY_ENFLOG7 + + + + + fr.insee + l8n3burz-RDOP-llvz5jsq + 1 + OutParameter + + + fr.insee + l8n3burz-QOP-llvz5jsq + 1 + OutParameter + + + + + "Dans quel pays vit l'autre parent de " || (if (nvl(¤l8n3pb4f-QOP-l8n3v5q6¤,"")="") then "cet enfant" else ¤l8n3pb4f-QOP-l8n3v5q6¤) || " ?" + + + + + fr.insee + l8n3burz-RDOP-llvz5jsq + 1 + + + + + fr.insee + l8n2z0lq + 1 + Instruction + + + + fr.insee + l8n32xk9 + 1 + + PARENT_FREQ_ENFLOG7 + + + fr.insee + l8n32xk9-QOP-l8n37thq + 1 + + PARENT_FREQ_ENFLOG7 + + + + + fr.insee + l8n32xk9-RDOP-l8n37thq + 1 + OutParameter + + + fr.insee + l8n32xk9-QOP-l8n37thq + 1 + OutParameter + + + + + "A quelle fréquence " || (if (nvl(¤l8n3pb4f-QOP-l8n3v5q6¤,"")="") then "cet enfant" else ¤l8n3pb4f-QOP-l8n3v5q6¤) || " est-" || (if (¤l8n3mik2-QOP-l8n3szau¤="1" or isnull(¤l8n3mik2-QOP-l8n3szau¤)) then "il" else "elle") || " en contact avec son autre parent ?" + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + l8n32xk9-RDOP-l8n37thq + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + fr.insee + l8n3gpec + 1 + Instruction + + + + fr.insee + l8n2x7q4 + 1 + + PARENT_DORT_ENFLOG7 + + + fr.insee + l8n2x7q4-QOP-l8n348ci + 1 + + PARENT_DORT_ENFLOG7 + + + + + fr.insee + l8n2x7q4-RDOP-l8n348ci + 1 + OutParameter + + + fr.insee + l8n2x7q4-QOP-l8n348ci + 1 + OutParameter + + + + + "Arrive-t-il à " || (if (nvl(¤l8n3pb4f-QOP-l8n3v5q6¤,"")="") then "cet enfant" else ¤l8n3pb4f-QOP-l8n3v5q6¤) || " de dormir chez son autre parent ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8n2x7q4-RDOP-l8n348ci + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8n3ary8 + 1 + + PARENT_VECU_ENFLOG7 + + + fr.insee + l8n3ary8-QOP-l8n3c8ra + 1 + + PARENT_VECU_ENFLOG7 + + + + + fr.insee + l8n3ary8-RDOP-l8n3c8ra + 1 + OutParameter + + + fr.insee + l8n3ary8-QOP-l8n3c8ra + 1 + OutParameter + + + + + "Avez-vous déjà vécu avec l'autre parent de " || (if (nvl(¤l8n3pb4f-QOP-l8n3v5q6¤,"")="") then "cet enfant" else ¤l8n3pb4f-QOP-l8n3v5q6¤) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8n3ary8-RDOP-l8n3c8ra + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + la6y542q + 1 + + SEP_AUT_PAR_ENFLOG7 + + + fr.insee + la6y542q-QOP-la6y48t7 + 1 + + SEP_AUT_PAR_ENFLOG7 + + + + + fr.insee + la6y542q-RDOP-la6y48t7 + 1 + OutParameter + + + fr.insee + la6y542q-QOP-la6y48t7 + 1 + OutParameter + + + + + "Vous êtes-vous séparé" || (if (¤ln0892lt-GOP¤ = "2") then "e" else "") || " de l'autre parent de " || (if (nvl(¤l8n3pb4f-QOP-l8n3v5q6¤,"")="") then "cet enfant" else ¤l8n3pb4f-QOP-l8n3v5q6¤) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + la6y542q-RDOP-la6y48t7 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8n2t39d + 1 + + RESID_ENFLOG7 + + + fr.insee + l8n2t39d-QOP-l8n38vu9 + 1 + + RESID_ENFLOG7 + + + + + fr.insee + l8n2t39d-RDOP-l8n38vu9 + 1 + OutParameter + + + fr.insee + l8n2t39d-QOP-l8n38vu9 + 1 + OutParameter + + + + + "Quel a été le mode de résidence fixé par décision de justice ?" + + + + radio-button + + fr.insee + kwqjqlpa + 1 + CodeList + + + fr.insee + l8n2t39d-RDOP-l8n38vu9 + 1 + + + fr.insee + kwqjqlpa + 1 + CodeList + + + + + + + + fr.insee + l8n4cayp + 1 + + PRENOM_ENFLOG8 + + + fr.insee + l8n4cayp-QOP-l8n40opx + 1 + + PRENOM_ENFLOG8 + + + + + fr.insee + l8n4cayp-RDOP-l8n40opx + 1 + OutParameter + + + fr.insee + l8n4cayp-QOP-l8n40opx + 1 + OutParameter + + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", comment s'appelle votre huitième enfant qui vit avec vous, même une petite partie du temps seulement ?" + + + + + fr.insee + l8n4cayp-RDOP-l8n40opx + 1 + + + + + + fr.insee + l8n406m9 + 1 + + SEXE_ENFLOG8 + + + fr.insee + l8n406m9-QOP-l8n4es1f + 1 + + SEXE_ENFLOG8 + + + + + fr.insee + l8n406m9-RDOP-l8n4es1f + 1 + OutParameter + + + fr.insee + l8n406m9-QOP-l8n4es1f + 1 + OutParameter + + + + + "Quel est le sexe de " || (if (nvl(¤l8n4cayp-QOP-l8n40opx¤,"")="") then "cet enfant" else ¤l8n4cayp-QOP-l8n40opx¤) || " ?" + + + + radio-button + + fr.insee + llgbzo78 + 1 + CodeList + + + fr.insee + l8n406m9-RDOP-l8n4es1f + 1 + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + + + fr.insee + l8n3tya0 + 1 + + ANAI_ENFLOG8 + + + fr.insee + l8n3tya0-QOP-l8n414mk + 1 + + ANAI_ENFLOG8 + + + + + fr.insee + l8n3tya0-RDOP-l8n414mk + 1 + OutParameter + + + fr.insee + l8n3tya0-QOP-l8n414mk + 1 + OutParameter + + + + + "Quelle est l'année de naissance de " || (if (nvl(¤l8n4cayp-QOP-l8n40opx¤,"")="") then "cet enfant" else ¤l8n4cayp-QOP-l8n40opx¤) || " ?" + + + + + fr.insee + l8n3tya0-RDOP-l8n414mk + 1 + + + + + + fr.insee + l8n3vr8b + 1 + + NEFRANCE_ENFLOG8 + + + fr.insee + l8n3vr8b-QOP-l8n49n0l + 1 + + NEFRANCE_ENFLOG8 + + + + + fr.insee + l8n3vr8b-RDOP-l8n49n0l + 1 + OutParameter + + + fr.insee + l8n3vr8b-QOP-l8n49n0l + 1 + OutParameter + + + + + "" || (if (nvl(¤l8n4cayp-QOP-l8n40opx¤,"")="") then "Cet enfant" else ¤l8n4cayp-QOP-l8n40opx¤) || " est-" || (if (¤l8n406m9-QOP-l8n4es1f¤="1" or isnull(¤l8n406m9-QOP-l8n4es1f¤)) then "il né" else "elle née") || " en France ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8n3vr8b-RDOP-l8n49n0l + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l8n3xl10 + 1 + Instruction + + + + fr.insee + l8n427a2 + 1 + + PARENT_VIT_ENFLOG8 + + + fr.insee + l8n427a2-QOP-l8n40s7s + 1 + + PARENT_VIT_ENFLOG8 + + + + + fr.insee + l8n427a2-RDOP-l8n40s7s + 1 + OutParameter + + + fr.insee + l8n427a2-QOP-l8n40s7s + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l8n4cayp-QOP-l8n40opx¤,"")="") then "cet enfant" else ¤l8n4cayp-QOP-l8n40opx¤) || " vit-il/elle avec vous dans ce logement ?" + + + + radio-button + + fr.insee + l44726g4 + 1 + CodeList + + + fr.insee + l8n427a2-RDOP-l8n40s7s + 1 + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + + + fr.insee + l8n41hvu + 1 + + PARENT_FR_ENFLOG8 + + + fr.insee + l8n41hvu-QOP-l8n3z6kp + 1 + + PARENT_FR_ENFLOG8 + + + + + fr.insee + l8n41hvu-RDOP-l8n3z6kp + 1 + OutParameter + + + fr.insee + l8n41hvu-QOP-l8n3z6kp + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l8n4cayp-QOP-l8n40opx¤,"")="") then "cet enfant" else ¤l8n4cayp-QOP-l8n40opx¤) || " vit-il/elle en France ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8n41hvu-RDOP-l8n3z6kp + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l8n3m622 + 1 + Instruction + + + + fr.insee + l8n41c78 + 1 + + PARENT_DEP_ENFLOG8 + + + fr.insee + l8n41c78-QOP-llvz93ha + 1 + + PARENT_DEP_ENFLOG8 + + + + + fr.insee + l8n41c78-RDOP-llvz93ha + 1 + OutParameter + + + fr.insee + l8n41c78-QOP-llvz93ha + 1 + OutParameter + + + + + "Dans quel département vit l'autre parent de " || (if (nvl(¤l8n4cayp-QOP-l8n40opx¤,"")="") then "cet enfant" else ¤l8n4cayp-QOP-l8n40opx¤) || " ?" + + + + + fr.insee + l8n41c78-RDOP-llvz93ha + 1 + + + + + fr.insee + l8n3q2xj + 1 + Instruction + + + + fr.insee + l8n3tbmd + 1 + + PARENT_COM_ENFLOG8 + + + fr.insee + l8n3tbmd-QOP-llvyt2m9 + 1 + + PARENT_COM_ENFLOG8 + + + + + fr.insee + l8n3tbmd-RDOP-llvyt2m9 + 1 + OutParameter + + + fr.insee + l8n3tbmd-QOP-llvyt2m9 + 1 + OutParameter + + + + + "Dans quelle commune vit l'autre parent de " || (if (nvl(¤l8n4cayp-QOP-l8n40opx¤,"")="") then "cet enfant" else ¤l8n4cayp-QOP-l8n40opx¤) || " ?" + + + + + fr.insee + l8n3tbmd-RDOP-llvyt2m9 + 1 + + + + + fr.insee + l8n3z556 + 1 + Instruction + + + + fr.insee + l8n40r7t + 1 + + PARENT_PAY_ENFLOG8 + + + fr.insee + l8n40r7t-QOP-llvyxwit + 1 + + PARENT_PAY_ENFLOG8 + + + + + fr.insee + l8n40r7t-RDOP-llvyxwit + 1 + OutParameter + + + fr.insee + l8n40r7t-QOP-llvyxwit + 1 + OutParameter + + + + + "Dans quel pays vit l'autre parent de " || (if (nvl(¤l8n4cayp-QOP-l8n40opx¤,"")="") then "cet enfant" else ¤l8n4cayp-QOP-l8n40opx¤) || " ?" + + + + + fr.insee + l8n40r7t-RDOP-llvyxwit + 1 + + + + + fr.insee + l8n3kcnq + 1 + Instruction + + + + fr.insee + l8n3fpp7 + 1 + + PARENT_FREQ_ENFLOG8 + + + fr.insee + l8n3fpp7-QOP-l8n40f43 + 1 + + PARENT_FREQ_ENFLOG8 + + + + + fr.insee + l8n3fpp7-RDOP-l8n40f43 + 1 + OutParameter + + + fr.insee + l8n3fpp7-QOP-l8n40f43 + 1 + OutParameter + + + + + "A quelle fréquence " || (if (nvl(¤l8n4cayp-QOP-l8n40opx¤,"")="") then "cet enfant" else ¤l8n4cayp-QOP-l8n40opx¤) || " est-" || (if (¤l8n406m9-QOP-l8n4es1f¤="1" or isnull(¤l8n406m9-QOP-l8n4es1f¤)) then "il" else "elle") || " en contact avec son autre parent ?" + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + l8n3fpp7-RDOP-l8n40f43 + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + fr.insee + l8n3wl31 + 1 + Instruction + + + + fr.insee + l8n3xb0z + 1 + + PARENT_DORT_ENFLOG8 + + + fr.insee + l8n3xb0z-QOP-l8n3tomk + 1 + + PARENT_DORT_ENFLOG8 + + + + + fr.insee + l8n3xb0z-RDOP-l8n3tomk + 1 + OutParameter + + + fr.insee + l8n3xb0z-QOP-l8n3tomk + 1 + OutParameter + + + + + "Arrive-t-il à " || (if (nvl(¤l8n4cayp-QOP-l8n40opx¤,"")="") then "cet enfant" else ¤l8n4cayp-QOP-l8n40opx¤) || " de dormir chez son autre parent ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8n3xb0z-RDOP-l8n3tomk + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8n3tjlw + 1 + + PARENT_VECU_ENFLOG8 + + + fr.insee + l8n3tjlw-QOP-l8n3nqy3 + 1 + + PARENT_VECU_ENFLOG8 + + + + + fr.insee + l8n3tjlw-RDOP-l8n3nqy3 + 1 + OutParameter + + + fr.insee + l8n3tjlw-QOP-l8n3nqy3 + 1 + OutParameter + + + + + "Avez-vous déjà vécu avec l'autre parent de " || (if (nvl(¤l8n4cayp-QOP-l8n40opx¤,"")="") then "cet enfant" else ¤l8n4cayp-QOP-l8n40opx¤) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8n3tjlw-RDOP-l8n3nqy3 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + la6v947r + 1 + + SEP_AUT_PAR_ENFLOG8 + + + fr.insee + la6v947r-QOP-la6v9lhg + 1 + + SEP_AUT_PAR_ENFLOG8 + + + + + fr.insee + la6v947r-RDOP-la6v9lhg + 1 + OutParameter + + + fr.insee + la6v947r-QOP-la6v9lhg + 1 + OutParameter + + + + + "Vous êtes-vous séparé" || (if (¤ln0892lt-GOP¤ = "2") then "e" else "") || " de l'autre parent de " || (if (nvl(¤l8n4cayp-QOP-l8n40opx¤,"")="") then "cet enfant" else ¤l8n4cayp-QOP-l8n40opx¤) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + la6v947r-RDOP-la6v9lhg + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8n3ocd5 + 1 + + RESID_ENFLOG8 + + + fr.insee + l8n3ocd5-QOP-l8n3iyus + 1 + + RESID_ENFLOG8 + + + + + fr.insee + l8n3ocd5-RDOP-l8n3iyus + 1 + OutParameter + + + fr.insee + l8n3ocd5-QOP-l8n3iyus + 1 + OutParameter + + + + + "Quel a été le mode de résidence fixé par décision de justice ?" + + + + radio-button + + fr.insee + kwqjqlpa + 1 + CodeList + + + fr.insee + l8n3ocd5-RDOP-l8n3iyus + 1 + + + fr.insee + kwqjqlpa + 1 + CodeList + + + + + + + + fr.insee + l4idug6p + 1 + + PRENOM_ENFAIL1 + + + fr.insee + l4idug6p-QOP-l4idueaa + 1 + + PRENOM_ENFAIL1 + + + + + fr.insee + l4idug6p-RDOP-l4idueaa + 1 + OutParameter + + + fr.insee + l4idug6p-QOP-l4idueaa + 1 + OutParameter + + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", comment s'appelle " || (if (¤l4lfzig7-QOP-l4lgbag5¤ = 1 or isnull(¤l4lfzig7-QOP-l4lgbag5¤)) then "votre enfant qui ne vit pas avec vous ou qui est décédé ?" else "votre premier enfant qui ne vit pas avec vous ou qui est décédé ?") + + + + + fr.insee + l4idug6p-RDOP-l4idueaa + 1 + + + + + + fr.insee + kwqix1j5 + 1 + + SEXE_ENFAIL1 + + + fr.insee + kwqix1j5-QOP-kwqixdic + 1 + + SEXE_ENFAIL1 + + + + + fr.insee + kwqix1j5-RDOP-kwqixdic + 1 + OutParameter + + + fr.insee + kwqix1j5-QOP-kwqixdic + 1 + OutParameter + + + + + "Quel est le sexe de " || (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then "cet enfant" else ¤l4idug6p-QOP-l4idueaa¤) || " ?" + + + + radio-button + + fr.insee + llgbzo78 + 1 + CodeList + + + fr.insee + kwqix1j5-RDOP-kwqixdic + 1 + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + + + fr.insee + kwqj561a + 1 + + ANAI_ENFAIL1 + + + fr.insee + kwqj561a-QOP-kwqj8zg8 + 1 + + ANAI_ENFAIL1 + + + + + fr.insee + kwqj561a-RDOP-kwqj8zg8 + 1 + OutParameter + + + fr.insee + kwqj561a-QOP-kwqj8zg8 + 1 + OutParameter + + + + + "Quelle est l'année de naissance de " || (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then "cet enfant" else ¤l4idug6p-QOP-l4idueaa¤) || " ?" + + + + + fr.insee + kwqj561a-RDOP-kwqj8zg8 + 1 + + + + + + fr.insee + l4cjlk0i + 1 + + NEFRANCE_ENFAIL1 + + + fr.insee + l4cjlk0i-QOP-l4cjenl6 + 1 + + NEFRANCE_ENFAIL1 + + + + + fr.insee + l4cjlk0i-RDOP-l4cjenl6 + 1 + OutParameter + + + fr.insee + l4cjlk0i-QOP-l4cjenl6 + 1 + OutParameter + + + + + "" || (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then "Cet enfant" else ¤l4idug6p-QOP-l4idueaa¤) || " est-" || (if (¤kwqix1j5-QOP-kwqixdic¤="1" or isnull(¤kwqix1j5-QOP-kwqixdic¤)) then "il né" else "elle née") || " en France ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4cjlk0i-RDOP-l4cjenl6 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l4p9roph + 1 + Instruction + + + + fr.insee + l4cjivdg + 1 + + PARENT_VIT_ENFAIL1 + + + fr.insee + l4cjivdg-QOP-l4cjvm0q + 1 + + PARENT_VIT_ENFAIL1 + + + + + fr.insee + l4cjivdg-RDOP-l4cjvm0q + 1 + OutParameter + + + fr.insee + l4cjivdg-QOP-l4cjvm0q + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then "cet enfant" else ¤l4idug6p-QOP-l4idueaa¤) || " vit-il/elle avec vous ?" + + + + radio-button + + fr.insee + l44726g4 + 1 + CodeList + + + fr.insee + l4cjivdg-RDOP-l4cjvm0q + 1 + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + + + fr.insee + l8lzt19v + 1 + + PARENT_VECU_ENFAIL1 + + + fr.insee + l8lzt19v-QOP-l8lzmjqf + 1 + + PARENT_VECU_ENFAIL1 + + + + + fr.insee + l8lzt19v-RDOP-l8lzmjqf + 1 + OutParameter + + + fr.insee + l8lzt19v-QOP-l8lzmjqf + 1 + OutParameter + + + + + "Avez-vous déjà vécu avec l'autre parent de " || (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then "cet enfant" else ¤l4idug6p-QOP-l4idueaa¤) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8lzt19v-RDOP-l8lzmjqf + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4485tkr + 1 + + DC_ENFAIL1 + + + fr.insee + l4485tkr-QOP-l4484mb2 + 1 + + DC_ENFAIL1 + + + + + fr.insee + l4485tkr-RDOP-l4484mb2 + 1 + OutParameter + + + fr.insee + l4485tkr-QOP-l4484mb2 + 1 + OutParameter + + + + + "" || (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then "Cet enfant" else ¤l4idug6p-QOP-l4idueaa¤) || " est-" || if (¤kwqix1j5-QOP-kwqixdic¤="1" or isnull(¤kwqix1j5-QOP-kwqixdic¤)) then "il encore en vie ?" else "elle encore en vie ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4485tkr-RDOP-l4484mb2 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + kwqkh05l + 1 + + AG_DC_ENFAIL1 + + + fr.insee + kwqkh05l-QOP-kwqk5oby + 1 + + AG_DC_ENFAIL1 + + + + + fr.insee + kwqkh05l-RDOP-kwqk5oby + 1 + OutParameter + + + fr.insee + kwqkh05l-QOP-kwqk5oby + 1 + OutParameter + + + + + "A quel âge " || (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then "cet enfant" else ¤l4idug6p-QOP-l4idueaa¤) || " est-" || if (¤kwqix1j5-QOP-kwqixdic¤="1" or isnull(¤kwqix1j5-QOP-kwqixdic¤)) then "il décédé ?" else "elle décédée ?" + + + + + 0 + 95 + + Decimal + + fr.insee + kwqkh05l-RDOP-kwqk5oby + 1 + + + + fr.insee + l2eizvoe + 1 + Instruction + + + + fr.insee + kwqk3ki3 + 1 + + AG_DEPART_ENFAIL1 + + + fr.insee + kwqk3ki3-QOP-kwqkjt71 + 1 + + AG_DEPART_ENFAIL1 + + + + + fr.insee + kwqk3ki3-RDOP-kwqkjt71 + 1 + OutParameter + + + fr.insee + kwqk3ki3-QOP-kwqkjt71 + 1 + OutParameter + + + + + "A quel âge environ " || (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then "cet enfant" else ¤l4idug6p-QOP-l4idueaa¤) || " a-t-" || (if (¤kwqix1j5-QOP-kwqixdic¤="1" or isnull(¤kwqix1j5-QOP-kwqixdic¤)) then "il " else "elle") || " cessé de vivre avec vous ?" + + + + + 0 + 95 + + Decimal + + fr.insee + kwqk3ki3-RDOP-kwqkjt71 + 1 + + + + + fr.insee + kwqkmusz + 1 + + PARENT_FREQ_ENFAIL1 + + + fr.insee + kwqkmusz-QOP-l34h1xd0 + 1 + + PARENT_FREQ_ENFAIL1 + + + + + fr.insee + kwqkmusz-RDOP-l34h1xd0 + 1 + OutParameter + + + fr.insee + kwqkmusz-QOP-l34h1xd0 + 1 + OutParameter + + + + + "A quelle fréquence êtes-vous en contact avec " || (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then "cet enfant" else ¤l4idug6p-QOP-l4idueaa¤) || " ? " + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + kwqkmusz-RDOP-l34h1xd0 + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + fr.insee + l4483m6s + 1 + Instruction + + + + fr.insee + kwqjp9yr + 1 + + FR_ENFAIL1 + + + fr.insee + kwqjp9yr-QOP-l48dyt79 + 1 + + FR_ENFAIL1 + + + + + fr.insee + kwqjp9yr-RDOP-l48dyt79 + 1 + OutParameter + + + fr.insee + kwqjp9yr-QOP-l48dyt79 + 1 + OutParameter + + + + + "" || (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then "Cet enfant" else ¤l4idug6p-QOP-l4idueaa¤) || " vit-" || (if (¤kwqix1j5-QOP-kwqixdic¤="1" or isnull(¤kwqix1j5-QOP-kwqixdic¤)) then "il " else "elle ") || "en France actuellement ?" + + + + radio-button + + fr.insee + l4onk0te + 1 + CodeList + + + fr.insee + kwqjp9yr-RDOP-l48dyt79 + 1 + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + + fr.insee + lai6xcya + 1 + Instruction + + + + fr.insee + l4onskib + 1 + + DEP_ENFAIL1 + + + fr.insee + l4onskib-QOP-llvz9m81 + 1 + + DEP_ENFAIL1 + + + + + fr.insee + l4onskib-RDOP-llvz9m81 + 1 + OutParameter + + + fr.insee + l4onskib-QOP-llvz9m81 + 1 + OutParameter + + + + + "Dans quel département vit " || (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then "cet enfant" else ¤l4idug6p-QOP-l4idueaa¤) || " ?" + + + + + fr.insee + l4onskib-RDOP-llvz9m81 + 1 + + + + + fr.insee + l4paafoh + 1 + Instruction + + + + fr.insee + l4onsq99 + 1 + + COM_ENFAIL1 + + + fr.insee + l4onsq99-QOP-llvyydq0 + 1 + + COM_ENFAIL1 + + + + + fr.insee + l4onsq99-RDOP-llvyydq0 + 1 + OutParameter + + + fr.insee + l4onsq99-QOP-llvyydq0 + 1 + OutParameter + + + + + "Dans quelle commune vit " || (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then "cet enfant" else ¤l4idug6p-QOP-l4idueaa¤) || " ?" + + + + + fr.insee + l4onsq99-RDOP-llvyydq0 + 1 + + + + + fr.insee + l4pap0it + 1 + Instruction + + + + fr.insee + l4onsf7y + 1 + + PAY_ENFAIL1 + + + fr.insee + l4onsf7y-QOP-llvyw05u + 1 + + PAY_ENFAIL1 + + + + + fr.insee + l4onsf7y-RDOP-llvyw05u + 1 + OutParameter + + + fr.insee + l4onsf7y-QOP-llvyw05u + 1 + OutParameter + + + + + "Dans quel pays vit " || (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then "cet enfant" else ¤l4idug6p-QOP-l4idueaa¤) || " ?" + + + + + fr.insee + l4onsf7y-RDOP-llvyw05u + 1 + + + + + fr.insee + l4panc40 + 1 + Instruction + + + + fr.insee + kwqk3a58 + 1 + + LOG_ENFAIL1 + + + fr.insee + kwqk3a58-QOP-kwqkfnsx + 1 + + LOG_ENFAIL1 + + + + + fr.insee + kwqk3a58-RDOP-kwqkfnsx + 1 + OutParameter + + + fr.insee + kwqk3a58-QOP-kwqkfnsx + 1 + OutParameter + + + + + "" || (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then "Cet enfant" else ¤l4idug6p-QOP-l4idueaa¤) || " vit-" || (if (¤kwqix1j5-QOP-kwqixdic¤="1" or isnull(¤kwqix1j5-QOP-kwqixdic¤)) then "il " else "elle ") || " dans son propre logement ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + kwqk3a58-RDOP-kwqkfnsx + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l44849iu + 1 + + AUT_PAR_ENFAIL1 + + + fr.insee + l44849iu-QOP-l4483bnv + 1 + + AUT_PAR_ENFAIL1 + + + + + fr.insee + l44849iu-RDOP-l4483bnv + 1 + OutParameter + + + fr.insee + l44849iu-QOP-l4483bnv + 1 + OutParameter + + + + + "" || (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then "Cet enfant" else ¤l4idug6p-QOP-l4idueaa¤) || " vit-"|| (if (¤kwqix1j5-QOP-kwqixdic¤="1" or isnull(¤kwqix1j5-QOP-kwqixdic¤)) then "il " else "elle ") || "chez son autre parent ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l44849iu-RDOP-l4483bnv + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + kwqj7xh6 + 1 + + DORT_ENFAIL1 + + + fr.insee + kwqj7xh6-QOP-l1gkylst + 1 + + DORT_ENFAIL1 + + + + + fr.insee + kwqj7xh6-RDOP-l1gkylst + 1 + OutParameter + + + fr.insee + kwqj7xh6-QOP-l1gkylst + 1 + OutParameter + + + + + "Arrive-t-il à " || (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then "cet enfant" else ¤l4idug6p-QOP-l4idueaa¤) || " de dormir chez vous ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + kwqj7xh6-RDOP-l1gkylst + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4o74e6d + 1 + + SEP_AUT_PAR_ENFAIL1 + + + fr.insee + l4o74e6d-QOP-l4o73ai5 + 1 + + SEP_AUT_PAR_ENFAIL1 + + + + + fr.insee + l4o74e6d-RDOP-l4o73ai5 + 1 + OutParameter + + + fr.insee + l4o74e6d-QOP-l4o73ai5 + 1 + OutParameter + + + + + "Vous êtes-vous séparé" || (if (¤ln0892lt-GOP¤ = "2") then "e" else "") || " de l'autre parent de " || (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then "cet enfant" else ¤l4idug6p-QOP-l4idueaa¤) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4o74e6d-RDOP-l4o73ai5 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l1gknpsx + 1 + + RESID_ENFAIL1 + + + fr.insee + l1gknpsx-QOP-l1gkaoki + 1 + + RESID_ENFAIL1 + + + + + fr.insee + l1gknpsx-RDOP-l1gkaoki + 1 + OutParameter + + + fr.insee + l1gknpsx-QOP-l1gkaoki + 1 + OutParameter + + + + + "Quel a été le mode de résidence fixé par décision de justice ?" + + + + radio-button + + fr.insee + l448z131 + 1 + CodeList + + + fr.insee + l1gknpsx-RDOP-l1gkaoki + 1 + + + fr.insee + l448z131 + 1 + CodeList + + + + + + + + fr.insee + l4lg1tus + 1 + + PRENOM_ENFAIL2 + + + fr.insee + l4lg1tus-QOP-l4lg294k + 1 + + PRENOM_ENFAIL2 + + + + + fr.insee + l4lg1tus-RDOP-l4lg294k + 1 + OutParameter + + + fr.insee + l4lg1tus-QOP-l4lg294k + 1 + OutParameter + + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", comment s'appelle votre deuxième enfant qui ne vit pas avec vous ou qui est décédé ?" + + + + + fr.insee + l4lg1tus-RDOP-l4lg294k + 1 + + + + + + fr.insee + l4lgd8bs + 1 + + SEXE_ENFAIL2 + + + fr.insee + l4lgd8bs-QOP-l4lg3zcd + 1 + + SEXE_ENFAIL2 + + + + + fr.insee + l4lgd8bs-RDOP-l4lg3zcd + 1 + OutParameter + + + fr.insee + l4lgd8bs-QOP-l4lg3zcd + 1 + OutParameter + + + + + "Quel est le sexe de " || (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then "cet enfant" else ¤l4lg1tus-QOP-l4lg294k¤) || " ?" + + + + radio-button + + fr.insee + llgbzo78 + 1 + CodeList + + + fr.insee + l4lgd8bs-RDOP-l4lg3zcd + 1 + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + + + fr.insee + l4lgjbi8 + 1 + + ANAI_ENFAIL2 + + + fr.insee + l4lgjbi8-QOP-l4lg7r84 + 1 + + ANAI_ENFAIL2 + + + + + fr.insee + l4lgjbi8-RDOP-l4lg7r84 + 1 + OutParameter + + + fr.insee + l4lgjbi8-QOP-l4lg7r84 + 1 + OutParameter + + + + + "Quelle est l'année de naissance de " || (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then "cet enfant" else ¤l4lg1tus-QOP-l4lg294k¤) || " ?" + + + + + fr.insee + l4lgjbi8-RDOP-l4lg7r84 + 1 + + + + + + fr.insee + l4lgtwy7 + 1 + + NEFRANCE_ENFAIL2 + + + fr.insee + l4lgtwy7-QOP-l4lgmy6a + 1 + + NEFRANCE_ENFAIL2 + + + + + fr.insee + l4lgtwy7-RDOP-l4lgmy6a + 1 + OutParameter + + + fr.insee + l4lgtwy7-QOP-l4lgmy6a + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then "Cet enfant" else ¤l4lg1tus-QOP-l4lg294k¤) || " est-" || (if (¤l4lgd8bs-QOP-l4lg3zcd¤="1" or isnull(¤l4lgd8bs-QOP-l4lg3zcd¤)) then "il né" else "elle née") || " en France ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lgtwy7-RDOP-l4lgmy6a + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l4p9xwnx + 1 + Instruction + + + + fr.insee + l4lgqbdk + 1 + + PARENT_VIT_ENFAIL2 + + + fr.insee + l4lgqbdk-QOP-l4lgpvm2 + 1 + + PARENT_VIT_ENFAIL2 + + + + + fr.insee + l4lgqbdk-RDOP-l4lgpvm2 + 1 + OutParameter + + + fr.insee + l4lgqbdk-QOP-l4lgpvm2 + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then "cet enfant" else ¤l4lg1tus-QOP-l4lg294k¤) || " vit-il/elle avec vous ?" + + + + radio-button + + fr.insee + l44726g4 + 1 + CodeList + + + fr.insee + l4lgqbdk-RDOP-l4lgpvm2 + 1 + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + + + fr.insee + l8lzthqx + 1 + + PARENT_VECU_ENFAIL2 + + + fr.insee + l8lzthqx-QOP-l8m05h5g + 1 + + PARENT_VECU_ENFAIL2 + + + + + fr.insee + l8lzthqx-RDOP-l8m05h5g + 1 + OutParameter + + + fr.insee + l8lzthqx-QOP-l8m05h5g + 1 + OutParameter + + + + + "Avez-vous déjà vécu avec l'autre parent de " || (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then "cet enfant" else ¤l4lg1tus-QOP-l4lg294k¤) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8lzthqx-RDOP-l8m05h5g + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lh1bvw + 1 + + DC_ENFAIL2 + + + fr.insee + l4lh1bvw-QOP-l4lgv2yw + 1 + + DC_ENFAIL2 + + + + + fr.insee + l4lh1bvw-RDOP-l4lgv2yw + 1 + OutParameter + + + fr.insee + l4lh1bvw-QOP-l4lgv2yw + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then "Cet enfant" else ¤l4lg1tus-QOP-l4lg294k¤) || " est-" || if (¤l4lgd8bs-QOP-l4lg3zcd¤="1" or isnull(¤l4lgd8bs-QOP-l4lg3zcd¤)) then "il encore en vie ?" else "elle encore en vie ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lh1bvw-RDOP-l4lgv2yw + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lhc03p + 1 + + AG_DC_ENFAIL2 + + + fr.insee + l4lhc03p-QOP-l4lhgfos + 1 + + AG_DC_ENFAIL2 + + + + + fr.insee + l4lhc03p-RDOP-l4lhgfos + 1 + OutParameter + + + fr.insee + l4lhc03p-QOP-l4lhgfos + 1 + OutParameter + + + + + "A quel âge " || (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then "cet enfant" else ¤l4lg1tus-QOP-l4lg294k¤) || " est-" || if (¤l4lgd8bs-QOP-l4lg3zcd¤="1" or isnull(¤l4lgd8bs-QOP-l4lg3zcd¤)) then "il décédé ?" else "elle décédée ?" + + + + + 0 + 95 + + Decimal + + fr.insee + l4lhc03p-RDOP-l4lhgfos + 1 + + + + fr.insee + l4lh6w99 + 1 + Instruction + + + + fr.insee + l4lhkbmw + 1 + + AG_DEPART_ENFAIL2 + + + fr.insee + l4lhkbmw-QOP-l4lhq38m + 1 + + AG_DEPART_ENFAIL2 + + + + + fr.insee + l4lhkbmw-RDOP-l4lhq38m + 1 + OutParameter + + + fr.insee + l4lhkbmw-QOP-l4lhq38m + 1 + OutParameter + + + + + "A quel âge environ " || (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then "cet enfant" else ¤l4lg1tus-QOP-l4lg294k¤) || " a-t-" || (if (¤l4lgd8bs-QOP-l4lg3zcd¤="1" or isnull(¤l4lgd8bs-QOP-l4lg3zcd¤)) then "il" else "elle") || " cessé de vivre avec vous ?" + + + + + 0 + 95 + + Decimal + + fr.insee + l4lhkbmw-RDOP-l4lhq38m + 1 + + + + + fr.insee + l4liqyis + 1 + + PARENT_FREQ_ENFAIL2 + + + fr.insee + l4liqyis-QOP-l4lj9ipw + 1 + + PARENT_FREQ_ENFAIL2 + + + + + fr.insee + l4liqyis-RDOP-l4lj9ipw + 1 + OutParameter + + + fr.insee + l4liqyis-QOP-l4lj9ipw + 1 + OutParameter + + + + + "A quelle fréquence êtes-vous en contact avec " || (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then "cet enfant" else ¤l4lg1tus-QOP-l4lg294k¤) || " ? " + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + l4liqyis-RDOP-l4lj9ipw + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + fr.insee + l4liqr1h + 1 + Instruction + + + + fr.insee + l4lj22ar + 1 + + FR_ENFAIL2 + + + fr.insee + l4lj22ar-QOP-l4likfdn + 1 + + FR_ENFAIL2 + + + + + fr.insee + l4lj22ar-RDOP-l4likfdn + 1 + OutParameter + + + fr.insee + l4lj22ar-QOP-l4likfdn + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then "Cet enfant" else ¤l4lg1tus-QOP-l4lg294k¤) || " vit-" || (if (¤l4lgd8bs-QOP-l4lg3zcd¤="1" or isnull(¤l4lgd8bs-QOP-l4lg3zcd¤)) then "il " else "elle ") || "en France actuellement ?" + + + + radio-button + + fr.insee + l4ongo32 + 1 + CodeList + + + fr.insee + l4lj22ar-RDOP-l4likfdn + 1 + + + fr.insee + l4ongo32 + 1 + CodeList + + + + + + + fr.insee + lai6wbee + 1 + Instruction + + + + fr.insee + l4oo8gk0 + 1 + + DEP_ENFAIL2 + + + fr.insee + l4oo8gk0-QOP-llvz89k3 + 1 + + DEP_ENFAIL2 + + + + + fr.insee + l4oo8gk0-RDOP-llvz89k3 + 1 + OutParameter + + + fr.insee + l4oo8gk0-QOP-llvz89k3 + 1 + OutParameter + + + + + "Dans quel département vit " || (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then "cet enfant" else ¤l4lg1tus-QOP-l4lg294k¤) || " ?" + + + + + fr.insee + l4oo8gk0-RDOP-llvz89k3 + 1 + + + + + fr.insee + l4paergi + 1 + Instruction + + + + fr.insee + l4oo2unu + 1 + + COM_ENFAIL2 + + + fr.insee + l4oo2unu-QOP-llvyt4to + 1 + + COM_ENFAIL2 + + + + + fr.insee + l4oo2unu-RDOP-llvyt4to + 1 + OutParameter + + + fr.insee + l4oo2unu-QOP-llvyt4to + 1 + OutParameter + + + + + "Dans quelle commune vit " || (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then "cet enfant" else ¤l4lg1tus-QOP-l4lg294k¤) || " ?" + + + + + fr.insee + l4oo2unu-RDOP-llvyt4to + 1 + + + + + fr.insee + l4pa7dpy + 1 + Instruction + + + + fr.insee + l4ooebmj + 1 + + PAY_ENFAIL2 + + + fr.insee + l4ooebmj-QOP-llvz2rjo + 1 + + PAY_ENFAIL2 + + + + + fr.insee + l4ooebmj-RDOP-llvz2rjo + 1 + OutParameter + + + fr.insee + l4ooebmj-QOP-llvz2rjo + 1 + OutParameter + + + + + "Dans quel pays vit " || (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then "cet enfant" else ¤l4lg1tus-QOP-l4lg294k¤) || " ?" + + + + + fr.insee + l4ooebmj-RDOP-llvz2rjo + 1 + + + + + fr.insee + l4padk5u + 1 + Instruction + + + + fr.insee + l4liztyl + 1 + + LOG_ENFAIL2 + + + fr.insee + l4liztyl-QOP-l4liyopf + 1 + + LOG_ENFAIL2 + + + + + fr.insee + l4liztyl-RDOP-l4liyopf + 1 + OutParameter + + + fr.insee + l4liztyl-QOP-l4liyopf + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then "Cet enfant" else ¤l4lg1tus-QOP-l4lg294k¤) || " vit-" || (if (¤l4lgd8bs-QOP-l4lg3zcd¤="1" or isnull(¤l4lgd8bs-QOP-l4lg3zcd¤)) then "il " else "elle ") || " dans son propre logement ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4liztyl-RDOP-l4liyopf + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lk1w8p + 1 + + AUT_PAR_ENFAIL2 + + + fr.insee + l4lk1w8p-QOP-l4lk92w2 + 1 + + AUT_PAR_ENFAIL2 + + + + + fr.insee + l4lk1w8p-RDOP-l4lk92w2 + 1 + OutParameter + + + fr.insee + l4lk1w8p-QOP-l4lk92w2 + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then "Cet enfant" else ¤l4lg1tus-QOP-l4lg294k¤) || " vit-" || (if (¤l4lgd8bs-QOP-l4lg3zcd¤="1" or isnull(¤l4lgd8bs-QOP-l4lg3zcd¤)) then "il" else "elle") || " chez son autre parent ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lk1w8p-RDOP-l4lk92w2 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4ljkmaj + 1 + + DORT_ENFAIL2 + + + fr.insee + l4ljkmaj-QOP-l4lk4f59 + 1 + + DORT_ENFAIL2 + + + + + fr.insee + l4ljkmaj-RDOP-l4lk4f59 + 1 + OutParameter + + + fr.insee + l4ljkmaj-QOP-l4lk4f59 + 1 + OutParameter + + + + + "Arrive-t-il à " || (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then "cet enfant" else ¤l4lg1tus-QOP-l4lg294k¤) || " de dormir chez vous ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4ljkmaj-RDOP-l4lk4f59 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4o73m0u + 1 + + SEP_AUT_PAR_ENFAIL2 + + + fr.insee + l4o73m0u-QOP-l4o79ydp + 1 + + SEP_AUT_PAR_ENFAIL2 + + + + + fr.insee + l4o73m0u-RDOP-l4o79ydp + 1 + OutParameter + + + fr.insee + l4o73m0u-QOP-l4o79ydp + 1 + OutParameter + + + + + "Vous êtes-vous séparé" || (if (¤ln0892lt-GOP¤ = "2") then "e" else "") || " de l'autre parent de " || (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then "cet enfant" else ¤l4lg1tus-QOP-l4lg294k¤) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4o73m0u-RDOP-l4o79ydp + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lmxke4 + 1 + + RESID_ENFAIL2 + + + fr.insee + l4lmxke4-QOP-l4lmow3d + 1 + + RESID_ENFAIL2 + + + + + fr.insee + l4lmxke4-RDOP-l4lmow3d + 1 + OutParameter + + + fr.insee + l4lmxke4-QOP-l4lmow3d + 1 + OutParameter + + + + + "Quel a été le mode de résidence fixé par décision de justice ?" + + + + radio-button + + fr.insee + l448z131 + 1 + CodeList + + + fr.insee + l4lmxke4-RDOP-l4lmow3d + 1 + + + fr.insee + l448z131 + 1 + CodeList + + + + + + + + fr.insee + l4lg3j5g + 1 + + PRENOM_ENFAIL3 + + + fr.insee + l4lg3j5g-QOP-l4lg9z9j + 1 + + PRENOM_ENFAIL3 + + + + + fr.insee + l4lg3j5g-RDOP-l4lg9z9j + 1 + OutParameter + + + fr.insee + l4lg3j5g-QOP-l4lg9z9j + 1 + OutParameter + + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", comment s'appelle votre troisième enfant qui ne vit pas avec vous ou qui est décédé ?" + + + + + fr.insee + l4lg3j5g-RDOP-l4lg9z9j + 1 + + + + + + fr.insee + l4lg6nx5 + 1 + + SEXE_ENFAIL3 + + + fr.insee + l4lg6nx5-QOP-l4lg6j08 + 1 + + SEXE_ENFAIL3 + + + + + fr.insee + l4lg6nx5-RDOP-l4lg6j08 + 1 + OutParameter + + + fr.insee + l4lg6nx5-QOP-l4lg6j08 + 1 + OutParameter + + + + + "Quel est le sexe de " || (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then "cet enfant" else ¤l4lg3j5g-QOP-l4lg9z9j¤) || " ?" + + + + radio-button + + fr.insee + llgbzo78 + 1 + CodeList + + + fr.insee + l4lg6nx5-RDOP-l4lg6j08 + 1 + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + + + fr.insee + l4lgenh5 + 1 + + ANAI_ENFAIL3 + + + fr.insee + l4lgenh5-QOP-l4lgj042 + 1 + + ANAI_ENFAIL3 + + + + + fr.insee + l4lgenh5-RDOP-l4lgj042 + 1 + OutParameter + + + fr.insee + l4lgenh5-QOP-l4lgj042 + 1 + OutParameter + + + + + "Quelle est l'année de naissance de " || (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then "cet enfant" else ¤l4lg3j5g-QOP-l4lg9z9j¤) || " ?" + + + + + fr.insee + l4lgenh5-RDOP-l4lgj042 + 1 + + + + + + fr.insee + l4lh0q7i + 1 + + NEFRANCE_ENFAIL3 + + + fr.insee + l4lh0q7i-QOP-l4lgw48z + 1 + + NEFRANCE_ENFAIL3 + + + + + fr.insee + l4lh0q7i-RDOP-l4lgw48z + 1 + OutParameter + + + fr.insee + l4lh0q7i-QOP-l4lgw48z + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then "Cet enfant" else ¤l4lg3j5g-QOP-l4lg9z9j¤) || " est-" || (if (¤l4lg6nx5-QOP-l4lg6j08¤="1" or isnull(¤l4lg6nx5-QOP-l4lg6j08¤)) then "il né" else "elle née") || " en France ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lh0q7i-RDOP-l4lgw48z + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l4pa7lpq + 1 + Instruction + + + + fr.insee + l4lgysxq + 1 + + PARENT_VIT_ENFAIL3 + + + fr.insee + l4lgysxq-QOP-l4lgtxyg + 1 + + PARENT_VIT_ENFAIL3 + + + + + fr.insee + l4lgysxq-RDOP-l4lgtxyg + 1 + OutParameter + + + fr.insee + l4lgysxq-QOP-l4lgtxyg + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then "cet enfant" else ¤l4lg3j5g-QOP-l4lg9z9j¤) || " vit-il/elle avec vous ?" + + + + radio-button + + fr.insee + l44726g4 + 1 + CodeList + + + fr.insee + l4lgysxq-RDOP-l4lgtxyg + 1 + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + + + fr.insee + l8m0bu1o + 1 + + PARENT_VECU_ENFAIL3 + + + fr.insee + l8m0bu1o-QOP-l8m0gq78 + 1 + + PARENT_VECU_ENFAIL3 + + + + + fr.insee + l8m0bu1o-RDOP-l8m0gq78 + 1 + OutParameter + + + fr.insee + l8m0bu1o-QOP-l8m0gq78 + 1 + OutParameter + + + + + "Avez-vous déjà vécu avec l'autre parent de " || (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then "cet enfant" else ¤l4lg3j5g-QOP-l4lg9z9j¤) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8m0bu1o-RDOP-l8m0gq78 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lh0ofl + 1 + + DC_ENFAIL3 + + + fr.insee + l4lh0ofl-QOP-l4lhcnt0 + 1 + + DC_ENFAIL3 + + + + + fr.insee + l4lh0ofl-RDOP-l4lhcnt0 + 1 + OutParameter + + + fr.insee + l4lh0ofl-QOP-l4lhcnt0 + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then "Cet enfant" else ¤l4lg3j5g-QOP-l4lg9z9j¤) || " est-" || if (¤l4lg6nx5-QOP-l4lg6j08¤="1" or isnull(¤l4lg6nx5-QOP-l4lg6j08¤)) then "il encore en vie ?" else "elle encore en vie ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lh0ofl-RDOP-l4lhcnt0 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lhbuxg + 1 + + AG_DC_ENFAIL3 + + + fr.insee + l4lhbuxg-QOP-l4lhhhhy + 1 + + AG_DC_ENFAIL3 + + + + + fr.insee + l4lhbuxg-RDOP-l4lhhhhy + 1 + OutParameter + + + fr.insee + l4lhbuxg-QOP-l4lhhhhy + 1 + OutParameter + + + + + "A quel âge " || (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then "cet enfant" else ¤l4lg3j5g-QOP-l4lg9z9j¤) || " est-" || if (¤l4lg6nx5-QOP-l4lg6j08¤="1" or isnull(¤l4lg6nx5-QOP-l4lg6j08¤)) then "il décédé ?" else "elle décédée ?" + + + + + 0 + 95 + + Decimal + + fr.insee + l4lhbuxg-RDOP-l4lhhhhy + 1 + + + + fr.insee + l4lh8af1 + 1 + Instruction + + + + fr.insee + l4lhdubm + 1 + + AG_DEPART_ENFAIL3 + + + fr.insee + l4lhdubm-QOP-l4lhr1jr + 1 + + AG_DEPART_ENFAIL3 + + + + + fr.insee + l4lhdubm-RDOP-l4lhr1jr + 1 + OutParameter + + + fr.insee + l4lhdubm-QOP-l4lhr1jr + 1 + OutParameter + + + + + "A quel âge environ " || (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then "cet enfant" else ¤l4lg3j5g-QOP-l4lg9z9j¤) || " a-t-" || (if (¤l4lg6nx5-QOP-l4lg6j08¤="1" or isnull(¤l4lg6nx5-QOP-l4lg6j08¤)) then "il" else "elle") || " cessé de vivre avec vous ?" + + + + + 0 + 95 + + Decimal + + fr.insee + l4lhdubm-RDOP-l4lhr1jr + 1 + + + + + fr.insee + l4lirpfm + 1 + + PARENT_FREQ_ENFAIL3 + + + fr.insee + l4lirpfm-QOP-l4lj5xeo + 1 + + PARENT_FREQ_ENFAIL3 + + + + + fr.insee + l4lirpfm-RDOP-l4lj5xeo + 1 + OutParameter + + + fr.insee + l4lirpfm-QOP-l4lj5xeo + 1 + OutParameter + + + + + "A quelle fréquence êtes-vous en contact avec " || (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then "cet enfant" else ¤l4lg3j5g-QOP-l4lg9z9j¤) || " ? " + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + l4lirpfm-RDOP-l4lj5xeo + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + fr.insee + l4livqhf + 1 + Instruction + + + + fr.insee + l4lj2cqg + 1 + + FR_ENFAIL3 + + + fr.insee + l4lj2cqg-QOP-l4liuj0u + 1 + + FR_ENFAIL3 + + + + + fr.insee + l4lj2cqg-RDOP-l4liuj0u + 1 + OutParameter + + + fr.insee + l4lj2cqg-QOP-l4liuj0u + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then "Cet enfant" else ¤l4lg3j5g-QOP-l4lg9z9j¤) || " vit-" || (if (¤l4lg6nx5-QOP-l4lg6j08¤="1" or isnull(¤l4lg6nx5-QOP-l4lg6j08¤)) then "il " else "elle ") || "en France actuellement ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lj2cqg-RDOP-l4liuj0u + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + lai71v9g + 1 + Instruction + + + + fr.insee + l4oo03nq + 1 + + DEP_ENFAIL3 + + + fr.insee + l4oo03nq-QOP-llvyxdr9 + 1 + + DEP_ENFAIL3 + + + + + fr.insee + l4oo03nq-RDOP-llvyxdr9 + 1 + OutParameter + + + fr.insee + l4oo03nq-QOP-llvyxdr9 + 1 + OutParameter + + + + + "Dans quel département vit " || (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then "cet enfant" else ¤l4lg3j5g-QOP-l4lg9z9j¤) || " ?" + + + + + fr.insee + l4oo03nq-RDOP-llvyxdr9 + 1 + + + + + fr.insee + l4paa00m + 1 + Instruction + + + + fr.insee + l4oo41j6 + 1 + + COM_ENFAIL3 + + + fr.insee + l4oo41j6-QOP-llvyrgzl + 1 + + COM_ENFAIL3 + + + + + fr.insee + l4oo41j6-RDOP-llvyrgzl + 1 + OutParameter + + + fr.insee + l4oo41j6-QOP-llvyrgzl + 1 + OutParameter + + + + + "Dans quelle commune vit " || (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then "cet enfant" else ¤l4lg3j5g-QOP-l4lg9z9j¤) || " ?" + + + + + fr.insee + l4oo41j6-RDOP-llvyrgzl + 1 + + + + + fr.insee + l4paiw08 + 1 + Instruction + + + + fr.insee + l4ooe2gj + 1 + + PAY_ENFAIL3 + + + fr.insee + l4ooe2gj-QOP-llvz89lf + 1 + + PAY_ENFAIL3 + + + + + fr.insee + l4ooe2gj-RDOP-llvz89lf + 1 + OutParameter + + + fr.insee + l4ooe2gj-QOP-llvz89lf + 1 + OutParameter + + + + + "Dans quel pays vit " || (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then "cet enfant" else ¤l4lg3j5g-QOP-l4lg9z9j¤) || " ?" + + + + + fr.insee + l4ooe2gj-RDOP-llvz89lf + 1 + + + + + fr.insee + l4pac47a + 1 + Instruction + + + + fr.insee + l4ljddzv + 1 + + LOG_ENFAIL3 + + + fr.insee + l4ljddzv-QOP-l4lj4c9v + 1 + + LOG_ENFAIL3 + + + + + fr.insee + l4ljddzv-RDOP-l4lj4c9v + 1 + OutParameter + + + fr.insee + l4ljddzv-QOP-l4lj4c9v + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then "Cet enfant" else ¤l4lg3j5g-QOP-l4lg9z9j¤) || " vit-" || (if (¤l4lg6nx5-QOP-l4lg6j08¤="1" or isnull(¤l4lg6nx5-QOP-l4lg6j08¤)) then "il " else "elle ") || " dans son propre logement ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4ljddzv-RDOP-l4lj4c9v + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lmjzwd + 1 + + AUT_PAR_ENFAIL3 + + + fr.insee + l4lmjzwd-QOP-l4lmk2uc + 1 + + AUT_PAR_ENFAIL3 + + + + + fr.insee + l4lmjzwd-RDOP-l4lmk2uc + 1 + OutParameter + + + fr.insee + l4lmjzwd-QOP-l4lmk2uc + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then "Cet enfant" else ¤l4lg3j5g-QOP-l4lg9z9j¤) || " vit-" || (if (¤l4lg6nx5-QOP-l4lg6j08¤="1" or isnull(¤l4lg6nx5-QOP-l4lg6j08¤)) then "il" else "elle") || " chez son autre parent ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lmjzwd-RDOP-l4lmk2uc + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4ljm6cp + 1 + + DORT_ENFAIL3 + + + fr.insee + l4ljm6cp-QOP-l4ljuv43 + 1 + + DORT_ENFAIL3 + + + + + fr.insee + l4ljm6cp-RDOP-l4ljuv43 + 1 + OutParameter + + + fr.insee + l4ljm6cp-QOP-l4ljuv43 + 1 + OutParameter + + + + + "Arrive-t-il à " || (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then "cet enfant" else ¤l4lg3j5g-QOP-l4lg9z9j¤) || " de dormir chez vous ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4ljm6cp-RDOP-l4ljuv43 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4o7gt0n + 1 + + SEP_AUT_PAR_ENFAIL3 + + + fr.insee + l4o7gt0n-QOP-l4o7fj27 + 1 + + SEP_AUT_PAR_ENFAIL3 + + + + + fr.insee + l4o7gt0n-RDOP-l4o7fj27 + 1 + OutParameter + + + fr.insee + l4o7gt0n-QOP-l4o7fj27 + 1 + OutParameter + + + + + "Vous êtes-vous séparé" || (if (¤ln0892lt-GOP¤ = "2") then "e" else "") || " de l'autre parent de " || (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then "cet enfant" else ¤l4lg3j5g-QOP-l4lg9z9j¤) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4o7gt0n-RDOP-l4o7fj27 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lmszob + 1 + + RESID_ENFAIL3 + + + fr.insee + l4lmszob-QOP-l4lmv8du + 1 + + RESID_ENFAIL3 + + + + + fr.insee + l4lmszob-RDOP-l4lmv8du + 1 + OutParameter + + + fr.insee + l4lmszob-QOP-l4lmv8du + 1 + OutParameter + + + + + "Quel a été le mode de résidence fixé par décision de justice ?" + + + + radio-button + + fr.insee + l448z131 + 1 + CodeList + + + fr.insee + l4lmszob-RDOP-l4lmv8du + 1 + + + fr.insee + l448z131 + 1 + CodeList + + + + + + + + fr.insee + l4lg5t9v + 1 + + PRENOM_ENFAIL4 + + + fr.insee + l4lg5t9v-QOP-l4lg3csm + 1 + + PRENOM_ENFAIL4 + + + + + fr.insee + l4lg5t9v-RDOP-l4lg3csm + 1 + OutParameter + + + fr.insee + l4lg5t9v-QOP-l4lg3csm + 1 + OutParameter + + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", comment s'appelle votre quatrième enfant qui ne vit pas avec vous ou qui est décédé ?" + + + + + fr.insee + l4lg5t9v-RDOP-l4lg3csm + 1 + + + + + + fr.insee + l4lg3wub + 1 + + SEXE_ENFAIL4 + + + fr.insee + l4lg3wub-QOP-l4lg3510 + 1 + + SEXE_ENFAIL4 + + + + + fr.insee + l4lg3wub-RDOP-l4lg3510 + 1 + OutParameter + + + fr.insee + l4lg3wub-QOP-l4lg3510 + 1 + OutParameter + + + + + "Quel est le sexe de " || (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then "cet enfant" else ¤l4lg5t9v-QOP-l4lg3csm¤) || " ?" + + + + radio-button + + fr.insee + llgbzo78 + 1 + CodeList + + + fr.insee + l4lg3wub-RDOP-l4lg3510 + 1 + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + + + fr.insee + l4lgfphb + 1 + + ANAI_ENFAIL4 + + + fr.insee + l4lgfphb-QOP-l4lgh2oy + 1 + + ANAI_ENFAIL4 + + + + + fr.insee + l4lgfphb-RDOP-l4lgh2oy + 1 + OutParameter + + + fr.insee + l4lgfphb-QOP-l4lgh2oy + 1 + OutParameter + + + + + "Quelle est l'année de naissance de " || (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then "cet enfant" else ¤l4lg5t9v-QOP-l4lg3csm¤) || " ?" + + + + + fr.insee + l4lgfphb-RDOP-l4lgh2oy + 1 + + + + + + fr.insee + l4lgr9ny + 1 + + NEFRANCE_ENFAIL4 + + + fr.insee + l4lgr9ny-QOP-l4lgx588 + 1 + + NEFRANCE_ENFAIL4 + + + + + fr.insee + l4lgr9ny-RDOP-l4lgx588 + 1 + OutParameter + + + fr.insee + l4lgr9ny-QOP-l4lgx588 + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then "Cet enfant" else ¤l4lg5t9v-QOP-l4lg3csm¤) || " est-" || (if (¤l4lg3wub-QOP-l4lg3510¤="1" or isnull(¤l4lg3wub-QOP-l4lg3510¤)) then "il né" else "elle née") || " en France ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lgr9ny-RDOP-l4lgx588 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l4paawvf + 1 + Instruction + + + + fr.insee + l4lgo4yb + 1 + + PARENT_VIT_ENFAIL4 + + + fr.insee + l4lgo4yb-QOP-l4lgsplb + 1 + + PARENT_VIT_ENFAIL4 + + + + + fr.insee + l4lgo4yb-RDOP-l4lgsplb + 1 + OutParameter + + + fr.insee + l4lgo4yb-QOP-l4lgsplb + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then "cet enfant" else ¤l4lg5t9v-QOP-l4lg3csm¤) || " vit-il/elle avec vous ?" + + + + radio-button + + fr.insee + l44726g4 + 1 + CodeList + + + fr.insee + l4lgo4yb-RDOP-l4lgsplb + 1 + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + + + fr.insee + l8m03w7m + 1 + + PARENT_VECU_ENFAIL4 + + + fr.insee + l8m03w7m-QOP-l8m0ghal + 1 + + PARENT_VECU_ENFAIL4 + + + + + fr.insee + l8m03w7m-RDOP-l8m0ghal + 1 + OutParameter + + + fr.insee + l8m03w7m-QOP-l8m0ghal + 1 + OutParameter + + + + + "Avez-vous déjà vécu avec l'autre parent de " || (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then "cet enfant" else ¤l4lg5t9v-QOP-l4lg3csm¤) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8m03w7m-RDOP-l8m0ghal + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lh1a42 + 1 + + DC_ENFAIL4 + + + fr.insee + l4lh1a42-QOP-l4lh8xt8 + 1 + + DC_ENFAIL4 + + + + + fr.insee + l4lh1a42-RDOP-l4lh8xt8 + 1 + OutParameter + + + fr.insee + l4lh1a42-QOP-l4lh8xt8 + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then "Cet enfant" else ¤l4lg5t9v-QOP-l4lg3csm¤) || " est-" || if (¤l4lg3wub-QOP-l4lg3510¤="1" or isnull(¤l4lg3wub-QOP-l4lg3510¤)) then "il encore en vie ?" else "elle encore en vie ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lh1a42-RDOP-l4lh8xt8 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lhbfxh + 1 + + AG_DC_ENFAIL4 + + + fr.insee + l4lhbfxh-QOP-l4lh4m12 + 1 + + AG_DC_ENFAIL4 + + + + + fr.insee + l4lhbfxh-RDOP-l4lh4m12 + 1 + OutParameter + + + fr.insee + l4lhbfxh-QOP-l4lh4m12 + 1 + OutParameter + + + + + "A quel âge " || (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then "cet enfant" else ¤l4lg5t9v-QOP-l4lg3csm¤) || " est-" || if (¤l4lg3wub-QOP-l4lg3510¤="1" or isnull(¤l4lg3wub-QOP-l4lg3510¤)) then "il décédé ?" else "elle décédée ?" + + + + + 0 + 95 + + Decimal + + fr.insee + l4lhbfxh-RDOP-l4lh4m12 + 1 + + + + fr.insee + l4lh0mk3 + 1 + Instruction + + + + fr.insee + l4lho0e2 + 1 + + AG_DEPART_ENFAIL4 + + + fr.insee + l4lho0e2-QOP-l4lhe3eu + 1 + + AG_DEPART_ENFAIL4 + + + + + fr.insee + l4lho0e2-RDOP-l4lhe3eu + 1 + OutParameter + + + fr.insee + l4lho0e2-QOP-l4lhe3eu + 1 + OutParameter + + + + + "A quel âge environ " || (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then "cet enfant" else ¤l4lg5t9v-QOP-l4lg3csm¤) || " a-t-" || (if (¤l4lg3wub-QOP-l4lg3510¤="1" or isnull(¤l4lg3wub-QOP-l4lg3510¤)) then "il " else "elle") || " cessé de vivre avec vous ?" + + + + + 0 + 95 + + Decimal + + fr.insee + l4lho0e2-RDOP-l4lhe3eu + 1 + + + + + fr.insee + l4lj5kv6 + 1 + + PARENT_FREQ_ENFAIL4 + + + fr.insee + l4lj5kv6-QOP-l4lj2kyh + 1 + + PARENT_FREQ_ENFAIL4 + + + + + fr.insee + l4lj5kv6-RDOP-l4lj2kyh + 1 + OutParameter + + + fr.insee + l4lj5kv6-QOP-l4lj2kyh + 1 + OutParameter + + + + + "A quelle fréquence êtes-vous en contact avec " || (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then "cet enfant" else ¤l4lg5t9v-QOP-l4lg3csm¤) || " ? " + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + l4lj5kv6-RDOP-l4lj2kyh + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + fr.insee + l4liwkni + 1 + Instruction + + + + fr.insee + l4lj0iea + 1 + + FR_ENFAIL4 + + + fr.insee + l4lj0iea-QOP-l4liwqkb + 1 + + FR_ENFAIL4 + + + + + fr.insee + l4lj0iea-RDOP-l4liwqkb + 1 + OutParameter + + + fr.insee + l4lj0iea-QOP-l4liwqkb + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then "Cet enfant" else ¤l4lg5t9v-QOP-l4lg3csm¤) || " vit-" || (if (¤l4lg3wub-QOP-l4lg3510¤="1" or isnull(¤l4lg3wub-QOP-l4lg3510¤)) then "il " else "elle ") || "en France actuellement ?" + + + + radio-button + + fr.insee + l4onqoyo + 1 + CodeList + + + fr.insee + l4lj0iea-RDOP-l4liwqkb + 1 + + + fr.insee + l4onqoyo + 1 + CodeList + + + + + + + fr.insee + lai71ft1 + 1 + Instruction + + + + fr.insee + l4oo4x1t + 1 + + DEP_ENFAIL4 + + + fr.insee + l4oo4x1t-QOP-llvyr8d7 + 1 + + DEP_ENFAIL4 + + + + + fr.insee + l4oo4x1t-RDOP-llvyr8d7 + 1 + OutParameter + + + fr.insee + l4oo4x1t-QOP-llvyr8d7 + 1 + OutParameter + + + + + "Dans quel département vit " || (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then "cet enfant" else ¤l4lg5t9v-QOP-l4lg3csm¤) || " ?" + + + + + fr.insee + l4oo4x1t-RDOP-llvyr8d7 + 1 + + + + + fr.insee + l4pa6ogq + 1 + Instruction + + + + fr.insee + l4onwhrf + 1 + + COM_ENFAIL4 + + + fr.insee + l4onwhrf-QOP-llvz7vfx + 1 + + COM_ENFAIL4 + + + + + fr.insee + l4onwhrf-RDOP-llvz7vfx + 1 + OutParameter + + + fr.insee + l4onwhrf-QOP-llvz7vfx + 1 + OutParameter + + + + + "Dans quelle commune vit " || (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then "cet enfant" else ¤l4lg5t9v-QOP-l4lg3csm¤) || " ?" + + + + + fr.insee + l4onwhrf-RDOP-llvz7vfx + 1 + + + + + fr.insee + l4pabom2 + 1 + Instruction + + + + fr.insee + l4oo1817 + 1 + + PAY_ENFAIL4 + + + fr.insee + l4oo1817-QOP-llvyukzs + 1 + + PAY_ENFAIL4 + + + + + fr.insee + l4oo1817-RDOP-llvyukzs + 1 + OutParameter + + + fr.insee + l4oo1817-QOP-llvyukzs + 1 + OutParameter + + + + + "Dans quel pays vit " || (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then "cet enfant" else ¤l4lg5t9v-QOP-l4lg3csm¤) || " ?" + + + + + fr.insee + l4oo1817-RDOP-llvyukzs + 1 + + + + + fr.insee + l4paauej + 1 + Instruction + + + + fr.insee + l4lixcs2 + 1 + + LOG_ENFAIL4 + + + fr.insee + l4lixcs2-QOP-l4lj1r3g + 1 + + LOG_ENFAIL4 + + + + + fr.insee + l4lixcs2-RDOP-l4lj1r3g + 1 + OutParameter + + + fr.insee + l4lixcs2-QOP-l4lj1r3g + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then "Cet enfant" else ¤l4lg5t9v-QOP-l4lg3csm¤) || " vit-" || (if (¤l4lg3wub-QOP-l4lg3510¤="1" or isnull(¤l4lg3wub-QOP-l4lg3510¤)) then "il " else "elle ") || " dans son propre logement ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lixcs2-RDOP-l4lj1r3g + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lms9a0 + 1 + + AUT_PAR_ENFAIL4 + + + fr.insee + l4lms9a0-QOP-l4lmo51c + 1 + + AUT_PAR_ENFAIL4 + + + + + fr.insee + l4lms9a0-RDOP-l4lmo51c + 1 + OutParameter + + + fr.insee + l4lms9a0-QOP-l4lmo51c + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then "Cet enfant" else ¤l4lg5t9v-QOP-l4lg3csm¤) || " vit-" || (if (¤l4lg3wub-QOP-l4lg3510¤="1" or isnull(¤l4lg3wub-QOP-l4lg3510¤)) then "il" else "elle") || " chez son autre parent ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lms9a0-RDOP-l4lmo51c + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4ljmpiu + 1 + + DORT_ENFAIL4 + + + fr.insee + l4ljmpiu-QOP-l4ljxs6c + 1 + + DORT_ENFAIL4 + + + + + fr.insee + l4ljmpiu-RDOP-l4ljxs6c + 1 + OutParameter + + + fr.insee + l4ljmpiu-QOP-l4ljxs6c + 1 + OutParameter + + + + + "Arrive-t-il à " || (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then "cet enfant" else ¤l4lg5t9v-QOP-l4lg3csm¤) || " de dormir chez vous ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4ljmpiu-RDOP-l4ljxs6c + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4o7jdze + 1 + + SEP_AUT_PAR_ENFAIL4 + + + fr.insee + l4o7jdze-QOP-l4o7nzi9 + 1 + + SEP_AUT_PAR_ENFAIL4 + + + + + fr.insee + l4o7jdze-RDOP-l4o7nzi9 + 1 + OutParameter + + + fr.insee + l4o7jdze-QOP-l4o7nzi9 + 1 + OutParameter + + + + + "Vous êtes-vous séparé" || (if (¤ln0892lt-GOP¤ = "2") then "e" else "") || " de l'autre parent de " || (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then "cet enfant" else ¤l4lg5t9v-QOP-l4lg3csm¤) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4o7jdze-RDOP-l4o7nzi9 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lmvah7 + 1 + + RESID_ENFAIL4 + + + fr.insee + l4lmvah7-QOP-l4lmu5ae + 1 + + RESID_ENFAIL4 + + + + + fr.insee + l4lmvah7-RDOP-l4lmu5ae + 1 + OutParameter + + + fr.insee + l4lmvah7-QOP-l4lmu5ae + 1 + OutParameter + + + + + "Quel a été le mode de résidence fixé par décision de justice ?" + + + + radio-button + + fr.insee + l448z131 + 1 + CodeList + + + fr.insee + l4lmvah7-RDOP-l4lmu5ae + 1 + + + fr.insee + l448z131 + 1 + CodeList + + + + + + + + fr.insee + l4lgayon + 1 + + PRENOM_ENFAIL5 + + + fr.insee + l4lgayon-QOP-l4lg49i3 + 1 + + PRENOM_ENFAIL5 + + + + + fr.insee + l4lgayon-RDOP-l4lg49i3 + 1 + OutParameter + + + fr.insee + l4lgayon-QOP-l4lg49i3 + 1 + OutParameter + + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", comment s'appelle votre cinquième enfant qui ne vit pas avec vous ou qui est décédé ?" + + + + + fr.insee + l4lgayon-RDOP-l4lg49i3 + 1 + + + + + + fr.insee + l4lgep4c + 1 + + SEXE_ENFAIL5 + + + fr.insee + l4lgep4c-QOP-l4lg9rqy + 1 + + SEXE_ENFAIL5 + + + + + fr.insee + l4lgep4c-RDOP-l4lg9rqy + 1 + OutParameter + + + fr.insee + l4lgep4c-QOP-l4lg9rqy + 1 + OutParameter + + + + + "Quel est le sexe de " || (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then "cet enfant" else ¤l4lgayon-QOP-l4lg49i3¤) || " ?" + + + + radio-button + + fr.insee + llgbzo78 + 1 + CodeList + + + fr.insee + l4lgep4c-RDOP-l4lg9rqy + 1 + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + + + fr.insee + l4lgp1ft + 1 + + ANAI_ENFAIL5 + + + fr.insee + l4lgp1ft-QOP-l4lgleu5 + 1 + + ANAI_ENFAIL5 + + + + + fr.insee + l4lgp1ft-RDOP-l4lgleu5 + 1 + OutParameter + + + fr.insee + l4lgp1ft-QOP-l4lgleu5 + 1 + OutParameter + + + + + "Quelle est l'année de naissance de " || (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then "cet enfant" else ¤l4lgayon-QOP-l4lg49i3¤) || " ?" + + + + + fr.insee + l4lgp1ft-RDOP-l4lgleu5 + 1 + + + + + + fr.insee + l4lgnphx + 1 + + NEFRANCE_ENFAIL5 + + + fr.insee + l4lgnphx-QOP-l4lgsfsx + 1 + + NEFRANCE_ENFAIL5 + + + + + fr.insee + l4lgnphx-RDOP-l4lgsfsx + 1 + OutParameter + + + fr.insee + l4lgnphx-QOP-l4lgsfsx + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then "Cet enfant" else ¤l4lgayon-QOP-l4lg49i3¤) || " est-" || (if (¤l4lgep4c-QOP-l4lg9rqy¤="1" or isnull(¤l4lgep4c-QOP-l4lg9rqy¤)) then "il né" else "elle née") || " en France ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lgnphx-RDOP-l4lgsfsx + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l4pabnh2 + 1 + Instruction + + + + fr.insee + l4lh672z + 1 + + PARENT_VIT_ENFAIL5 + + + fr.insee + l4lh672z-QOP-l4lh0pbe + 1 + + PARENT_VIT_ENFAIL5 + + + + + fr.insee + l4lh672z-RDOP-l4lh0pbe + 1 + OutParameter + + + fr.insee + l4lh672z-QOP-l4lh0pbe + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then "cet enfant" else ¤l4lgayon-QOP-l4lg49i3¤) || " vit-il/elle avec vous ?" + + + + radio-button + + fr.insee + l44726g4 + 1 + CodeList + + + fr.insee + l4lh672z-RDOP-l4lh0pbe + 1 + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + + + fr.insee + l8m0ld6c + 1 + + PARENT_VECU_ENFAIL5 + + + fr.insee + l8m0ld6c-QOP-l8m08umx + 1 + + PARENT_VECU_ENFAIL5 + + + + + fr.insee + l8m0ld6c-RDOP-l8m08umx + 1 + OutParameter + + + fr.insee + l8m0ld6c-QOP-l8m08umx + 1 + OutParameter + + + + + "Avez-vous déjà vécu avec l'autre parent de " || (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then "cet enfant" else ¤l4lgayon-QOP-l4lg49i3¤) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8m0ld6c-RDOP-l8m08umx + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lhcdf6 + 1 + + DC_ENFAIL5 + + + fr.insee + l4lhcdf6-QOP-l4lgwio5 + 1 + + DC_ENFAIL5 + + + + + fr.insee + l4lhcdf6-RDOP-l4lgwio5 + 1 + OutParameter + + + fr.insee + l4lhcdf6-QOP-l4lgwio5 + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then "Cet enfant" else ¤l4lgayon-QOP-l4lg49i3¤) || " est-" || if (¤l4lgep4c-QOP-l4lg9rqy¤="1" or isnull(¤l4lgep4c-QOP-l4lg9rqy¤)) then "il encore en vie ?" else "elle encore en vie ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lhcdf6-RDOP-l4lgwio5 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lh8c72 + 1 + + AG_DC_ENFAIL5 + + + fr.insee + l4lh8c72-QOP-l4lh96gc + 1 + + AG_DC_ENFAIL5 + + + + + fr.insee + l4lh8c72-RDOP-l4lh96gc + 1 + OutParameter + + + fr.insee + l4lh8c72-QOP-l4lh96gc + 1 + OutParameter + + + + + "A quel âge " || (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then "cet enfant" else ¤l4lgayon-QOP-l4lg49i3¤) || " est-" || if (¤l4lgep4c-QOP-l4lg9rqy¤="1" or isnull(¤l4lgep4c-QOP-l4lg9rqy¤)) then "il décédé ?" else "elle décédée ?" + + + + + 0 + 95 + + Decimal + + fr.insee + l4lh8c72-RDOP-l4lh96gc + 1 + + + + fr.insee + l4lh2kwz + 1 + Instruction + + + + fr.insee + l4lhn614 + 1 + + AG_DEPART_ENFAIL5 + + + fr.insee + l4lhn614-QOP-l4lhi8ks + 1 + + AG_DEPART_ENFAIL5 + + + + + fr.insee + l4lhn614-RDOP-l4lhi8ks + 1 + OutParameter + + + fr.insee + l4lhn614-QOP-l4lhi8ks + 1 + OutParameter + + + + + "A quel âge environ " || (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then "cet enfant" else ¤l4lgayon-QOP-l4lg49i3¤) || " a-t-" || (if (¤l4lgep4c-QOP-l4lg9rqy¤="1" or isnull(¤l4lgep4c-QOP-l4lg9rqy¤)) then "il " else "elle") || " cessé de vivre avec vous ?" + + + + + 0 + 95 + + Decimal + + fr.insee + l4lhn614-RDOP-l4lhi8ks + 1 + + + + + fr.insee + l4lj98cz + 1 + + PARENT_FREQ_ENFAIL5 + + + fr.insee + l4lj98cz-QOP-l4lj2b7z + 1 + + PARENT_FREQ_ENFAIL5 + + + + + fr.insee + l4lj98cz-RDOP-l4lj2b7z + 1 + OutParameter + + + fr.insee + l4lj98cz-QOP-l4lj2b7z + 1 + OutParameter + + + + + "A quelle fréquence êtes-vous en contact avec " || (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then "cet enfant" else ¤l4lgayon-QOP-l4lg49i3¤) || " ? " + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + l4lj98cz-RDOP-l4lj2b7z + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + fr.insee + l4lj2zmz + 1 + Instruction + + + + fr.insee + l4lijtvo + 1 + + FR_ENFAIL5 + + + fr.insee + l4lijtvo-QOP-l4liqibl + 1 + + FR_ENFAIL5 + + + + + fr.insee + l4lijtvo-RDOP-l4liqibl + 1 + OutParameter + + + fr.insee + l4lijtvo-QOP-l4liqibl + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then "Cet enfant" else ¤l4lgayon-QOP-l4lg49i3¤) || " vit-" || (if (¤l4lgep4c-QOP-l4lg9rqy¤="1" or isnull(¤l4lgep4c-QOP-l4lg9rqy¤)) then "il " else "elle ") || "en France actuellement ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lijtvo-RDOP-l4liqibl + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + lai73fre + 1 + Instruction + + + + fr.insee + l4oo7lwi + 1 + + DEP_ENFAIL5 + + + fr.insee + l4oo7lwi-QOP-llvz93jz + 1 + + DEP_ENFAIL5 + + + + + fr.insee + l4oo7lwi-RDOP-llvz93jz + 1 + OutParameter + + + fr.insee + l4oo7lwi-QOP-llvz93jz + 1 + OutParameter + + + + + "Dans quel département vit " || (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then "cet enfant" else ¤l4lgayon-QOP-l4lg49i3¤) || " ?" + + + + + fr.insee + l4oo7lwi-RDOP-llvz93jz + 1 + + + + + fr.insee + l4paeclu + 1 + Instruction + + + + fr.insee + l4oo41q4 + 1 + + COM_ENFAIL5 + + + fr.insee + l4oo41q4-QOP-llvz0237 + 1 + + COM_ENFAIL5 + + + + + fr.insee + l4oo41q4-RDOP-llvz0237 + 1 + OutParameter + + + fr.insee + l4oo41q4-QOP-llvz0237 + 1 + OutParameter + + + + + "Dans quelle commune vit " || (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then "cet enfant" else ¤l4lgayon-QOP-l4lg49i3¤) || " ?" + + + + + fr.insee + l4oo41q4-RDOP-llvz0237 + 1 + + + + + fr.insee + l4pamdh2 + 1 + Instruction + + + + fr.insee + l4oo5bj9 + 1 + + PAY_ENFAIL5 + + + fr.insee + l4oo5bj9-QOP-llvz2kjk + 1 + + PAY_ENFAIL5 + + + + + fr.insee + l4oo5bj9-RDOP-llvz2kjk + 1 + OutParameter + + + fr.insee + l4oo5bj9-QOP-llvz2kjk + 1 + OutParameter + + + + + "Dans quel pays vit " || (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then "cet enfant" else ¤l4lgayon-QOP-l4lg49i3¤) || " ?" + + + + + fr.insee + l4oo5bj9-RDOP-llvz2kjk + 1 + + + + + fr.insee + l4paiwz0 + 1 + Instruction + + + + fr.insee + l4lizygc + 1 + + LOG_ENFAIL5 + + + fr.insee + l4lizygc-QOP-l4lj1p4y + 1 + + LOG_ENFAIL5 + + + + + fr.insee + l4lizygc-RDOP-l4lj1p4y + 1 + OutParameter + + + fr.insee + l4lizygc-QOP-l4lj1p4y + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then "Cet enfant" else ¤l4lgayon-QOP-l4lg49i3¤) || " vit-" || (if (¤l4lgep4c-QOP-l4lg9rqy¤="1" or isnull(¤l4lgep4c-QOP-l4lg9rqy¤)) then "il" else "elle") || " dans son propre logement ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lizygc-RDOP-l4lj1p4y + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lmc52p + 1 + + AUT_PAR_ENFAIL5 + + + fr.insee + l4lmc52p-QOP-l4lmdw7z + 1 + + AUT_PAR_ENFAIL5 + + + + + fr.insee + l4lmc52p-RDOP-l4lmdw7z + 1 + OutParameter + + + fr.insee + l4lmc52p-QOP-l4lmdw7z + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then "Cet enfant" else ¤l4lgayon-QOP-l4lg49i3¤) || " vit-" || (if (¤l4lgep4c-QOP-l4lg9rqy¤="1" or isnull(¤l4lgep4c-QOP-l4lg9rqy¤)) then "il" else "elle") || " chez son autre parent ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lmc52p-RDOP-l4lmdw7z + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4ljxer7 + 1 + + DORT_ENFAIL5 + + + fr.insee + l4ljxer7-QOP-l4ljxwvx + 1 + + DORT_ENFAIL5 + + + + + fr.insee + l4ljxer7-RDOP-l4ljxwvx + 1 + OutParameter + + + fr.insee + l4ljxer7-QOP-l4ljxwvx + 1 + OutParameter + + + + + "Arrive-t-il à " || (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then "cet enfant" else ¤l4lgayon-QOP-l4lg49i3¤) || " de dormir chez vous ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4ljxer7-RDOP-l4ljxwvx + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4o7vzru + 1 + + SEP_AUT_PAR_ENFAIL5 + + + fr.insee + l4o7vzru-QOP-l4o80pka + 1 + + SEP_AUT_PAR_ENFAIL5 + + + + + fr.insee + l4o7vzru-RDOP-l4o80pka + 1 + OutParameter + + + fr.insee + l4o7vzru-QOP-l4o80pka + 1 + OutParameter + + + + + "Vous êtes-vous séparé" || (if (¤ln0892lt-GOP¤ = "2") then "e" else "") || " de l'autre parent de " || (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then "cet enfant" else ¤l4lgayon-QOP-l4lg49i3¤) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4o7vzru-RDOP-l4o80pka + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lms6u4 + 1 + + RESID_ENFAIL5 + + + fr.insee + l4lms6u4-QOP-l4ln2eva + 1 + + RESID_ENFAIL5 + + + + + fr.insee + l4lms6u4-RDOP-l4ln2eva + 1 + OutParameter + + + fr.insee + l4lms6u4-QOP-l4ln2eva + 1 + OutParameter + + + + + "Quel a été le mode de résidence fixé par décision de justice ?" + + + + radio-button + + fr.insee + l448z131 + 1 + CodeList + + + fr.insee + l4lms6u4-RDOP-l4ln2eva + 1 + + + fr.insee + l448z131 + 1 + CodeList + + + + + + + + fr.insee + l8oign0h + 1 + + PRENOM_ENFAIL6 + + + fr.insee + l8oign0h-QOP-l8oifcrp + 1 + + PRENOM_ENFAIL6 + + + + + fr.insee + l8oign0h-RDOP-l8oifcrp + 1 + OutParameter + + + fr.insee + l8oign0h-QOP-l8oifcrp + 1 + OutParameter + + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", comment s'appelle votre sixième enfant qui ne vit pas avec vous ou qui est décédé ?" + + + + + fr.insee + l8oign0h-RDOP-l8oifcrp + 1 + + + + + + fr.insee + l8oi92w4 + 1 + + SEXE_ENFAIL6 + + + fr.insee + l8oi92w4-QOP-l8oihhrs + 1 + + SEXE_ENFAIL6 + + + + + fr.insee + l8oi92w4-RDOP-l8oihhrs + 1 + OutParameter + + + fr.insee + l8oi92w4-QOP-l8oihhrs + 1 + OutParameter + + + + + "Quel est le sexe de " || (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then "cet enfant" else ¤l8oign0h-QOP-l8oifcrp¤) || " ?" + + + + radio-button + + fr.insee + llgbzo78 + 1 + CodeList + + + fr.insee + l8oi92w4-RDOP-l8oihhrs + 1 + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + + + fr.insee + l8oi7q9f + 1 + + ANAI_ENFAIL6 + + + fr.insee + l8oi7q9f-QOP-l8oijkad + 1 + + ANAI_ENFAIL6 + + + + + fr.insee + l8oi7q9f-RDOP-l8oijkad + 1 + OutParameter + + + fr.insee + l8oi7q9f-QOP-l8oijkad + 1 + OutParameter + + + + + "Quelle est l'année de naissance de " || (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then "cet enfant" else ¤l8oign0h-QOP-l8oifcrp¤) || " ?" + + + + + fr.insee + l8oi7q9f-RDOP-l8oijkad + 1 + + + + + + fr.insee + l8oientz + 1 + + NEFRANCE_ENFAIL6 + + + fr.insee + l8oientz-QOP-l8oib8l6 + 1 + + NEFRANCE_ENFAIL6 + + + + + fr.insee + l8oientz-RDOP-l8oib8l6 + 1 + OutParameter + + + fr.insee + l8oientz-QOP-l8oib8l6 + 1 + OutParameter + + + + + "" || (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then "Cet enfant" else ¤l8oign0h-QOP-l8oifcrp¤) || " est-" || (if (¤l8oi92w4-QOP-l8oihhrs¤="1" or isnull(¤l8oi92w4-QOP-l8oihhrs¤)) then "il né" else "elle née") || " en France ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8oientz-RDOP-l8oib8l6 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l8oifpiy + 1 + Instruction + + + + fr.insee + l8oidc2m + 1 + + PARENT_VIT_ENFAIL6 + + + fr.insee + l8oidc2m-QOP-l8ohy4u9 + 1 + + PARENT_VIT_ENFAIL6 + + + + + fr.insee + l8oidc2m-RDOP-l8ohy4u9 + 1 + OutParameter + + + fr.insee + l8oidc2m-QOP-l8ohy4u9 + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then "cet enfant" else ¤l8oign0h-QOP-l8oifcrp¤) || " vit-il/elle avec vous ?" + + + + radio-button + + fr.insee + l44726g4 + 1 + CodeList + + + fr.insee + l8oidc2m-RDOP-l8ohy4u9 + 1 + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + + + fr.insee + l8oib75g + 1 + + PARENT_VECU_ENFAIL6 + + + fr.insee + l8oib75g-QOP-l8oi8s9r + 1 + + PARENT_VECU_ENFAIL6 + + + + + fr.insee + l8oib75g-RDOP-l8oi8s9r + 1 + OutParameter + + + fr.insee + l8oib75g-QOP-l8oi8s9r + 1 + OutParameter + + + + + "Avez-vous déjà vécu avec l'autre parent de " || (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then "cet enfant" else ¤l8oign0h-QOP-l8oifcrp¤) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8oib75g-RDOP-l8oi8s9r + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8ohus0v + 1 + + DC_ENFAIL6 + + + fr.insee + l8ohus0v-QOP-l8oi6wxh + 1 + + DC_ENFAIL6 + + + + + fr.insee + l8ohus0v-RDOP-l8oi6wxh + 1 + OutParameter + + + fr.insee + l8ohus0v-QOP-l8oi6wxh + 1 + OutParameter + + + + + "" || (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then "Cet enfant" else ¤l8oign0h-QOP-l8oifcrp¤) || " est-" || if (¤l8oi92w4-QOP-l8oihhrs¤="1" or isnull(¤l8oi92w4-QOP-l8oihhrs¤)) then "il encore en vie ?" else "elle encore en vie ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8ohus0v-RDOP-l8oi6wxh + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8ohrpn7 + 1 + + AG_DC_ENFAIL6 + + + fr.insee + l8ohrpn7-QOP-l8ohwfm9 + 1 + + AG_DC_ENFAIL6 + + + + + fr.insee + l8ohrpn7-RDOP-l8ohwfm9 + 1 + OutParameter + + + fr.insee + l8ohrpn7-QOP-l8ohwfm9 + 1 + OutParameter + + + + + "A quel âge " || (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then "cet enfant" else ¤l8oign0h-QOP-l8oifcrp¤) || " est-" || if (¤l8oi92w4-QOP-l8oihhrs¤="1" or isnull(¤l8oi92w4-QOP-l8oihhrs¤)) then "il décédé ?" else "elle décédée ?" + + + + + 0 + 95 + + Decimal + + fr.insee + l8ohrpn7-RDOP-l8ohwfm9 + 1 + + + + fr.insee + l8ohgdgh + 1 + Instruction + + + + fr.insee + l8ohwpt9 + 1 + + AG_DEPART_ENFAIL6 + + + fr.insee + l8ohwpt9-QOP-l8ohnljo + 1 + + AG_DEPART_ENFAIL6 + + + + + fr.insee + l8ohwpt9-RDOP-l8ohnljo + 1 + OutParameter + + + fr.insee + l8ohwpt9-QOP-l8ohnljo + 1 + OutParameter + + + + + "A quel âge environ " || (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then "cet enfant" else ¤l8oign0h-QOP-l8oifcrp¤) || " a-t-" || (if (¤l8oi92w4-QOP-l8oihhrs¤="1" or isnull(¤l8oi92w4-QOP-l8oihhrs¤)) then "il " else "elle") || " cessé de vivre avec vous ?" + + + + + 0 + 95 + + Decimal + + fr.insee + l8ohwpt9-RDOP-l8ohnljo + 1 + + + + + fr.insee + l8oh46rn + 1 + + PARENT_FREQ_ENFAIL6 + + + fr.insee + l8oh46rn-QOP-l8oh8ggp + 1 + + PARENT_FREQ_ENFAIL6 + + + + + fr.insee + l8oh46rn-RDOP-l8oh8ggp + 1 + OutParameter + + + fr.insee + l8oh46rn-QOP-l8oh8ggp + 1 + OutParameter + + + + + "A quelle fréquence êtes-vous en contact avec " || (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then "cet enfant" else ¤l8oign0h-QOP-l8oifcrp¤) || " ? " + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + l8oh46rn-RDOP-l8oh8ggp + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + fr.insee + l8oh36w5 + 1 + Instruction + + + + fr.insee + l8ogysyp + 1 + + FR_ENFAIL6 + + + fr.insee + l8ogysyp-QOP-l8ogwc5d + 1 + + FR_ENFAIL6 + + + + + fr.insee + l8ogysyp-RDOP-l8ogwc5d + 1 + OutParameter + + + fr.insee + l8ogysyp-QOP-l8ogwc5d + 1 + OutParameter + + + + + "" || (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then "Cet enfant" else ¤l8oign0h-QOP-l8oifcrp¤) || " vit-" || (if (¤l8oi92w4-QOP-l8oihhrs¤="1" or isnull(¤l8oi92w4-QOP-l8oihhrs¤)) then "il " else "elle ") || "en France actuellement ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8ogysyp-RDOP-l8ogwc5d + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + lai78xq9 + 1 + Instruction + + + + fr.insee + l8ogp9jo + 1 + + DEP_ENFAIL6 + + + fr.insee + l8ogp9jo-QOP-llvz1v15 + 1 + + DEP_ENFAIL6 + + + + + fr.insee + l8ogp9jo-RDOP-llvz1v15 + 1 + OutParameter + + + fr.insee + l8ogp9jo-QOP-llvz1v15 + 1 + OutParameter + + + + + "Dans quel département vit " || (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then "cet enfant" else ¤l8oign0h-QOP-l8oifcrp¤) || " ?" + + + + + fr.insee + l8ogp9jo-RDOP-llvz1v15 + 1 + + + + + fr.insee + l8ogoo1k + 1 + Instruction + + + + fr.insee + l8ogqig3 + 1 + + COM_ENFAIL6 + + + fr.insee + l8ogqig3-QOP-llvzas4q + 1 + + COM_ENFAIL6 + + + + + fr.insee + l8ogqig3-RDOP-llvzas4q + 1 + OutParameter + + + fr.insee + l8ogqig3-QOP-llvzas4q + 1 + OutParameter + + + + + "Dans quelle commune vit " || (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then "cet enfant" else ¤l8oign0h-QOP-l8oifcrp¤) || " ?" + + + + + fr.insee + l8ogqig3-RDOP-llvzas4q + 1 + + + + + fr.insee + l8ogppom + 1 + Instruction + + + + fr.insee + l8ogpnbn + 1 + + PAY_ENFAIL6 + + + fr.insee + l8ogpnbn-QOP-llvz3tao + 1 + + PAY_ENFAIL6 + + + + + fr.insee + l8ogpnbn-RDOP-llvz3tao + 1 + OutParameter + + + fr.insee + l8ogpnbn-QOP-llvz3tao + 1 + OutParameter + + + + + "Dans quel pays vit " || (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then "cet enfant" else ¤l8oign0h-QOP-l8oifcrp¤) || " ?" + + + + + fr.insee + l8ogpnbn-RDOP-llvz3tao + 1 + + + + + fr.insee + l8ogttr2 + 1 + Instruction + + + + fr.insee + l8ogukpt + 1 + + LOG_ENFAIL6 + + + fr.insee + l8ogukpt-QOP-l8ogy42h + 1 + + LOG_ENFAIL6 + + + + + fr.insee + l8ogukpt-RDOP-l8ogy42h + 1 + OutParameter + + + fr.insee + l8ogukpt-QOP-l8ogy42h + 1 + OutParameter + + + + + "" || (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then "Cet enfant" else ¤l8oign0h-QOP-l8oifcrp¤) || " vit-" || (if (¤l8oi92w4-QOP-l8oihhrs¤="1" or isnull(¤l8oi92w4-QOP-l8oihhrs¤)) then "il" else "elle") || " dans son propre logement ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8ogukpt-RDOP-l8ogy42h + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8ob0dk4 + 1 + + AUT_PAR_ENFAIL6 + + + fr.insee + l8ob0dk4-QOP-l8oakgr4 + 1 + + AUT_PAR_ENFAIL6 + + + + + fr.insee + l8ob0dk4-RDOP-l8oakgr4 + 1 + OutParameter + + + fr.insee + l8ob0dk4-QOP-l8oakgr4 + 1 + OutParameter + + + + + "" || (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then "Cet enfant" else ¤l8oign0h-QOP-l8oifcrp¤) || " vit-" || (if (¤l8oi92w4-QOP-l8oihhrs¤="1" or isnull(¤l8oi92w4-QOP-l8oihhrs¤)) then "il" else "elle") || " chez son autre parent ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8ob0dk4-RDOP-l8oakgr4 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8oarkxm + 1 + + DORT_ENFAIL6 + + + fr.insee + l8oarkxm-QOP-l8oaqk9w + 1 + + DORT_ENFAIL6 + + + + + fr.insee + l8oarkxm-RDOP-l8oaqk9w + 1 + OutParameter + + + fr.insee + l8oarkxm-QOP-l8oaqk9w + 1 + OutParameter + + + + + "Arrive-t-il à " || (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then "cet enfant" else ¤l8oign0h-QOP-l8oifcrp¤) || " de dormir chez vous ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8oarkxm-RDOP-l8oaqk9w + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8oaqbj5 + 1 + + SEP_AUT_PAR_ENFAIL6 + + + fr.insee + l8oaqbj5-QOP-l8ob57h3 + 1 + + SEP_AUT_PAR_ENFAIL6 + + + + + fr.insee + l8oaqbj5-RDOP-l8ob57h3 + 1 + OutParameter + + + fr.insee + l8oaqbj5-QOP-l8ob57h3 + 1 + OutParameter + + + + + "Vous êtes-vous séparé" || (if (¤ln0892lt-GOP¤ = "2") then "e" else "") || " de l'autre parent de " || (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then "cet enfant" else ¤l8oign0h-QOP-l8oifcrp¤) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8oaqbj5-RDOP-l8ob57h3 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8oanpzw + 1 + + RESID_ENFAIL6 + + + fr.insee + l8oanpzw-QOP-l8oayvjg + 1 + + RESID_ENFAIL6 + + + + + fr.insee + l8oanpzw-RDOP-l8oayvjg + 1 + OutParameter + + + fr.insee + l8oanpzw-QOP-l8oayvjg + 1 + OutParameter + + + + + "Quel a été le mode de résidence fixé par décision de justice ?" + + + + radio-button + + fr.insee + l448z131 + 1 + CodeList + + + fr.insee + l8oanpzw-RDOP-l8oayvjg + 1 + + + fr.insee + l448z131 + 1 + CodeList + + + + + + + + fr.insee + l8ok9kmj + 1 + + PRENOM_ENFAIL7 + + + fr.insee + l8ok9kmj-QOP-l8okjmzy + 1 + + PRENOM_ENFAIL7 + + + + + fr.insee + l8ok9kmj-RDOP-l8okjmzy + 1 + OutParameter + + + fr.insee + l8ok9kmj-QOP-l8okjmzy + 1 + OutParameter + + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", comment s'appelle votre septième enfant qui ne vit pas avec vous ou qui est décédé ?" + + + + + fr.insee + l8ok9kmj-RDOP-l8okjmzy + 1 + + + + + + fr.insee + l8okbmv3 + 1 + + SEXE_ENFAIL7 + + + fr.insee + l8okbmv3-QOP-l8ok3iy5 + 1 + + SEXE_ENFAIL7 + + + + + fr.insee + l8okbmv3-RDOP-l8ok3iy5 + 1 + OutParameter + + + fr.insee + l8okbmv3-QOP-l8ok3iy5 + 1 + OutParameter + + + + + "Quel est le sexe de " || (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then "cet enfant" else ¤l8ok9kmj-QOP-l8okjmzy¤) || " ?" + + + + radio-button + + fr.insee + llgbzo78 + 1 + CodeList + + + fr.insee + l8okbmv3-RDOP-l8ok3iy5 + 1 + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + + + fr.insee + l8okh65e + 1 + + ANAI_ENFAIL7 + + + fr.insee + l8okh65e-QOP-l8okdvkx + 1 + + ANAI_ENFAIL7 + + + + + fr.insee + l8okh65e-RDOP-l8okdvkx + 1 + OutParameter + + + fr.insee + l8okh65e-QOP-l8okdvkx + 1 + OutParameter + + + + + "Quelle est l'année de naissance de " || (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then "cet enfant" else ¤l8ok9kmj-QOP-l8okjmzy¤) || " ?" + + + + + fr.insee + l8okh65e-RDOP-l8okdvkx + 1 + + + + + + fr.insee + l8okc5z9 + 1 + + NEFRANCE_ENFAIL7 + + + fr.insee + l8okc5z9-QOP-l8ok6z0e + 1 + + NEFRANCE_ENFAIL7 + + + + + fr.insee + l8okc5z9-RDOP-l8ok6z0e + 1 + OutParameter + + + fr.insee + l8okc5z9-QOP-l8ok6z0e + 1 + OutParameter + + + + + "" || (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then "Cet enfant" else ¤l8ok9kmj-QOP-l8okjmzy¤) || " est-" || (if (¤l8okbmv3-QOP-l8ok3iy5¤="1" or isnull(¤l8okbmv3-QOP-l8ok3iy5¤)) then "il né" else "elle née") || " en France ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8okc5z9-RDOP-l8ok6z0e + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l8ok97f5 + 1 + Instruction + + + + fr.insee + l8okdoof + 1 + + PARENT_VIT_ENFAIL7 + + + fr.insee + l8okdoof-QOP-l8ojuyat + 1 + + PARENT_VIT_ENFAIL7 + + + + + fr.insee + l8okdoof-RDOP-l8ojuyat + 1 + OutParameter + + + fr.insee + l8okdoof-QOP-l8ojuyat + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then "cet enfant" else ¤l8ok9kmj-QOP-l8okjmzy¤) || " vit-il/elle avec vous ?" + + + + radio-button + + fr.insee + l44726g4 + 1 + CodeList + + + fr.insee + l8okdoof-RDOP-l8ojuyat + 1 + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + + + fr.insee + l8ok0d4y + 1 + + PARENT_VECU_ENFAIL7 + + + fr.insee + l8ok0d4y-QOP-l8ojxc00 + 1 + + PARENT_VECU_ENFAIL7 + + + + + fr.insee + l8ok0d4y-RDOP-l8ojxc00 + 1 + OutParameter + + + fr.insee + l8ok0d4y-QOP-l8ojxc00 + 1 + OutParameter + + + + + "Avez-vous déjà vécu avec l'autre parent de " || (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then "cet enfant" else ¤l8ok9kmj-QOP-l8okjmzy¤) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8ok0d4y-RDOP-l8ojxc00 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8ok0acp + 1 + + DC_ENFAIL7 + + + fr.insee + l8ok0acp-QOP-l8ok9idc + 1 + + DC_ENFAIL7 + + + + + fr.insee + l8ok0acp-RDOP-l8ok9idc + 1 + OutParameter + + + fr.insee + l8ok0acp-QOP-l8ok9idc + 1 + OutParameter + + + + + "" || (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then "Cet enfant" else ¤l8ok9kmj-QOP-l8okjmzy¤) || " est-" || if (¤l8okbmv3-QOP-l8ok3iy5¤="1" or isnull(¤l8okbmv3-QOP-l8ok3iy5¤)) then "il encore en vie ?" else "elle encore en vie ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8ok0acp-RDOP-l8ok9idc + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8ojs3vl + 1 + + AG_DC_ENFAIL7 + + + fr.insee + l8ojs3vl-QOP-l8ojtruw + 1 + + AG_DC_ENFAIL7 + + + + + fr.insee + l8ojs3vl-RDOP-l8ojtruw + 1 + OutParameter + + + fr.insee + l8ojs3vl-QOP-l8ojtruw + 1 + OutParameter + + + + + "A quel âge " || (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then "cet enfant" else ¤l8ok9kmj-QOP-l8okjmzy¤) || " est-" || if (¤l8okbmv3-QOP-l8ok3iy5¤="1" or isnull(¤l8okbmv3-QOP-l8ok3iy5¤)) then "il décédé ?" else "elle décédée ?" + + + + + 0 + 95 + + Decimal + + fr.insee + l8ojs3vl-RDOP-l8ojtruw + 1 + + + + fr.insee + l8ojoix6 + 1 + Instruction + + + + fr.insee + l8ojuhud + 1 + + AG_DEPART_ENFAIL7 + + + fr.insee + l8ojuhud-QOP-l8ojvwk7 + 1 + + AG_DEPART_ENFAIL7 + + + + + fr.insee + l8ojuhud-RDOP-l8ojvwk7 + 1 + OutParameter + + + fr.insee + l8ojuhud-QOP-l8ojvwk7 + 1 + OutParameter + + + + + "A quel âge environ " || (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then "cet enfant" else ¤l8ok9kmj-QOP-l8okjmzy¤) || " a-t-" || (if (¤l8okbmv3-QOP-l8ok3iy5¤="1" or isnull(¤l8okbmv3-QOP-l8ok3iy5¤)) then "il " else "elle") || " cessé de vivre avec vous ?" + + + + + 0 + 95 + + Decimal + + fr.insee + l8ojuhud-RDOP-l8ojvwk7 + 1 + + + + + fr.insee + l8ojmjws + 1 + + PARENT_FREQ_ENFAIL7 + + + fr.insee + l8ojmjws-QOP-l8ojhru1 + 1 + + PARENT_FREQ_ENFAIL7 + + + + + fr.insee + l8ojmjws-RDOP-l8ojhru1 + 1 + OutParameter + + + fr.insee + l8ojmjws-QOP-l8ojhru1 + 1 + OutParameter + + + + + "A quelle fréquence êtes-vous en contact avec " || (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then "cet enfant" else ¤l8ok9kmj-QOP-l8okjmzy¤) || " ? " + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + l8ojmjws-RDOP-l8ojhru1 + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + fr.insee + l8ojt8hw + 1 + Instruction + + + + fr.insee + l8oj98gw + 1 + + FR_ENFAIL7 + + + fr.insee + l8oj98gw-QOP-l8ojo8na + 1 + + FR_ENFAIL7 + + + + + fr.insee + l8oj98gw-RDOP-l8ojo8na + 1 + OutParameter + + + fr.insee + l8oj98gw-QOP-l8ojo8na + 1 + OutParameter + + + + + "" || (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then "Cet enfant" else ¤l8ok9kmj-QOP-l8okjmzy¤) || " vit-" || (if (¤l8okbmv3-QOP-l8ok3iy5¤="1" or isnull(¤l8okbmv3-QOP-l8ok3iy5¤)) then "il " else "elle ") || "en France actuellement ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8oj98gw-RDOP-l8ojo8na + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + lai6ugn5 + 1 + Instruction + + + + fr.insee + l8ojb4ub + 1 + + DEP_ENFAIL7 + + + fr.insee + l8ojb4ub-QOP-llvzaolo + 1 + + DEP_ENFAIL7 + + + + + fr.insee + l8ojb4ub-RDOP-llvzaolo + 1 + OutParameter + + + fr.insee + l8ojb4ub-QOP-llvzaolo + 1 + OutParameter + + + + + "Dans quel département vit " || (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then "cet enfant" else ¤l8ok9kmj-QOP-l8okjmzy¤) || " ?" + + + + + fr.insee + l8ojb4ub-RDOP-llvzaolo + 1 + + + + + fr.insee + l8ojdq5t + 1 + Instruction + + + + fr.insee + l8ojczfv + 1 + + COM_ENFAIL7 + + + fr.insee + l8ojczfv-QOP-llvz57ns + 1 + + COM_ENFAIL7 + + + + + fr.insee + l8ojczfv-RDOP-llvz57ns + 1 + OutParameter + + + fr.insee + l8ojczfv-QOP-llvz57ns + 1 + OutParameter + + + + + "Dans quelle commune vit " || (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then "cet enfant" else ¤l8ok9kmj-QOP-l8okjmzy¤) || " ?" + + + + + fr.insee + l8ojczfv-RDOP-llvz57ns + 1 + + + + + fr.insee + l8oj6my9 + 1 + Instruction + + + + fr.insee + l8ojif3m + 1 + + PAY_ENFAIL7 + + + fr.insee + l8ojif3m-QOP-llvyqwz8 + 1 + + PAY_ENFAIL7 + + + + + fr.insee + l8ojif3m-RDOP-llvyqwz8 + 1 + OutParameter + + + fr.insee + l8ojif3m-QOP-llvyqwz8 + 1 + OutParameter + + + + + "Dans quel pays vit " || (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then "cet enfant" else ¤l8ok9kmj-QOP-l8okjmzy¤) || " ?" + + + + + fr.insee + l8ojif3m-RDOP-llvyqwz8 + 1 + + + + + fr.insee + l8oj5v82 + 1 + Instruction + + + + fr.insee + l8oja1pz + 1 + + LOG_ENFAIL7 + + + fr.insee + l8oja1pz-QOP-l8oj6h19 + 1 + + LOG_ENFAIL7 + + + + + fr.insee + l8oja1pz-RDOP-l8oj6h19 + 1 + OutParameter + + + fr.insee + l8oja1pz-QOP-l8oj6h19 + 1 + OutParameter + + + + + "" || (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then "Cet enfant" else ¤l8ok9kmj-QOP-l8okjmzy¤) || " vit-" || (if (¤l8okbmv3-QOP-l8ok3iy5¤="1" or isnull(¤l8okbmv3-QOP-l8ok3iy5¤)) then "il" else "elle") || " dans son propre logement ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8oja1pz-RDOP-l8oj6h19 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8oiinpy + 1 + + AUT_PAR_ENFAIL7 + + + fr.insee + l8oiinpy-QOP-l8oia0f4 + 1 + + AUT_PAR_ENFAIL7 + + + + + fr.insee + l8oiinpy-RDOP-l8oia0f4 + 1 + OutParameter + + + fr.insee + l8oiinpy-QOP-l8oia0f4 + 1 + OutParameter + + + + + "" || (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then "Cet enfant" else ¤l8ok9kmj-QOP-l8okjmzy¤) || " vit-" || (if (¤l8okbmv3-QOP-l8ok3iy5¤="1" or isnull(¤l8okbmv3-QOP-l8ok3iy5¤)) then "il" else "elle") || " chez son autre parent ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8oiinpy-RDOP-l8oia0f4 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8oj67fo + 1 + + DORT_ENFAIL7 + + + fr.insee + l8oj67fo-QOP-l8oiz02v + 1 + + DORT_ENFAIL7 + + + + + fr.insee + l8oj67fo-RDOP-l8oiz02v + 1 + OutParameter + + + fr.insee + l8oj67fo-QOP-l8oiz02v + 1 + OutParameter + + + + + "Arrive-t-il à " || (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then "cet enfant" else ¤l8ok9kmj-QOP-l8okjmzy¤) || " de dormir chez vous ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8oj67fo-RDOP-l8oiz02v + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8oiu9ax + 1 + + SEP_AUT_PAR_ENFAIL7 + + + fr.insee + l8oiu9ax-QOP-l8oimcso + 1 + + SEP_AUT_PAR_ENFAIL7 + + + + + fr.insee + l8oiu9ax-RDOP-l8oimcso + 1 + OutParameter + + + fr.insee + l8oiu9ax-QOP-l8oimcso + 1 + OutParameter + + + + + "Vous êtes-vous séparé" || (if (¤ln0892lt-GOP¤ = "2") then "e" else "") || " de l'autre parent de " || (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then "cet enfant" else ¤l8ok9kmj-QOP-l8okjmzy¤) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8oiu9ax-RDOP-l8oimcso + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8oicj6e + 1 + + RESID_ENFAIL7 + + + fr.insee + l8oicj6e-QOP-l8oirvyk + 1 + + RESID_ENFAIL7 + + + + + fr.insee + l8oicj6e-RDOP-l8oirvyk + 1 + OutParameter + + + fr.insee + l8oicj6e-QOP-l8oirvyk + 1 + OutParameter + + + + + "Quel a été le mode de résidence fixé par décision de justice ?" + + + + radio-button + + fr.insee + l448z131 + 1 + CodeList + + + fr.insee + l8oicj6e-RDOP-l8oirvyk + 1 + + + fr.insee + l448z131 + 1 + CodeList + + + + + + + + fr.insee + l8olci32 + 1 + + PRENOM_ENFAIL8 + + + fr.insee + l8olci32-QOP-l8oln1gt + 1 + + PRENOM_ENFAIL8 + + + + + fr.insee + l8olci32-RDOP-l8oln1gt + 1 + OutParameter + + + fr.insee + l8olci32-QOP-l8oln1gt + 1 + OutParameter + + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", comment s'appelle votre huitième enfant qui ne vit pas avec vous ou qui est décédé ?" + + + + + fr.insee + l8olci32-RDOP-l8oln1gt + 1 + + + + + + fr.insee + l8olbhxj + 1 + + SEXE_ENFAIL8 + + + fr.insee + l8olbhxj-QOP-l8ol8o60 + 1 + + SEXE_ENFAIL8 + + + + + fr.insee + l8olbhxj-RDOP-l8ol8o60 + 1 + OutParameter + + + fr.insee + l8olbhxj-QOP-l8ol8o60 + 1 + OutParameter + + + + + "Quel est le sexe de " || (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then "cet enfant" else ¤l8olci32-QOP-l8oln1gt¤) || " ?" + + + + radio-button + + fr.insee + llgbzo78 + 1 + CodeList + + + fr.insee + l8olbhxj-RDOP-l8ol8o60 + 1 + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + + + fr.insee + l8ol9xy3 + 1 + + ANAI_ENFAIL8 + + + fr.insee + l8ol9xy3-QOP-l8ol6h1q + 1 + + ANAI_ENFAIL8 + + + + + fr.insee + l8ol9xy3-RDOP-l8ol6h1q + 1 + OutParameter + + + fr.insee + l8ol9xy3-QOP-l8ol6h1q + 1 + OutParameter + + + + + "Quelle est l'année de naissance de " || (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then "cet enfant" else ¤l8olci32-QOP-l8oln1gt¤) || " ?" + + + + + fr.insee + l8ol9xy3-RDOP-l8ol6h1q + 1 + + + + + + fr.insee + l8ola1mr + 1 + + NEFRANCE_ENFAIL8 + + + fr.insee + l8ola1mr-QOP-l8olb2am + 1 + + NEFRANCE_ENFAIL8 + + + + + fr.insee + l8ola1mr-RDOP-l8olb2am + 1 + OutParameter + + + fr.insee + l8ola1mr-QOP-l8olb2am + 1 + OutParameter + + + + + "" || (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then "Cet enfant" else ¤l8olci32-QOP-l8oln1gt¤) || " est-" || (if (¤l8olbhxj-QOP-l8ol8o60¤="1" or isnull(¤l8olbhxj-QOP-l8ol8o60¤)) then "il né" else "elle née") || " en France ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8ola1mr-RDOP-l8olb2am + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l8okzirz + 1 + Instruction + + + + fr.insee + l8okz45l + 1 + + PARENT_VIT_ENFAIL8 + + + fr.insee + l8okz45l-QOP-l8olfzvu + 1 + + PARENT_VIT_ENFAIL8 + + + + + fr.insee + l8okz45l-RDOP-l8olfzvu + 1 + OutParameter + + + fr.insee + l8okz45l-QOP-l8olfzvu + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then "cet enfant" else ¤l8olci32-QOP-l8oln1gt¤) || " vit-il/elle avec vous ?" + + + + radio-button + + fr.insee + l44726g4 + 1 + CodeList + + + fr.insee + l8okz45l-RDOP-l8olfzvu + 1 + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + + + fr.insee + l8ol369l + 1 + + PARENT_VECU_ENFAIL8 + + + fr.insee + l8ol369l-QOP-l8okxkvv + 1 + + PARENT_VECU_ENFAIL8 + + + + + fr.insee + l8ol369l-RDOP-l8okxkvv + 1 + OutParameter + + + fr.insee + l8ol369l-QOP-l8okxkvv + 1 + OutParameter + + + + + "Avez-vous déjà vécu avec l'autre parent de " || (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then "cet enfant" else ¤l8olci32-QOP-l8oln1gt¤) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8ol369l-RDOP-l8okxkvv + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8ole120 + 1 + + DC_ENFAIL8 + + + fr.insee + l8ole120-QOP-l8ol3o2i + 1 + + DC_ENFAIL8 + + + + + fr.insee + l8ole120-RDOP-l8ol3o2i + 1 + OutParameter + + + fr.insee + l8ole120-QOP-l8ol3o2i + 1 + OutParameter + + + + + "" || (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then "Cet enfant" else ¤l8olci32-QOP-l8oln1gt¤) || " est-" || if (¤l8olbhxj-QOP-l8ol8o60¤="1" or isnull(¤l8olbhxj-QOP-l8ol8o60¤)) then "il encore en vie ?" else "elle encore en vie ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8ole120-RDOP-l8ol3o2i + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8olcd8n + 1 + + AG_DC_ENFAIL8 + + + fr.insee + l8olcd8n-QOP-l8oku4vn + 1 + + AG_DC_ENFAIL8 + + + + + fr.insee + l8olcd8n-RDOP-l8oku4vn + 1 + OutParameter + + + fr.insee + l8olcd8n-QOP-l8oku4vn + 1 + OutParameter + + + + + "A quel âge " || (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then "cet enfant" else ¤l8olci32-QOP-l8oln1gt¤) || " est-" || if (¤l8olbhxj-QOP-l8ol8o60¤="1" or isnull(¤l8olbhxj-QOP-l8ol8o60¤)) then "il décédé ?" else "elle décédée ?" + + + + + 0 + 95 + + Decimal + + fr.insee + l8olcd8n-RDOP-l8oku4vn + 1 + + + + fr.insee + l8oktakr + 1 + Instruction + + + + fr.insee + l8ol84b7 + 1 + + AG_DEPART_ENFAIL8 + + + fr.insee + l8ol84b7-QOP-l8ol1ust + 1 + + AG_DEPART_ENFAIL8 + + + + + fr.insee + l8ol84b7-RDOP-l8ol1ust + 1 + OutParameter + + + fr.insee + l8ol84b7-QOP-l8ol1ust + 1 + OutParameter + + + + + "A quel âge environ " || (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then "cet enfant" else ¤l8olci32-QOP-l8oln1gt¤) || " a-t-" || (if (¤l8olbhxj-QOP-l8ol8o60¤="1" or isnull(¤l8olbhxj-QOP-l8ol8o60¤)) then "il " else "elle") || " cessé de vivre avec vous ?" + + + + + 0 + 95 + + Decimal + + fr.insee + l8ol84b7-RDOP-l8ol1ust + 1 + + + + + fr.insee + l8okx7cd + 1 + + PARENT_FREQ_ENFAIL8 + + + fr.insee + l8okx7cd-QOP-l8ol3s4a + 1 + + PARENT_FREQ_ENFAIL8 + + + + + fr.insee + l8okx7cd-RDOP-l8ol3s4a + 1 + OutParameter + + + fr.insee + l8okx7cd-QOP-l8ol3s4a + 1 + OutParameter + + + + + "A quelle fréquence êtes-vous en contact avec " || (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then "cet enfant" else ¤l8olci32-QOP-l8oln1gt¤) || " ? " + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + l8okx7cd-RDOP-l8ol3s4a + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + fr.insee + l8ol6hio + 1 + Instruction + + + + fr.insee + l8okpxv8 + 1 + + FR_ENFAIL8 + + + fr.insee + l8okpxv8-QOP-l8okk1db + 1 + + FR_ENFAIL8 + + + + + fr.insee + l8okpxv8-RDOP-l8okk1db + 1 + OutParameter + + + fr.insee + l8okpxv8-QOP-l8okk1db + 1 + OutParameter + + + + + "" || (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then "Cet enfant" else ¤l8olci32-QOP-l8oln1gt¤) || " vit-" || (if (¤l8olbhxj-QOP-l8ol8o60¤="1" or isnull(¤l8olbhxj-QOP-l8ol8o60¤)) then "il " else "elle ") || "en France actuellement ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8okpxv8-RDOP-l8okk1db + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + lai7cpw5 + 1 + Instruction + + + + fr.insee + l8okue2t + 1 + + DEP_ENFAIL8 + + + fr.insee + l8okue2t-QOP-llvz6npr + 1 + + DEP_ENFAIL8 + + + + + fr.insee + l8okue2t-RDOP-llvz6npr + 1 + OutParameter + + + fr.insee + l8okue2t-QOP-llvz6npr + 1 + OutParameter + + + + + "Dans quel département vit " || (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then "cet enfant" else ¤l8olci32-QOP-l8oln1gt¤) || " ?" + + + + + fr.insee + l8okue2t-RDOP-llvz6npr + 1 + + + + + fr.insee + l8okk3ew + 1 + Instruction + + + + fr.insee + l8okjfla + 1 + + COM_ENFAIL8 + + + fr.insee + l8okjfla-QOP-llvz0mdc + 1 + + COM_ENFAIL8 + + + + + fr.insee + l8okjfla-RDOP-llvz0mdc + 1 + OutParameter + + + fr.insee + l8okjfla-QOP-llvz0mdc + 1 + OutParameter + + + + + "Dans quelle commune vit " || (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then "cet enfant" else ¤l8olci32-QOP-l8oln1gt¤) || " ?" + + + + + fr.insee + l8okjfla-RDOP-llvz0mdc + 1 + + + + + fr.insee + l8okkn0x + 1 + Instruction + + + + fr.insee + l8okxgwv + 1 + + PAY_ENFAIL8 + + + fr.insee + l8okxgwv-QOP-llvz12vx + 1 + + PAY_ENFAIL8 + + + + + fr.insee + l8okxgwv-RDOP-llvz12vx + 1 + OutParameter + + + fr.insee + l8okxgwv-QOP-llvz12vx + 1 + OutParameter + + + + + "Dans quel pays vit " || (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then "cet enfant" else ¤l8olci32-QOP-l8oln1gt¤) || " ?" + + + + + fr.insee + l8okxgwv-RDOP-llvz12vx + 1 + + + + + fr.insee + l8okt75e + 1 + Instruction + + + + fr.insee + l8oksuft + 1 + + LOG_ENFAIL8 + + + fr.insee + l8oksuft-QOP-l8okh5d0 + 1 + + LOG_ENFAIL8 + + + + + fr.insee + l8oksuft-RDOP-l8okh5d0 + 1 + OutParameter + + + fr.insee + l8oksuft-QOP-l8okh5d0 + 1 + OutParameter + + + + + "" || (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then "Cet enfant" else ¤l8olci32-QOP-l8oln1gt¤) || " vit-" || (if (¤l8olbhxj-QOP-l8ol8o60¤="1" or isnull(¤l8olbhxj-QOP-l8ol8o60¤)) then "il" else "elle") || " dans son propre logement ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8oksuft-RDOP-l8okh5d0 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8okked6 + 1 + + AUT_PAR_ENFAIL8 + + + fr.insee + l8okked6-QOP-l8okd51b + 1 + + AUT_PAR_ENFAIL8 + + + + + fr.insee + l8okked6-RDOP-l8okd51b + 1 + OutParameter + + + fr.insee + l8okked6-QOP-l8okd51b + 1 + OutParameter + + + + + "" || (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then "Cet enfant" else ¤l8olci32-QOP-l8oln1gt¤) || " vit-" || (if (¤l8olbhxj-QOP-l8ol8o60¤="1" or isnull(¤l8olbhxj-QOP-l8ol8o60¤)) then "il" else "elle") || " chez son autre parent ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8okked6-RDOP-l8okd51b + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8okkkef + 1 + + DORT_ENFAIL8 + + + fr.insee + l8okkkef-QOP-l8oktkgp + 1 + + DORT_ENFAIL8 + + + + + fr.insee + l8okkkef-RDOP-l8oktkgp + 1 + OutParameter + + + fr.insee + l8okkkef-QOP-l8oktkgp + 1 + OutParameter + + + + + "Arrive-t-il à " || (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then "cet enfant" else ¤l8olci32-QOP-l8oln1gt¤) || " de dormir chez vous ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8okkkef-RDOP-l8oktkgp + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8okfvhy + 1 + + SEP_AUT_PAR_ENFAIL8 + + + fr.insee + l8okfvhy-QOP-l8oke48c + 1 + + SEP_AUT_PAR_ENFAIL8 + + + + + fr.insee + l8okfvhy-RDOP-l8oke48c + 1 + OutParameter + + + fr.insee + l8okfvhy-QOP-l8oke48c + 1 + OutParameter + + + + + "Vous êtes-vous séparé" || (if (¤ln0892lt-GOP¤ = "2") then "e" else "") || " de l'autre parent de " || (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then "cet enfant" else ¤l8olci32-QOP-l8oln1gt¤) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8okfvhy-RDOP-l8oke48c + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8okioqc + 1 + + RESID_ENFAIL8 + + + fr.insee + l8okioqc-QOP-l8oksr34 + 1 + + RESID_ENFAIL8 + + + + + fr.insee + l8okioqc-RDOP-l8oksr34 + 1 + OutParameter + + + fr.insee + l8okioqc-QOP-l8oksr34 + 1 + OutParameter + + + + + "Quel a été le mode de résidence fixé par décision de justice ?" + + + + radio-button + + fr.insee + l448z131 + 1 + CodeList + + + fr.insee + l8okioqc-RDOP-l8oksr34 + 1 + + + fr.insee + l448z131 + 1 + CodeList + + + + + + + + fr.insee + l1f6a3qv + 1 + + PETIT_ENF + + + fr.insee + l1f6a3qv-QOP-l1f67xik + 1 + + PETIT_ENF + + + + + fr.insee + l1f6a3qv-RDOP-l1f67xik + 1 + OutParameter + + + fr.insee + l1f6a3qv-QOP-l1f67xik + 1 + OutParameter + + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", avez-vous des petits-enfants ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l1f6a3qv-RDOP-l1f67xik + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l5iarkhk + 1 + Instruction + + + + fr.insee + l1f6dz1j + 1 + + NB_PETIT_ENF + + + fr.insee + l1f6dz1j-QOP-l1f6aqky + 1 + + NB_PETIT_ENF + + + + + fr.insee + l1f6dz1j-RDOP-l1f6aqky + 1 + OutParameter + + + fr.insee + l1f6dz1j-QOP-l1f6aqky + 1 + OutParameter + + + + + "Combien de petits-enfants avez-vous en tout ?" + + + + + 1 + 40 + + Decimal + + fr.insee + l1f6dz1j-RDOP-l1f6aqky + 1 + + + + + fr.insee + l1f69ivh + 1 + + AG_PETIT_ENF + + + fr.insee + l1f69ivh-QOP-l1f6h1an + 1 + + AG_PETIT_ENF + + + + + fr.insee + l1f69ivh-RDOP-l1f6h1an + 1 + OutParameter + + + fr.insee + l1f69ivh-QOP-l1f6h1an + 1 + OutParameter + + + + + "" || if (cast(¤l1f6dz1j-QOP-l1f6aqky¤,integer)>1 or isnull(¤l1f6dz1j-QOP-l1f6aqky¤)) then "Quel âge a l'aîné(e) ?" else "Quel âge a-t-il/elle ?" + + + + + 0 + 80 + + Decimal + + fr.insee + l1f69ivh-RDOP-l1f6h1an + 1 + + + + fr.insee + l1f62ww0 + 1 + Instruction + + + + fr.insee + l1g8apw2 + 1 + + LANGUE1_ENTOU + + + fr.insee + l1g8apw2-QOP-llvz9ewy + 1 + + LANGUE1_ENTOU + + + + + fr.insee + l1g8apw2-RDOP-llvz9ewy + 1 + OutParameter + + + fr.insee + l1g8apw2-QOP-llvz9ewy + 1 + OutParameter + + + + + "En quelle langue, dialecte, ou patois discutez-vous régulièrement avec votre entourage (famille, amis, collègues, commerçants, etc.) ?" + + + + + fr.insee + l1g8apw2-RDOP-llvz9ewy + 1 + + + + + fr.insee + laians4k + 1 + Instruction + + + fr.insee + laial6r0 + 1 + Instruction + + + + fr.insee + l43tgurz + 1 + + LANGUE2_ENTOU + + + fr.insee + l43tgurz-QOP-llvz9gdb + 1 + + LANGUE2_ENTOU + + + + + fr.insee + l43tgurz-RDOP-llvz9gdb + 1 + OutParameter + + + fr.insee + l43tgurz-QOP-llvz9gdb + 1 + OutParameter + + + + + "Y-a-t-il une autre langue, dialecte ou patois ?" + + + + + fr.insee + l43tgurz-RDOP-llvz9gdb + 1 + + + + + fr.insee + l4o6rkjz + 1 + Instruction + + + + fr.insee + l2kjnm8k + 1 + + PRENOM_PAR1 + + + fr.insee + l2kjnm8k-QOP-l2kjn4vg + 1 + + PRENOM_PAR1 + + + + + fr.insee + l2kjnm8k-RDOP-l2kjn4vg + 1 + OutParameter + + + fr.insee + l2kjnm8k-QOP-l2kjn4vg + 1 + OutParameter + + + + + "Quel est son prénom ?" + + + + + fr.insee + l2kjnm8k-RDOP-l2kjn4vg + 1 + + + + + + fr.insee + l2kjy49o + 1 + + ANAI_PAR1 + + + fr.insee + l2kjy49o-QOP-l2kjupyp + 1 + + ANAI_PAR1 + + + + + fr.insee + l2kjy49o-RDOP-l2kjupyp + 1 + OutParameter + + + fr.insee + l2kjy49o-QOP-l2kjupyp + 1 + OutParameter + + + + + "Quelle est l'année de naissance de " || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " ?" + + + + + fr.insee + l2kjy49o-RDOP-l2kjupyp + 1 + + + + + fr.insee + l6c4w3ax + 1 + Instruction + + + + fr.insee + l2kkvar7 + 1 + + SEXE_PAR1 + + + fr.insee + l2kkvar7-QOP-l2kkywzf + 1 + + SEXE_PAR1 + + + + + fr.insee + l2kkvar7-RDOP-l2kkywzf + 1 + OutParameter + + + fr.insee + l2kkvar7-QOP-l2kkywzf + 1 + OutParameter + + + + + "Quel est le sexe de " || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " ?" + + + + radio-button + + fr.insee + kwqir1cc + 1 + CodeList + + + fr.insee + l2kkvar7-RDOP-l2kkywzf + 1 + + + fr.insee + kwqir1cc + 1 + CodeList + + + + + + + + fr.insee + l2kk539f + 1 + + NATIO_PAR1 + + + fr.insee + l2kk539f-QOP-l2kk2tl9 + 1 + + NATIO_PAR1 + + + + + fr.insee + l2kk539f-RDOP-l2kk2tl9 + 1 + OutParameter + + + fr.insee + l2kk539f-QOP-l2kk2tl9 + 1 + OutParameter + + + + + "" || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "Votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " était-" || ¤ljog2d02-GOP¤ || " français" || ¤ljog4umf-GOP¤ || " à la naissance ? " + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l2kk539f-RDOP-l2kk2tl9 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l7ywp1vk + 1 + + TRAV_PAR1 + + + fr.insee + l7ywp1vk-QOP-l7yx6ylx + 1 + + TRAV_PAR1 + + + + + fr.insee + l7ywp1vk-RDOP-l7yx6ylx + 1 + OutParameter + + + fr.insee + l7ywp1vk-QOP-l7yx6ylx + 1 + OutParameter + + + + + "" || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "Votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " a-t-" || ¤ljog2d02-GOP¤ || " déjà travaillé ? " + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l7ywp1vk-RDOP-l7yx6ylx + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l2kjueig + 1 + + PROF_PAR1H + + + fr.insee + l2kjueig-QOP-llvyzrpx + 1 + + PROF_PAR1H + + + + + fr.insee + l2kjueig-RDOP-llvyzrpx + 1 + OutParameter + + + fr.insee + l2kjueig-QOP-llvyzrpx + 1 + OutParameter + + + + + "Quelle est ou était la profession de " || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " ?" + + + + + fr.insee + l2kjueig-RDOP-llvyzrpx + 1 + + + + + fr.insee + l4o5gqap + 1 + Instruction + + + fr.insee + l5jp82du + 1 + Instruction + + + + fr.insee + l4qzvm5v + 1 + + PROF_PAR1F + + + fr.insee + l4qzvm5v-QOP-llvz490j + 1 + + PROF_PAR1F + + + + + fr.insee + l4qzvm5v-RDOP-llvz490j + 1 + OutParameter + + + fr.insee + l4qzvm5v-QOP-llvz490j + 1 + OutParameter + + + + + "Quelle est ou était la profession de " || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " ?" + + + + + fr.insee + l4qzvm5v-RDOP-llvz490j + 1 + + + + + fr.insee + l4qzje64 + 1 + Instruction + + + fr.insee + l5joyl4e + 1 + Instruction + + + + fr.insee + l45cjoj7 + 1 + + PROF_PAR1_2 + + + fr.insee + l45cjoj7-QOP-l4o6wqdy + 1 + + PROF_PAR1_2 + + + + + fr.insee + l45cjoj7-RDOP-l4o6wqdy + 1 + OutParameter + + + fr.insee + l45cjoj7-QOP-l4o6wqdy + 1 + OutParameter + + + + + "Vous n'avez pas trouvé le libellé de profession recherché dans la liste. Veuillez saisir le libellé de profession le plus précis et complet possible." + + + + + fr.insee + l45cjoj7-RDOP-l4o6wqdy + 1 + + + + + + fr.insee + l2kjshy4 + 1 + + STATUT_PAR1 + + + fr.insee + l2kjshy4-QOP-l2kk0l5l + 1 + + STATUT_PAR1 + + + + + fr.insee + l2kjshy4-RDOP-l2kk0l5l + 1 + OutParameter + + + fr.insee + l2kjshy4-QOP-l2kk0l5l + 1 + OutParameter + + + + + "Quel est ou était le statut professionnel de " || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " ?" + + + + radio-button + + fr.insee + l1f23fi8 + 1 + CodeList + + + fr.insee + l2kjshy4-RDOP-l2kk0l5l + 1 + + + fr.insee + l1f23fi8 + 1 + CodeList + + + + + + + + fr.insee + llgo5n7b + 1 + + SAL_FP_PAR1 + + + fr.insee + llgo5n7b-QOP-llgozn3p + 1 + + SAL_FP_PAR1 + + + + + fr.insee + llgo5n7b-RDOP-llgozn3p + 1 + OutParameter + + + fr.insee + llgo5n7b-QOP-llgozn3p + 1 + OutParameter + + + + + "Dans cet emploi, " || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " est ou était ?" + + + + radio-button + + fr.insee + llgq8911 + 1 + CodeList + + + fr.insee + llgo5n7b-RDOP-llgozn3p + 1 + + + fr.insee + llgq8911 + 1 + CodeList + + + + + + + + fr.insee + llgqspnh + 1 + + SAL_ENT_PAR1 + + + fr.insee + llgqspnh-QOP-llgqj9en + 1 + + SAL_ENT_PAR1 + + + + + fr.insee + llgqspnh-RDOP-llgqj9en + 1 + OutParameter + + + fr.insee + llgqspnh-QOP-llgqj9en + 1 + OutParameter + + + + + "Dans cet emploi, " || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " est ou était ?" + + + + radio-button + + fr.insee + llgoa6cg + 1 + CodeList + + + fr.insee + llgqspnh-RDOP-llgqj9en + 1 + + + fr.insee + llgoa6cg + 1 + CodeList + + + + + + + + fr.insee + l2kk4seh + 1 + + LANGUE1_PAR1 + + + fr.insee + l2kk4seh-QOP-llvyt5ul + 1 + + LANGUE1_PAR1 + + + + + fr.insee + l2kk4seh-RDOP-llvyt5ul + 1 + OutParameter + + + fr.insee + l2kk4seh-QOP-llvyt5ul + 1 + OutParameter + + + + + "En quelle langue, dialecte, ou patois " || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " vous parlait-" || ¤ljog2d02-GOP¤ || ", quand vous étiez enfant ?" + + + + + fr.insee + l2kk4seh-RDOP-llvyt5ul + 1 + + + + + fr.insee + laiasuwg + 1 + Instruction + + + fr.insee + laiaq49f + 1 + Instruction + + + + fr.insee + l447j7cx + 1 + + LANGUE2_PAR1 + + + fr.insee + l447j7cx-QOP-llvyrge5 + 1 + + LANGUE2_PAR1 + + + + + fr.insee + l447j7cx-RDOP-llvyrge5 + 1 + OutParameter + + + fr.insee + l447j7cx-QOP-llvyrge5 + 1 + OutParameter + + + + + "Y-a-t-il une autre langue, dialecte ou patois ?" + + + + + fr.insee + l447j7cx-RDOP-llvyrge5 + 1 + + + + + fr.insee + l4o6o3qv + 1 + Instruction + + + + fr.insee + l2kjzugb + 1 + + VIV_PAR1 + + + fr.insee + l2kjzugb-QOP-l2kjv6tv + 1 + + VIV_PAR1 + + + + + fr.insee + l2kjzugb-RDOP-l2kjv6tv + 1 + OutParameter + + + fr.insee + l2kjzugb-QOP-l2kjv6tv + 1 + OutParameter + + + + + "" || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "Votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " est-" || ¤ljog2d02-GOP¤ || " encore en vie ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l2kjzugb-RDOP-l2kjv6tv + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l2kkd59n + 1 + + ANNEE_DC_PAR1 + + + fr.insee + l2kkd59n-QOP-l2kk3398 + 1 + + ANNEE_DC_PAR1 + + + + + fr.insee + l2kkd59n-RDOP-l2kk3398 + 1 + OutParameter + + + fr.insee + l2kkd59n-QOP-l2kk3398 + 1 + OutParameter + + + + + "En quelle année environ " || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " est-" || ¤ljog2d02-GOP¤ || " décédé" || ¤ljog4umf-GOP¤ || " ?" + + + + + fr.insee + l2kkd59n-RDOP-l2kk3398 + 1 + + + + + + fr.insee + l2kk4snz + 1 + + LOG_PAR1 + + + fr.insee + l2kk4snz-QOP-l34gopr4 + 1 + + LOG_PAR1 + + + + + fr.insee + l2kk4snz-RDOP-l34gopr4 + 1 + OutParameter + + + fr.insee + l2kk4snz-QOP-l34gopr4 + 1 + OutParameter + + + + + "Où vit " || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " ?" + + + + radio-button + + fr.insee + l4qualpe + 1 + CodeList + + + fr.insee + l2kk4snz-RDOP-l34gopr4 + 1 + + + fr.insee + l4qualpe + 1 + CodeList + + + + + + + + fr.insee + l2kkb4xa + 1 + + FR_PAR1 + + + fr.insee + l2kkb4xa-QOP-l2kk5rd6 + 1 + + FR_PAR1 + + + + + fr.insee + l2kkb4xa-RDOP-l2kk5rd6 + 1 + OutParameter + + + fr.insee + l2kkb4xa-QOP-l2kk5rd6 + 1 + OutParameter + + + + + "" || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "Votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " vit-" || ¤ljog2d02-GOP¤ || " en France ?" + + + + radio-button + + fr.insee + l4o7x17y + 1 + CodeList + + + fr.insee + l2kkb4xa-RDOP-l2kk5rd6 + 1 + + + fr.insee + l4o7x17y + 1 + CodeList + + + + + + + fr.insee + lai78qvl + 1 + Instruction + + + + fr.insee + l4o7ufzl + 1 + + DEP_PAR1 + + + fr.insee + l4o7ufzl-QOP-llvzb0k0 + 1 + + DEP_PAR1 + + + + + fr.insee + l4o7ufzl-RDOP-llvzb0k0 + 1 + OutParameter + + + fr.insee + l4o7ufzl-QOP-llvzb0k0 + 1 + OutParameter + + + + + "Dans quel département vit " || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " ?" + + + + + fr.insee + l4o7ufzl-RDOP-llvzb0k0 + 1 + + + + + fr.insee + l4o88r3u + 1 + Instruction + + + + fr.insee + l4onhpvd + 1 + + COM_PAR1 + + + fr.insee + l4onhpvd-QOP-llvz5uy3 + 1 + + COM_PAR1 + + + + + fr.insee + l4onhpvd-RDOP-llvz5uy3 + 1 + OutParameter + + + fr.insee + l4onhpvd-QOP-llvz5uy3 + 1 + OutParameter + + + + + "Dans quelle commune vit " || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " ?" + + + + + fr.insee + l4onhpvd-RDOP-llvz5uy3 + 1 + + + + + fr.insee + l4onfbps + 1 + Instruction + + + + fr.insee + l4o8eale + 1 + + PAY_PAR1 + + + fr.insee + l4o8eale-QOP-llvzajdd + 1 + + PAY_PAR1 + + + + + fr.insee + l4o8eale-RDOP-llvzajdd + 1 + OutParameter + + + fr.insee + l4o8eale-QOP-llvzajdd + 1 + OutParameter + + + + + "Dans quel pays vit " || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " ?" + + + + + fr.insee + l4o8eale-RDOP-llvzajdd + 1 + + + + + fr.insee + l4o8fj6f + 1 + Instruction + + + + fr.insee + l1ezkqes + 1 + + ETAB_PAR1 + + + fr.insee + l1ezkqes-QOP-l1ezmkcq + 1 + + ETAB_PAR1 + + + + + fr.insee + l1ezkqes-RDOP-l1ezmkcq + 1 + OutParameter + + + fr.insee + l1ezkqes-QOP-l1ezmkcq + 1 + OutParameter + + + + + "" || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "Votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " vit-" || ¤ljog2d02-GOP¤ || " dans un établissement pour personnes âgées ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l1ezkqes-RDOP-l1ezmkcq + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l1ez5cei + 1 + Instruction + + + + fr.insee + l2kkeqsz + 1 + + FREQ_VU_PAR1 + + + fr.insee + l2kkeqsz-QOP-l2kjzdaf + 1 + + FREQ_VU_PAR1 + + + + + fr.insee + l2kkeqsz-RDOP-l2kjzdaf + 1 + OutParameter + + + fr.insee + l2kkeqsz-QOP-l2kjzdaf + 1 + OutParameter + + + + + "A quelle fréquence voyez-vous " || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " ?" + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + l2kkeqsz-RDOP-l2kjzdaf + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + fr.insee + l2kkh5nj + 1 + Instruction + + + + fr.insee + l2kk296y + 1 + + FREQ_CONT_PAR1 + + + fr.insee + l2kk296y-QOP-l2kkit9z + 1 + + FREQ_CONT_PAR1 + + + + + fr.insee + l2kk296y-RDOP-l2kkit9z + 1 + OutParameter + + + fr.insee + l2kk296y-QOP-l2kkit9z + 1 + OutParameter + + + + + "A quelle fréquence communiquez-vous avec " || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " ?" + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + l2kk296y-RDOP-l2kkit9z + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + fr.insee + l2kk1ab3 + 1 + Instruction + + + + fr.insee + l4lojzxg + 1 + + PROX_EGO_PAR1 + + + fr.insee + l4lojzxg-QOP-l4lop1g7 + 1 + + PROX_EGO_PAR1 + + + + + fr.insee + l4lojzxg-RDOP-l4lop1g7 + 1 + OutParameter + + + fr.insee + l4lojzxg-QOP-l4lop1g7 + 1 + OutParameter + + + + + "Vivez-vous à moins d'une heure de chez " || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lojzxg-RDOP-l4lop1g7 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l43yap7r + 1 + + PROX_FRAT_PAR1 + + + fr.insee + l43yap7r-QOP-l43xwxm8 + 1 + + PROX_FRAT_PAR1 + + + + + fr.insee + l43yap7r-RDOP-l43xwxm8 + 1 + OutParameter + + + fr.insee + l43yap7r-QOP-l43xwxm8 + 1 + OutParameter + + + + + "" || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "Votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " a-t-" || ¤ljog2d02-GOP¤ || " d'autres enfants que vous qui vivent à moins d'une heure de chez" || if (¤l2kkvar7-QOP-l2kkywzf¤="2" or isnull(¤l2kkvar7-QOP-l2kkywzf¤)) then " lui ?" else " elle ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l43yap7r-RDOP-l43xwxm8 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l5axrwsa + 1 + + EXIST_PAR2 + + + fr.insee + l5axrwsa-QOP-l5ay3o3r + 1 + + EXIST_PAR2 + + + + + fr.insee + l5axrwsa-RDOP-l5ay3o3r + 1 + OutParameter + + + fr.insee + l5axrwsa-QOP-l5ay3o3r + 1 + OutParameter + + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", avez-vous un autre parent, vivant ou non (père, mère ou personne que vous considérez comme tel) ?" + + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l5axrwsa-RDOP-l5ay3o3r + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l27ijusa + 1 + + PRENOM_PAR2 + + + fr.insee + l27ijusa-QOP-l27i3154 + 1 + + PRENOM_PAR2 + + + + + fr.insee + l27ijusa-RDOP-l27i3154 + 1 + OutParameter + + + fr.insee + l27ijusa-QOP-l27i3154 + 1 + OutParameter + + + + + "Quel est son prénom ?" + + + + + fr.insee + l27ijusa-RDOP-l27i3154 + 1 + + + + + + fr.insee + kwqfufye + 1 + + ANAI_PAR2 + + + fr.insee + kwqfufye-QOP-l0wf22g3 + 1 + + ANAI_PAR2 + + + + + fr.insee + kwqfufye-RDOP-l0wf22g3 + 1 + OutParameter + + + fr.insee + kwqfufye-QOP-l0wf22g3 + 1 + OutParameter + + + + + "Quelle est l'année de naissance de " || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " ?" + + + + + fr.insee + kwqfufye-RDOP-l0wf22g3 + 1 + + + + + fr.insee + l6c4ofs8 + 1 + Instruction + + + + fr.insee + l27ig4yy + 1 + + SEXE_PAR2 + + + fr.insee + l27ig4yy-QOP-l27ii3c9 + 1 + + SEXE_PAR2 + + + + + fr.insee + l27ig4yy-RDOP-l27ii3c9 + 1 + OutParameter + + + fr.insee + l27ig4yy-QOP-l27ii3c9 + 1 + OutParameter + + + + + "Quel est le sexe de " || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " ?" + + + + radio-button + + fr.insee + kwqir1cc + 1 + CodeList + + + fr.insee + l27ig4yy-RDOP-l27ii3c9 + 1 + + + fr.insee + kwqir1cc + 1 + CodeList + + + + + + + + fr.insee + kwqfhhge + 1 + + NATIO_PAR2 + + + fr.insee + kwqfhhge-QOP-kwqft4ub + 1 + + NATIO_PAR2 + + + + + fr.insee + kwqfhhge-RDOP-kwqft4ub + 1 + OutParameter + + + fr.insee + kwqfhhge-QOP-kwqft4ub + 1 + OutParameter + + + + + "" || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "Votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " était-" || ¤ljogcnx2-GOP¤ || " français" || ¤ljog5qlp-GOP¤ || " à la naissance ? " + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + kwqfhhge-RDOP-kwqft4ub + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l7ywxphs + 1 + + TRAV_PAR2 + + + fr.insee + l7ywxphs-QOP-l7yx8jjw + 1 + + TRAV_PAR2 + + + + + fr.insee + l7ywxphs-RDOP-l7yx8jjw + 1 + OutParameter + + + fr.insee + l7ywxphs-QOP-l7yx8jjw + 1 + OutParameter + + + + + "" || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "Votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " a-t-" || ¤ljogcnx2-GOP¤ || " déjà travaillé ? " + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l7ywxphs-RDOP-l7yx8jjw + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l1ezowxi + 1 + + PROF_PAR2H + + + fr.insee + l1ezowxi-QOP-llvz8km0 + 1 + + PROF_PAR2H + + + + + fr.insee + l1ezowxi-RDOP-llvz8km0 + 1 + OutParameter + + + fr.insee + l1ezowxi-QOP-llvz8km0 + 1 + OutParameter + + + + + "Quelle est ou était la profession de " || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " ?" + + + + + fr.insee + l1ezowxi-RDOP-llvz8km0 + 1 + + + + + fr.insee + l4o51lf6 + 1 + Instruction + + + fr.insee + l5jou9wy + 1 + Instruction + + + + fr.insee + l4qzjbsx + 1 + + PROF_PAR2F + + + fr.insee + l4qzjbsx-QOP-llvzb8qa + 1 + + PROF_PAR2F + + + + + fr.insee + l4qzjbsx-RDOP-llvzb8qa + 1 + OutParameter + + + fr.insee + l4qzjbsx-QOP-llvzb8qa + 1 + OutParameter + + + + + "Quelle est ou était la profession de " || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " ?" + + + + + fr.insee + l4qzjbsx-RDOP-llvzb8qa + 1 + + + + + fr.insee + l4qzsxov + 1 + Instruction + + + fr.insee + l5jp1tz6 + 1 + Instruction + + + + fr.insee + l444t31z + 1 + + PROF_PAR2_2 + + + fr.insee + l444t31z-QOP-l4o6zyol + 1 + + PROF_PAR2_2 + + + + + fr.insee + l444t31z-RDOP-l4o6zyol + 1 + OutParameter + + + fr.insee + l444t31z-QOP-l4o6zyol + 1 + OutParameter + + + + + "Vous n'avez pas trouvé le libellé de profession recherché dans la liste. Veuillez saisir le libellé de profession le plus précis et complet possible." + + + + + fr.insee + l444t31z-RDOP-l4o6zyol + 1 + + + + + + fr.insee + kwqfto3c + 1 + + STATUT_PAR2 + + + fr.insee + kwqfto3c-QOP-kwqg4dq2 + 1 + + STATUT_PAR2 + + + + + fr.insee + kwqfto3c-RDOP-kwqg4dq2 + 1 + OutParameter + + + fr.insee + kwqfto3c-QOP-kwqg4dq2 + 1 + OutParameter + + + + + "Quel est ou était le statut professionnel de " || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " ?" + + + + radio-button + + fr.insee + l4n5c408 + 1 + CodeList + + + fr.insee + kwqfto3c-RDOP-kwqg4dq2 + 1 + + + fr.insee + l4n5c408 + 1 + CodeList + + + + + + + + fr.insee + llgosp3i + 1 + + SAL_FP_PAR2 + + + fr.insee + llgosp3i-QOP-llgom4r9 + 1 + + SAL_FP_PAR2 + + + + + fr.insee + llgosp3i-RDOP-llgom4r9 + 1 + OutParameter + + + fr.insee + llgosp3i-QOP-llgom4r9 + 1 + OutParameter + + + + + "Dans cet emploi, " || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "votre parent" else ¤l27ijusa-QOP-l27i3154¤) || " est ou était ?" + + + + radio-button + + fr.insee + llmi5xl5 + 1 + CodeList + + + fr.insee + llgosp3i-RDOP-llgom4r9 + 1 + + + fr.insee + llmi5xl5 + 1 + CodeList + + + + + + + + fr.insee + llgrqyqg + 1 + + SAL_ENT_PAR2 + + + fr.insee + llgrqyqg-QOP-llgs2ez2 + 1 + + SAL_ENT_PAR2 + + + + + fr.insee + llgrqyqg-RDOP-llgs2ez2 + 1 + OutParameter + + + fr.insee + llgrqyqg-QOP-llgs2ez2 + 1 + OutParameter + + + + + "Dans cet emploi, " || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "votre parent" else ¤l27ijusa-QOP-l27i3154¤) || " est ou était ?" + + + + radio-button + + fr.insee + llgry90d + 1 + CodeList + + + fr.insee + llgrqyqg-RDOP-llgs2ez2 + 1 + + + fr.insee + llgry90d + 1 + CodeList + + + + + + + + fr.insee + l1ezgxe3 + 1 + + LANGUE1_PAR2 + + + fr.insee + l1ezgxe3-QOP-llvz4083 + 1 + + LANGUE1_PAR2 + + + + + fr.insee + l1ezgxe3-RDOP-llvz4083 + 1 + OutParameter + + + fr.insee + l1ezgxe3-QOP-llvz4083 + 1 + OutParameter + + + + + "En quelle langue, dialecte, ou patois " || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " vous parlait-" || ¤ljogcnx2-GOP¤ || ", quand vous étiez enfant ?" + + + + + fr.insee + l1ezgxe3-RDOP-llvz4083 + 1 + + + + + fr.insee + laiaof32 + 1 + Instruction + + + fr.insee + laiap5v8 + 1 + Instruction + + + + fr.insee + l444xjux + 1 + + LANGUE2_PAR2 + + + fr.insee + l444xjux-QOP-llvzbbbd + 1 + + LANGUE2_PAR2 + + + + + fr.insee + l444xjux-RDOP-llvzbbbd + 1 + OutParameter + + + fr.insee + l444xjux-QOP-llvzbbbd + 1 + OutParameter + + + + + "Y-a-t-il une autre langue, dialecte ou patois ?" + + + + + fr.insee + l444xjux-RDOP-llvzbbbd + 1 + + + + + fr.insee + l4o6tj9q + 1 + Instruction + + + + fr.insee + kwqhjfzk + 1 + + VIV_PAR2 + + + fr.insee + kwqhjfzk-QOP-kwqhv63j + 1 + + VIV_PAR2 + + + + + fr.insee + kwqhjfzk-RDOP-kwqhv63j + 1 + OutParameter + + + fr.insee + kwqhjfzk-QOP-kwqhv63j + 1 + OutParameter + + + + + "" || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "Votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " est-" || ¤ljogcnx2-GOP¤ || " encore en vie ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + kwqhjfzk-RDOP-kwqhv63j + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + kwqg35i9 + 1 + + ANNEE_DC_PAR2 + + + fr.insee + kwqg35i9-QOP-kwqg1sjf + 1 + + ANNEE_DC_PAR2 + + + + + fr.insee + kwqg35i9-RDOP-kwqg1sjf + 1 + OutParameter + + + fr.insee + kwqg35i9-QOP-kwqg1sjf + 1 + OutParameter + + + + + "En quelle année environ " || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " est-" || ¤ljogcnx2-GOP¤ || " décédé" || ¤ljog5qlp-GOP¤ || " ?" + + + + + fr.insee + kwqg35i9-RDOP-kwqg1sjf + 1 + + + + + + fr.insee + lab6xfk9 + 1 + + LOG_PAR2B + + + fr.insee + lab6xfk9-QOP-lab73lgn + 1 + + LOG_PAR2B + + + + + fr.insee + lab6xfk9-RDOP-lab73lgn + 1 + OutParameter + + + fr.insee + lab6xfk9-QOP-lab73lgn + 1 + OutParameter + + + + + "Où vit " || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " ?" + + + + radio-button + + fr.insee + kwqjgcfw + 1 + CodeList + + + fr.insee + lab6xfk9-RDOP-lab73lgn + 1 + + + fr.insee + kwqjgcfw + 1 + CodeList + + + + + + + + fr.insee + kwqgawqp + 1 + + FR_PAR2 + + + fr.insee + kwqgawqp-QOP-kwqgeipr + 1 + + FR_PAR2 + + + + + fr.insee + kwqgawqp-RDOP-kwqgeipr + 1 + OutParameter + + + fr.insee + kwqgawqp-QOP-kwqgeipr + 1 + OutParameter + + + + + "" || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "Votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " vit-" || ¤ljogcnx2-GOP¤ || " en France ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + kwqgawqp-RDOP-kwqgeipr + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + lai7elua + 1 + Instruction + + + + fr.insee + l4o8co0c + 1 + + DEP_PAR2 + + + fr.insee + l4o8co0c-QOP-llvyr5wh + 1 + + DEP_PAR2 + + + + + fr.insee + l4o8co0c-RDOP-llvyr5wh + 1 + OutParameter + + + fr.insee + l4o8co0c-QOP-llvyr5wh + 1 + OutParameter + + + + + "Dans quel département vit " || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " ?" + + + + + fr.insee + l4o8co0c-RDOP-llvyr5wh + 1 + + + + + fr.insee + l4o87prg + 1 + Instruction + + + + fr.insee + l4onk34z + 1 + + COM_PAR2 + + + fr.insee + l4onk34z-QOP-llvz0ewe + 1 + + COM_PAR2 + + + + + fr.insee + l4onk34z-RDOP-llvz0ewe + 1 + OutParameter + + + fr.insee + l4onk34z-QOP-llvz0ewe + 1 + OutParameter + + + + + "Dans quelle commune vit " || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " ?" + + + + + fr.insee + l4onk34z-RDOP-llvz0ewe + 1 + + + + + fr.insee + l4ondms9 + 1 + Instruction + + + + fr.insee + l4o8dk7q + 1 + + PAY_PAR2 + + + fr.insee + l4o8dk7q-QOP-llvyu3jn + 1 + + PAY_PAR2 + + + + + fr.insee + l4o8dk7q-RDOP-llvyu3jn + 1 + OutParameter + + + fr.insee + l4o8dk7q-QOP-llvyu3jn + 1 + OutParameter + + + + + "Dans quel pays vit " || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " ?" + + + + + fr.insee + l4o8dk7q-RDOP-llvyu3jn + 1 + + + + + fr.insee + l4o8fiwd + 1 + Instruction + + + + fr.insee + l2kkc8s9 + 1 + + ETAB_PAR2 + + + fr.insee + l2kkc8s9-QOP-l2kkfxvm + 1 + + ETAB_PAR2 + + + + + fr.insee + l2kkc8s9-RDOP-l2kkfxvm + 1 + OutParameter + + + fr.insee + l2kkc8s9-QOP-l2kkfxvm + 1 + OutParameter + + + + + "" || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "Votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " vit-" || ¤ljogcnx2-GOP¤ || " dans un établissement pour personnes âgées ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l2kkc8s9-RDOP-l2kkfxvm + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l2kjzgxz + 1 + Instruction + + + + fr.insee + l1gl4054 + 1 + + FREQ_VU_PAR2 + + + fr.insee + l1gl4054-QOP-l1gl5e3e + 1 + + FREQ_VU_PAR2 + + + + + fr.insee + l1gl4054-RDOP-l1gl5e3e + 1 + OutParameter + + + fr.insee + l1gl4054-QOP-l1gl5e3e + 1 + OutParameter + + + + + "A quelle fréquence voyez-vous " || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " ?" + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + l1gl4054-RDOP-l1gl5e3e + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + fr.insee + l1gkryh5 + 1 + Instruction + + + + fr.insee + l1ezkbsf + 1 + + FREQ_CONT_PAR2 + + + fr.insee + l1ezkbsf-QOP-l1ezevjd + 1 + + FREQ_CONT_PAR2 + + + + + fr.insee + l1ezkbsf-RDOP-l1ezevjd + 1 + OutParameter + + + fr.insee + l1ezkbsf-QOP-l1ezevjd + 1 + OutParameter + + + + + "A quelle fréquence communiquez-vous avec " || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " ?" + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + l1ezkbsf-RDOP-l1ezevjd + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + fr.insee + l1ezs1o9 + 1 + Instruction + + + + fr.insee + l445itcb + 1 + + PROX_EGO_PAR2 + + + fr.insee + l445itcb-QOP-l445hldo + 1 + + PROX_EGO_PAR2 + + + + + fr.insee + l445itcb-RDOP-l445hldo + 1 + OutParameter + + + fr.insee + l445itcb-QOP-l445hldo + 1 + OutParameter + + + + + "Vivez-vous à moins d'une heure de chez " || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l445itcb-RDOP-l445hldo + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4cjeqc0 + 1 + + PROX_FRAT_PAR2 + + + fr.insee + l4cjeqc0-QOP-l4ciywxr + 1 + + PROX_FRAT_PAR2 + + + + + fr.insee + l4cjeqc0-RDOP-l4ciywxr + 1 + OutParameter + + + fr.insee + l4cjeqc0-QOP-l4ciywxr + 1 + OutParameter + + + + + "" || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "Votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " a-t-" || ¤ljogcnx2-GOP¤ || " d'autres enfants que vous qui vivent à moins d'une heure de chez" || if (¤l27ig4yy-QOP-l27ii3c9¤="2" or isnull(¤l27ig4yy-QOP-l27ii3c9¤)) then " lui ?" else " elle ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4cjeqc0-RDOP-l4ciywxr + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l473kp51 + 1 + + NB_FRERES + + + fr.insee + l473kp51-QOP-l473rzw1 + 1 + + NB_FRERES + + + + + fr.insee + l473kp51-RDOP-l473rzw1 + 1 + OutParameter + + + fr.insee + l473kp51-QOP-l473rzw1 + 1 + OutParameter + + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", combien de frères avez-vous eus ?" + + + + + 0 + 20 + + Decimal + + fr.insee + l473kp51-RDOP-l473rzw1 + 1 + + + + fr.insee + l4omms3t + 1 + Instruction + + + fr.insee + l8m20psg + 1 + Instruction + + + + fr.insee + l5ikk5zq + 1 + + NB_FRERES_VIV1 + + + fr.insee + l5ikk5zq-QOP-l5iken9h + 1 + + NB_FRERES_VIV1 + + + + + fr.insee + l5ikk5zq-RDOP-l5iken9h + 1 + OutParameter + + + fr.insee + l5ikk5zq-QOP-l5iken9h + 1 + OutParameter + + + + + "Est-il encore en vie ?" + + + + radio-button + + fr.insee + l4onk0te + 1 + CodeList + + + fr.insee + l5ikk5zq-RDOP-l5iken9h + 1 + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + + + fr.insee + l4740wd1 + 1 + + NB_FRERES_VIV + + + fr.insee + l4740wd1-QOP-l473vroh + 1 + + NB_FRERES_VIV + + + + + fr.insee + l4740wd1-RDOP-l473vroh + 1 + OutParameter + + + fr.insee + l4740wd1-QOP-l473vroh + 1 + OutParameter + + + + + "Combien sont encore en vie ?" + + + + + 0 + 20 + + Decimal + + fr.insee + l4740wd1-RDOP-l473vroh + 1 + + + + + fr.insee + l4742c2v + 1 + + NB_SOEURS + + + fr.insee + l4742c2v-QOP-l473q5ei + 1 + + NB_SOEURS + + + + + fr.insee + l4742c2v-RDOP-l473q5ei + 1 + OutParameter + + + fr.insee + l4742c2v-QOP-l473q5ei + 1 + OutParameter + + + + + "Combien de soeurs avez-vous eues ?" + + + + + 0 + 20 + + Decimal + + fr.insee + l4742c2v-RDOP-l473q5ei + 1 + + + + fr.insee + l4omj0xx + 1 + Instruction + + + fr.insee + l8m2azyh + 1 + Instruction + + + + fr.insee + l5ikyrbc + 1 + + NB_SOEURS_VIV1 + + + fr.insee + l5ikyrbc-QOP-l5ikxm9l + 1 + + NB_SOEURS_VIV1 + + + + + fr.insee + l5ikyrbc-RDOP-l5ikxm9l + 1 + OutParameter + + + fr.insee + l5ikyrbc-QOP-l5ikxm9l + 1 + OutParameter + + + + + "Est-elle encore en vie ?" + + + + radio-button + + fr.insee + l4onk0te + 1 + CodeList + + + fr.insee + l5ikyrbc-RDOP-l5ikxm9l + 1 + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + + + fr.insee + l473w273 + 1 + + NB_SOEURS_VIV + + + fr.insee + l473w273-QOP-l4741u6l + 1 + + NB_SOEURS_VIV + + + + + fr.insee + l473w273-RDOP-l4741u6l + 1 + OutParameter + + + fr.insee + l473w273-QOP-l4741u6l + 1 + OutParameter + + + + + "Combien sont encore en vie ?" + + + + + 0 + 20 + + Decimal + + fr.insee + l473w273-RDOP-l4741u6l + 1 + + + + + fr.insee + l1f5th3i + 1 + + AG_DEP_PARENT + + + fr.insee + l1f5th3i-QOP-l1f5ynl3 + 1 + + AG_DEP_PARENT + + + + + fr.insee + l1f5th3i-RDOP-l1f5ynl3 + 1 + OutParameter + + + fr.insee + l1f5th3i-QOP-l1f5ynl3 + 1 + OutParameter + + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", à quel âge êtes-vous parti" || (if (¤ln0892lt-GOP¤="2") then "e" else "") || " de chez " || (if (¤l5axrwsa-QOP-l5ay3o3r¤= "2") then "votre parent" else "vos parents") || " pour la première fois ?" + + + + + 0 + 100 + + Decimal + + fr.insee + l1f5th3i-RDOP-l1f5ynl3 + 1 + + + + fr.insee + l1f5lf8v + 1 + Instruction + + + fr.insee + l4s7ngqv + 1 + Instruction + + + + fr.insee + l43ttd47 + 1 + + VECU_PLACE + + + fr.insee + l43ttd47-QOP-l43tsfar + 1 + + VECU_PLACE + + + + + fr.insee + l43ttd47-RDOP-l43tsfar + 1 + OutParameter + + + fr.insee + l43ttd47-QOP-l43tsfar + 1 + OutParameter + + + + + "Avez-vous vécu sans vos parents, à la suite d'une décision du juge, de l'ASE ou de la DDASS (placement en foyer, famille d'accueil, chez une personne de la famille ou autre) ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l43ttd47-RDOP-l43tsfar + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l1f65zkh + 1 + + HEBERG + + + fr.insee + l1f65zkh-QOP-l1f6bv9c + 1 + + HEBERG + + + + + fr.insee + l1f65zkh-RDOP-l1f6bv9c + 1 + OutParameter + + + fr.insee + l1f65zkh-QOP-l1f6bv9c + 1 + OutParameter + + + + + "Au cours de votre vie, avez-vous été hébergé" || (if (isnull(¤ln0892lt-GOP¤)) then "" else (if (¤ln0892lt-GOP¤ = "2") then "e" else "")) || " dans un centre d'hébergement, un hôtel social, un centre d'accueil pour demandeurs d'asile ou réfugiés, ou avez-vous vécu à la rue ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l1f65zkh-RDOP-l1f6bv9c + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l1g3unwh + 1 + + FINETU + + + fr.insee + l1g3unwh-QOP-l1g3npll + 1 + + FINETU + + + + + fr.insee + l1g3unwh-RDOP-l1g3npll + 1 + OutParameter + + + fr.insee + l1g3unwh-QOP-l1g3npll + 1 + OutParameter + + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", avez-vous terminé vos études intiales ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l1g3unwh-RDOP-l1g3npll + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + lletj5dq + 1 + Instruction + + + + fr.insee + l1g3yk6q + 1 + + ANNEE_FINETU + + + fr.insee + l1g3yk6q-QOP-l1g42814 + 1 + + ANNEE_FINETU + + + + + fr.insee + l1g3yk6q-RDOP-l1g42814 + 1 + OutParameter + + + fr.insee + l1g3yk6q-QOP-l1g42814 + 1 + OutParameter + + + + + "En quelle année les avez-vous terminées ?" + + + + + fr.insee + l1g3yk6q-RDOP-l1g42814 + 1 + + + + + + fr.insee + l1g7pgbn + 1 + + DEJATRAV + + + fr.insee + l1g7pgbn-QOP-l1g7tm7z + 1 + + DEJATRAV + + + + + fr.insee + l1g7pgbn-RDOP-l1g7tm7z + 1 + OutParameter + + + fr.insee + l1g7pgbn-QOP-l1g7tm7z + 1 + OutParameter + + + + + "Avez-vous déjà travaillé pendant au moins trois mois de suite, y compris en apprentissage ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l1g7pgbn-RDOP-l1g7tm7z + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l1g4pid1 + 1 + + ANNEE_EMPLOI1 + + + fr.insee + l1g4pid1-QOP-l1g4r0qn + 1 + + ANNEE_EMPLOI1 + + + + + fr.insee + l1g4pid1-RDOP-l1g4r0qn + 1 + OutParameter + + + fr.insee + l1g4pid1-QOP-l1g4r0qn + 1 + OutParameter + + + + + "En quelle année avez-vous travaillé pour la première fois ?" + + + + + fr.insee + l1g4pid1-RDOP-l1g4r0qn + 1 + + + + + + fr.insee + l445x7tq + 1 + + TRAVACT + + + fr.insee + l445x7tq-QOP-l445yz7o + 1 + + TRAVACT + + + + + fr.insee + l445x7tq-RDOP-l445yz7o + 1 + OutParameter + + + fr.insee + l445x7tq-QOP-l445yz7o + 1 + OutParameter + + + + + "Travaillez-vous actuellement ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l445x7tq-RDOP-l445yz7o + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l1g7iu0j + 1 + + ANNEE_FINEMP + + + fr.insee + l1g7iu0j-QOP-l1g7p8dq + 1 + + ANNEE_FINEMP + + + + + fr.insee + l1g7iu0j-RDOP-l1g7p8dq + 1 + OutParameter + + + fr.insee + l1g7iu0j-QOP-l1g7p8dq + 1 + OutParameter + + + + + "En quelle année avez-vous arrêté ?" + + + + + fr.insee + l1g7iu0j-RDOP-l1g7p8dq + 1 + + + + + + fr.insee + l1g7vwo6 + 1 + + INTER_TRAV1 + + + fr.insee + l1g7vwo6-QOP-lleu3ict + 1 + + INTER_TRAV1 + + + + + fr.insee + l1g7vwo6-RDOP-lleu3ict + 1 + OutParameter + + + fr.insee + l1g7vwo6-QOP-lleu3ict + 1 + OutParameter + + + + + "Depuis votre premier emploi, avez-vous toujours travaillé sans interruption ? " + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l1g7vwo6-RDOP-lleu3ict + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lletbq7t + 1 + + INTER_TRAV2 + + + fr.insee + lletbq7t-QOP-lletstp8 + 1 + + INTER_TRAV2 + + + + + fr.insee + lletbq7t-RDOP-lletstp8 + 1 + OutParameter + + + fr.insee + lletbq7t-QOP-lletstp8 + 1 + OutParameter + + + + + "Depuis votre premier emploi, avez-vous eu une ou des périodes de chômage de plus de six mois ? " + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lletbq7t-RDOP-lletstp8 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lletqevy + 1 + + INTER_TRAV3 + + + fr.insee + lletqevy-QOP-lletwvhh + 1 + + INTER_TRAV3 + + + + + fr.insee + lletqevy-RDOP-lletwvhh + 1 + OutParameter + + + fr.insee + lletqevy-QOP-lletwvhh + 1 + OutParameter + + + + + "Depuis votre premier emploi, avez-vous eu d'autres interruptions de plus de six mois ? " + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lletqevy-RDOP-lletwvhh + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + lletg3z8 + 1 + Instruction + + + + fr.insee + ljwxkrnl + 1 + + PRENOM_FIN + + + fr.insee + ljwxkrnl-QOP-ljwxfacv + 1 + + PRENOM_FIN + + + + + fr.insee + ljwxkrnl-RDOP-ljwxfacv + 1 + OutParameter + + + fr.insee + ljwxkrnl-QOP-ljwxfacv + 1 + OutParameter + + + + + "Pouvez-vous indiquer qui a répondu au questionnaire ?" + + + + radio-button + + fr.insee + ljwxdg2x + 1 + CodeList + + + fr.insee + ljwxkrnl-RDOP-ljwxfacv + 1 + + + fr.insee + ljwxdg2x + 1 + CodeList + + + + + + + + fr.insee + lamjnyx4 + 1 + + PRENOM_PROX + + + fr.insee + lamjnyx4-QOP-lamjnllg + 1 + + PRENOM_PROX + + + + + fr.insee + lamjnyx4-RDOP-lamjnllg + 1 + OutParameter + + + fr.insee + lamjnyx4-QOP-lamjnllg + 1 + OutParameter + + + + + "Quel est votre prénom ?" + + + + + fr.insee + lamjnyx4-RDOP-lamjnllg + 1 + + + + + + fr.insee + lm4w39kw + 1 + + AVIS_FILTRE + + + fr.insee + lm4w39kw-QOP-lm4xzq82 + 1 + + AVIS_FILTRE + + + + + fr.insee + lm4w39kw-RDOP-lm4xzq82 + 1 + OutParameter + + + fr.insee + lm4w39kw-QOP-lm4xzq82 + 1 + OutParameter + + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", vous venez de répondre à l’enquête Familles 2024. Nous vous en remercions et aimerions bénéficier de votre avis pour améliorer cette enquête en vue de sa réédition en 2025. Acceptez-vous de répondre à quelques questions ?" + + + + radio-button + + fr.insee + lm4vxed5 + 1 + CodeList + + + fr.insee + lm4w39kw-RDOP-lm4xzq82 + 1 + + + fr.insee + lm4vxed5 + 1 + CodeList + + + + + + + + fr.insee + lnbss8ix + 1 + + AVIS_FILTRE_P + + + fr.insee + lnbss8ix-QOP-lnbt0dc4 + 1 + + AVIS_FILTRE_P + + + + + fr.insee + lnbss8ix-RDOP-lnbt0dc4 + 1 + OutParameter + + + fr.insee + lnbss8ix-QOP-lnbt0dc4 + 1 + OutParameter + + + + + nvl(¤lamjnyx4-QOP-lamjnllg¤,"Madame/Monsieur") || ", vous venez de répondre à l’enquête Familles 2024. Nous vous en remercions et aimerions bénéficier de votre avis pour améliorer cette enquête en vue de sa réédition en 2025. Acceptez-vous de répondre à quelques questions ?" + + + + radio-button + + fr.insee + lm4vxed5 + 1 + CodeList + + + fr.insee + lnbss8ix-RDOP-lnbt0dc4 + 1 + + + fr.insee + lm4vxed5 + 1 + CodeList + + + + + + + + fr.insee + lm4vxp7a + 1 + + AVIS_RMQ + + + fr.insee + lm4vxp7a-QOP-lm4xyv3t + 1 + + AVIS_RMQ + + + + + fr.insee + lm4vxp7a-RDOP-lm4xyv3t + 1 + OutParameter + + + fr.insee + lm4vxp7a-QOP-lm4xyv3t + 1 + OutParameter + + + + + "Dans ce cas, pouvez-vous indiquer vos remarques et vos suggestions d’amélioration ?" + + + + + fr.insee + lm4vxp7a-RDOP-lm4xyv3t + 1 + + + + + + fr.insee + lmrsfyuh + 1 + + AVIS_AR + + + fr.insee + lmrsfyuh-QOP-lmrsqwss + 1 + + AVIS_AR + + + + + fr.insee + lmrsfyuh-RDOP-lmrsqwss + 1 + OutParameter + + + fr.insee + lmrsfyuh-QOP-lmrsqwss + 1 + OutParameter + + + + + "L'agent recenseur vous-a-t-il parlé de l'enquête Familles ?" + + + + radio-button + + fr.insee + lmrsjojv + 1 + CodeList + + + fr.insee + lmrsfyuh-RDOP-lmrsqwss + 1 + + + fr.insee + lmrsjojv + 1 + CodeList + + + + + + + + fr.insee + lmrscuvs + 1 + + AVIS_NOTICE + + + fr.insee + lmrscuvs-QOP-lmrsy3l0 + 1 + + AVIS_NOTICE + + + + + fr.insee + lmrscuvs-RDOP-lmrsy3l0 + 1 + OutParameter + + + fr.insee + lmrscuvs-QOP-lmrsy3l0 + 1 + OutParameter + + + + + "La notice Enquête Familles qui vous a été remise vous a-t-elle été utile ?" + + + + radio-button + + fr.insee + lmrsjetq + 1 + CodeList + + + fr.insee + lmrscuvs-RDOP-lmrsy3l0 + 1 + + + fr.insee + lmrsjetq + 1 + CodeList + + + + + + + + fr.insee + lmrssoql + 1 + + AVIS_RAIS_NOTICE + + + fr.insee + lmrssoql-QOP-lmrslj85 + 1 + + AVIS_RAIS_NOTICE + + + + + fr.insee + lmrssoql-RDOP-lmrslj85 + 1 + OutParameter + + + fr.insee + lmrssoql-QOP-lmrslj85 + 1 + OutParameter + + + + + "Pouvez-vous préciser les informations que vous auriez aimé y trouver ?" + + + + + fr.insee + lmrssoql-RDOP-lmrslj85 + 1 + + + + + + fr.insee + lmrtsn5f + 1 + + AVIS_SITE_NET + + + fr.insee + lmrtsn5f-QOP-lmrtv32i + 1 + + AVIS_SITE_NET + + + + + fr.insee + lmrtsn5f-RDOP-lmrtv32i + 1 + OutParameter + + + fr.insee + lmrtsn5f-QOP-lmrtv32i + 1 + OutParameter + + + + + "Avez-vous consulté la page internet sur insee.fr qui présente l’Enquête Familles (Accueil > Services > Répondre à une enquête de l'Insee > Enquêtes auprès des particuliers > Présentation des enquêtes auprès des particuliers > Enquête Familles 2024) (https://www.insee.fr/fr/information/6659341) ?" + + + + radio-button + + fr.insee + lmrtk3dn + 1 + CodeList + + + fr.insee + lmrtsn5f-RDOP-lmrtv32i + 1 + + + fr.insee + lmrtk3dn + 1 + CodeList + + + + + + + + fr.insee + lmrtt1a2 + 1 + + AVIS_RAIS_SITE + + + fr.insee + lmrtt1a2-QOP-lmrtb5m2 + 1 + + AVIS_RAIS_SITE + + + + + fr.insee + lmrtt1a2-RDOP-lmrtb5m2 + 1 + OutParameter + + + fr.insee + lmrtt1a2-QOP-lmrtb5m2 + 1 + OutParameter + + + + + "Pouvez-vous préciser les informations que vous auriez aimé y trouver ?" + + + + + fr.insee + lmrtt1a2-RDOP-lmrtb5m2 + 1 + + + + + + fr.insee + ln912ymy + 1 + + AVIS_MAIL + + + fr.insee + ln912ymy-QOP-ln90w8kn + 1 + + AVIS_MAIL + + + + + fr.insee + ln912ymy-RDOP-ln90w8kn + 1 + OutParameter + + + fr.insee + ln912ymy-QOP-ln90w8kn + 1 + OutParameter + + + + + "Qui a reçu le mail vous invitant à répondre à l’enquête Familles ?" + + + + radio-button + + fr.insee + ln90sqiu + 1 + CodeList + + + fr.insee + ln912ymy-RDOP-ln90w8kn + 1 + + + fr.insee + ln90sqiu + 1 + CodeList + + + + + + + + fr.insee + lna2b92s + 1 + + AVIS_TEL + + + fr.insee + lna2b92s-QOP-lna3bcsp + 1 + + AVIS_TEL + + + + + fr.insee + lna2b92s-RDOP-lna3bcsp + 1 + OutParameter + + + fr.insee + lna2b92s-QOP-lna3bcsp + 1 + OutParameter + + + + + "Auriez-vous préféré répondre avec un enquêteur par téléphone ?" + + + + radio-button + + fr.insee + lna263dc + 1 + CodeList + + + fr.insee + lna2b92s-RDOP-lna3bcsp + 1 + + + fr.insee + lna263dc + 1 + CodeList + + + + + + + + fr.insee + lna24vso + 1 + + AVIS_QUEST + + + fr.insee + lna24vso-QOP-lna3p2ls + 1 + + AVIS_QUEST + + + + + fr.insee + lna24vso-RDOP-lna3p2ls + 1 + OutParameter + + + fr.insee + lna24vso-QOP-lna3p2ls + 1 + OutParameter + + + + + "Merci d’indiquer le plus précisément possible la/(les) question(s) qui vous ont posé des difficultés et les difficultés que vous avez rencontrées." + + + + + fr.insee + lna24vso-RDOP-lna3p2ls + 1 + + + + + + fr.insee + lna2aygn + 1 + + AVIS_AUTR_DIFF + + + fr.insee + lna2aygn-QOP-lna2mb8t + 1 + + AVIS_AUTR_DIFF + + + + + fr.insee + lna2aygn-RDOP-lna2mb8t + 1 + OutParameter + + + fr.insee + lna2aygn-QOP-lna2mb8t + 1 + OutParameter + + + + + "Pouvez-vous préciser ces autres difficultés ?" + + + + + fr.insee + lna2aygn-RDOP-lna2mb8t + 1 + + + + + + fr.insee + lna2jxe5 + 1 + + AVIS_ORDRE + + + fr.insee + lna2jxe5-QOP-lna3fdxl + 1 + + AVIS_ORDRE + + + + + fr.insee + lna2jxe5-RDOP-lna3fdxl + 1 + OutParameter + + + fr.insee + lna2jxe5-QOP-lna3fdxl + 1 + OutParameter + + + + + "Est-ce que cela vous a gêné que l’ordre de remplissage des questionnaires de" || (if (¤ln0892lt-GOP¤="1") then " tous les hommes majeurs" else " toutes les femmes majeures") || " de votre ménage soit imposé ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lna2jxe5-RDOP-lna3fdxl + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lna2hnnt + 1 + + AVIS_ASSIST + + + fr.insee + lna2hnnt-QOP-lna374rk + 1 + + AVIS_ASSIST + + + + + fr.insee + lna2hnnt-RDOP-lna374rk + 1 + OutParameter + + + fr.insee + lna2hnnt-QOP-lna374rk + 1 + OutParameter + + + + + "Avez-vous contacté l’assistance (par téléphone, mail) ou demandé de l’aide à l’agent recenseur ?" + + + + radio-button + + fr.insee + lna2mshx + 1 + CodeList + + + fr.insee + lna2hnnt-RDOP-lna374rk + 1 + + + fr.insee + lna2mshx + 1 + CodeList + + + + + + + + fr.insee + lna2fkqe + 1 + + AVIS_RMQ_FIN + + + fr.insee + lna2fkqe-QOP-lna2wl0f + 1 + + AVIS_RMQ_FIN + + + + + fr.insee + lna2fkqe-RDOP-lna2wl0f + 1 + OutParameter + + + fr.insee + lna2fkqe-QOP-lna2wl0f + 1 + OutParameter + + + + + "Avez-vous d’autres remarques ou suggestions pour améliorer cette enquête ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lna2fkqe-RDOP-lna2wl0f + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lna2hbsx + 1 + + AVIS_AUTR_RMQ + + + fr.insee + lna2hbsx-QOP-lna2pz8m + 1 + + AVIS_AUTR_RMQ + + + + + fr.insee + lna2hbsx-RDOP-lna2pz8m + 1 + OutParameter + + + fr.insee + lna2hbsx-QOP-lna2pz8m + 1 + OutParameter + + + + + "Pouvez-vous indiquer vos remarques sur l’enquête et vos suggestions d’amélioration ?" + + + + + fr.insee + lna2hbsx-RDOP-lna2pz8m + 1 + + + + + + fr.insee + l43xg8do + 1 + + ENF21_AUTPAR_C + + + fr.insee + l43xg8do-QOP-lnbudt2m + 1 + + ENF21_AUTPAR_C1 + + + + fr.insee + l43xg8do-QOP-lnbuglr5 + 1 + + ENF21_AUTPAR_C2 + + + + fr.insee + l43xg8do-QOP-lnbuhhca + 1 + + ENF21_AUTPAR_C3 + + + + fr.insee + l43xg8do-QOP-lnbuk0ua + 1 + + ENF21_AUTPAR_C4 + + + + + fr.insee + l43xg8do-RDOP-lnbudt2m + 1 + OutParameter + + + fr.insee + l43xg8do-QOP-lnbudt2m + 1 + OutParameter + + + + + fr.insee + l43xg8do-RDOP-lnbuglr5 + 1 + OutParameter + + + fr.insee + l43xg8do-QOP-lnbuglr5 + 1 + OutParameter + + + + + fr.insee + l43xg8do-RDOP-lnbuhhca + 1 + OutParameter + + + fr.insee + l43xg8do-QOP-lnbuhhca + 1 + OutParameter + + + + + fr.insee + l43xg8do-RDOP-lnbuk0ua + 1 + OutParameter + + + fr.insee + l43xg8do-QOP-lnbuk0ua + 1 + OutParameter + + + + + "" || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (((if ((¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "Votre conjoint" else "Votre conjointe"))) else ¤l34grb6h-QOP-l34guyz9¤) || " a-t-" || (if ((¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤))or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "il" else "elle") || " des enfants de moins de 21 ans qui vivent avec leur autre parent ?" + + + + + + fr.insee + l43x5eph + 1 + CodeList + + + + + + + + fr.insee + l43xg8do-RDOP-lnbudt2m + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l43xg8do-RDOP-lnbuglr5 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l43xg8do-RDOP-lnbuhhca + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l43xg8do-RDOP-lnbuk0ua + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l484uyl9 + 1 + Instruction + + + + fr.insee + l1gia5uh + 1 + + SANTE_ENFLOG1 + + + fr.insee + l1gia5uh-QOP-la6vclx9 + 1 + + SANTE_ENFLOG11 + + + + fr.insee + l1gia5uh-QOP-la6vj3fw + 1 + + SANTE_ENFLOG12 + + + + fr.insee + l1gia5uh-QOP-la6vaa94 + 1 + + SANTE_ENFLOG13 + + + + fr.insee + l1gia5uh-QOP-la6v5qj3 + 1 + + SANTE_ENFLOG14 + + + + + fr.insee + l1gia5uh-RDOP-la6vclx9 + 1 + OutParameter + + + fr.insee + l1gia5uh-QOP-la6vclx9 + 1 + OutParameter + + + + + fr.insee + l1gia5uh-RDOP-la6vj3fw + 1 + OutParameter + + + fr.insee + l1gia5uh-QOP-la6vj3fw + 1 + OutParameter + + + + + fr.insee + l1gia5uh-RDOP-la6vaa94 + 1 + OutParameter + + + fr.insee + l1gia5uh-QOP-la6vaa94 + 1 + OutParameter + + + + + fr.insee + l1gia5uh-RDOP-la6v5qj3 + 1 + OutParameter + + + fr.insee + l1gia5uh-QOP-la6v5qj3 + 1 + OutParameter + + + + + "" || (if (nvl(¤l446nede-QOP-l446c5pz¤,"")="") then "Cet enfant" else ¤l446nede-QOP-l446c5pz¤) || " vit-" || (if (¤kwqjk80w-QOP-kwqjqaig¤="1" or isnull(¤kwqjk80w-QOP-kwqjqaig¤)) then "il" else "elle") || " aussi ailleurs ?" + + + + + + fr.insee + l59njrta + 1 + CodeList + + + + + + + + fr.insee + l1gia5uh-RDOP-la6vclx9 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1gia5uh-RDOP-la6vj3fw + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1gia5uh-RDOP-la6vaa94 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1gia5uh-RDOP-la6v5qj3 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l59nppaa + 1 + Instruction + + + + fr.insee + l4ia7y0p + 1 + + SANTE_ENFLOG2 + + + fr.insee + l4ia7y0p-QOP-laqv5c3y + 1 + + SANTE_ENFLOG21 + + + + fr.insee + l4ia7y0p-QOP-laqv4eoa + 1 + + SANTE_ENFLOG22 + + + + fr.insee + l4ia7y0p-QOP-laquos4t + 1 + + SANTE_ENFLOG23 + + + + fr.insee + l4ia7y0p-QOP-laqupuni + 1 + + SANTE_ENFLOG24 + + + + + fr.insee + l4ia7y0p-RDOP-laqv5c3y + 1 + OutParameter + + + fr.insee + l4ia7y0p-QOP-laqv5c3y + 1 + OutParameter + + + + + fr.insee + l4ia7y0p-RDOP-laqv4eoa + 1 + OutParameter + + + fr.insee + l4ia7y0p-QOP-laqv4eoa + 1 + OutParameter + + + + + fr.insee + l4ia7y0p-RDOP-laquos4t + 1 + OutParameter + + + fr.insee + l4ia7y0p-QOP-laquos4t + 1 + OutParameter + + + + + fr.insee + l4ia7y0p-RDOP-laqupuni + 1 + OutParameter + + + fr.insee + l4ia7y0p-QOP-laqupuni + 1 + OutParameter + + + + + "" || (if (nvl(¤l4i9118b-QOP-l4i95yyt¤,"")="") then "Cet enfant" else ¤l4i9118b-QOP-l4i95yyt¤) || " vit-" || (if (¤l4i8zu5m-QOP-l4i9doqz¤="1" or isnull(¤l4i8zu5m-QOP-l4i9doqz¤)) then "il" else "elle") || " aussi ailleurs ?" + + + + + + fr.insee + l59njrta + 1 + CodeList + + + + + + + + fr.insee + l4ia7y0p-RDOP-laqv5c3y + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l4ia7y0p-RDOP-laqv4eoa + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l4ia7y0p-RDOP-laquos4t + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l4ia7y0p-RDOP-laqupuni + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l59nvexw + 1 + Instruction + + + + fr.insee + l4lcuoke + 1 + + SANTE_ENFLOG3 + + + fr.insee + l4lcuoke-QOP-la6v5i7c + 1 + + SANTE_ENFLOG31 + + + + fr.insee + l4lcuoke-QOP-la6vlqvx + 1 + + SANTE_ENFLOG32 + + + + fr.insee + l4lcuoke-QOP-la6vkkpx + 1 + + SANTE_ENFLOG33 + + + + fr.insee + l4lcuoke-QOP-la6vkdlt + 1 + + SANTE_ENFLOG34 + + + + + fr.insee + l4lcuoke-RDOP-la6v5i7c + 1 + OutParameter + + + fr.insee + l4lcuoke-QOP-la6v5i7c + 1 + OutParameter + + + + + fr.insee + l4lcuoke-RDOP-la6vlqvx + 1 + OutParameter + + + fr.insee + l4lcuoke-QOP-la6vlqvx + 1 + OutParameter + + + + + fr.insee + l4lcuoke-RDOP-la6vkkpx + 1 + OutParameter + + + fr.insee + l4lcuoke-QOP-la6vkkpx + 1 + OutParameter + + + + + fr.insee + l4lcuoke-RDOP-la6vkdlt + 1 + OutParameter + + + fr.insee + l4lcuoke-QOP-la6vkdlt + 1 + OutParameter + + + + + "" || (if (nvl(¤l4ld0ziw-QOP-l4lco011¤,"")="") then "Cet enfant" else ¤l4ld0ziw-QOP-l4lco011¤) || " vit-" || (if (¤l4lcp4co-QOP-l4ld0wcd¤="1" or isnull(¤l4lcp4co-QOP-l4ld0wcd¤)) then "il" else "elle") || " aussi ailleurs ?" + + + + + + fr.insee + l59njrta + 1 + CodeList + + + + + + + + fr.insee + l4lcuoke-RDOP-la6v5i7c + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l4lcuoke-RDOP-la6vlqvx + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l4lcuoke-RDOP-la6vkkpx + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l4lcuoke-RDOP-la6vkdlt + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l59o0cuh + 1 + Instruction + + + + fr.insee + l4lec2qz + 1 + + SANTE_ENFLOG4 + + + fr.insee + l4lec2qz-QOP-la6vffpf + 1 + + SANTE_ENFLOG41 + + + + fr.insee + l4lec2qz-QOP-la6vkyqn + 1 + + SANTE_ENFLOG42 + + + + fr.insee + l4lec2qz-QOP-la6vfxog + 1 + + SANTE_ENFLOG43 + + + + fr.insee + l4lec2qz-QOP-la6vkx70 + 1 + + SANTE_ENFLOG44 + + + + + fr.insee + l4lec2qz-RDOP-la6vffpf + 1 + OutParameter + + + fr.insee + l4lec2qz-QOP-la6vffpf + 1 + OutParameter + + + + + fr.insee + l4lec2qz-RDOP-la6vkyqn + 1 + OutParameter + + + fr.insee + l4lec2qz-QOP-la6vkyqn + 1 + OutParameter + + + + + fr.insee + l4lec2qz-RDOP-la6vfxog + 1 + OutParameter + + + fr.insee + l4lec2qz-QOP-la6vfxog + 1 + OutParameter + + + + + fr.insee + l4lec2qz-RDOP-la6vkx70 + 1 + OutParameter + + + fr.insee + l4lec2qz-QOP-la6vkx70 + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lec0rk-QOP-l4lefzhk¤,"")="") then "Cet enfant" else ¤l4lec0rk-QOP-l4lefzhk¤) || " vit- " || (if (¤l4lefdoh-QOP-l4le4jn4¤="1" or isnull(¤l4lefdoh-QOP-l4le4jn4¤)) then "il" else "elle") || " aussi ailleurs ?" + + + + + + fr.insee + l59njrta + 1 + CodeList + + + + + + + + fr.insee + l4lec2qz-RDOP-la6vffpf + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l4lec2qz-RDOP-la6vkyqn + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l4lec2qz-RDOP-la6vfxog + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l4lec2qz-RDOP-la6vkx70 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l59nzdj2 + 1 + Instruction + + + + fr.insee + l4lfclty + 1 + + SANTE_ENFLOG5 + + + fr.insee + l4lfclty-QOP-la6vpzpe + 1 + + SANTE_ENFLOG51 + + + + fr.insee + l4lfclty-QOP-la6vhlmp + 1 + + SANTE_ENFLOG52 + + + + fr.insee + l4lfclty-QOP-la6vcgh1 + 1 + + SANTE_ENFLOG53 + + + + fr.insee + l4lfclty-QOP-la6v7y36 + 1 + + SANTE_ENFLOG54 + + + + + fr.insee + l4lfclty-RDOP-la6vpzpe + 1 + OutParameter + + + fr.insee + l4lfclty-QOP-la6vpzpe + 1 + OutParameter + + + + + fr.insee + l4lfclty-RDOP-la6vhlmp + 1 + OutParameter + + + fr.insee + l4lfclty-QOP-la6vhlmp + 1 + OutParameter + + + + + fr.insee + l4lfclty-RDOP-la6vcgh1 + 1 + OutParameter + + + fr.insee + l4lfclty-QOP-la6vcgh1 + 1 + OutParameter + + + + + fr.insee + l4lfclty-RDOP-la6v7y36 + 1 + OutParameter + + + fr.insee + l4lfclty-QOP-la6v7y36 + 1 + OutParameter + + + + + "" || (if (nvl(¤l4leulqw-QOP-l4leruxk¤,"")="") then "Cet enfant" else ¤l4leulqw-QOP-l4leruxk¤) || " vit-" || (if (¤l4lem0yg-QOP-l4leqtd3¤="1" or isnull(¤l4lem0yg-QOP-l4leqtd3¤)) then "il" else "elle") || " aussi ailleurs ?" + + + + + + fr.insee + l59njrta + 1 + CodeList + + + + + + + + fr.insee + l4lfclty-RDOP-la6vpzpe + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l4lfclty-RDOP-la6vhlmp + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l4lfclty-RDOP-la6vcgh1 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l4lfclty-RDOP-la6v7y36 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l59np16p + 1 + Instruction + + + + fr.insee + l8n2hdgw + 1 + + SANTE_ENFLOG6 + + + fr.insee + l8n2hdgw-QOP-la6v9e5y + 1 + + SANTE_ENFLOG61 + + + + fr.insee + l8n2hdgw-QOP-la6vmq5o + 1 + + SANTE_ENFLOG62 + + + + fr.insee + l8n2hdgw-QOP-la6ven7z + 1 + + SANTE_ENFLOG63 + + + + fr.insee + l8n2hdgw-QOP-la6vb73e + 1 + + SANTE_ENFLOG64 + + + + + fr.insee + l8n2hdgw-RDOP-la6v9e5y + 1 + OutParameter + + + fr.insee + l8n2hdgw-QOP-la6v9e5y + 1 + OutParameter + + + + + fr.insee + l8n2hdgw-RDOP-la6vmq5o + 1 + OutParameter + + + fr.insee + l8n2hdgw-QOP-la6vmq5o + 1 + OutParameter + + + + + fr.insee + l8n2hdgw-RDOP-la6ven7z + 1 + OutParameter + + + fr.insee + l8n2hdgw-QOP-la6ven7z + 1 + OutParameter + + + + + fr.insee + l8n2hdgw-RDOP-la6vb73e + 1 + OutParameter + + + fr.insee + l8n2hdgw-QOP-la6vb73e + 1 + OutParameter + + + + + "" || (if (nvl(¤l8n2umnw-QOP-l8n2q8ti¤,"")="") then "Cet enfant" else ¤l8n2umnw-QOP-l8n2q8ti¤) || " vit-" || (if (¤l8n2e1mr-QOP-l8n2ef3o¤="1" or isnull(¤l8n2e1mr-QOP-l8n2ef3o¤)) then "il" else "elle") || " aussi ailleurs ?" + + + + + + fr.insee + l59njrta + 1 + CodeList + + + + + + + + fr.insee + l8n2hdgw-RDOP-la6v9e5y + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l8n2hdgw-RDOP-la6vmq5o + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l8n2hdgw-RDOP-la6ven7z + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l8n2hdgw-RDOP-la6vb73e + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l8n2ki4d + 1 + Instruction + + + + fr.insee + l8n3bp4o + 1 + + SANTE_ENFLOG7 + + + fr.insee + l8n3bp4o-QOP-la6vdrq8 + 1 + + SANTE_ENFLOG71 + + + + fr.insee + l8n3bp4o-QOP-la6vbh88 + 1 + + SANTE_ENFLOG72 + + + + fr.insee + l8n3bp4o-QOP-la6vk4x5 + 1 + + SANTE_ENFLOG73 + + + + fr.insee + l8n3bp4o-QOP-la6vnbtp + 1 + + SANTE_ENFLOG74 + + + + + fr.insee + l8n3bp4o-RDOP-la6vdrq8 + 1 + OutParameter + + + fr.insee + l8n3bp4o-QOP-la6vdrq8 + 1 + OutParameter + + + + + fr.insee + l8n3bp4o-RDOP-la6vbh88 + 1 + OutParameter + + + fr.insee + l8n3bp4o-QOP-la6vbh88 + 1 + OutParameter + + + + + fr.insee + l8n3bp4o-RDOP-la6vk4x5 + 1 + OutParameter + + + fr.insee + l8n3bp4o-QOP-la6vk4x5 + 1 + OutParameter + + + + + fr.insee + l8n3bp4o-RDOP-la6vnbtp + 1 + OutParameter + + + fr.insee + l8n3bp4o-QOP-la6vnbtp + 1 + OutParameter + + + + + "" || (if (nvl(¤l8n3pb4f-QOP-l8n3v5q6¤,"")="") then "Cet enfant" else ¤l8n3pb4f-QOP-l8n3v5q6¤) || " vit-" || (if (¤l8n3mik2-QOP-l8n3szau¤="1" or isnull(¤l8n3mik2-QOP-l8n3szau¤)) then "il" else "elle") || " aussi ailleurs ?" + + + + + + fr.insee + l59njrta + 1 + CodeList + + + + + + + + fr.insee + l8n3bp4o-RDOP-la6vdrq8 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l8n3bp4o-RDOP-la6vbh88 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l8n3bp4o-RDOP-la6vk4x5 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l8n3bp4o-RDOP-la6vnbtp + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l8n3q1k1 + 1 + Instruction + + + + fr.insee + l8n3uqr2 + 1 + + SANTE_ENFLOG8 + + + fr.insee + l8n3uqr2-QOP-la6vbpmh + 1 + + SANTE_ENFLOG81 + + + + fr.insee + l8n3uqr2-QOP-la6vpud7 + 1 + + SANTE_ENFLOG82 + + + + fr.insee + l8n3uqr2-QOP-la6vmmu5 + 1 + + SANTE_ENFLOG83 + + + + fr.insee + l8n3uqr2-QOP-la6vp6s1 + 1 + + SANTE_ENFLOG84 + + + + + fr.insee + l8n3uqr2-RDOP-la6vbpmh + 1 + OutParameter + + + fr.insee + l8n3uqr2-QOP-la6vbpmh + 1 + OutParameter + + + + + fr.insee + l8n3uqr2-RDOP-la6vpud7 + 1 + OutParameter + + + fr.insee + l8n3uqr2-QOP-la6vpud7 + 1 + OutParameter + + + + + fr.insee + l8n3uqr2-RDOP-la6vmmu5 + 1 + OutParameter + + + fr.insee + l8n3uqr2-QOP-la6vmmu5 + 1 + OutParameter + + + + + fr.insee + l8n3uqr2-RDOP-la6vp6s1 + 1 + OutParameter + + + fr.insee + l8n3uqr2-QOP-la6vp6s1 + 1 + OutParameter + + + + + "" || (if (nvl(¤l8n4cayp-QOP-l8n40opx¤,"")="") then "Cet enfant" else ¤l8n4cayp-QOP-l8n40opx¤) || " vit-" || (if (¤l8n406m9-QOP-l8n4es1f¤="1" or isnull(¤l8n406m9-QOP-l8n4es1f¤)) then "il" else "elle") || " aussi ailleurs ?" + + + + + + fr.insee + l59njrta + 1 + CodeList + + + + + + + + fr.insee + l8n3uqr2-RDOP-la6vbpmh + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l8n3uqr2-RDOP-la6vpud7 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l8n3uqr2-RDOP-la6vmmu5 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l8n3uqr2-RDOP-la6vp6s1 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l8n4a6u7 + 1 + Instruction + + + + fr.insee + l1gi8vrf + 1 + + SANTE_ENFAIL1 + + + fr.insee + l1gi8vrf-QOP-lagyu6fp + 1 + + SANTE_ENFAIL11 + + + + fr.insee + l1gi8vrf-QOP-lagyjdla + 1 + + SANTE_ENFAIL12 + + + + fr.insee + l1gi8vrf-QOP-lagydkrl + 1 + + SANTE_ENFAIL13 + + + + + fr.insee + l1gi8vrf-RDOP-lagyu6fp + 1 + OutParameter + + + fr.insee + l1gi8vrf-QOP-lagyu6fp + 1 + OutParameter + + + + + fr.insee + l1gi8vrf-RDOP-lagyjdla + 1 + OutParameter + + + fr.insee + l1gi8vrf-QOP-lagyjdla + 1 + OutParameter + + + + + fr.insee + l1gi8vrf-RDOP-lagydkrl + 1 + OutParameter + + + fr.insee + l1gi8vrf-QOP-lagydkrl + 1 + OutParameter + + + + + "" || (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then "Cet enfant" else ¤l4idug6p-QOP-l4idueaa¤) || " vit-" || (if (¤kwqix1j5-QOP-kwqixdic¤="1" or isnull(¤kwqix1j5-QOP-kwqixdic¤)) then "il " else "elle ") || "ailleurs que chez vous ?" + + + + + + fr.insee + l8sqimbm + 1 + CodeList + + + + + + + + fr.insee + l1gi8vrf-RDOP-lagyu6fp + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1gi8vrf-RDOP-lagyjdla + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1gi8vrf-RDOP-lagydkrl + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l59ny4to + 1 + Instruction + + + + fr.insee + l4ljj44i + 1 + + SANTE_ENFAIL2 + + + fr.insee + l4ljj44i-QOP-lagyowte + 1 + + SANTE_ENFAIL21 + + + + fr.insee + l4ljj44i-QOP-lagyfrw1 + 1 + + SANTE_ENFAIL22 + + + + fr.insee + l4ljj44i-QOP-lagyeeeb + 1 + + SANTE_ENFAIL23 + + + + + fr.insee + l4ljj44i-RDOP-lagyowte + 1 + OutParameter + + + fr.insee + l4ljj44i-QOP-lagyowte + 1 + OutParameter + + + + + fr.insee + l4ljj44i-RDOP-lagyfrw1 + 1 + OutParameter + + + fr.insee + l4ljj44i-QOP-lagyfrw1 + 1 + OutParameter + + + + + fr.insee + l4ljj44i-RDOP-lagyeeeb + 1 + OutParameter + + + fr.insee + l4ljj44i-QOP-lagyeeeb + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then "Cet enfant" else ¤l4lg1tus-QOP-l4lg294k¤) || " vit-" || (if (¤l4lgd8bs-QOP-l4lg3zcd¤="1" or isnull(¤l4lgd8bs-QOP-l4lg3zcd¤)) then "il " else "elle ") || "ailleurs que chez vous ?" + + + + + + fr.insee + l8sqimbm + 1 + CodeList + + + + + + + + fr.insee + l4ljj44i-RDOP-lagyowte + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l4ljj44i-RDOP-lagyfrw1 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l4ljj44i-RDOP-lagyeeeb + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l59nu66k + 1 + Instruction + + + + fr.insee + l4ljg7fn + 1 + + SANTE_ENFAIL3 + + + fr.insee + l4ljg7fn-QOP-lagyxtyg + 1 + + SANTE_ENFAIL31 + + + + fr.insee + l4ljg7fn-QOP-lagyuta3 + 1 + + SANTE_ENFAIL32 + + + + fr.insee + l4ljg7fn-QOP-lagyuxyh + 1 + + SANTE_ENFAIL33 + + + + + fr.insee + l4ljg7fn-RDOP-lagyxtyg + 1 + OutParameter + + + fr.insee + l4ljg7fn-QOP-lagyxtyg + 1 + OutParameter + + + + + fr.insee + l4ljg7fn-RDOP-lagyuta3 + 1 + OutParameter + + + fr.insee + l4ljg7fn-QOP-lagyuta3 + 1 + OutParameter + + + + + fr.insee + l4ljg7fn-RDOP-lagyuxyh + 1 + OutParameter + + + fr.insee + l4ljg7fn-QOP-lagyuxyh + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then "Cet enfant" else ¤l4lg3j5g-QOP-l4lg9z9j¤) || " vit-" || (if (¤l4lg6nx5-QOP-l4lg6j08¤="1" or isnull(¤l4lg6nx5-QOP-l4lg6j08¤)) then "il " else "elle ") || "ailleurs que chez vous?" + + + + + + fr.insee + l8sqimbm + 1 + CodeList + + + + + + + + fr.insee + l4ljg7fn-RDOP-lagyxtyg + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l4ljg7fn-RDOP-lagyuta3 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l4ljg7fn-RDOP-lagyuxyh + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l59o0g5r + 1 + Instruction + + + + fr.insee + l4ljjvig + 1 + + SANTE_ENFAIL4 + + + fr.insee + l4ljjvig-QOP-lagyh7yq + 1 + + SANTE_ENFAIL41 + + + + fr.insee + l4ljjvig-QOP-lagyinu2 + 1 + + SANTE_ENFAIL42 + + + + fr.insee + l4ljjvig-QOP-lagyvlaz + 1 + + SANTE_ENFAIL43 + + + + + fr.insee + l4ljjvig-RDOP-lagyh7yq + 1 + OutParameter + + + fr.insee + l4ljjvig-QOP-lagyh7yq + 1 + OutParameter + + + + + fr.insee + l4ljjvig-RDOP-lagyinu2 + 1 + OutParameter + + + fr.insee + l4ljjvig-QOP-lagyinu2 + 1 + OutParameter + + + + + fr.insee + l4ljjvig-RDOP-lagyvlaz + 1 + OutParameter + + + fr.insee + l4ljjvig-QOP-lagyvlaz + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then "Cet enfant" else ¤l4lg5t9v-QOP-l4lg3csm¤) || " vit-" || (if (¤l4lg3wub-QOP-l4lg3510¤="1" or isnull(¤l4lg3wub-QOP-l4lg3510¤)) then "il " else "elle ") || "ailleurs que chez vous ?" + + + + + + fr.insee + l8sqimbm + 1 + CodeList + + + + + + + + fr.insee + l4ljjvig-RDOP-lagyh7yq + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l4ljjvig-RDOP-lagyinu2 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l4ljjvig-RDOP-lagyvlaz + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l59o5htr + 1 + Instruction + + + + fr.insee + l4ljcdar + 1 + + SANTE_ENFAIL5 + + + fr.insee + l4ljcdar-QOP-lagyt3hb + 1 + + SANTE_ENFAIL51 + + + + fr.insee + l4ljcdar-QOP-lagyitoa + 1 + + SANTE_ENFAIL52 + + + + fr.insee + l4ljcdar-QOP-lagyycd1 + 1 + + SANTE_ENFAIL53 + + + + + fr.insee + l4ljcdar-RDOP-lagyt3hb + 1 + OutParameter + + + fr.insee + l4ljcdar-QOP-lagyt3hb + 1 + OutParameter + + + + + fr.insee + l4ljcdar-RDOP-lagyitoa + 1 + OutParameter + + + fr.insee + l4ljcdar-QOP-lagyitoa + 1 + OutParameter + + + + + fr.insee + l4ljcdar-RDOP-lagyycd1 + 1 + OutParameter + + + fr.insee + l4ljcdar-QOP-lagyycd1 + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then "Cet enfant" else ¤l4lgayon-QOP-l4lg49i3¤) || " vit-" || (if (¤l4lgep4c-QOP-l4lg9rqy¤="1" or isnull(¤l4lgep4c-QOP-l4lg9rqy¤)) then "il " else "elle ") || "ailleurs que chez vous ?" + + + + + + fr.insee + l8sqimbm + 1 + CodeList + + + + + + + + fr.insee + l4ljcdar-RDOP-lagyt3hb + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l4ljcdar-RDOP-lagyitoa + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l4ljcdar-RDOP-lagyycd1 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l59okksf + 1 + Instruction + + + + fr.insee + l8oasgat + 1 + + SANTE_ENFAIL6 + + + fr.insee + l8oasgat-QOP-lagyuenn + 1 + + SANTE_ENFAIL61 + + + + fr.insee + l8oasgat-QOP-lagyvzmn + 1 + + SANTE_ENFAIL62 + + + + fr.insee + l8oasgat-QOP-lagyviqg + 1 + + SANTE_ENFAIL63 + + + + + fr.insee + l8oasgat-RDOP-lagyuenn + 1 + OutParameter + + + fr.insee + l8oasgat-QOP-lagyuenn + 1 + OutParameter + + + + + fr.insee + l8oasgat-RDOP-lagyvzmn + 1 + OutParameter + + + fr.insee + l8oasgat-QOP-lagyvzmn + 1 + OutParameter + + + + + fr.insee + l8oasgat-RDOP-lagyviqg + 1 + OutParameter + + + fr.insee + l8oasgat-QOP-lagyviqg + 1 + OutParameter + + + + + "" || (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then "Cet enfant" else ¤l8oign0h-QOP-l8oifcrp¤) || " vit-" || (if (¤l8oi92w4-QOP-l8oihhrs¤="1" or isnull(¤l8oi92w4-QOP-l8oihhrs¤)) then "il " else "elle ") || "ailleurs que chez vous ?" + + + + + + fr.insee + l8sqimbm + 1 + CodeList + + + + + + + + fr.insee + l8oasgat-RDOP-lagyuenn + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l8oasgat-RDOP-lagyvzmn + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l8oasgat-RDOP-lagyviqg + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l8ob1odl + 1 + Instruction + + + + fr.insee + l8oizp0r + 1 + + SANTE_ENFAIL7 + + + fr.insee + l8oizp0r-QOP-lagyku3m + 1 + + SANTE_ENFAIL71 + + + + fr.insee + l8oizp0r-QOP-lagyel8m + 1 + + SANTE_ENFAIL72 + + + + fr.insee + l8oizp0r-QOP-lagyk7tb + 1 + + SANTE_ENFAIL73 + + + + + fr.insee + l8oizp0r-RDOP-lagyku3m + 1 + OutParameter + + + fr.insee + l8oizp0r-QOP-lagyku3m + 1 + OutParameter + + + + + fr.insee + l8oizp0r-RDOP-lagyel8m + 1 + OutParameter + + + fr.insee + l8oizp0r-QOP-lagyel8m + 1 + OutParameter + + + + + fr.insee + l8oizp0r-RDOP-lagyk7tb + 1 + OutParameter + + + fr.insee + l8oizp0r-QOP-lagyk7tb + 1 + OutParameter + + + + + "" || (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then "Cet enfant" else ¤l8ok9kmj-QOP-l8okjmzy¤) || " vit-" || (if (¤l8okbmv3-QOP-l8ok3iy5¤="1" or isnull(¤l8okbmv3-QOP-l8ok3iy5¤)) then "il " else "elle ") || "ailleurs que chez vous ?" + + + + + + fr.insee + l8sqimbm + 1 + CodeList + + + + + + + + fr.insee + l8oizp0r-RDOP-lagyku3m + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l8oizp0r-RDOP-lagyel8m + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l8oizp0r-RDOP-lagyk7tb + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l8oj4gac + 1 + Instruction + + + + fr.insee + l8oklb21 + 1 + + SANTE_ENFAIL8 + + + fr.insee + l8oklb21-QOP-lagyjvmi + 1 + + SANTE_ENFAIL81 + + + + fr.insee + l8oklb21-QOP-lagynhci + 1 + + SANTE_ENFAIL82 + + + + fr.insee + l8oklb21-QOP-lagyehg2 + 1 + + SANTE_ENFAIL83 + + + + + fr.insee + l8oklb21-RDOP-lagyjvmi + 1 + OutParameter + + + fr.insee + l8oklb21-QOP-lagyjvmi + 1 + OutParameter + + + + + fr.insee + l8oklb21-RDOP-lagynhci + 1 + OutParameter + + + fr.insee + l8oklb21-QOP-lagynhci + 1 + OutParameter + + + + + fr.insee + l8oklb21-RDOP-lagyehg2 + 1 + OutParameter + + + fr.insee + l8oklb21-QOP-lagyehg2 + 1 + OutParameter + + + + + "" || (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then "Cet enfant" else ¤l8olci32-QOP-l8oln1gt¤) || " vit-" || (if (¤l8olbhxj-QOP-l8ol8o60¤="1" or isnull(¤l8olbhxj-QOP-l8ol8o60¤)) then "il " else "elle ") || "ailleurs que chez vous ?" + + + + + + fr.insee + l8sqimbm + 1 + CodeList + + + + + + + + fr.insee + l8oklb21-RDOP-lagyjvmi + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l8oklb21-RDOP-lagynhci + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l8oklb21-RDOP-lagyehg2 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l8okvidp + 1 + Instruction + + + + fr.insee + l1g3hka7 + 1 + + FREQ_VU_PETIT_ENF + + + fr.insee + l1g3hka7-QOP-llf32z1d + 1 + + FREQ_VU_PETIT_ENF1 + + + + fr.insee + l1g3hka7-QOP-llf309m5 + 1 + + FREQ_VU_PETIT_ENF2 + + + + fr.insee + l1g3hka7-QOP-llf3bgof + 1 + + FREQ_VU_PETIT_ENF3 + + + + fr.insee + l1g3hka7-QOP-llf38epk + 1 + + FREQ_VU_PETIT_ENF4 + + + + + fr.insee + l1g3hka7-RDOP-llf32z1d + 1 + OutParameter + + + fr.insee + l1g3hka7-QOP-llf32z1d + 1 + OutParameter + + + + + fr.insee + l1g3hka7-RDOP-llf309m5 + 1 + OutParameter + + + fr.insee + l1g3hka7-QOP-llf309m5 + 1 + OutParameter + + + + + fr.insee + l1g3hka7-RDOP-llf3bgof + 1 + OutParameter + + + fr.insee + l1g3hka7-QOP-llf3bgof + 1 + OutParameter + + + + + fr.insee + l1g3hka7-RDOP-llf38epk + 1 + OutParameter + + + fr.insee + l1g3hka7-QOP-llf38epk + 1 + OutParameter + + + + + "En moyenne, à quelle fréquence voyez-vous " || if (cast(¤l1f6dz1j-QOP-l1f6aqky¤,integer)>1 or isnull(¤l1f6dz1j-QOP-l1f6aqky¤)) then "vos petits-enfants ?" else "votre petit-enfant ?" + + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + + fr.insee + l1g3hka7-RDOP-llf32z1d + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1g3hka7-RDOP-llf309m5 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1g3hka7-RDOP-llf3bgof + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1g3hka7-RDOP-llf38epk + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l1g38p58 + 1 + Instruction + + + fr.insee + l1g3k3v5 + 1 + Instruction + + + + fr.insee + l1f4yrno + 1 + + FREQ_CONT_PETIT_ENF + + + fr.insee + l1f4yrno-QOP-llf334dp + 1 + + FREQ_CONT_PETIT_ENF1 + + + + fr.insee + l1f4yrno-QOP-llf35l7f + 1 + + FREQ_CONT_PETIT_ENF2 + + + + fr.insee + l1f4yrno-QOP-llf2xk2h + 1 + + FREQ_CONT_PETIT_ENF3 + + + + fr.insee + l1f4yrno-QOP-llf355j1 + 1 + + FREQ_CONT_PETIT_ENF4 + + + + + fr.insee + l1f4yrno-RDOP-llf334dp + 1 + OutParameter + + + fr.insee + l1f4yrno-QOP-llf334dp + 1 + OutParameter + + + + + fr.insee + l1f4yrno-RDOP-llf35l7f + 1 + OutParameter + + + fr.insee + l1f4yrno-QOP-llf35l7f + 1 + OutParameter + + + + + fr.insee + l1f4yrno-RDOP-llf2xk2h + 1 + OutParameter + + + fr.insee + l1f4yrno-QOP-llf2xk2h + 1 + OutParameter + + + + + fr.insee + l1f4yrno-RDOP-llf355j1 + 1 + OutParameter + + + fr.insee + l1f4yrno-QOP-llf355j1 + 1 + OutParameter + + + + + "En moyenne, à quelle fréquence communiquez-vous avec " || if (cast(¤l1f6dz1j-QOP-l1f6aqky¤,integer)>1 or isnull(¤l1f6dz1j-QOP-l1f6aqky¤)) then "vos petits-enfants ?" else "votre petit-enfant ?" + + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + + fr.insee + l1f4yrno-RDOP-llf334dp + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1f4yrno-RDOP-llf35l7f + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1f4yrno-RDOP-llf2xk2h + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1f4yrno-RDOP-llf355j1 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l1f4o4x7 + 1 + Instruction + + + fr.insee + l1g3h5xf + 1 + Instruction + + + + fr.insee + l1g87t8t + 1 + + AIDE_APPORT + + + fr.insee + l1g87t8t-QOP-lmrsjz2q + 1 + + AIDE_APPORT1 + + + + fr.insee + l1g87t8t-QOP-lmrsu19x + 1 + + AIDE_APPORT2 + + + + fr.insee + l1g87t8t-QOP-lmrsjxl8 + 1 + + AIDE_APPORT3 + + + + fr.insee + l1g87t8t-QOP-lmrswobh + 1 + + AIDE_APPORT4 + + + + fr.insee + l1g87t8t-QOP-lmrsncuh + 1 + + AIDE_APPORT5 + + + + + fr.insee + l1g87t8t-RDOP-lmrsjz2q + 1 + OutParameter + + + fr.insee + l1g87t8t-QOP-lmrsjz2q + 1 + OutParameter + + + + + fr.insee + l1g87t8t-RDOP-lmrsu19x + 1 + OutParameter + + + fr.insee + l1g87t8t-QOP-lmrsu19x + 1 + OutParameter + + + + + fr.insee + l1g87t8t-RDOP-lmrsjxl8 + 1 + OutParameter + + + fr.insee + l1g87t8t-QOP-lmrsjxl8 + 1 + OutParameter + + + + + fr.insee + l1g87t8t-RDOP-lmrswobh + 1 + OutParameter + + + fr.insee + l1g87t8t-QOP-lmrswobh + 1 + OutParameter + + + + + fr.insee + l1g87t8t-RDOP-lmrsncuh + 1 + OutParameter + + + fr.insee + l1g87t8t-QOP-lmrsncuh + 1 + OutParameter + + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", apportez-vous régulièrement une aide à une ou plusieurs personnes de votre famille (parent(s), conjoint(e), enfant(s), etc.) en raison de leur état de santé, d'un handicap ou d'une difficulté liée à un âge avancé ?" + + + + + + fr.insee + l1g8605s + 1 + CodeList + + + + + + + + fr.insee + l1g87t8t-RDOP-lmrsjz2q + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1g87t8t-RDOP-lmrsu19x + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1g87t8t-RDOP-lmrsjxl8 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1g87t8t-RDOP-lmrswobh + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1g87t8t-RDOP-lmrsncuh + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l1g850jr + 1 + Instruction + + + + fr.insee + l1ggssgl + 1 + + QUI_AID_APP_1 + + + fr.insee + l1ggssgl-QOP-llz50h9h + 1 + + QUI_AID_APP_11 + + + + fr.insee + l1ggssgl-QOP-llz4zodt + 1 + + QUI_AID_APP_12 + + + + fr.insee + l1ggssgl-QOP-llz4thr9 + 1 + + QUI_AID_APP_13 + + + + fr.insee + l1ggssgl-QOP-llz4uavy + 1 + + QUI_AID_APP_14 + + + + + fr.insee + l1ggssgl-RDOP-llz50h9h + 1 + OutParameter + + + fr.insee + l1ggssgl-QOP-llz50h9h + 1 + OutParameter + + + + + fr.insee + l1ggssgl-RDOP-llz4zodt + 1 + OutParameter + + + fr.insee + l1ggssgl-QOP-llz4zodt + 1 + OutParameter + + + + + fr.insee + l1ggssgl-RDOP-llz4thr9 + 1 + OutParameter + + + fr.insee + l1ggssgl-QOP-llz4thr9 + 1 + OutParameter + + + + + fr.insee + l1ggssgl-RDOP-llz4uavy + 1 + OutParameter + + + fr.insee + l1ggssgl-QOP-llz4uavy + 1 + OutParameter + + + + + "A qui apportez-vous cette aide pour les tâches quotidiennes ?" + + + + + + fr.insee + l1ggouwf + 1 + CodeList + + + + + + + + fr.insee + l1ggssgl-RDOP-llz50h9h + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1ggssgl-RDOP-llz4zodt + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1ggssgl-RDOP-llz4thr9 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1ggssgl-RDOP-llz4uavy + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l1ggjolj + 1 + Instruction + + + + fr.insee + l1ggm06b + 1 + + QUI_AID_APP_2 + + + fr.insee + l1ggm06b-QOP-l8lfgbqf + 1 + + QUI_AID_APP_21 + + + + fr.insee + l1ggm06b-QOP-l8lfhiwk + 1 + + QUI_AID_APP_22 + + + + fr.insee + l1ggm06b-QOP-l8lffrns + 1 + + QUI_AID_APP_23 + + + + fr.insee + l1ggm06b-QOP-l8lffy1z + 1 + + QUI_AID_APP_24 + + + + + fr.insee + l1ggm06b-RDOP-l8lfgbqf + 1 + OutParameter + + + fr.insee + l1ggm06b-QOP-l8lfgbqf + 1 + OutParameter + + + + + fr.insee + l1ggm06b-RDOP-l8lfhiwk + 1 + OutParameter + + + fr.insee + l1ggm06b-QOP-l8lfhiwk + 1 + OutParameter + + + + + fr.insee + l1ggm06b-RDOP-l8lffrns + 1 + OutParameter + + + fr.insee + l1ggm06b-QOP-l8lffrns + 1 + OutParameter + + + + + fr.insee + l1ggm06b-RDOP-l8lffy1z + 1 + OutParameter + + + fr.insee + l1ggm06b-QOP-l8lffy1z + 1 + OutParameter + + + + + "A qui apportez-vous cette aide financière ou matérielle ?" + + + + + + fr.insee + l1ggouwf + 1 + CodeList + + + + + + + + fr.insee + l1ggm06b-RDOP-l8lfgbqf + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1ggm06b-RDOP-l8lfhiwk + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1ggm06b-RDOP-l8lffrns + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1ggm06b-RDOP-l8lffy1z + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l1ggq5nj + 1 + Instruction + + + + fr.insee + l1ggtznr + 1 + + QUI_AID_APP_3 + + + fr.insee + l1ggtznr-QOP-l8lfrnl6 + 1 + + QUI_AID_APP_31 + + + + fr.insee + l1ggtznr-QOP-l8lftaoi + 1 + + QUI_AID_APP_32 + + + + fr.insee + l1ggtznr-QOP-l8lfdroz + 1 + + QUI_AID_APP_33 + + + + fr.insee + l1ggtznr-QOP-l8lfgqn9 + 1 + + QUI_AID_APP_34 + + + + + fr.insee + l1ggtznr-RDOP-l8lfrnl6 + 1 + OutParameter + + + fr.insee + l1ggtznr-QOP-l8lfrnl6 + 1 + OutParameter + + + + + fr.insee + l1ggtznr-RDOP-l8lftaoi + 1 + OutParameter + + + fr.insee + l1ggtznr-QOP-l8lftaoi + 1 + OutParameter + + + + + fr.insee + l1ggtznr-RDOP-l8lfdroz + 1 + OutParameter + + + fr.insee + l1ggtznr-QOP-l8lfdroz + 1 + OutParameter + + + + + fr.insee + l1ggtznr-RDOP-l8lfgqn9 + 1 + OutParameter + + + fr.insee + l1ggtznr-QOP-l8lfgqn9 + 1 + OutParameter + + + + + "A qui apportez-vous ce soutien moral ?" + + + + + + fr.insee + l1ggouwf + 1 + CodeList + + + + + + + + fr.insee + l1ggtznr-RDOP-l8lfrnl6 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1ggtznr-RDOP-l8lftaoi + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1ggtznr-RDOP-l8lfdroz + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1ggtznr-RDOP-l8lfgqn9 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l1ggjqp6 + 1 + Instruction + + + + fr.insee + l4lf0y9m + 1 + + QUI_AID_APP_4 + + + fr.insee + l4lf0y9m-QOP-l8lfdihy + 1 + + QUI_AID_APP_41 + + + + fr.insee + l4lf0y9m-QOP-l8lfirt9 + 1 + + QUI_AID_APP_42 + + + + fr.insee + l4lf0y9m-QOP-l8lfeq6r + 1 + + QUI_AID_APP_43 + + + + fr.insee + l4lf0y9m-QOP-l8lfjwx6 + 1 + + QUI_AID_APP_44 + + + + + fr.insee + l4lf0y9m-RDOP-l8lfdihy + 1 + OutParameter + + + fr.insee + l4lf0y9m-QOP-l8lfdihy + 1 + OutParameter + + + + + fr.insee + l4lf0y9m-RDOP-l8lfirt9 + 1 + OutParameter + + + fr.insee + l4lf0y9m-QOP-l8lfirt9 + 1 + OutParameter + + + + + fr.insee + l4lf0y9m-RDOP-l8lfeq6r + 1 + OutParameter + + + fr.insee + l4lf0y9m-QOP-l8lfeq6r + 1 + OutParameter + + + + + fr.insee + l4lf0y9m-RDOP-l8lfjwx6 + 1 + OutParameter + + + fr.insee + l4lf0y9m-QOP-l8lfjwx6 + 1 + OutParameter + + + + + "De qui êtes-vous " || if (¤ln0892lt-GOP¤="1") then " tuteur ou curateur ?" else " tutrice ou curatrice ?" + + + + + + fr.insee + l1ggouwf + 1 + CodeList + + + + + + + + fr.insee + l4lf0y9m-RDOP-l8lfdihy + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l4lf0y9m-RDOP-l8lfirt9 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l4lf0y9m-RDOP-l8lfeq6r + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l4lf0y9m-RDOP-l8lfjwx6 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l4lfdg0x + 1 + Instruction + + + + fr.insee + l1g8o84g + 1 + + AIDE_RECUE + + + fr.insee + l1g8o84g-QOP-lmrsrwwh + 1 + + AIDE_RECUE1 + + + + fr.insee + l1g8o84g-QOP-lmrsiwcj + 1 + + AIDE_RECUE2 + + + + fr.insee + l1g8o84g-QOP-lmrslpuw + 1 + + AIDE_RECUE3 + + + + fr.insee + l1g8o84g-QOP-lmrspudh + 1 + + AIDE_RECUE4 + + + + + fr.insee + l1g8o84g-RDOP-lmrsrwwh + 1 + OutParameter + + + fr.insee + l1g8o84g-QOP-lmrsrwwh + 1 + OutParameter + + + + + fr.insee + l1g8o84g-RDOP-lmrsiwcj + 1 + OutParameter + + + fr.insee + l1g8o84g-QOP-lmrsiwcj + 1 + OutParameter + + + + + fr.insee + l1g8o84g-RDOP-lmrslpuw + 1 + OutParameter + + + fr.insee + l1g8o84g-QOP-lmrslpuw + 1 + OutParameter + + + + + fr.insee + l1g8o84g-RDOP-lmrspudh + 1 + OutParameter + + + fr.insee + l1g8o84g-QOP-lmrspudh + 1 + OutParameter + + + + + nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") || ", recevez-vous régulièrement de l'aide d'une ou plusieurs personnes de votre famille (parent(s), conjoint(e), enfant(s), etc.) en raison de votre état de santé, d'un handicap ou d'une difficulté liée à un âge avancé ?" + + + + + + fr.insee + l6c3qpag + 1 + CodeList + + + + + + + + fr.insee + l1g8o84g-RDOP-lmrsrwwh + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1g8o84g-RDOP-lmrsiwcj + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1g8o84g-RDOP-lmrslpuw + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1g8o84g-RDOP-lmrspudh + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l1g8hmv7 + 1 + Instruction + + + + fr.insee + l1ggpjd7 + 1 + + QUI_AID_REC_1 + + + fr.insee + l1ggpjd7-QOP-l8lfnnly + 1 + + QUI_AID_REC_11 + + + + fr.insee + l1ggpjd7-QOP-l8lflmwj + 1 + + QUI_AID_REC_12 + + + + fr.insee + l1ggpjd7-QOP-l8lfhcl4 + 1 + + QUI_AID_REC_13 + + + + fr.insee + l1ggpjd7-QOP-l8lfi83w + 1 + + QUI_AID_REC_14 + + + + + fr.insee + l1ggpjd7-RDOP-l8lfnnly + 1 + OutParameter + + + fr.insee + l1ggpjd7-QOP-l8lfnnly + 1 + OutParameter + + + + + fr.insee + l1ggpjd7-RDOP-l8lflmwj + 1 + OutParameter + + + fr.insee + l1ggpjd7-QOP-l8lflmwj + 1 + OutParameter + + + + + fr.insee + l1ggpjd7-RDOP-l8lfhcl4 + 1 + OutParameter + + + fr.insee + l1ggpjd7-QOP-l8lfhcl4 + 1 + OutParameter + + + + + fr.insee + l1ggpjd7-RDOP-l8lfi83w + 1 + OutParameter + + + fr.insee + l1ggpjd7-QOP-l8lfi83w + 1 + OutParameter + + + + + "De qui recevez-vous cette aide pour les tâches quotidiennes ?" + + + + + + fr.insee + l1ggouwf + 1 + CodeList + + + + + + + + fr.insee + l1ggpjd7-RDOP-l8lfnnly + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1ggpjd7-RDOP-l8lflmwj + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1ggpjd7-RDOP-l8lfhcl4 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1ggpjd7-RDOP-l8lfi83w + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l1ggnslo + 1 + Instruction + + + + fr.insee + l1ggp8js + 1 + + QUI_AID_REC_2 + + + fr.insee + l1ggp8js-QOP-l8lfslzm + 1 + + QUI_AID_REC_21 + + + + fr.insee + l1ggp8js-QOP-l8lf8uhf + 1 + + QUI_AID_REC_22 + + + + fr.insee + l1ggp8js-QOP-l8lfnjgv + 1 + + QUI_AID_REC_23 + + + + fr.insee + l1ggp8js-QOP-l8lfccyo + 1 + + QUI_AID_REC_24 + + + + + fr.insee + l1ggp8js-RDOP-l8lfslzm + 1 + OutParameter + + + fr.insee + l1ggp8js-QOP-l8lfslzm + 1 + OutParameter + + + + + fr.insee + l1ggp8js-RDOP-l8lf8uhf + 1 + OutParameter + + + fr.insee + l1ggp8js-QOP-l8lf8uhf + 1 + OutParameter + + + + + fr.insee + l1ggp8js-RDOP-l8lfnjgv + 1 + OutParameter + + + fr.insee + l1ggp8js-QOP-l8lfnjgv + 1 + OutParameter + + + + + fr.insee + l1ggp8js-RDOP-l8lfccyo + 1 + OutParameter + + + fr.insee + l1ggp8js-QOP-l8lfccyo + 1 + OutParameter + + + + + "De qui recevez-vous cette aide financière ou matérielle ?" + + + + + + fr.insee + l1ggouwf + 1 + CodeList + + + + + + + + fr.insee + l1ggp8js-RDOP-l8lfslzm + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1ggp8js-RDOP-l8lf8uhf + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1ggp8js-RDOP-l8lfnjgv + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1ggp8js-RDOP-l8lfccyo + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l1gglc9h + 1 + Instruction + + + + fr.insee + l1gh36ky + 1 + + QUI_AID_REC_3 + + + fr.insee + l1gh36ky-QOP-l5jp75md + 1 + + QUI_AID_REC_31 + + + + fr.insee + l1gh36ky-QOP-l5jpgd0s + 1 + + QUI_AID_REC_32 + + + + fr.insee + l1gh36ky-QOP-l5jplm82 + 1 + + QUI_AID_REC_33 + + + + fr.insee + l1gh36ky-QOP-l5jpm5d8 + 1 + + QUI_AID_REC_34 + + + + + fr.insee + l1gh36ky-RDOP-l5jp75md + 1 + OutParameter + + + fr.insee + l1gh36ky-QOP-l5jp75md + 1 + OutParameter + + + + + fr.insee + l1gh36ky-RDOP-l5jpgd0s + 1 + OutParameter + + + fr.insee + l1gh36ky-QOP-l5jpgd0s + 1 + OutParameter + + + + + fr.insee + l1gh36ky-RDOP-l5jplm82 + 1 + OutParameter + + + fr.insee + l1gh36ky-QOP-l5jplm82 + 1 + OutParameter + + + + + fr.insee + l1gh36ky-RDOP-l5jpm5d8 + 1 + OutParameter + + + fr.insee + l1gh36ky-QOP-l5jpm5d8 + 1 + OutParameter + + + + + "De qui recevez-vous ce soutien moral ?" + + + + + + fr.insee + l1ggouwf + 1 + CodeList + + + + + + + + fr.insee + l1gh36ky-RDOP-l5jp75md + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1gh36ky-RDOP-l5jpgd0s + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1gh36ky-RDOP-l5jplm82 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1gh36ky-RDOP-l5jpm5d8 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l1ggm7zg + 1 + Instruction + + + + fr.insee + kwqgffvw + 1 + + LOG_PAR2A + + + fr.insee + kwqgffvw-QOP-lm0fqbdz + 1 + + LOG_PAR2A1 + + + + fr.insee + kwqgffvw-QOP-lm0f8md7 + 1 + + LOG_PAR2A2 + + + + fr.insee + kwqgffvw-QOP-lm0fpbr7 + 1 + + LOG_PAR2A3 + + + + + fr.insee + kwqgffvw-RDOP-lm0fqbdz + 1 + OutParameter + + + fr.insee + kwqgffvw-QOP-lm0fqbdz + 1 + OutParameter + + + + + fr.insee + kwqgffvw-RDOP-lm0f8md7 + 1 + OutParameter + + + fr.insee + kwqgffvw-QOP-lm0f8md7 + 1 + OutParameter + + + + + fr.insee + kwqgffvw-RDOP-lm0fpbr7 + 1 + OutParameter + + + fr.insee + kwqgffvw-QOP-lm0fpbr7 + 1 + OutParameter + + + + + "Où vit " || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " ?" + + + + + + fr.insee + lagv1pzu + 1 + CodeList + + + + + + + + fr.insee + kwqgffvw-RDOP-lm0fqbdz + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kwqgffvw-RDOP-lm0f8md7 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kwqgffvw-RDOP-lm0fpbr7 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lley7g7u + 1 + Instruction + + + + fr.insee + l1f61fa3 + 1 + + VECU_JEUNESSE + + + fr.insee + l1f61fa3-QOP-llevctvx + 1 + + VECU_JEUNESSE1 + + + + fr.insee + l1f61fa3-QOP-llevmlms + 1 + + VECU_JEUNESSE2 + + + + fr.insee + l1f61fa3-QOP-llevhkg9 + 1 + + VECU_JEUNESSE3 + + + + fr.insee + l1f61fa3-QOP-llevc737 + 1 + + VECU_JEUNESSE4 + + + + fr.insee + l1f61fa3-QOP-llevfk5v + 1 + + VECU_JEUNESSE5 + + + + fr.insee + l1f61fa3-QOP-llevqbyz + 1 + + VECU_JEUNESSE6 + + + + fr.insee + l1f61fa3-QOP-lleve2gb + 1 + + VECU_JEUNESSE7 + + + + + fr.insee + l1f61fa3-RDOP-llevctvx + 1 + OutParameter + + + fr.insee + l1f61fa3-QOP-llevctvx + 1 + OutParameter + + + + + fr.insee + l1f61fa3-RDOP-llevmlms + 1 + OutParameter + + + fr.insee + l1f61fa3-QOP-llevmlms + 1 + OutParameter + + + + + fr.insee + l1f61fa3-RDOP-llevhkg9 + 1 + OutParameter + + + fr.insee + l1f61fa3-QOP-llevhkg9 + 1 + OutParameter + + + + + fr.insee + l1f61fa3-RDOP-llevc737 + 1 + OutParameter + + + fr.insee + l1f61fa3-QOP-llevc737 + 1 + OutParameter + + + + + fr.insee + l1f61fa3-RDOP-llevfk5v + 1 + OutParameter + + + fr.insee + l1f61fa3-QOP-llevfk5v + 1 + OutParameter + + + + + fr.insee + l1f61fa3-RDOP-llevqbyz + 1 + OutParameter + + + fr.insee + l1f61fa3-QOP-llevqbyz + 1 + OutParameter + + + + + fr.insee + l1f61fa3-RDOP-lleve2gb + 1 + OutParameter + + + fr.insee + l1f61fa3-QOP-lleve2gb + 1 + OutParameter + + + + + "Durant votre jeunesse, jusqu'à vos 18 ans, avec qui avez-vous vécu ?" + + + + + + fr.insee + l1f5t6b0 + 1 + CodeList + + + + + + + + fr.insee + l1f61fa3-RDOP-llevctvx + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1f61fa3-RDOP-llevmlms + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1f61fa3-RDOP-llevhkg9 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1f61fa3-RDOP-llevc737 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1f61fa3-RDOP-llevfk5v + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1f61fa3-RDOP-llevqbyz + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1f61fa3-RDOP-lleve2gb + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l1f693hk + 1 + Instruction + + + + fr.insee + l43u439h + 1 + + TYP_PLACE + + + fr.insee + l43u439h-QOP-l43tpzt7 + 1 + + TYP_PLACE1 + + + + fr.insee + l43u439h-QOP-l43tpqco + 1 + + TYP_PLACE2 + + + + fr.insee + l43u439h-QOP-l43tov3w + 1 + + TYP_PLACE3 + + + + fr.insee + l43u439h-QOP-l43trgyp + 1 + + TYP_PLACE4 + + + + + fr.insee + l43u439h-RDOP-l43tpzt7 + 1 + OutParameter + + + fr.insee + l43u439h-QOP-l43tpzt7 + 1 + OutParameter + + + + + fr.insee + l43u439h-RDOP-l43tpqco + 1 + OutParameter + + + fr.insee + l43u439h-QOP-l43tpqco + 1 + OutParameter + + + + + fr.insee + l43u439h-RDOP-l43tov3w + 1 + OutParameter + + + fr.insee + l43u439h-QOP-l43tov3w + 1 + OutParameter + + + + + fr.insee + l43u439h-RDOP-l43trgyp + 1 + OutParameter + + + fr.insee + l43u439h-QOP-l43trgyp + 1 + OutParameter + + + + + "Quel était le type de placement ?" + + + + + + fr.insee + l43tnvfy + 1 + CodeList + + + + + + + + fr.insee + l43u439h-RDOP-l43tpzt7 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l43u439h-RDOP-l43tpqco + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l43u439h-RDOP-l43tov3w + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l43u439h-RDOP-l43trgyp + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l43u116f + 1 + Instruction + + + + fr.insee + lm4vudcf + 1 + + AVIS_RAISON + + + fr.insee + lm4vudcf-QOP-ln90n9fq + 1 + + AVIS_RAISON1 + + + + fr.insee + lm4vudcf-QOP-ln90ubso + 1 + + AVIS_RAISON2 + + + + fr.insee + lm4vudcf-QOP-ln913d78 + 1 + + AVIS_RAISON3 + + + + fr.insee + lm4vudcf-QOP-ln90m9r7 + 1 + + AVIS_RAISON4 + + + + fr.insee + lm4vudcf-QOP-ln90xj95 + 1 + + AVIS_RAISON5 + + + + fr.insee + lm4vudcf-QOP-ln911lw0 + 1 + + AVIS_RAISON6 + + + + + fr.insee + lm4vudcf-RDOP-ln90n9fq + 1 + OutParameter + + + fr.insee + lm4vudcf-QOP-ln90n9fq + 1 + OutParameter + + + + + fr.insee + lm4vudcf-RDOP-ln90ubso + 1 + OutParameter + + + fr.insee + lm4vudcf-QOP-ln90ubso + 1 + OutParameter + + + + + fr.insee + lm4vudcf-RDOP-ln913d78 + 1 + OutParameter + + + fr.insee + lm4vudcf-QOP-ln913d78 + 1 + OutParameter + + + + + fr.insee + lm4vudcf-RDOP-ln90m9r7 + 1 + OutParameter + + + fr.insee + lm4vudcf-QOP-ln90m9r7 + 1 + OutParameter + + + + + fr.insee + lm4vudcf-RDOP-ln90xj95 + 1 + OutParameter + + + fr.insee + lm4vudcf-QOP-ln90xj95 + 1 + OutParameter + + + + + fr.insee + lm4vudcf-RDOP-ln911lw0 + 1 + OutParameter + + + fr.insee + lm4vudcf-QOP-ln911lw0 + 1 + OutParameter + + + + + "Pour quelle(s) raison(s) avez-vous accepté de répondre à cette enquête ?" + + + + + + fr.insee + lm4vpk4r + 1 + CodeList + + + + + + + + fr.insee + lm4vudcf-RDOP-ln90n9fq + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lm4vudcf-RDOP-ln90ubso + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lm4vudcf-RDOP-ln913d78 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lm4vudcf-RDOP-ln90m9r7 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lm4vudcf-RDOP-ln90xj95 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lm4vudcf-RDOP-ln911lw0 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lm4wbzcj + 1 + Instruction + + + + fr.insee + ln919mtn + 1 + + AVIS_SUPPORT + + + fr.insee + ln919mtn-QOP-lna3guyv + 1 + + AVIS_SUPPORT1 + + + + fr.insee + ln919mtn-QOP-lna3mhap + 1 + + AVIS_SUPPORT2 + + + + fr.insee + ln919mtn-QOP-lna3ccqm + 1 + + AVIS_SUPPORT3 + + + + + fr.insee + ln919mtn-RDOP-lna3guyv + 1 + OutParameter + + + fr.insee + ln919mtn-QOP-lna3guyv + 1 + OutParameter + + + + + fr.insee + ln919mtn-RDOP-lna3mhap + 1 + OutParameter + + + fr.insee + ln919mtn-QOP-lna3mhap + 1 + OutParameter + + + + + fr.insee + ln919mtn-RDOP-lna3ccqm + 1 + OutParameter + + + fr.insee + ln919mtn-QOP-lna3ccqm + 1 + OutParameter + + + + + "Sur quel(s) support(s) avez-vous répondu à l’enquête ?" + + + + + + fr.insee + ln91ddlc + 1 + CodeList + + + + + + + + fr.insee + ln919mtn-RDOP-lna3guyv + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + ln919mtn-RDOP-lna3mhap + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + ln919mtn-RDOP-lna3ccqm + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lna2ddml + 1 + Instruction + + + + fr.insee + lna1z5hs + 1 + + AVIS_DIFF + + + fr.insee + lna1z5hs-QOP-lna3g9og + 1 + + AVIS_DIFF1 + + + + fr.insee + lna1z5hs-QOP-lna3o7x6 + 1 + + AVIS_DIFF2 + + + + fr.insee + lna1z5hs-QOP-lna3atiw + 1 + + AVIS_DIFF3 + + + + fr.insee + lna1z5hs-QOP-lna3cm7h + 1 + + AVIS_DIFF4 + + + + fr.insee + lna1z5hs-QOP-lna3ih02 + 1 + + AVIS_DIFF5 + + + + fr.insee + lna1z5hs-QOP-lna3iyg6 + 1 + + AVIS_DIFF6 + + + + fr.insee + lna1z5hs-QOP-lna3n335 + 1 + + AVIS_DIFF7 + + + + fr.insee + lna1z5hs-QOP-lna38km4 + 1 + + AVIS_DIFF8 + + + + + fr.insee + lna1z5hs-RDOP-lna3g9og + 1 + OutParameter + + + fr.insee + lna1z5hs-QOP-lna3g9og + 1 + OutParameter + + + + + fr.insee + lna1z5hs-RDOP-lna3o7x6 + 1 + OutParameter + + + fr.insee + lna1z5hs-QOP-lna3o7x6 + 1 + OutParameter + + + + + fr.insee + lna1z5hs-RDOP-lna3atiw + 1 + OutParameter + + + fr.insee + lna1z5hs-QOP-lna3atiw + 1 + OutParameter + + + + + fr.insee + lna1z5hs-RDOP-lna3cm7h + 1 + OutParameter + + + fr.insee + lna1z5hs-QOP-lna3cm7h + 1 + OutParameter + + + + + fr.insee + lna1z5hs-RDOP-lna3ih02 + 1 + OutParameter + + + fr.insee + lna1z5hs-QOP-lna3ih02 + 1 + OutParameter + + + + + fr.insee + lna1z5hs-RDOP-lna3iyg6 + 1 + OutParameter + + + fr.insee + lna1z5hs-QOP-lna3iyg6 + 1 + OutParameter + + + + + fr.insee + lna1z5hs-RDOP-lna3n335 + 1 + OutParameter + + + fr.insee + lna1z5hs-QOP-lna3n335 + 1 + OutParameter + + + + + fr.insee + lna1z5hs-RDOP-lna38km4 + 1 + OutParameter + + + fr.insee + lna1z5hs-QOP-lna38km4 + 1 + OutParameter + + + + + "Avez-vous rencontré les difficultés suivantes ?" + + + + + + fr.insee + lna2aacf + 1 + CodeList + + + + + + + + fr.insee + lna1z5hs-RDOP-lna3g9og + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lna1z5hs-RDOP-lna3o7x6 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lna1z5hs-RDOP-lna3atiw + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lna1z5hs-RDOP-lna3cm7h + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lna1z5hs-RDOP-lna3ih02 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lna1z5hs-RDOP-lna3iyg6 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lna1z5hs-RDOP-lna3n335 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lna1z5hs-RDOP-lna38km4 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lna2duk7 + 1 + Instruction + + + + + fr.insee + CategoryScheme-kwqa6qr6 + 1 + + OUI_NON + + + fr.insee + CA-kwqa6qr6-1 + 1 + + Oui + + + + fr.insee + CA-kwqa6qr6-2 + 1 + + Non + + + + + fr.insee + CategoryScheme-kwqfz7tj + 1 + + COUP + + + fr.insee + CA-kwqfz7tj-1 + 1 + + "Oui, avec quelqu'un qui vit avec vous dans ce logement" + + + + fr.insee + CA-kwqfz7tj-2 + 1 + + "Oui, avec quelqu'un qui vit dans un autre logement" + + + + fr.insee + CA-kwqfz7tj-3 + 1 + + "Non, mais vous avez déjà été en couple par le passé" + + + + fr.insee + CA-kwqfz7tj-4 + 1 + + "Non, vous n'avez jamais été en couple" + + + + + fr.insee + CategoryScheme-kwqf7soc + 1 + + VIECJ + + + fr.insee + CA-kwqf7soc-1 + 1 + + "Par choix" + + + + fr.insee + CA-kwqf7soc-2 + 1 + + "Pour des raisons professionnelles" + + + + fr.insee + CA-kwqf7soc-3 + 1 + + "Pour des raisons de santé (votre conjoint(e) vit en EHPAD, etc.)" + + + + fr.insee + CA-kwqf7soc-4 + 1 + + "Pour une autre raison" + + + + + fr.insee + CategoryScheme-kwqir1cc + 1 + + SEX_F_H + + + fr.insee + CA-kwqir1cc-1 + 1 + + Une femme + + + + fr.insee + CA-kwqir1cc-2 + 1 + + Un homme + + + + + fr.insee + CategoryScheme-l43yp3tr + 1 + + STATUT_CT + + + fr.insee + CA-l43yp3tr-1 + 1 + + "A son compte (y compris gérant" || ¤ljogftf8-GOP¤ || " de société salarié" || ¤ljogftf8-GOP¤ || ")" + + + + fr.insee + CA-l43yp3tr-2 + 1 + + "Salarié" || ¤ljogftf8-GOP¤ || " de la fonction publique (Etat, territoriale, hospitalière)" + + + + fr.insee + CA-l43yp3tr-3 + 1 + + "Salarié" || ¤ljogftf8-GOP¤ || " d'une entreprise (y compris d'une association ou de la sécurité sociale)" + + + + fr.insee + CA-l43yp3tr-4 + 1 + + "Salarié" || ¤ljogftf8-GOP¤ || " d'un particulier" + + + + fr.insee + CA-l43yp3tr-5 + 1 + + "Aide familial" || ¤ljogftf8-GOP¤ || " non rémunéré" || ¤ljogftf8-GOP¤ + + + + + fr.insee + CategoryScheme-llmhtv0t + 1 + + SAL_PAR2_2M_2 + + + fr.insee + CA-llmhtv0t-1 + 1 + + "Manœuvre, ouvri" || if (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) then "er" else "ère" || " spécialisé" || ¤ljogftf8-GOP¤ + + + + fr.insee + CA-llmhtv0t-2 + 1 + + "Ouvri" || if (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) then "er" else "ère" || " qualifié" || ¤ljogftf8-GOP¤ + + + + fr.insee + CA-llmhtv0t-3 + 1 + + "Technici" || if (¤kwqabjga-QOP-kwqai8pk¤="1" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) then "en" else "enne" + + + + fr.insee + CA-llmhtv0t-4 + 1 + + "Agent" || ¤ljogftf8-GOP¤ || " de catégorie C de la fonction publique" + + + + fr.insee + CA-llmhtv0t-5 + 1 + + "Agent" || ¤ljogftf8-GOP¤ || " de catégorie B de la fonction publique" + + + + fr.insee + CA-llmhtv0t-6 + 1 + + "Agent" || ¤ljogftf8-GOP¤ || " de catégorie A de la fonction publique" + + + + fr.insee + CA-llmhtv0t-7 + 1 + + "Dans une autre situation, je ne sais pas" + + + + + fr.insee + CategoryScheme-llnh4uj2 + 1 + + SAL_2_H + + + fr.insee + CA-llnh4uj2-1 + 1 + + "Manœuvre, ouvri" || if (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) then "er" else "ère" || " spécialisé" || ¤ljogftf8-GOP¤ + + + + fr.insee + CA-llnh4uj2-2 + 1 + + "Ouvri" || if (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) then "er" else "ère" || " qualifié" || ¤ljogftf8-GOP¤ || ", technici" || if (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) then "en" else "enne" || " d'atelier" + + + + fr.insee + CA-llnh4uj2-3 + 1 + + "Employé" || ¤ljogftf8-GOP¤ || " de bureau, de commerce, de services" + + + + fr.insee + CA-llnh4uj2-4 + 1 + + "Agent de maîtrise (y compris administrative ou commerciale)" + + + + fr.insee + CA-llnh4uj2-5 + 1 + + "Technici" || if (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) then "en" else "enne" + + + + fr.insee + CA-llnh4uj2-6 + 1 + + "Ingénieur" || ¤ljogftf8-GOP¤ || ", cadre d'entreprise" + + + + fr.insee + CA-llnh4uj2-7 + 1 + + "Dans une autre situation, je ne sais pas" + + + + + fr.insee + CategoryScheme-lldegmb1 + 1 + + SEX_H_F + + + fr.insee + CA-lldegmb1-1 + 1 + + Un homme + + + + fr.insee + CA-lldegmb1-2 + 1 + + Une femme + + + + + fr.insee + CategoryScheme-llmhgfca + 1 + + STATUT_CT_2 + + + fr.insee + CA-llmhgfca-1 + 1 + + "A son compte (y compris gérant" || ¤llmgtini-GOP¤ || " de société salarié" || ¤llmgtini-GOP¤ || ")" + + + + fr.insee + CA-llmhgfca-2 + 1 + + "Salarié" || ¤llmgtini-GOP¤ || " de la fonction publique (Etat, territoriale, hospitalière)" + + + + fr.insee + CA-llmhgfca-3 + 1 + + "Salarié" || ¤llmgtini-GOP¤ || " d'une entreprise (y compris d'une association ou de la sécurité sociale)" + + + + fr.insee + CA-llmhgfca-4 + 1 + + "Salarié" || ¤llmgtini-GOP¤ || " d'un particulier" + + + + fr.insee + CA-llmhgfca-5 + 1 + + "Aide familial" || ¤llmgtini-GOP¤ || " non rémunéré" || ¤llmgtini-GOP¤ + + + + + fr.insee + CategoryScheme-llgrti9z + 1 + + SAL_PAR2_2F_2 + + + fr.insee + CA-llgrti9z-1 + 1 + + "Manœuvre, ouvri" || if (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "er" else "ère" || " spécialisé" || ¤llmgtini-GOP¤ + + + + fr.insee + CA-llgrti9z-2 + 1 + + "Ouvri" || if (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "er" else "ère" || " qualifié" || ¤llmgtini-GOP¤ + + + + fr.insee + CA-llgrti9z-3 + 1 + + "Technici" || if (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "en" else "enne" + + + + fr.insee + CA-llgrti9z-4 + 1 + + "Agent" || ¤llmgtini-GOP¤ || " de catégorie C de la fonction publique" + + + + fr.insee + CA-llgrti9z-5 + 1 + + "Agent" || ¤llmgtini-GOP¤ || " de catégorie B de la fonction publique" + + + + fr.insee + CA-llgrti9z-6 + 1 + + "Agent" || ¤llmgtini-GOP¤ || " de catégorie A de la fonction publique" + + + + fr.insee + CA-llgrti9z-7 + 1 + + "Dans une autre situation, je ne sais pas" + + + + + fr.insee + CategoryScheme-llnhh1go + 1 + + SAL_2_F + + + fr.insee + CA-llnhh1go-1 + 1 + + "Manœuvre, ouvri" || if (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "er" else "ère" || " spécialisé" || ¤llmgtini-GOP¤ + + + + fr.insee + CA-llnhh1go-2 + 1 + + "Ouvri" || if (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "er" else "ère" || " qualifié" || ¤llmgtini-GOP¤ || ", technici" || if (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "en" else "enne" || " d'atelier" + + + + fr.insee + CA-llnhh1go-3 + 1 + + "Employé" || ¤llmgtini-GOP¤ || " de bureau, de commerce, de services" + + + + fr.insee + CA-llnhh1go-4 + 1 + + "Agent de maîtrise (y compris administrative ou commerciale)" + + + + fr.insee + CA-llnhh1go-5 + 1 + + "Technici" || if (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "en" else "enne" + + + + fr.insee + CA-llnhh1go-6 + 1 + + "Ingénieur" || ¤llmgtini-GOP¤ || ", cadre d'entreprise" + + + + fr.insee + CA-llnhh1go-7 + 1 + + "Dans une autre situation, je ne sais pas" + + + + + fr.insee + CategoryScheme-l5ksmbco + 1 + + SEP + + + fr.insee + CA-l5ksmbco-1 + 1 + + "vous vous êtes séparé" || (if (isnull(¤ln0892lt-GOP¤)) then "" else (if (¤ln0892lt-GOP¤ = "2") then "e" else "")) || " de " || (if (isnull(¤l34grb6h-QOP-l34guyz9¤)) then (if (¤kwqabjga-QOP-kwqai8pk¤="2" and isnull(¤llde3pgg-QOP-lldeidzi¤)) or (¤llde3pgg-QOP-lldeidzi¤="1" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤)) then "votre dernier conjoint " else "votre dernière conjointe ") else ¤l34grb6h-QOP-l34guyz9¤) || " ? " + + + + fr.insee + CA-l5ksmbco-2 + 1 + + "" || (if(isnull(¤l34grb6h-QOP-l34guyz9¤)) then (if ((¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre dernier conjoint" else "votre dernière conjointe") else ¤l34grb6h-QOP-l34guyz9¤) || " est décédé" || (if (((nvl(¤llde3pgg-QOP-lldeidzi¤,"")="") and (nvl(¤kwqabjga-QOP-kwqai8pk¤,"")="")) or (¤llde3pgg-QOP-lldeidzi¤ ="1" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) or (¤kwqabjga-QOP-kwqai8pk¤ = "2" and isnull(¤llde3pgg-QOP-lldeidzi¤))) then " ?" else "e ?") + + + + + fr.insee + CategoryScheme-l4onk0te + 1 + + OUI_NON + + + fr.insee + CA-l4onk0te-1 + 1 + + Oui + + + + fr.insee + CA-l4onk0te-2 + 1 + + Non + + + + + fr.insee + CategoryScheme-l43x5eph + 1 + + ENFCONJ + + + fr.insee + CA-l43x5eph-1 + 1 + + "Non, aucun" + + + + fr.insee + CA-l43x5eph-2 + 1 + + "Oui, tout le temps" + + + + fr.insee + CA-l43x5eph-3 + 1 + + "Oui, au moins la moitié du temps" + + + + fr.insee + CA-l43x5eph-4 + 1 + + "Oui, moins de la moitié du temps" + + + + + fr.insee + CategoryScheme-l5ktegqo + 1 + + SEP1 + + + fr.insee + CA-l5ktegqo-1 + 1 + + "vous vous êtes séparé" || (if (isnull(¤ln0892lt-GOP¤)) then "" else (if (¤ln0892lt-GOP¤ = "2") then "e" else "")) || " de " || (if (isnull(¤kwqa53jx-QOP-kwqa5f6j¤)) then (if (¤l4p8skko-QOP-l4p8w47s¤="2" and isnull(¤lldenssh-QOP-lldeceld¤)) or (¤lldenssh-QOP-lldeceld¤="1" and isnull(¤l4p8skko-QOP-l4p8w47s¤)) or (isnull(¤l4p8skko-QOP-l4p8w47s¤) and isnull(¤lldenssh-QOP-lldeceld¤)) then "votre premier conjoint " else "votre première conjointe ") else ¤kwqa53jx-QOP-kwqa5f6j¤) || " ? " + + + + fr.insee + CA-l5ktegqo-2 + 1 + + "" || (if(isnull(¤kwqa53jx-QOP-kwqa5f6j¤)) then (if ((¤l4p8skko-QOP-l4p8w47s¤="2" or isnull(¤l4p8skko-QOP-l4p8w47s¤)) and (¤lldenssh-QOP-lldeceld¤="1" or isnull(¤lldenssh-QOP-lldeceld¤)) or (isnull(¤l4p8skko-QOP-l4p8w47s¤) and isnull(¤lldenssh-QOP-lldeceld¤))) then "votre premier conjoint" else "votre première conjointe") else ¤kwqa53jx-QOP-kwqa5f6j¤) || " est décédé" || (if (((nvl(¤lldenssh-QOP-lldeceld¤,"")="") and (nvl(¤l4p8skko-QOP-l4p8w47s¤,"")="")) or (¤lldenssh-QOP-lldeceld¤ ="1" and isnull(¤l4p8skko-QOP-l4p8w47s¤)) or (¤l4p8skko-QOP-l4p8w47s¤ = "2" and isnull(¤lldenssh-QOP-lldeceld¤))) then " ?" else "e ?") + + + + + fr.insee + CategoryScheme-las91jew + 1 + + SEP1_2 + + + fr.insee + CA-las91jew-1 + 1 + + "vous vous êtes séparé" || (if (isnull(¤ln0892lt-GOP¤)) then "" else (if (¤ln0892lt-GOP¤ = "2") then "e" else "")) || " de " || (if (isnull(¤l9ilcol6-QOP-l9il24xt¤)) then (if (¤l9ikne2h-QOP-l9ikmsqc¤="2" and isnull(¤lldetngg-QOP-lldefr60¤)) or (¤lldetngg-QOP-lldefr60¤="1" and isnull(¤l9ikne2h-QOP-l9ikmsqc¤)) or (isnull(¤l9ikne2h-QOP-l9ikmsqc¤) and isnull(¤lldetngg-QOP-lldefr60¤)) then "votre autre conjoint " else "votre autre conjointe ") else ¤l9ilcol6-QOP-l9il24xt¤) || " ? " + + + + fr.insee + CA-las91jew-2 + 1 + + "" || (if(isnull(¤l9ilcol6-QOP-l9il24xt¤)) then (if ((¤l9ikne2h-QOP-l9ikmsqc¤="2" or isnull(¤l9ikne2h-QOP-l9ikmsqc¤)) and (¤lldetngg-QOP-lldefr60¤="1" or isnull(¤lldetngg-QOP-lldefr60¤)) or (isnull(¤l9ikne2h-QOP-l9ikmsqc¤) and isnull(¤lldetngg-QOP-lldefr60¤))) then "votre autre conjoint" else "votre autre conjointe") else ¤l9ilcol6-QOP-l9il24xt¤) || " est décédé" || (if (((nvl(¤lldetngg-QOP-lldefr60¤,"")="") and (nvl(¤l9ikne2h-QOP-l9ikmsqc¤,"")="")) or (¤lldetngg-QOP-lldefr60¤ ="1" and isnull(¤l9ikne2h-QOP-l9ikmsqc¤)) or (¤l9ikne2h-QOP-l9ikmsqc¤ = "2" and isnull(¤lldetngg-QOP-lldefr60¤))) then " ?" else "e ?") + + + + + fr.insee + CategoryScheme-l7rlvd0y + 1 + + OUI_NON_2_2 + + + fr.insee + CA-l7rlvd0y-1 + 1 + + Oui + + + + fr.insee + CA-l7rlvd0y-2 + 1 + + Non + + + + + fr.insee + CategoryScheme-llgbzo78 + 1 + + SEXE + + + fr.insee + CA-llgbzo78-1 + 1 + + "Masculin" + + + + fr.insee + CA-llgbzo78-2 + 1 + + "Féminin" + + + + + fr.insee + CategoryScheme-l44726g4 + 1 + + OUI_NON_AUTPAR + + + fr.insee + CA-l44726g4-1 + 1 + + "Oui, il/elle vit avec vous" + + + + fr.insee + CA-l44726g4-2 + 1 + + "Non, il/elle vit ailleurs" + + + + fr.insee + CA-l44726g4-3 + 1 + + "Non, il/elle est décédé(e)" + + + + + fr.insee + CategoryScheme-l1f65uvw + 1 + + FREQCONT_2 + + + fr.insee + CA-l1f65uvw-1 + 1 + + Une ou plusieurs fois par semaine + + + + fr.insee + CA-l1f65uvw-2 + 1 + + Une ou plusieurs fois par mois + + + + fr.insee + CA-l1f65uvw-3 + 1 + + Une ou plusieurs fois par an + + + + fr.insee + CA-l1f65uvw-4 + 1 + + Plus rarement ou jamais + + + + + fr.insee + CategoryScheme-kwqjqlpa + 1 + + SEP + + + fr.insee + CA-kwqjqlpa-1 + 1 + + "Pas de décision" + + + + fr.insee + CA-kwqjqlpa-2 + 1 + + "Résidence alternée" + + + + fr.insee + CA-kwqjqlpa-3 + 1 + + "Principalement chez vous" + + + + fr.insee + CA-kwqjqlpa-4 + 1 + + "Principalement chez son autre parent" + + + + + fr.insee + CategoryScheme-l59njrta + 1 + + ASESANTE + + + fr.insee + CA-l59njrta-1 + 1 + + "Oui, pour des raisons de santé" + + + + fr.insee + CA-l59njrta-2 + 1 + + "Oui, à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants" + + + + fr.insee + CA-l59njrta-3 + 1 + + "Oui, pour une autre raison" + + + + fr.insee + CA-l59njrta-4 + 1 + + "Non" + + + + + fr.insee + CategoryScheme-l448z131 + 1 + + DECISENF21_2 + + + fr.insee + CA-l448z131-1 + 1 + + Pas de décision + + + + fr.insee + CA-l448z131-2 + 1 + + Résidence alternée + + + + fr.insee + CA-l448z131-3 + 1 + + Principalement chez vous + + + + fr.insee + CA-l448z131-4 + 1 + + Principalement chez son autre parent + + + + + fr.insee + CategoryScheme-l8sqimbm + 1 + + ASESANTE_2 + + + fr.insee + CA-l8sqimbm-1 + 1 + + "Pour des raisons de santé" + + + + fr.insee + CA-l8sqimbm-2 + 1 + + "A la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants" + + + + fr.insee + CA-l8sqimbm-3 + 1 + + "Pour une autre raison" + + + + + fr.insee + CategoryScheme-l4ongo32 + 1 + + OUI_NON_2 + + + fr.insee + CA-l4ongo32-1 + 1 + + Oui + + + + fr.insee + CA-l4ongo32-2 + 1 + + Non + + + + + fr.insee + CategoryScheme-l4onqoyo + 1 + + OUI_NON_2 + + + fr.insee + CA-l4onqoyo-1 + 1 + + Oui + + + + fr.insee + CA-l4onqoyo-2 + 1 + + Non + + + + + fr.insee + CategoryScheme-l1g8605s + 1 + + AIDE + + + fr.insee + CA-l1g8605s-1 + 1 + + "Oui, une aide pour les tâches quotidiennes" + + + + fr.insee + CA-l1g8605s-2 + 1 + + "Oui, une aide financière ou matérielle" + + + + fr.insee + CA-l1g8605s-3 + 1 + + "Oui, un soutien moral" + + + + fr.insee + CA-l1g8605s-4 + 1 + + "Oui, vous êtes" || (if (¤ln0892lt-GOP¤ ="1") then " tuteur ou curateur " else " tutrice ou curatrice") + + + + fr.insee + CA-l1g8605s-5 + 1 + + "Non, aucune aide de ce type" + + + + + fr.insee + CategoryScheme-l1ggouwf + 1 + + AIDEQUI + + + fr.insee + CA-l1ggouwf-1 + 1 + + Vos parents + + + + fr.insee + CA-l1ggouwf-2 + 1 + + "" || if (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "Votre conjoint" else "Votre conjointe" + + + + fr.insee + CA-l1ggouwf-3 + 1 + + Vos enfants + + + + fr.insee + CA-l1ggouwf-4 + 1 + + Un autre membre de la famille + + + + + fr.insee + CategoryScheme-l6c3qpag + 1 + + AIDE_2 + + + fr.insee + CA-l6c3qpag-1 + 1 + + "Oui, une aide pour les tâches quotidiennes" + + + + fr.insee + CA-l6c3qpag-2 + 1 + + "Oui, une aide financière ou matérielle" + + + + fr.insee + CA-l6c3qpag-3 + 1 + + "Oui, un soutien moral" + + + + fr.insee + CA-l6c3qpag-4 + 1 + + "Non, aucune aide de ce type" + + + + + fr.insee + CategoryScheme-l1f23fi8 + 1 + + STATM + + + fr.insee + CA-l1f23fi8-1 + 1 + + "A son compte (y compris gérant" || ¤ljog4umf-GOP¤ || " de société salarié" || ¤ljog4umf-GOP¤ || ")" + + + + fr.insee + CA-l1f23fi8-2 + 1 + + "Salarié" || ¤ljog4umf-GOP¤ || " de la fonction publique (Etat, territoriale, hospitalière)" + + + + fr.insee + CA-l1f23fi8-3 + 1 + + "Salarié" || ¤ljog4umf-GOP¤ || " d'une entreprise (y compris d'une association ou de la sécurité sociale)" + + + + fr.insee + CA-l1f23fi8-4 + 1 + + "Salarié" || ¤ljog4umf-GOP¤ || " d'un particulier" + + + + fr.insee + CA-l1f23fi8-5 + 1 + + "Aide familial" || ¤ljog4umf-GOP¤ || " non rémunéré" || ¤ljog4umf-GOP¤ + + + + fr.insee + CA-l1f23fi8-6 + 1 + + "Je ne sais pas" + + + + + fr.insee + CategoryScheme-llgq8911 + 1 + + SAL_PAR1 + + + fr.insee + CA-llgq8911-1 + 1 + + "Manœuvre, ouvri" || if (¤l2kkvar7-QOP-l2kkywzf¤="2" or isnull(¤l2kkvar7-QOP-l2kkywzf¤)) then "er" else "ère" || " spécialisé" || ¤ljog4umf-GOP¤ + + + + fr.insee + CA-llgq8911-2 + 1 + + "Ouvri" || if (¤l2kkvar7-QOP-l2kkywzf¤="2" or isnull(¤l2kkvar7-QOP-l2kkywzf¤)) then "er" else "ère" || " qualifié" || ¤ljog4umf-GOP¤ + + + + fr.insee + CA-llgq8911-3 + 1 + + "Technici" || if (¤l2kkvar7-QOP-l2kkywzf¤="2" or isnull(¤l2kkvar7-QOP-l2kkywzf¤)) then "en" else "enne" + + + + fr.insee + CA-llgq8911-4 + 1 + + "Agent" || ¤ljog4umf-GOP¤ || " de catégorie D de la fonction publique" + + + + fr.insee + CA-llgq8911-5 + 1 + + "Agent" || ¤ljog4umf-GOP¤ || " de catégorie C de la fonction publique" + + + + fr.insee + CA-llgq8911-6 + 1 + + "Agent" || ¤ljog4umf-GOP¤ || " de catégorie B de la fonction publique" + + + + fr.insee + CA-llgq8911-7 + 1 + + "Agent" || ¤ljog4umf-GOP¤ || " de catégorie A de la fonction publique" + + + + fr.insee + CA-llgq8911-8 + 1 + + "Dans une autre situation, je ne sais pas" + + + + + fr.insee + CategoryScheme-llgoa6cg + 1 + + SAL_2_PAR1 + + + fr.insee + CA-llgoa6cg-1 + 1 + + "Manœuvre, ouvri" || if (¤l2kkvar7-QOP-l2kkywzf¤="2" or isnull(¤l2kkvar7-QOP-l2kkywzf¤)) then "er" else "ère" || " spécialisé" || ¤ljog4umf-GOP¤ + + + + fr.insee + CA-llgoa6cg-2 + 1 + + "Ouvri" || if (¤l2kkvar7-QOP-l2kkywzf¤="2" or isnull(¤l2kkvar7-QOP-l2kkywzf¤)) then "er" else "ère" || " qualifié" || ¤ljog4umf-GOP¤ || ", technici" || if (¤l2kkvar7-QOP-l2kkywzf¤="2" or isnull(¤l2kkvar7-QOP-l2kkywzf¤)) then "en" else "enne" || " d'atelier" + + + + fr.insee + CA-llgoa6cg-3 + 1 + + "Employé" || ¤ljog4umf-GOP¤ || " de bureau, de commerce, de services" + + + + fr.insee + CA-llgoa6cg-4 + 1 + + "Agent de maîtrise (y compris administrative ou commerciale)" + + + + fr.insee + CA-llgoa6cg-5 + 1 + + "Technici" || if (¤l2kkvar7-QOP-l2kkywzf¤="2" or isnull(¤l2kkvar7-QOP-l2kkywzf¤)) then "en" else "enne" + + + + fr.insee + CA-llgoa6cg-6 + 1 + + "Ingénieur" || ¤ljog4umf-GOP¤ || ", cadre d'entreprise" + + + + fr.insee + CA-llgoa6cg-7 + 1 + + "Dans une autre situation, je ne sais pas" + + + + + fr.insee + CategoryScheme-l4qualpe + 1 + + VITAUT_2 + + + fr.insee + CA-l4qualpe-1 + 1 + + "Avec vous, dans ce logement" + + + + fr.insee + CA-l4qualpe-2 + 1 + + "Ailleurs" + + + + + fr.insee + CategoryScheme-l4o7x17y + 1 + + OUI_NON_2 + + + fr.insee + CA-l4o7x17y-1 + 1 + + Oui + + + + fr.insee + CA-l4o7x17y-2 + 1 + + Non + + + + + fr.insee + CategoryScheme-l4n5c408 + 1 + + STATM_2 + + + fr.insee + CA-l4n5c408-1 + 1 + + "A son compte (y compris gérant" || ¤ljog5qlp-GOP¤ || " de société salarié" || ¤ljog5qlp-GOP¤ || ")" + + + + fr.insee + CA-l4n5c408-2 + 1 + + "Salarié" || ¤ljog5qlp-GOP¤ || " de la fonction publique (Etat, territoriale, hospitalière)" + + + + fr.insee + CA-l4n5c408-3 + 1 + + "Salarié" || ¤ljog5qlp-GOP¤ || " d'une entreprise (y compris d'une association ou de la sécurité sociale)" + + + + fr.insee + CA-l4n5c408-4 + 1 + + "Salarié" || ¤ljog5qlp-GOP¤ || " d'un particulier" + + + + fr.insee + CA-l4n5c408-5 + 1 + + "Aide familial" || ¤ljog5qlp-GOP¤ || " non rémunéré" || ¤ljog5qlp-GOP¤ + + + + fr.insee + CA-l4n5c408-6 + 1 + + "Je ne sais pas" + + + + + fr.insee + CategoryScheme-llmi5xl5 + 1 + + SAL_PAR2_2 + + + fr.insee + CA-llmi5xl5-1 + 1 + + "Manœuvre, ouvri" || if (¤l27ig4yy-QOP-l27ii3c9¤="2" or isnull(¤l27ig4yy-QOP-l27ii3c9¤)) then "er" else "ère" || " spécialisé" || ¤ljog5qlp-GOP¤ + + + + fr.insee + CA-llmi5xl5-2 + 1 + + "Ouvri" || if (¤l27ig4yy-QOP-l27ii3c9¤="2" or isnull(¤l27ig4yy-QOP-l27ii3c9¤)) then "er" else "ère" || " qualifié" || ¤ljog5qlp-GOP¤ + + + + fr.insee + CA-llmi5xl5-3 + 1 + + "Technici" || if (¤l27ig4yy-QOP-l27ii3c9¤="2" or isnull(¤l27ig4yy-QOP-l27ii3c9¤)) then "en" else "enne" + + + + fr.insee + CA-llmi5xl5-4 + 1 + + "Agent" || ¤ljog5qlp-GOP¤ || " de catégorie D de la fonction publique" + + + + fr.insee + CA-llmi5xl5-5 + 1 + + "Agent" || ¤ljog5qlp-GOP¤ || " de catégorie C de la fonction publique" + + + + fr.insee + CA-llmi5xl5-6 + 1 + + "Agent" || ¤ljog5qlp-GOP¤ || " de catégorie B de la fonction publique" + + + + fr.insee + CA-llmi5xl5-7 + 1 + + "Agent" || ¤ljog5qlp-GOP¤ || " de catégorie A de la fonction publique" + + + + fr.insee + CA-llmi5xl5-8 + 1 + + "Dans une autre situation, je ne sais pas" + + + + + fr.insee + CategoryScheme-llgry90d + 1 + + SAL_2_PAR2 + + + fr.insee + CA-llgry90d-1 + 1 + + "Manœuvre, ouvri" || if (¤l27ig4yy-QOP-l27ii3c9¤="2" or isnull(¤l27ig4yy-QOP-l27ii3c9¤)) then "er" else "ère" || " spécialisé" || ¤ljog5qlp-GOP¤ + + + + fr.insee + CA-llgry90d-2 + 1 + + "Ouvri" || if (¤l27ig4yy-QOP-l27ii3c9¤="2" or isnull(¤l27ig4yy-QOP-l27ii3c9¤)) then "er" else "ère" || " qualifié" || ¤ljog5qlp-GOP¤ || ", technici" || if (¤l27ig4yy-QOP-l27ii3c9¤="2" or isnull(¤l27ig4yy-QOP-l27ii3c9¤)) then "en" else "enne" || " d'atelier" + + + + fr.insee + CA-llgry90d-3 + 1 + + "Employé" || ¤ljog5qlp-GOP¤ || " de bureau, de commerce, de services" + + + + fr.insee + CA-llgry90d-4 + 1 + + "Agent de maîtrise (y compris administrative ou commerciale)" + + + + fr.insee + CA-llgry90d-5 + 1 + + "Technici" || if (¤l27ig4yy-QOP-l27ii3c9¤="2" or isnull(¤l27ig4yy-QOP-l27ii3c9¤)) then "en" else "enne" + + + + fr.insee + CA-llgry90d-6 + 1 + + "Ingénieur" || ¤ljog5qlp-GOP¤ || ", cadre d'entreprise" + + + + fr.insee + CA-llgry90d-7 + 1 + + "Dans une autre situation, je ne sais pas" + + + + + fr.insee + CategoryScheme-lagv1pzu + 1 + + VITAUT_2 + + + fr.insee + CA-lagv1pzu-1 + 1 + + "Avec vous, dans ce logement" + + + + fr.insee + CA-lagv1pzu-2 + 1 + + "Avec " || (if (isnull(¤l2kjnm8k-QOP-l2kjn4vg¤)) then "votre autre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) + + + + fr.insee + CA-lagv1pzu-3 + 1 + + "Ailleurs" + + + + + fr.insee + CategoryScheme-kwqjgcfw + 1 + + VITAUT + + + fr.insee + CA-kwqjgcfw-1 + 1 + + "Avec vous, dans ce logement" + + + + fr.insee + CA-kwqjgcfw-2 + 1 + + "Ailleurs" + + + + + fr.insee + CategoryScheme-l1f5t6b0 + 1 + + JEUN + + + fr.insee + CA-l1f5t6b0-1 + 1 + + Vos deux parents en couple + + + + fr.insee + CA-l1f5t6b0-2 + 1 + + Votre mère seule + + + + fr.insee + CA-l1f5t6b0-3 + 1 + + Votre père seul + + + + fr.insee + CA-l1f5t6b0-4 + 1 + + Votre père et son/sa conjoint(e) + + + + fr.insee + CA-l1f5t6b0-5 + 1 + + Votre mère et son/sa conjoint(e) + + + + fr.insee + CA-l1f5t6b0-6 + 1 + + Une autre personne de votre famille + + + + fr.insee + CA-l1f5t6b0-7 + 1 + + En dehors de votre famille + + + + + fr.insee + CategoryScheme-l43tnvfy + 1 + + PLACEMENT + + + fr.insee + CA-l43tnvfy-1 + 1 + + "Placement en foyer" + + + + fr.insee + CA-l43tnvfy-2 + 1 + + "Placement en famille d''accueil" + + + + fr.insee + CA-l43tnvfy-3 + 1 + + "Placement chez une personne de la famille" + + + + fr.insee + CA-l43tnvfy-4 + 1 + + "Autre type de placement" + + + + + fr.insee + CategoryScheme-ljwxdg2x + 1 + + REP + + + fr.insee + CA-ljwxdg2x-1 + 1 + + "Vous, " || nvl(¤ll2aimkg-GOP¤,"Madame/Monsieur") + + + + fr.insee + CA-ljwxdg2x-2 + 1 + + "Une autre personne" + + + + + fr.insee + CategoryScheme-lm4vxed5 + 1 + + AVIS + + + fr.insee + CA-lm4vxed5-1 + 1 + + "Oui" + + + + fr.insee + CA-lm4vxed5-2 + 1 + + "Non, mais je suis " || (if (¤ln0892lt-GOP¤="1") then "prêt" else "prête") || " à vous donner mon avis sur cette enquête" + + + + fr.insee + CA-lm4vxed5-3 + 1 + + "Non, je souhaite valider mon enquête et vous envoyer mes réponses" + + + + + fr.insee + CategoryScheme-lm4vpk4r + 1 + + RAISON + + + fr.insee + CA-lm4vpk4r-1 + 1 + + "Le sujet m’intéresse" + + + + fr.insee + CA-lm4vpk4r-2 + 1 + + "C'est une enquête obligatoire" + + + + fr.insee + CA-lm4vpk4r-3 + 1 + + "La notice donnée par l’agent recenseur m’a incité" || (if (isnull(¤ln0892lt-GOP¤)) then "" else (if (¤ln0892lt-GOP¤ = "2") then "e" else "")) || " à le faire" + + + + fr.insee + CA-lm4vpk4r-4 + 1 + + "L’agent recenseur m’a incité" || (if (isnull(¤ln0892lt-GOP¤)) then "" else (if (¤ln0892lt-GOP¤ = "2") then "e" else "")) || " à le faire" + + + + fr.insee + CA-lm4vpk4r-5 + 1 + + "La communication de la commune sur l’enquête m’a incité" || (if (isnull(¤ln0892lt-GOP¤)) then "" else (if (¤ln0892lt-GOP¤ = "2") then "e" else "")) || " à le faire" + + + + fr.insee + CA-lm4vpk4r-6 + 1 + + "Pour une autre raison" + + + + + fr.insee + CategoryScheme-lmrsjojv + 1 + + AR + + + fr.insee + CA-lmrsjojv-1 + 1 + + "Oui" + + + + fr.insee + CA-lmrsjojv-2 + 1 + + "Non" + + + + fr.insee + CA-lmrsjojv-3 + 1 + + "Sans objet, je n'ai pas vu l'agent recenseur" + + + + + fr.insee + CategoryScheme-lmrsjetq + 1 + + NOTICE + + + fr.insee + CA-lmrsjetq-1 + 1 + + "Oui" + + + + fr.insee + CA-lmrsjetq-2 + 1 + + "Non" + + + + fr.insee + CA-lmrsjetq-3 + 1 + + "Sans objet, je n'ai pas eu ou lu la notice" + + + + + fr.insee + CategoryScheme-lmrtk3dn + 1 + + SITE_NET + + + fr.insee + CA-lmrtk3dn-1 + 1 + + "Oui, cette page m'a donné toutes les informations nécessaires" + + + + fr.insee + CA-lmrtk3dn-2 + 1 + + "Oui, mais cette page n'était pas assez complète, il manquait des informations" + + + + fr.insee + CA-lmrtk3dn-3 + 1 + + "Non, je n'ai pas consulté cette page" + + + + + fr.insee + CategoryScheme-ln90sqiu + 1 + + MAIL + + + fr.insee + CA-ln90sqiu-1 + 1 + + "J'ai reçu le mail" + + + + fr.insee + CA-ln90sqiu-2 + 1 + + "Une autre personne l’a reçu et me l’a transmis" + + + + fr.insee + CA-ln90sqiu-3 + 1 + + "Je n’ai pas reçu le mail" + + + + fr.insee + CA-ln90sqiu-4 + 1 + + "Je ne me souviens plus, je ne sais pas" + + + + + fr.insee + CategoryScheme-ln91ddlc + 1 + + SUPPORT + + + fr.insee + CA-ln91ddlc-1 + 1 + + "Sur un smartphone" + + + + fr.insee + CA-ln91ddlc-2 + 1 + + "Sur une tablette" + + + + fr.insee + CA-ln91ddlc-3 + 1 + + "Sur un ordinateur" + + + + + fr.insee + CategoryScheme-lna263dc + 1 + + TEL + + + fr.insee + CA-lna263dc-1 + 1 + + "Oui" + + + + fr.insee + CA-lna263dc-2 + 1 + + "Non" + + + + fr.insee + CA-lna263dc-3 + 1 + + "Je n’ai pas d’avis, ça m’est égal" + + + + + fr.insee + CategoryScheme-lna2aacf + 1 + + DIFF + + + fr.insee + CA-lna2aacf-1 + 1 + + "J’ai eu des difficultés pour me connecter au site" + + + + fr.insee + CA-lna2aacf-2 + 1 + + "J’ai eu des difficultés pour dérouler les listes (profession, langue, commune, pays) et/ou cliquer sur la réponse souhaitée" + + + + fr.insee + CA-lna2aacf-3 + 1 + + "J’ai eu des difficultés pour passer aux questions suivantes (je ne voyais pas le bouton, ...)" + + + + fr.insee + CA-lna2aacf-4 + 1 + + "J’étais perdu" || (if (isnull(¤ln0892lt-GOP¤)) then "" else (if (¤ln0892lt-GOP¤ = "2") then "e" else "")) || " dans le questionnaire, je ne savais plus où j’en étais, sur quoi ou qui les questions portaient" + + + + fr.insee + CA-lna2aacf-5 + 1 + + "Il y avait trop de pages, il fallait trop souvent changer d’écran" + + + + fr.insee + CA-lna2aacf-6 + 1 + + "J’ai eu des difficultés pour répondre à certaines questions (questions peu claires, auxquelles je n’avais pas la réponse…)" + + + + fr.insee + CA-lna2aacf-7 + 1 + + "J’ai rencontré d’autres difficultés" + + + + fr.insee + CA-lna2aacf-8 + 1 + + "Non, je n’ai pas eu de difficultés" + + + + + fr.insee + CategoryScheme-lna2mshx + 1 + + ASSIST + + + fr.insee + CA-lna2mshx-1 + 1 + + "Oui, et cela m’a été utile" + + + + fr.insee + CA-lna2mshx-2 + 1 + + "Oui, mais cela ne m’a pas été utile" + + + + fr.insee + CA-lna2mshx-3 + 1 + + "Oui, mais je n’ai pas eu de réponse" + + + + fr.insee + CA-lna2mshx-4 + 1 + + "Non, je n’ai pas eu besoin" + + + + fr.insee + CA-lna2mshx-5 + 1 + + "Non, car je ne savais pas qu’il y avait une assistance" + + + + + fr.insee + CategoryScheme-lmrsgeny + 1 + + SITE + + + fr.insee + CA-lmrsgeny-1 + 1 + + "Oui, ce site m'a donné toutes les informations nécessaires" + + + + fr.insee + CA-lmrsgeny-2 + 1 + + "Oui, mais ce site n'était pas assez complet, il manquait des informations" + + + + fr.insee + CA-lmrsgeny-3 + 1 + + "Non, je n'ai pas consulté ce site" + + + + + fr.insee + CategoryScheme-lnycjn6n + 1 + + A définir + + + fr.insee + INSEE-COMMUN-CA-Booleen-1 + 1 + + + + + + + fr.insee + ENQFAMI24-CLS + 1 + + ENQFAMI24 + + + fr.insee + kwqa6qr6 + 1 + + OUI_NON + + Regular + + Ordinal + + + fr.insee + kwqa6qr6-1 + 1 + + fr.insee + CA-kwqa6qr6-1 + 1 + Category + + 1 + + + fr.insee + kwqa6qr6-2 + 1 + + fr.insee + CA-kwqa6qr6-2 + 1 + Category + + 2 + + + + fr.insee + kwqfz7tj + 1 + + COUP + + Regular + + Ordinal + + + fr.insee + kwqfz7tj-1 + 1 + + fr.insee + CA-kwqfz7tj-1 + 1 + Category + + 1 + + + fr.insee + kwqfz7tj-2 + 1 + + fr.insee + CA-kwqfz7tj-2 + 1 + Category + + 2 + + + fr.insee + kwqfz7tj-3 + 1 + + fr.insee + CA-kwqfz7tj-3 + 1 + Category + + 3 + + + fr.insee + kwqfz7tj-4 + 1 + + fr.insee + CA-kwqfz7tj-4 + 1 + Category + + 4 + + + + fr.insee + kwqf7soc + 1 + + VIECJ + + Regular + + Ordinal + + + fr.insee + kwqf7soc-1 + 1 + + fr.insee + CA-kwqf7soc-1 + 1 + Category + + 1 + + + fr.insee + kwqf7soc-2 + 1 + + fr.insee + CA-kwqf7soc-2 + 1 + Category + + 2 + + + fr.insee + kwqf7soc-3 + 1 + + fr.insee + CA-kwqf7soc-3 + 1 + Category + + 3 + + + fr.insee + kwqf7soc-4 + 1 + + fr.insee + CA-kwqf7soc-4 + 1 + Category + + 4 + + + + fr.insee + kwqir1cc + 1 + + SEX_F_H + + Regular + + Ordinal + + + fr.insee + kwqir1cc-1 + 1 + + fr.insee + CA-kwqir1cc-1 + 1 + Category + + 1 + + + fr.insee + kwqir1cc-2 + 1 + + fr.insee + CA-kwqir1cc-2 + 1 + Category + + 2 + + + + fr.insee + l43yp3tr + 1 + + STATUT_CT + + Regular + + Ordinal + + + fr.insee + l43yp3tr-1 + 1 + + fr.insee + CA-l43yp3tr-1 + 1 + Category + + 1 + + + fr.insee + l43yp3tr-2 + 1 + + fr.insee + CA-l43yp3tr-2 + 1 + Category + + 2 + + + fr.insee + l43yp3tr-3 + 1 + + fr.insee + CA-l43yp3tr-3 + 1 + Category + + 3 + + + fr.insee + l43yp3tr-4 + 1 + + fr.insee + CA-l43yp3tr-4 + 1 + Category + + 4 + + + fr.insee + l43yp3tr-5 + 1 + + fr.insee + CA-l43yp3tr-5 + 1 + Category + + 5 + + + + fr.insee + llmhtv0t + 1 + + SAL_PAR2_2M_2 + + Regular + + Ordinal + + + fr.insee + llmhtv0t-1 + 1 + + fr.insee + CA-llmhtv0t-1 + 1 + Category + + 1 + + + fr.insee + llmhtv0t-2 + 1 + + fr.insee + CA-llmhtv0t-2 + 1 + Category + + 2 + + + fr.insee + llmhtv0t-3 + 1 + + fr.insee + CA-llmhtv0t-3 + 1 + Category + + 3 + + + fr.insee + llmhtv0t-4 + 1 + + fr.insee + CA-llmhtv0t-4 + 1 + Category + + 4 + + + fr.insee + llmhtv0t-5 + 1 + + fr.insee + CA-llmhtv0t-5 + 1 + Category + + 5 + + + fr.insee + llmhtv0t-6 + 1 + + fr.insee + CA-llmhtv0t-6 + 1 + Category + + 6 + + + fr.insee + llmhtv0t-7 + 1 + + fr.insee + CA-llmhtv0t-7 + 1 + Category + + 7 + + + + fr.insee + llnh4uj2 + 1 + + SAL_2_H + + Regular + + Ordinal + + + fr.insee + llnh4uj2-1 + 1 + + fr.insee + CA-llnh4uj2-1 + 1 + Category + + 1 + + + fr.insee + llnh4uj2-2 + 1 + + fr.insee + CA-llnh4uj2-2 + 1 + Category + + 2 + + + fr.insee + llnh4uj2-3 + 1 + + fr.insee + CA-llnh4uj2-3 + 1 + Category + + 3 + + + fr.insee + llnh4uj2-4 + 1 + + fr.insee + CA-llnh4uj2-4 + 1 + Category + + 4 + + + fr.insee + llnh4uj2-5 + 1 + + fr.insee + CA-llnh4uj2-5 + 1 + Category + + 5 + + + fr.insee + llnh4uj2-6 + 1 + + fr.insee + CA-llnh4uj2-6 + 1 + Category + + 6 + + + fr.insee + llnh4uj2-7 + 1 + + fr.insee + CA-llnh4uj2-7 + 1 + Category + + 7 + + + + fr.insee + lldegmb1 + 1 + + SEX_H_F + + Regular + + Ordinal + + + fr.insee + lldegmb1-1 + 1 + + fr.insee + CA-lldegmb1-1 + 1 + Category + + 1 + + + fr.insee + lldegmb1-2 + 1 + + fr.insee + CA-lldegmb1-2 + 1 + Category + + 2 + + + + fr.insee + llmhgfca + 1 + + STATUT_CT_2 + + Regular + + Ordinal + + + fr.insee + llmhgfca-1 + 1 + + fr.insee + CA-llmhgfca-1 + 1 + Category + + 1 + + + fr.insee + llmhgfca-2 + 1 + + fr.insee + CA-llmhgfca-2 + 1 + Category + + 2 + + + fr.insee + llmhgfca-3 + 1 + + fr.insee + CA-llmhgfca-3 + 1 + Category + + 3 + + + fr.insee + llmhgfca-4 + 1 + + fr.insee + CA-llmhgfca-4 + 1 + Category + + 4 + + + fr.insee + llmhgfca-5 + 1 + + fr.insee + CA-llmhgfca-5 + 1 + Category + + 5 + + + + fr.insee + llgrti9z + 1 + + SAL_PAR2_2F_2 + + Regular + + Ordinal + + + fr.insee + llgrti9z-1 + 1 + + fr.insee + CA-llgrti9z-1 + 1 + Category + + 1 + + + fr.insee + llgrti9z-2 + 1 + + fr.insee + CA-llgrti9z-2 + 1 + Category + + 2 + + + fr.insee + llgrti9z-3 + 1 + + fr.insee + CA-llgrti9z-3 + 1 + Category + + 3 + + + fr.insee + llgrti9z-4 + 1 + + fr.insee + CA-llgrti9z-4 + 1 + Category + + 4 + + + fr.insee + llgrti9z-5 + 1 + + fr.insee + CA-llgrti9z-5 + 1 + Category + + 5 + + + fr.insee + llgrti9z-6 + 1 + + fr.insee + CA-llgrti9z-6 + 1 + Category + + 6 + + + fr.insee + llgrti9z-7 + 1 + + fr.insee + CA-llgrti9z-7 + 1 + Category + + 7 + + + + fr.insee + llnhh1go + 1 + + SAL_2_F + + Regular + + Ordinal + + + fr.insee + llnhh1go-1 + 1 + + fr.insee + CA-llnhh1go-1 + 1 + Category + + 1 + + + fr.insee + llnhh1go-2 + 1 + + fr.insee + CA-llnhh1go-2 + 1 + Category + + 2 + + + fr.insee + llnhh1go-3 + 1 + + fr.insee + CA-llnhh1go-3 + 1 + Category + + 3 + + + fr.insee + llnhh1go-4 + 1 + + fr.insee + CA-llnhh1go-4 + 1 + Category + + 4 + + + fr.insee + llnhh1go-5 + 1 + + fr.insee + CA-llnhh1go-5 + 1 + Category + + 5 + + + fr.insee + llnhh1go-6 + 1 + + fr.insee + CA-llnhh1go-6 + 1 + Category + + 6 + + + fr.insee + llnhh1go-7 + 1 + + fr.insee + CA-llnhh1go-7 + 1 + Category + + 7 + + + + fr.insee + l5ksmbco + 1 + + SEP + + Regular + + Ordinal + + + fr.insee + l5ksmbco-1 + 1 + + fr.insee + CA-l5ksmbco-1 + 1 + Category + + 1 + + + fr.insee + l5ksmbco-2 + 1 + + fr.insee + CA-l5ksmbco-2 + 1 + Category + + 2 + + + + fr.insee + l4onk0te + 1 + + OUI_NON + + Regular + + Ordinal + + + fr.insee + l4onk0te-1 + 1 + + fr.insee + CA-l4onk0te-1 + 1 + Category + + 1 + + + fr.insee + l4onk0te-2 + 1 + + fr.insee + CA-l4onk0te-2 + 1 + Category + + 2 + + + + fr.insee + l43x5eph + 1 + + ENFCONJ + + Regular + + Ordinal + + + fr.insee + l43x5eph-1 + 1 + + fr.insee + CA-l43x5eph-1 + 1 + Category + + 4 + + + fr.insee + l43x5eph-2 + 1 + + fr.insee + CA-l43x5eph-2 + 1 + Category + + 1 + + + fr.insee + l43x5eph-3 + 1 + + fr.insee + CA-l43x5eph-3 + 1 + Category + + 2 + + + fr.insee + l43x5eph-4 + 1 + + fr.insee + CA-l43x5eph-4 + 1 + Category + + 3 + + + + fr.insee + l5ktegqo + 1 + + SEP1 + + Regular + + Ordinal + + + fr.insee + l5ktegqo-1 + 1 + + fr.insee + CA-l5ktegqo-1 + 1 + Category + + 1 + + + fr.insee + l5ktegqo-2 + 1 + + fr.insee + CA-l5ktegqo-2 + 1 + Category + + 2 + + + + fr.insee + las91jew + 1 + + SEP1_2 + + Regular + + Ordinal + + + fr.insee + las91jew-1 + 1 + + fr.insee + CA-las91jew-1 + 1 + Category + + 1 + + + fr.insee + las91jew-2 + 1 + + fr.insee + CA-las91jew-2 + 1 + Category + + 2 + + + + fr.insee + l7rlvd0y + 1 + + OUI_NON_2_2 + + Regular + + Ordinal + + + fr.insee + l7rlvd0y-1 + 1 + + fr.insee + CA-l7rlvd0y-1 + 1 + Category + + 1 + + + fr.insee + l7rlvd0y-2 + 1 + + fr.insee + CA-l7rlvd0y-2 + 1 + Category + + 2 + + + + fr.insee + llgbzo78 + 1 + + SEXE + + Regular + + Ordinal + + + fr.insee + llgbzo78-1 + 1 + + fr.insee + CA-llgbzo78-1 + 1 + Category + + 1 + + + fr.insee + llgbzo78-2 + 1 + + fr.insee + CA-llgbzo78-2 + 1 + Category + + 2 + + + + fr.insee + l44726g4 + 1 + + OUI_NON_AUTPAR + + Regular + + Ordinal + + + fr.insee + l44726g4-1 + 1 + + fr.insee + CA-l44726g4-1 + 1 + Category + + 1 + + + fr.insee + l44726g4-2 + 1 + + fr.insee + CA-l44726g4-2 + 1 + Category + + 2 + + + fr.insee + l44726g4-3 + 1 + + fr.insee + CA-l44726g4-3 + 1 + Category + + 3 + + + + fr.insee + l1f65uvw + 1 + + FREQCONT_2 + + Regular + + Ordinal + + + fr.insee + l1f65uvw-1 + 1 + + fr.insee + CA-l1f65uvw-1 + 1 + Category + + 2 + + + fr.insee + l1f65uvw-2 + 1 + + fr.insee + CA-l1f65uvw-2 + 1 + Category + + 3 + + + fr.insee + l1f65uvw-3 + 1 + + fr.insee + CA-l1f65uvw-3 + 1 + Category + + 4 + + + fr.insee + l1f65uvw-4 + 1 + + fr.insee + CA-l1f65uvw-4 + 1 + Category + + 5 + + + + fr.insee + kwqjqlpa + 1 + + SEP + + Regular + + Ordinal + + + fr.insee + kwqjqlpa-1 + 1 + + fr.insee + CA-kwqjqlpa-1 + 1 + Category + + 2 + + + fr.insee + kwqjqlpa-2 + 1 + + fr.insee + CA-kwqjqlpa-2 + 1 + Category + + 3 + + + fr.insee + kwqjqlpa-3 + 1 + + fr.insee + CA-kwqjqlpa-3 + 1 + Category + + 4 + + + fr.insee + kwqjqlpa-4 + 1 + + fr.insee + CA-kwqjqlpa-4 + 1 + Category + + 5 + + + + fr.insee + l59njrta + 1 + + ASESANTE + + Regular + + Ordinal + + + fr.insee + l59njrta-1 + 1 + + fr.insee + CA-l59njrta-1 + 1 + Category + + 1 + + + fr.insee + l59njrta-2 + 1 + + fr.insee + CA-l59njrta-2 + 1 + Category + + 2 + + + fr.insee + l59njrta-3 + 1 + + fr.insee + CA-l59njrta-3 + 1 + Category + + 3 + + + fr.insee + l59njrta-4 + 1 + + fr.insee + CA-l59njrta-4 + 1 + Category + + 4 + + + + fr.insee + l448z131 + 1 + + DECISENF21_2 + + Regular + + Ordinal + + + fr.insee + l448z131-1 + 1 + + fr.insee + CA-l448z131-1 + 1 + Category + + 1 + + + fr.insee + l448z131-2 + 1 + + fr.insee + CA-l448z131-2 + 1 + Category + + 2 + + + fr.insee + l448z131-3 + 1 + + fr.insee + CA-l448z131-3 + 1 + Category + + 3 + + + fr.insee + l448z131-4 + 1 + + fr.insee + CA-l448z131-4 + 1 + Category + + 4 + + + + fr.insee + l8sqimbm + 1 + + ASESANTE_2 + + Regular + + Ordinal + + + fr.insee + l8sqimbm-1 + 1 + + fr.insee + CA-l8sqimbm-1 + 1 + Category + + 1 + + + fr.insee + l8sqimbm-2 + 1 + + fr.insee + CA-l8sqimbm-2 + 1 + Category + + 2 + + + fr.insee + l8sqimbm-3 + 1 + + fr.insee + CA-l8sqimbm-3 + 1 + Category + + 3 + + + + fr.insee + l4ongo32 + 1 + + OUI_NON_2 + + Regular + + Ordinal + + + fr.insee + l4ongo32-1 + 1 + + fr.insee + CA-l4ongo32-1 + 1 + Category + + 1 + + + fr.insee + l4ongo32-2 + 1 + + fr.insee + CA-l4ongo32-2 + 1 + Category + + 2 + + + + fr.insee + l4onqoyo + 1 + + OUI_NON_2 + + Regular + + Ordinal + + + fr.insee + l4onqoyo-1 + 1 + + fr.insee + CA-l4onqoyo-1 + 1 + Category + + 1 + + + fr.insee + l4onqoyo-2 + 1 + + fr.insee + CA-l4onqoyo-2 + 1 + Category + + 2 + + + + fr.insee + l1g8605s + 1 + + AIDE + + Regular + + Ordinal + + + fr.insee + l1g8605s-1 + 1 + + fr.insee + CA-l1g8605s-1 + 1 + Category + + 1 + + + fr.insee + l1g8605s-2 + 1 + + fr.insee + CA-l1g8605s-2 + 1 + Category + + 2 + + + fr.insee + l1g8605s-3 + 1 + + fr.insee + CA-l1g8605s-3 + 1 + Category + + 3 + + + fr.insee + l1g8605s-4 + 1 + + fr.insee + CA-l1g8605s-4 + 1 + Category + + 4 + + + fr.insee + l1g8605s-5 + 1 + + fr.insee + CA-l1g8605s-5 + 1 + Category + + 5 + + + + fr.insee + l1ggouwf + 1 + + AIDEQUI + + Regular + + Ordinal + + + fr.insee + l1ggouwf-1 + 1 + + fr.insee + CA-l1ggouwf-1 + 1 + Category + + 1 + + + fr.insee + l1ggouwf-2 + 1 + + fr.insee + CA-l1ggouwf-2 + 1 + Category + + 2 + + + fr.insee + l1ggouwf-3 + 1 + + fr.insee + CA-l1ggouwf-3 + 1 + Category + + 3 + + + fr.insee + l1ggouwf-4 + 1 + + fr.insee + CA-l1ggouwf-4 + 1 + Category + + 4 + + + + fr.insee + l6c3qpag + 1 + + AIDE_2 + + Regular + + Ordinal + + + fr.insee + l6c3qpag-1 + 1 + + fr.insee + CA-l6c3qpag-1 + 1 + Category + + 1 + + + fr.insee + l6c3qpag-2 + 1 + + fr.insee + CA-l6c3qpag-2 + 1 + Category + + 2 + + + fr.insee + l6c3qpag-3 + 1 + + fr.insee + CA-l6c3qpag-3 + 1 + Category + + 3 + + + fr.insee + l6c3qpag-4 + 1 + + fr.insee + CA-l6c3qpag-4 + 1 + Category + + 5 + + + + fr.insee + l1f23fi8 + 1 + + STATM + + Regular + + Ordinal + + + fr.insee + l1f23fi8-1 + 1 + + fr.insee + CA-l1f23fi8-1 + 1 + Category + + 1 + + + fr.insee + l1f23fi8-2 + 1 + + fr.insee + CA-l1f23fi8-2 + 1 + Category + + 2 + + + fr.insee + l1f23fi8-3 + 1 + + fr.insee + CA-l1f23fi8-3 + 1 + Category + + 3 + + + fr.insee + l1f23fi8-4 + 1 + + fr.insee + CA-l1f23fi8-4 + 1 + Category + + 4 + + + fr.insee + l1f23fi8-5 + 1 + + fr.insee + CA-l1f23fi8-5 + 1 + Category + + 5 + + + fr.insee + l1f23fi8-6 + 1 + + fr.insee + CA-l1f23fi8-6 + 1 + Category + + 6 + + + + fr.insee + llgq8911 + 1 + + SAL_PAR1 + + Regular + + Ordinal + + + fr.insee + llgq8911-1 + 1 + + fr.insee + CA-llgq8911-1 + 1 + Category + + 1 + + + fr.insee + llgq8911-2 + 1 + + fr.insee + CA-llgq8911-2 + 1 + Category + + 2 + + + fr.insee + llgq8911-3 + 1 + + fr.insee + CA-llgq8911-3 + 1 + Category + + 3 + + + fr.insee + llgq8911-4 + 1 + + fr.insee + CA-llgq8911-4 + 1 + Category + + 4 + + + fr.insee + llgq8911-5 + 1 + + fr.insee + CA-llgq8911-5 + 1 + Category + + 5 + + + fr.insee + llgq8911-6 + 1 + + fr.insee + CA-llgq8911-6 + 1 + Category + + 6 + + + fr.insee + llgq8911-7 + 1 + + fr.insee + CA-llgq8911-7 + 1 + Category + + 7 + + + fr.insee + llgq8911-8 + 1 + + fr.insee + CA-llgq8911-8 + 1 + Category + + 8 + + + + fr.insee + llgoa6cg + 1 + + SAL_2_PAR1 + + Regular + + Ordinal + + + fr.insee + llgoa6cg-1 + 1 + + fr.insee + CA-llgoa6cg-1 + 1 + Category + + 1 + + + fr.insee + llgoa6cg-2 + 1 + + fr.insee + CA-llgoa6cg-2 + 1 + Category + + 2 + + + fr.insee + llgoa6cg-3 + 1 + + fr.insee + CA-llgoa6cg-3 + 1 + Category + + 3 + + + fr.insee + llgoa6cg-4 + 1 + + fr.insee + CA-llgoa6cg-4 + 1 + Category + + 4 + + + fr.insee + llgoa6cg-5 + 1 + + fr.insee + CA-llgoa6cg-5 + 1 + Category + + 5 + + + fr.insee + llgoa6cg-6 + 1 + + fr.insee + CA-llgoa6cg-6 + 1 + Category + + 6 + + + fr.insee + llgoa6cg-7 + 1 + + fr.insee + CA-llgoa6cg-7 + 1 + Category + + 7 + + + + fr.insee + l4qualpe + 1 + + VITAUT_2 + + Regular + + Ordinal + + + fr.insee + l4qualpe-1 + 1 + + fr.insee + CA-l4qualpe-1 + 1 + Category + + 1 + + + fr.insee + l4qualpe-2 + 1 + + fr.insee + CA-l4qualpe-2 + 1 + Category + + 2 + + + + fr.insee + l4o7x17y + 1 + + OUI_NON_2 + + Regular + + Ordinal + + + fr.insee + l4o7x17y-1 + 1 + + fr.insee + CA-l4o7x17y-1 + 1 + Category + + 1 + + + fr.insee + l4o7x17y-2 + 1 + + fr.insee + CA-l4o7x17y-2 + 1 + Category + + 2 + + + + fr.insee + l4n5c408 + 1 + + STATM_2 + + Regular + + Ordinal + + + fr.insee + l4n5c408-1 + 1 + + fr.insee + CA-l4n5c408-1 + 1 + Category + + 1 + + + fr.insee + l4n5c408-2 + 1 + + fr.insee + CA-l4n5c408-2 + 1 + Category + + 2 + + + fr.insee + l4n5c408-3 + 1 + + fr.insee + CA-l4n5c408-3 + 1 + Category + + 3 + + + fr.insee + l4n5c408-4 + 1 + + fr.insee + CA-l4n5c408-4 + 1 + Category + + 4 + + + fr.insee + l4n5c408-5 + 1 + + fr.insee + CA-l4n5c408-5 + 1 + Category + + 5 + + + fr.insee + l4n5c408-6 + 1 + + fr.insee + CA-l4n5c408-6 + 1 + Category + + 6 + + + + fr.insee + llmi5xl5 + 1 + + SAL_PAR2_2 + + Regular + + Ordinal + + + fr.insee + llmi5xl5-1 + 1 + + fr.insee + CA-llmi5xl5-1 + 1 + Category + + 1 + + + fr.insee + llmi5xl5-2 + 1 + + fr.insee + CA-llmi5xl5-2 + 1 + Category + + 2 + + + fr.insee + llmi5xl5-3 + 1 + + fr.insee + CA-llmi5xl5-3 + 1 + Category + + 3 + + + fr.insee + llmi5xl5-4 + 1 + + fr.insee + CA-llmi5xl5-4 + 1 + Category + + 4 + + + fr.insee + llmi5xl5-5 + 1 + + fr.insee + CA-llmi5xl5-5 + 1 + Category + + 5 + + + fr.insee + llmi5xl5-6 + 1 + + fr.insee + CA-llmi5xl5-6 + 1 + Category + + 6 + + + fr.insee + llmi5xl5-7 + 1 + + fr.insee + CA-llmi5xl5-7 + 1 + Category + + 7 + + + fr.insee + llmi5xl5-8 + 1 + + fr.insee + CA-llmi5xl5-8 + 1 + Category + + 8 + + + + fr.insee + llgry90d + 1 + + SAL_2_PAR2 + + Regular + + Ordinal + + + fr.insee + llgry90d-1 + 1 + + fr.insee + CA-llgry90d-1 + 1 + Category + + 1 + + + fr.insee + llgry90d-2 + 1 + + fr.insee + CA-llgry90d-2 + 1 + Category + + 2 + + + fr.insee + llgry90d-3 + 1 + + fr.insee + CA-llgry90d-3 + 1 + Category + + 3 + + + fr.insee + llgry90d-4 + 1 + + fr.insee + CA-llgry90d-4 + 1 + Category + + 4 + + + fr.insee + llgry90d-5 + 1 + + fr.insee + CA-llgry90d-5 + 1 + Category + + 5 + + + fr.insee + llgry90d-6 + 1 + + fr.insee + CA-llgry90d-6 + 1 + Category + + 6 + + + fr.insee + llgry90d-7 + 1 + + fr.insee + CA-llgry90d-7 + 1 + Category + + 7 + + + + fr.insee + lagv1pzu + 1 + + VITAUT_2 + + Regular + + Ordinal + + + fr.insee + lagv1pzu-1 + 1 + + fr.insee + CA-lagv1pzu-1 + 1 + Category + + 1 + + + fr.insee + lagv1pzu-2 + 1 + + fr.insee + CA-lagv1pzu-2 + 1 + Category + + 2 + + + fr.insee + lagv1pzu-3 + 1 + + fr.insee + CA-lagv1pzu-3 + 1 + Category + + 3 + + + + fr.insee + kwqjgcfw + 1 + + VITAUT + + Regular + + Ordinal + + + fr.insee + kwqjgcfw-1 + 1 + + fr.insee + CA-kwqjgcfw-1 + 1 + Category + + 1 + + + fr.insee + kwqjgcfw-2 + 1 + + fr.insee + CA-kwqjgcfw-2 + 1 + Category + + 2 + + + + fr.insee + l1f5t6b0 + 1 + + JEUN + + Regular + + Ordinal + + + fr.insee + l1f5t6b0-1 + 1 + + fr.insee + CA-l1f5t6b0-1 + 1 + Category + + 1 + + + fr.insee + l1f5t6b0-2 + 1 + + fr.insee + CA-l1f5t6b0-2 + 1 + Category + + 2 + + + fr.insee + l1f5t6b0-3 + 1 + + fr.insee + CA-l1f5t6b0-3 + 1 + Category + + 3 + + + fr.insee + l1f5t6b0-4 + 1 + + fr.insee + CA-l1f5t6b0-4 + 1 + Category + + 4 + + + fr.insee + l1f5t6b0-5 + 1 + + fr.insee + CA-l1f5t6b0-5 + 1 + Category + + 5 + + + fr.insee + l1f5t6b0-6 + 1 + + fr.insee + CA-l1f5t6b0-6 + 1 + Category + + 6 + + + fr.insee + l1f5t6b0-7 + 1 + + fr.insee + CA-l1f5t6b0-7 + 1 + Category + + 7 + + + + fr.insee + l43tnvfy + 1 + + PLACEMENT + + Regular + + Ordinal + + + fr.insee + l43tnvfy-1 + 1 + + fr.insee + CA-l43tnvfy-1 + 1 + Category + + 1 + + + fr.insee + l43tnvfy-2 + 1 + + fr.insee + CA-l43tnvfy-2 + 1 + Category + + 2 + + + fr.insee + l43tnvfy-3 + 1 + + fr.insee + CA-l43tnvfy-3 + 1 + Category + + 3 + + + fr.insee + l43tnvfy-4 + 1 + + fr.insee + CA-l43tnvfy-4 + 1 + Category + + 4 + + + + fr.insee + ljwxdg2x + 1 + + REP + + Regular + + Ordinal + + + fr.insee + ljwxdg2x-1 + 1 + + fr.insee + CA-ljwxdg2x-1 + 1 + Category + + 1 + + + fr.insee + ljwxdg2x-2 + 1 + + fr.insee + CA-ljwxdg2x-2 + 1 + Category + + 2 + + + + fr.insee + lm4vxed5 + 1 + + AVIS + + Regular + + Ordinal + + + fr.insee + lm4vxed5-1 + 1 + + fr.insee + CA-lm4vxed5-1 + 1 + Category + + 1 + + + fr.insee + lm4vxed5-2 + 1 + + fr.insee + CA-lm4vxed5-2 + 1 + Category + + 2 + + + fr.insee + lm4vxed5-3 + 1 + + fr.insee + CA-lm4vxed5-3 + 1 + Category + + 3 + + + + fr.insee + lm4vpk4r + 1 + + RAISON + + Regular + + Ordinal + + + fr.insee + lm4vpk4r-1 + 1 + + fr.insee + CA-lm4vpk4r-1 + 1 + Category + + 1 + + + fr.insee + lm4vpk4r-2 + 1 + + fr.insee + CA-lm4vpk4r-2 + 1 + Category + + 2 + + + fr.insee + lm4vpk4r-3 + 1 + + fr.insee + CA-lm4vpk4r-3 + 1 + Category + + 3 + + + fr.insee + lm4vpk4r-4 + 1 + + fr.insee + CA-lm4vpk4r-4 + 1 + Category + + 4 + + + fr.insee + lm4vpk4r-5 + 1 + + fr.insee + CA-lm4vpk4r-5 + 1 + Category + + 5 + + + fr.insee + lm4vpk4r-6 + 1 + + fr.insee + CA-lm4vpk4r-6 + 1 + Category + + 6 + + + + fr.insee + lmrsjojv + 1 + + AR + + Regular + + Ordinal + + + fr.insee + lmrsjojv-1 + 1 + + fr.insee + CA-lmrsjojv-1 + 1 + Category + + 1 + + + fr.insee + lmrsjojv-2 + 1 + + fr.insee + CA-lmrsjojv-2 + 1 + Category + + 2 + + + fr.insee + lmrsjojv-3 + 1 + + fr.insee + CA-lmrsjojv-3 + 1 + Category + + 3 + + + + fr.insee + lmrsjetq + 1 + + NOTICE + + Regular + + Ordinal + + + fr.insee + lmrsjetq-1 + 1 + + fr.insee + CA-lmrsjetq-1 + 1 + Category + + 1 + + + fr.insee + lmrsjetq-2 + 1 + + fr.insee + CA-lmrsjetq-2 + 1 + Category + + 2 + + + fr.insee + lmrsjetq-3 + 1 + + fr.insee + CA-lmrsjetq-3 + 1 + Category + + 3 + + + + fr.insee + lmrtk3dn + 1 + + SITE_NET + + Regular + + Ordinal + + + fr.insee + lmrtk3dn-1 + 1 + + fr.insee + CA-lmrtk3dn-1 + 1 + Category + + 1 + + + fr.insee + lmrtk3dn-2 + 1 + + fr.insee + CA-lmrtk3dn-2 + 1 + Category + + 2 + + + fr.insee + lmrtk3dn-3 + 1 + + fr.insee + CA-lmrtk3dn-3 + 1 + Category + + 3 + + + + fr.insee + ln90sqiu + 1 + + MAIL + + Regular + + Ordinal + + + fr.insee + ln90sqiu-1 + 1 + + fr.insee + CA-ln90sqiu-1 + 1 + Category + + 1 + + + fr.insee + ln90sqiu-2 + 1 + + fr.insee + CA-ln90sqiu-2 + 1 + Category + + 2 + + + fr.insee + ln90sqiu-3 + 1 + + fr.insee + CA-ln90sqiu-3 + 1 + Category + + 3 + + + fr.insee + ln90sqiu-4 + 1 + + fr.insee + CA-ln90sqiu-4 + 1 + Category + + 4 + + + + fr.insee + ln91ddlc + 1 + + SUPPORT + + Regular + + Ordinal + + + fr.insee + ln91ddlc-1 + 1 + + fr.insee + CA-ln91ddlc-1 + 1 + Category + + 1 + + + fr.insee + ln91ddlc-2 + 1 + + fr.insee + CA-ln91ddlc-2 + 1 + Category + + 2 + + + fr.insee + ln91ddlc-3 + 1 + + fr.insee + CA-ln91ddlc-3 + 1 + Category + + 3 + + + + fr.insee + lna263dc + 1 + + TEL + + Regular + + Ordinal + + + fr.insee + lna263dc-1 + 1 + + fr.insee + CA-lna263dc-1 + 1 + Category + + 1 + + + fr.insee + lna263dc-2 + 1 + + fr.insee + CA-lna263dc-2 + 1 + Category + + 2" + + + fr.insee + lna263dc-3 + 1 + + fr.insee + CA-lna263dc-3 + 1 + Category + + 3 + + + + fr.insee + lna2aacf + 1 + + DIFF + + Regular + + Ordinal + + + fr.insee + lna2aacf-1 + 1 + + fr.insee + CA-lna2aacf-1 + 1 + Category + + 1 + + + fr.insee + lna2aacf-2 + 1 + + fr.insee + CA-lna2aacf-2 + 1 + Category + + 2 + + + fr.insee + lna2aacf-3 + 1 + + fr.insee + CA-lna2aacf-3 + 1 + Category + + 3 + + + fr.insee + lna2aacf-4 + 1 + + fr.insee + CA-lna2aacf-4 + 1 + Category + + 4 + + + fr.insee + lna2aacf-5 + 1 + + fr.insee + CA-lna2aacf-5 + 1 + Category + + 5 + + + fr.insee + lna2aacf-6 + 1 + + fr.insee + CA-lna2aacf-6 + 1 + Category + + 6 + + + fr.insee + lna2aacf-7 + 1 + + fr.insee + CA-lna2aacf-7 + 1 + Category + + 7 + + + fr.insee + lna2aacf-8 + 1 + + fr.insee + CA-lna2aacf-8 + 1 + Category + + 8 + + + + fr.insee + lna2mshx + 1 + + ASSIST + + Regular + + Ordinal + + + fr.insee + lna2mshx-1 + 1 + + fr.insee + CA-lna2mshx-1 + 1 + Category + + 1 + + + fr.insee + lna2mshx-2 + 1 + + fr.insee + CA-lna2mshx-2 + 1 + Category + + 2 + + + fr.insee + lna2mshx-3 + 1 + + fr.insee + CA-lna2mshx-3 + 1 + Category + + 3 + + + fr.insee + lna2mshx-4 + 1 + + fr.insee + CA-lna2mshx-4 + 1 + Category + + 4 + + + fr.insee + lna2mshx-5 + 1 + + fr.insee + CA-lna2mshx-5 + 1 + Category + + 5 + + + + fr.insee + lmrsgeny + 1 + + SITE + + Regular + + Ordinal + + + fr.insee + lmrsgeny-1 + 1 + + fr.insee + CA-lmrsgeny-1 + 1 + Category + + 1 + + + fr.insee + lmrsgeny-2 + 1 + + fr.insee + CA-lmrsgeny-2 + 1 + Category + + 2 + + + fr.insee + lmrsgeny-3 + 1 + + fr.insee + CA-lmrsgeny-3 + 1 + Category + + 3 + + + + fr.insee + INSEE-COMMUN-CL-Booleen + 1 + + Booleen + + Regular + + Ordinal + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + + fr.insee + INSEE-COMMUN-CA-Booleen-1 + 1 + Category + + 1 + + + + + fr.insee + VariableScheme-lnycjn6n + 1 + + Variable Scheme for the survey + + + fr.insee + ljog4umf + 1 + + LIBSEXPAR1 + + + LIBSEXPAR1 + + + fr.insee + ljog4umf-VROP + 1 + + + + fr.insee + ljog4umf-GI + 1 + GenerationInstruction + + + fr.insee + ljog4umf-GOP + 1 + OutParameter + + + fr.insee + ljog4umf-VROP + 1 + OutParameter + + + + + + + + fr.insee + ljog5qlp + 1 + + LIBSEXPAR2 + + + LIBSEXPAR2 + + + fr.insee + ljog5qlp-VROP + 1 + + + + fr.insee + ljog5qlp-GI + 1 + GenerationInstruction + + + fr.insee + ljog5qlp-GOP + 1 + OutParameter + + + fr.insee + ljog5qlp-VROP + 1 + OutParameter + + + + + + + + fr.insee + ljog2d02 + 1 + + LIBSUJETPAR1 + + + LIBSUJETPAR1 + + + fr.insee + ljog2d02-VROP + 1 + + + + fr.insee + ljog2d02-GI + 1 + GenerationInstruction + + + fr.insee + ljog2d02-GOP + 1 + OutParameter + + + fr.insee + ljog2d02-VROP + 1 + OutParameter + + + + + + + + fr.insee + ljogcnx2 + 1 + + LIBSUJETPAR2 + + + LIBSUJETPAR2 + + + fr.insee + ljogcnx2-VROP + 1 + + + + fr.insee + ljogcnx2-GI + 1 + GenerationInstruction + + + fr.insee + ljogcnx2-GOP + 1 + OutParameter + + + fr.insee + ljogcnx2-VROP + 1 + OutParameter + + + + + + + + fr.insee + ljoganho + 1 + + LIBSEX + + + LIBSEX + + + fr.insee + ljoganho-VROP + 1 + + + + fr.insee + ljoganho-GI + 1 + GenerationInstruction + + + fr.insee + ljoganho-GOP + 1 + OutParameter + + + fr.insee + ljoganho-VROP + 1 + OutParameter + + + + + + + + fr.insee + ljog08x8 + 1 + + AGE + + + AGE + + + fr.insee + ljog08x8-VROP + 1 + + + + fr.insee + ljog08x8-GI + 1 + GenerationInstruction + + + fr.insee + ljog08x8-GOP + 1 + OutParameter + + + fr.insee + ljog08x8-VROP + 1 + OutParameter + + + + + ans + + 18 + 110 + + Decimal + + + + + fr.insee + ljogftf8 + 1 + + LIBSEXCJH + + + LIBSEXCJH + + + fr.insee + ljogftf8-VROP + 1 + + + + fr.insee + ljogftf8-GI + 1 + GenerationInstruction + + + fr.insee + ljogftf8-GOP + 1 + OutParameter + + + fr.insee + ljogftf8-VROP + 1 + OutParameter + + + + + + + + fr.insee + ljogel01 + 1 + + ANNAISCJ + + + ANNAISCJ + + + fr.insee + ljogel01-VROP + 1 + + + + fr.insee + ljogel01-GI + 1 + GenerationInstruction + + + fr.insee + ljogel01-GOP + 1 + OutParameter + + + fr.insee + ljogel01-VROP + 1 + OutParameter + + + + + + + + fr.insee + ljogh1as + 1 + + SEXCJREC + + + Sexe conjoint réconcilié RP et EF + + + fr.insee + ljogh1as-VROP + 1 + + + + fr.insee + ljogh1as-GI + 1 + GenerationInstruction + + + fr.insee + ljogh1as-GOP + 1 + OutParameter + + + fr.insee + ljogh1as-VROP + 1 + OutParameter + + + + + + + + fr.insee + ljog7t5a + 1 + + ANAISS + + + ANAISS + + + fr.insee + ljog7t5a-VROP + 1 + + + + fr.insee + ljog7t5a-GI + 1 + GenerationInstruction + + + fr.insee + ljog7t5a-GOP + 1 + OutParameter + + + fr.insee + ljog7t5a-VROP + 1 + OutParameter + + + + + + + + fr.insee + ljog1iz6 + 1 + + ANAIS + + + ANAIS + + + fr.insee + ljog1iz6-VROP + 1 + + + + fr.insee + ljog1iz6-GI + 1 + GenerationInstruction + + + fr.insee + ljog1iz6-GOP + 1 + OutParameter + + + fr.insee + ljog1iz6-VROP + 1 + OutParameter + + + + + ans + + 1880 + 2006 + + Decimal + + + + + fr.insee + ljogbx4g + 1 + + AG_ENFAIL1 + + + AG_ENFAIL1 + + + fr.insee + ljogbx4g-VROP + 1 + + + + fr.insee + ljogbx4g-GI + 1 + GenerationInstruction + + + fr.insee + ljogbx4g-GOP + 1 + OutParameter + + + fr.insee + ljogbx4g-VROP + 1 + OutParameter + + + + + ans + + 0 + 110 + + Decimal + + + + + fr.insee + ljogazh7 + 1 + + AG_ENFAIL2 + + + AG_ENFAIL2 + + + fr.insee + ljogazh7-VROP + 1 + + + + fr.insee + ljogazh7-GI + 1 + GenerationInstruction + + + fr.insee + ljogazh7-GOP + 1 + OutParameter + + + fr.insee + ljogazh7-VROP + 1 + OutParameter + + + + + ans + + 0 + 110 + + Decimal + + + + + fr.insee + ljogdxy3 + 1 + + AG_ENFAIL3 + + + AG_ENFAIL3 + + + fr.insee + ljogdxy3-VROP + 1 + + + + fr.insee + ljogdxy3-GI + 1 + GenerationInstruction + + + fr.insee + ljogdxy3-GOP + 1 + OutParameter + + + fr.insee + ljogdxy3-VROP + 1 + OutParameter + + + + + ans + + 0 + 110 + + Decimal + + + + + fr.insee + ljoghjsl + 1 + + AG_ENFAIL4 + + + AG_ENFAIL4 + + + fr.insee + ljoghjsl-VROP + 1 + + + + fr.insee + ljoghjsl-GI + 1 + GenerationInstruction + + + fr.insee + ljoghjsl-GOP + 1 + OutParameter + + + fr.insee + ljoghjsl-VROP + 1 + OutParameter + + + + + ans + + 0 + 110 + + Decimal + + + + + fr.insee + ljogjmnt + 1 + + AG_ENFAIL5 + + + AG_ENFAIL5 + + + fr.insee + ljogjmnt-VROP + 1 + + + + fr.insee + ljogjmnt-GI + 1 + GenerationInstruction + + + fr.insee + ljogjmnt-GOP + 1 + OutParameter + + + fr.insee + ljogjmnt-VROP + 1 + OutParameter + + + + + ans + + 0 + 110 + + Decimal + + + + + fr.insee + ljog3bu3 + 1 + + AG_ENFAIL6 + + + AG_ENFAIL6 + + + fr.insee + ljog3bu3-VROP + 1 + + + + fr.insee + ljog3bu3-GI + 1 + GenerationInstruction + + + fr.insee + ljog3bu3-GOP + 1 + OutParameter + + + fr.insee + ljog3bu3-VROP + 1 + OutParameter + + + + + ans + + 0 + 110 + + Decimal + + + + + fr.insee + ljog3j43 + 1 + + AG_ENFAIL7 + + + AG_ENFAIL7 + + + fr.insee + ljog3j43-VROP + 1 + + + + fr.insee + ljog3j43-GI + 1 + GenerationInstruction + + + fr.insee + ljog3j43-GOP + 1 + OutParameter + + + fr.insee + ljog3j43-VROP + 1 + OutParameter + + + + + ans + + 0 + 110 + + Decimal + + + + + fr.insee + ljogax1t + 1 + + AG_ENFAIL8 + + + AG_ENFAIL8 + + + fr.insee + ljogax1t-VROP + 1 + + + + fr.insee + ljogax1t-GI + 1 + GenerationInstruction + + + fr.insee + ljogax1t-GOP + 1 + OutParameter + + + fr.insee + ljogax1t-VROP + 1 + OutParameter + + + + + ans + + 0 + 110 + + Decimal + + + + + fr.insee + ll2aimkg + 1 + + PRENOMREP + + + PRENOMREP + + + fr.insee + ll2aimkg-VROP + 1 + + + + fr.insee + ll2aimkg-GI + 1 + GenerationInstruction + + + fr.insee + ll2aimkg-GOP + 1 + OutParameter + + + fr.insee + ll2aimkg-VROP + 1 + OutParameter + + + + + + + + fr.insee + lldhn2ou + 1 + + SEXE_C + + + SEXE_C + + + fr.insee + lldhn2ou-VROP + 1 + + + + fr.insee + lldhn2ou-GI + 1 + GenerationInstruction + + + fr.insee + lldhn2ou-GOP + 1 + OutParameter + + + fr.insee + lldhn2ou-VROP + 1 + OutParameter + + + + + + + + fr.insee + lldhnh87 + 1 + + SEXE_U1 + + + SEXE_U1 + + + fr.insee + lldhnh87-VROP + 1 + + + + fr.insee + lldhnh87-GI + 1 + GenerationInstruction + + + fr.insee + lldhnh87-GOP + 1 + OutParameter + + + fr.insee + lldhnh87-VROP + 1 + OutParameter + + + + + + + + fr.insee + lldhp45c + 1 + + SEXE_U2 + + + SEXE_U2 + + + fr.insee + lldhp45c-VROP + 1 + + + + fr.insee + lldhp45c-GI + 1 + GenerationInstruction + + + fr.insee + lldhp45c-GOP + 1 + OutParameter + + + fr.insee + lldhp45c-VROP + 1 + OutParameter + + + + + + + + fr.insee + llmgtini + 1 + + LIBSEXCJF + + + LIBSEXCJF + + + fr.insee + llmgtini-VROP + 1 + + + + fr.insee + llmgtini-GI + 1 + GenerationInstruction + + + fr.insee + llmgtini-GOP + 1 + OutParameter + + + fr.insee + llmgtini-VROP + 1 + OutParameter + + + + + + + + fr.insee + ln0892lt + 1 + + TYPE_QUEST + + + TYPE_QUEST + + + fr.insee + ln0892lt-VROP + 1 + + + + fr.insee + ln0892lt-GI + 1 + GenerationInstruction + + + fr.insee + ln0892lt-GOP + 1 + OutParameter + + + fr.insee + ln0892lt-VROP + 1 + OutParameter + + + + + + + + fr.insee + ll2b2moe + 1 + + RPTYPEQUEST + + + RPTYPEQUEST + + + + + + + fr.insee + ll2az6pb + 1 + + RPNBQUEST + + + RPNBQUEST + + + + + + + fr.insee + ll2b6m2t + 1 + + RPLISTEPRENOMS + + + RPLISTEPRENOMS + + + + + + + fr.insee + ll2avq1u + 1 + + RPPRENOMPAR1 + + + RPPRENOMPAR1 + + + + + + + fr.insee + ll2b4m0i + 1 + + RPPRENOMPAR2 + + + RPPRENOMPAR2 + + + + + + + fr.insee + ll2b0ey3 + 1 + + RPANAISPAR1 + + + RPANAISPAR1 + + + + + + + fr.insee + ll2azas1 + 1 + + RPANAISPAR2 + + + RPANAISPAR2 + + + + + + + fr.insee + ll2bd9e4 + 1 + + RPSEXPAR1 + + + RPSEXPAR1 + + + + + + + fr.insee + ll2axtj0 + 1 + + RPSEXPAR2 + + + RPSEXPAR2 + + + + + + + fr.insee + ll2b1clq + 1 + + RPPRENOMCONJ + + + RPPRENOMCONJ + + + + + + + fr.insee + ll2bblgh + 1 + + RPSEXCONJ + + + RPSEXCONJ + + + + + + + fr.insee + ll2azcsb + 1 + + RPANAISCONJ + + + RPANAISCONJ + + + + + + + fr.insee + ll2b5mz0 + 1 + + TYPE_QUEST + + + TYPE_QUEST + + + + + + + fr.insee + ll2b08tv + 1 + + RPPRENOM + + + RPPRENOM + + + + + + + fr.insee + ll2awtri + 1 + + RPANAISENQ + + + RPANAISENQ + + + + + + + fr.insee + ln38wwhm + 1 + + VAL_ANNAISS + + + VAL_ANNAISS label + + + fr.insee + l473latk-QOP-ll2h5il3 + 1 + OutParameter + + + fr.insee + l473latk + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + li34mnyd + 1 + + DATNAIS_X + + + DATNAIS_X label + + + fr.insee + kwq9wijq-QOP-kwq9l0nj + 1 + OutParameter + + + fr.insee + kwq9wijq + 1 + QuestionItem + + + + YYYY-MM-DD + date + + 1900-01-01 + 2006-01-01 + + + + + + fr.insee + lai10jze + 1 + + COUPLE + + + COUPLE label + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + kwq9y19w + 1 + QuestionItem + + + + + fr.insee + kwqfz7tj + 1 + CodeList + + + + + + fr.insee + lai0r1fc + 1 + + RAISON_VIE_CJT + + + RAISON_VIE_CJT label + + + fr.insee + l0qkj23a-QOP-l34fp0w3 + 1 + OutParameter + + + fr.insee + l0qkj23a + 1 + QuestionItem + + + + + fr.insee + kwqf7soc + 1 + CodeList + + + + + + fr.insee + li359gpp + 1 + + PRECIS_VIECJT + + + PRECIS_VIECJT label + + + fr.insee + li353rhu-QOP-li3584nx + 1 + OutParameter + + + fr.insee + li353rhu + 1 + QuestionItem + + + + + + + fr.insee + lai0w6gt + 1 + + PRENOM_C + + + PRENOM_C label + + + fr.insee + l34grb6h-QOP-l34guyz9 + 1 + OutParameter + + + fr.insee + l34grb6h + 1 + QuestionItem + + + + + + + fr.insee + lna1wj6r + 1 + + DATNAIS_C + + + DATNAIS_C label + + + fr.insee + kwqa0ism-QOP-kwqa5c2z + 1 + OutParameter + + + fr.insee + kwqa0ism + 1 + QuestionItem + + + + YYYY-MM-DD + date + + 1900-01-01 + 2011-01-01 + + + + + + fr.insee + lldrx968 + 1 + + SEXE_CH + + + SEXE_CH label + + + fr.insee + kwqabjga-QOP-kwqai8pk + 1 + OutParameter + + + fr.insee + kwqabjga + 1 + QuestionItem + + + + + fr.insee + kwqir1cc + 1 + CodeList + + + + + + fr.insee + lldrjxp8 + 1 + + LIEUNAIS_CH + + + LIEUNAIS_CH label + + + fr.insee + l4o59ei7-QOP-l4o57gfv + 1 + OutParameter + + + fr.insee + l4o59ei7 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvxlfv8 + 1 + + DNAI_CH + + + DNAI_CH label + + + fr.insee + l0quikkt-QOP-llvz459i + 1 + OutParameter + + + fr.insee + l0quikkt + 1 + QuestionItem + + + + + + + fr.insee + llvxhzxi + 1 + + PNAI_CH + + + PNAI_CH label + + + fr.insee + l4o57595-QOP-llvz9iqu + 1 + OutParameter + + + fr.insee + l4o57595 + 1 + QuestionItem + + + + + + + fr.insee + llds0mf9 + 1 + + TRAV_CH + + + TRAV_CH label + + + fr.insee + l7ywou64-QOP-l7ywme7g + 1 + OutParameter + + + fr.insee + l7ywou64 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvx9163 + 1 + + PROF_CH1 + + + PROF_CH1 label + + + fr.insee + l0qudtd2-QOP-llvzbt5w + 1 + OutParameter + + + fr.insee + l0qudtd2 + 1 + QuestionItem + + + + + + + fr.insee + llvxubc4 + 1 + + PROF_CH2 + + + PROF_CH2 label + + + fr.insee + lldp4562-QOP-llvywmha + 1 + OutParameter + + + fr.insee + lldp4562 + 1 + QuestionItem + + + + + + + fr.insee + llds9t21 + 1 + + PROF_C2H + + + PROF_C2H label + + + fr.insee + l43zea6v-QOP-l4o6x8gg + 1 + OutParameter + + + fr.insee + l43zea6v + 1 + QuestionItem + + + + + + + fr.insee + llmh74gq + 1 + + STATUT_CH + + + STATUT_CH label + + + fr.insee + l0quphwx-QOP-l43z7g5s + 1 + OutParameter + + + fr.insee + l0quphwx + 1 + QuestionItem + + + + + fr.insee + l43yp3tr + 1 + CodeList + + + + + + fr.insee + llmhufxz + 1 + + SAL_FP_CH + + + SAL_FP_CH label + + + fr.insee + llgt315z-QOP-llgsts0b + 1 + OutParameter + + + fr.insee + llgt315z + 1 + QuestionItem + + + + + fr.insee + llmhtv0t + 1 + CodeList + + + + + + fr.insee + llni7khh + 1 + + SAL_ENT_CH + + + SAL_ENT_CH label + + + fr.insee + llgt75zv-QOP-llgt1faa + 1 + OutParameter + + + fr.insee + llgt75zv + 1 + QuestionItem + + + + + fr.insee + llnh4uj2 + 1 + CodeList + + + + + + fr.insee + lldrj7dd + 1 + + SEXE_CF + + + SEXE_CF label + + + fr.insee + llde3pgg-QOP-lldeidzi + 1 + OutParameter + + + fr.insee + llde3pgg + 1 + QuestionItem + + + + + fr.insee + lldegmb1 + 1 + CodeList + + + + + + fr.insee + lldrxbyn + 1 + + LIEUNAIS_CF + + + LIEUNAIS_CF label + + + fr.insee + lldpi629-QOP-lldpfefv + 1 + OutParameter + + + fr.insee + lldpi629 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvxrs8n + 1 + + DNAI_CF + + + DNAI_CF label + + + fr.insee + lldp8203-QOP-llvz9d48 + 1 + OutParameter + + + fr.insee + lldp8203 + 1 + QuestionItem + + + + + + + fr.insee + llvxem9q + 1 + + PNAI_CF + + + PNAI_CF label + + + fr.insee + lldpejfa-QOP-llvzbi5b + 1 + OutParameter + + + fr.insee + lldpejfa + 1 + QuestionItem + + + + + + + fr.insee + llds46nr + 1 + + TRAV_CF + + + TRAV_CF label + + + fr.insee + lldqco3p-QOP-lldq01q6 + 1 + OutParameter + + + fr.insee + lldqco3p + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvxpjun + 1 + + PROF_CF1 + + + PROF_CF1 label + + + fr.insee + l4quaxvt-QOP-llvz89y7 + 1 + OutParameter + + + fr.insee + l4quaxvt + 1 + QuestionItem + + + + + + + fr.insee + llvxbql6 + 1 + + PROF_CF2 + + + PROF_CF2 label + + + fr.insee + lldpqtrp-QOP-llvz4gqz + 1 + OutParameter + + + fr.insee + lldpqtrp + 1 + QuestionItem + + + + + + + fr.insee + lldse6ue + 1 + + PROF_C2F + + + PROF_C2F label + + + fr.insee + lldqd2sd-QOP-lldqfnvv + 1 + OutParameter + + + fr.insee + lldqd2sd + 1 + QuestionItem + + + + + + + fr.insee + llmhxy6z + 1 + + STATUT_CF + + + STATUT_CF label + + + fr.insee + llmhdvun-QOP-llmhi8tu + 1 + OutParameter + + + fr.insee + llmhdvun + 1 + QuestionItem + + + + + fr.insee + llmhgfca + 1 + CodeList + + + + + + fr.insee + llmi0a7o + 1 + + SAL_FP_CF + + + SAL_FP_CF label + + + fr.insee + llmhi6fd-QOP-llmhkcpp + 1 + OutParameter + + + fr.insee + llmhi6fd + 1 + QuestionItem + + + + + fr.insee + llgrti9z + 1 + CodeList + + + + + + fr.insee + llnhq9nc + 1 + + SAL_ENT_CF + + + SAL_ENT_CF label + + + fr.insee + llnh2qpm-QOP-llnh4jb1 + 1 + OutParameter + + + fr.insee + llnh2qpm + 1 + QuestionItem + + + + + fr.insee + llnhh1go + 1 + CodeList + + + + + + fr.insee + ln3921g6 + 1 + + ANNEE_U + + + ANNEE_U label + + + fr.insee + l27dlmvl-QOP-l27dtcgo + 1 + OutParameter + + + fr.insee + l27dlmvl + 1 + QuestionItem + + + + + + + fr.insee + llm3di1p + 1 + + PACS + + + PACS label + + + fr.insee + kwqa4zjf-QOP-kwqanscn + 1 + OutParameter + + + fr.insee + kwqa4zjf + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + ln3ab45e + 1 + + ANNEE_PACS + + + ANNEE_PACS label + + + fr.insee + l0qu7e2g-QOP-l0qu1ddb + 1 + OutParameter + + + fr.insee + l0qu7e2g + 1 + QuestionItem + + + + + + + fr.insee + li36k75s + 1 + + MARI + + + MARI label + + + fr.insee + l0qujqzn-QOP-l0queysd + 1 + OutParameter + + + fr.insee + l0qujqzn + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + ln4mu3a8 + 1 + + ANNEE_MARI + + + ANNEE_MARI label + + + fr.insee + l0qul94p-QOP-l0qum61j + 1 + OutParameter + + + fr.insee + l0qul94p + 1 + QuestionItem + + + + + + + fr.insee + ln0berao + 1 + + SEPARE + + + SEPARE label + + + fr.insee + l5kszr2f-QOP-l5kt58n3 + 1 + OutParameter + + + fr.insee + l5kszr2f + 1 + QuestionItem + + + + + fr.insee + l5ksmbco + 1 + CodeList + + + + + + fr.insee + ln4my54k + 1 + + ANNEE_S + + + ANNEE_S label + + + fr.insee + l27dzhpw-QOP-l27e9xg5 + 1 + OutParameter + + + fr.insee + l27dzhpw + 1 + QuestionItem + + + + + + + fr.insee + ln4n3pvd + 1 + + ANNEE_D + + + ANNEE_D label + + + fr.insee + l155mqhc-QOP-l155u3w9 + 1 + OutParameter + + + fr.insee + l155mqhc + 1 + QuestionItem + + + + + + + fr.insee + li36l5p1 + 1 + + ENFAV_C + + + ENFAV_C label + + + fr.insee + l43u9qqf-QOP-l43udnys + 1 + OutParameter + + + fr.insee + l43u9qqf + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l9iilq19 + 1 + + NBENFAV_C + + + NBENFAV_C label + + + fr.insee + l43u4x96-QOP-l43udkpq + 1 + OutParameter + + + fr.insee + l43u4x96 + 1 + QuestionItem + + + + + 1 + 20 + + Decimal + + + + + fr.insee + li36im4p + 1 + + NBENFAV_VENU_C1 + + + NBENFAV_VENU_C1 label + + + fr.insee + l5jnmvs2-QOP-l5jnikmw + 1 + OutParameter + + + fr.insee + l5jnmvs2 + 1 + QuestionItem + + + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + fr.insee + llulzq4k + 1 + + NBENFAV_VENU_C + + + NBENFAV_VENU_C label + + + fr.insee + l43why6c-QOP-l43wz325 + 1 + OutParameter + + + fr.insee + l43why6c + 1 + QuestionItem + + + + + 0 + 20 + + Decimal + + + + + fr.insee + li36eujn + 1 + + VECU_C + + + VECU_C label + + + fr.insee + l8lz0355-QOP-l8lyoa9v + 1 + OutParameter + + + fr.insee + l8lz0355 + 1 + QuestionItem + + + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + fr.insee + lnbuofy2 + 1 + + ENF21_AUTPAR_C1 + + + 4 - "Non, aucun" + + + fr.insee + l43xg8do-QOP-lnbudt2m + 1 + OutParameter + + + fr.insee + l43xg8do + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnbuf89j + 1 + + ENF21_AUTPAR_C2 + + + 1 - "Oui, tout le temps" + + + fr.insee + l43xg8do-QOP-lnbuglr5 + 1 + OutParameter + + + fr.insee + l43xg8do + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnbudx04 + 1 + + ENF21_AUTPAR_C3 + + + 2 - "Oui, au moins la moitié du temps" + + + fr.insee + l43xg8do-QOP-lnbuhhca + 1 + OutParameter + + + fr.insee + l43xg8do + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnbumlrt + 1 + + ENF21_AUTPAR_C4 + + + 3 - "Oui, moins de la moitié du temps" + + + fr.insee + l43xg8do-QOP-lnbuk0ua + 1 + OutParameter + + + fr.insee + l43xg8do + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + li36e6jz + 1 + + AUT_UNION + + + AUT_UNION label + + + fr.insee + l15131wu-QOP-l43xhx4c + 1 + OutParameter + + + fr.insee + l15131wu + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lagvhww3 + 1 + + NB_AUT_UNION + + + NB_AUT_UNION label + + + fr.insee + l43x1amr-QOP-l43xhfsb + 1 + OutParameter + + + fr.insee + l43x1amr + 1 + QuestionItem + + + + + 1 + 20 + + Decimal + + + + + fr.insee + l34g1oxk + 1 + + PRENOM_U1 + + + PRENOM_U1 label + + + fr.insee + kwqa53jx-QOP-kwqa5f6j + 1 + OutParameter + + + fr.insee + kwqa53jx + 1 + QuestionItem + + + + + + + fr.insee + llgbswhy + 1 + + SEXE_U1H + + + SEXE_U1H label + + + fr.insee + l4p8skko-QOP-l4p8w47s + 1 + OutParameter + + + fr.insee + l4p8skko + 1 + QuestionItem + + + + + fr.insee + kwqir1cc + 1 + CodeList + + + + + + fr.insee + llgbm843 + 1 + + SEXE_U1F + + + SEXE_U1F label + + + fr.insee + lldenssh-QOP-lldeceld + 1 + OutParameter + + + fr.insee + lldenssh + 1 + QuestionItem + + + + + fr.insee + lldegmb1 + 1 + CodeList + + + + + + fr.insee + ln4nkp5t + 1 + + ANNEE_U1 + + + ANNEE_U1 label + + + fr.insee + l34fzu5m-QOP-l34fz29f + 1 + OutParameter + + + fr.insee + l34fzu5m + 1 + QuestionItem + + + + + + + fr.insee + llm3jau1 + 1 + + PACS_U1 + + + PACS_U1 label + + + fr.insee + l27dlnmq-QOP-l27dler4 + 1 + OutParameter + + + fr.insee + l27dlnmq + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + ln8ul9ii + 1 + + ANNEE_PACS_U1 + + + ANNEE_PACS_U1 label + + + fr.insee + l27dns8a-QOP-l27dy9w1 + 1 + OutParameter + + + fr.insee + l27dns8a + 1 + QuestionItem + + + + + + + fr.insee + li36ikzo + 1 + + MARI_U1 + + + MARI_U1 label + + + fr.insee + l27duust-QOP-l27dl55t + 1 + OutParameter + + + fr.insee + l27duust + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + ln8ue6l0 + 1 + + ANNEE_MARI_U1 + + + ANNEE_MARI_U1 label + + + fr.insee + l27e50tv-QOP-l27dy96e + 1 + OutParameter + + + fr.insee + l27e50tv + 1 + QuestionItem + + + + + + + fr.insee + ln0fo50d + 1 + + SEPARE_U1 + + + SEPARE_U1 label + + + fr.insee + l5ktf1wn-QOP-l5kt1un9 + 1 + OutParameter + + + fr.insee + l5ktf1wn + 1 + QuestionItem + + + + + fr.insee + l5ktegqo + 1 + CodeList + + + + + + fr.insee + ln8uhww1 + 1 + + ANNEE_S_U1 + + + ANNEE_S_U1 label + + + fr.insee + l27dzhzv-QOP-l27e9d05 + 1 + OutParameter + + + fr.insee + l27dzhzv + 1 + QuestionItem + + + + + + + fr.insee + ln8v07e9 + 1 + + ANNEE_D_U1 + + + ANNEE_D_U1 label + + + fr.insee + l27e0qyq-QOP-l27e0zm5 + 1 + OutParameter + + + fr.insee + l27e0qyq + 1 + QuestionItem + + + + + + + fr.insee + l4cje9hx + 1 + + ENFAV_C_U1 + + + ENFAV_C_U1 label + + + fr.insee + l4cjg2rp-QOP-l4cjcmvn + 1 + OutParameter + + + fr.insee + l4cjg2rp + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l5ktp37h + 1 + + NBENFAV_C_U1 + + + NBENFAV_C_U1 label + + + fr.insee + l4cja8pm-QOP-l4cjc9rj + 1 + OutParameter + + + fr.insee + l4cja8pm + 1 + QuestionItem + + + + + 1 + 20 + + Decimal + + + + + fr.insee + l5jnkoyz + 1 + + NBENFAV_C1_VENU_U1 + + + NBENFAV_C1_VENU_U1 label + + + fr.insee + l5ilbb89-QOP-l5ild1d2 + 1 + OutParameter + + + fr.insee + l5ilbb89 + 1 + QuestionItem + + + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + fr.insee + lluma0ok + 1 + + NBENFAV_C_VENU_U1 + + + NBENFAV_C_VENU_U1 label + + + fr.insee + l4o5x7yq-QOP-l4o5y0na + 1 + OutParameter + + + fr.insee + l4o5x7yq + 1 + QuestionItem + + + + + 0 + 20 + + Decimal + + + + + fr.insee + l9ildsj0 + 1 + + AUT_U2 + + + AUT_U2 label + + + fr.insee + l9il0i0h-QOP-l9ilguvv + 1 + OutParameter + + + fr.insee + l9il0i0h + 1 + QuestionItem + + + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + fr.insee + l9ilmr79 + 1 + + PRENOM_U2 + + + PRENOM_U2 label + + + fr.insee + l9ilcol6-QOP-l9il24xt + 1 + OutParameter + + + fr.insee + l9ilcol6 + 1 + QuestionItem + + + + + + + fr.insee + llgbwr7a + 1 + + SEXE_U2H + + + SEXE_U2H label + + + fr.insee + l9ikne2h-QOP-l9ikmsqc + 1 + OutParameter + + + fr.insee + l9ikne2h + 1 + QuestionItem + + + + + fr.insee + kwqir1cc + 1 + CodeList + + + + + + fr.insee + llgbkefo + 1 + + SEXE_U2F + + + SEXE_U2F label + + + fr.insee + lldetngg-QOP-lldefr60 + 1 + OutParameter + + + fr.insee + lldetngg + 1 + QuestionItem + + + + + fr.insee + lldegmb1 + 1 + CodeList + + + + + + fr.insee + ln8v8dtc + 1 + + ANNEE_U2 + + + ANNEE_U2 label + + + fr.insee + l9ikn3ea-QOP-l9il1x2i + 1 + OutParameter + + + fr.insee + l9ikn3ea + 1 + QuestionItem + + + + + + + fr.insee + llm3orfw + 1 + + PACS_U2 + + + PACS_U2 label + + + fr.insee + l9il24ft-QOP-l9iks5py + 1 + OutParameter + + + fr.insee + l9il24ft + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + ln8vjhau + 1 + + ANNEE_PACS_U2 + + + ANNEE_PACS_U2 label + + + fr.insee + l9ikxoxa-QOP-l9iktamx + 1 + OutParameter + + + fr.insee + l9ikxoxa + 1 + QuestionItem + + + + + + + fr.insee + l9ilplrs + 1 + + MARI_U2 + + + MARI_U2 label + + + fr.insee + l9ikvx4n-QOP-l9ikpuls + 1 + OutParameter + + + fr.insee + l9ikvx4n + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + ln8vkzos + 1 + + ANNEE_MARI_U2 + + + ANNEE_MARI_U2 label + + + fr.insee + l9iklcix-QOP-l9ikgh6x + 1 + OutParameter + + + fr.insee + l9iklcix + 1 + QuestionItem + + + + + + + fr.insee + ln0hhy39 + 1 + + SEPARE_U2 + + + SEPARE_U2 label + + + fr.insee + l9ikqlwv-QOP-l9ikoz30 + 1 + OutParameter + + + fr.insee + l9ikqlwv + 1 + QuestionItem + + + + + fr.insee + las91jew + 1 + CodeList + + + + + + fr.insee + ln8w3sfe + 1 + + ANNEE_S_U2 + + + ANNEE_S_U2 label + + + fr.insee + l9ikze1y-QOP-l9ikq8j6 + 1 + OutParameter + + + fr.insee + l9ikze1y + 1 + QuestionItem + + + + + + + fr.insee + ln8w3yku + 1 + + ANNEE_D_U2 + + + ANNEE_D_U2 label + + + fr.insee + l9ikmjqm-QOP-l9ikmj5h + 1 + OutParameter + + + fr.insee + l9ikmjqm + 1 + QuestionItem + + + + + + + fr.insee + l9imhwey + 1 + + ENFAV_C_U2 + + + ENFAV_C_U2 label + + + fr.insee + l9ikxndo-QOP-l9ikxjkq + 1 + OutParameter + + + fr.insee + l9ikxndo + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l9imlci5 + 1 + + NBENFAV_C_U2 + + + NBENFAV_C_U2 label + + + fr.insee + l9ikuqoe-QOP-l9ikmqgf + 1 + OutParameter + + + fr.insee + l9ikuqoe + 1 + QuestionItem + + + + + 1 + 20 + + Decimal + + + + + fr.insee + l9imbft1 + 1 + + NBENFAV_C1_VENU_U2 + + + NBENFAV_C1_VENU_U2 label + + + fr.insee + l9ikekzu-QOP-l9ikbyxh + 1 + OutParameter + + + fr.insee + l9ikekzu + 1 + QuestionItem + + + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + fr.insee + liizkz29 + 1 + + NBENFAV_C_VENU_U2 + + + NBENFAV_C_VENU_U2 label + + + fr.insee + l9iks078-QOP-l9ikl02v + 1 + OutParameter + + + fr.insee + l9iks078 + 1 + QuestionItem + + + + + 0 + 20 + + Decimal + + + + + fr.insee + l8k91eas + 1 + + ENF + + + ENF label + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + OutParameter + + + fr.insee + kwqigxtx + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lai2qly5 + 1 + + NBENF + + + NBENF label + + + fr.insee + kwqi5zsm-QOP-kwqilzs8 + 1 + OutParameter + + + fr.insee + kwqi5zsm + 1 + QuestionItem + + + + + 1 + 20 + + Decimal + + + + + fr.insee + la6x1ozi + 1 + + NBENF_ADOP1 + + + NBENF_ADOP1 label + + + fr.insee + l1gkeq97-QOP-l7rlttxu + 1 + OutParameter + + + fr.insee + l1gkeq97 + 1 + QuestionItem + + + + + fr.insee + l7rlvd0y + 1 + CodeList + + + + + + fr.insee + llumdbvx + 1 + + NBENF_ADOP + + + NBENF_ADOP label + + + fr.insee + l7rlim3p-QOP-l7rlfeda + 1 + OutParameter + + + fr.insee + l7rlim3p + 1 + QuestionItem + + + + + 0 + 20 + + Decimal + + + + + fr.insee + llvxrvuz + 1 + + LANGUE1_ENF + + + LANGUE1_ENF label + + + fr.insee + l1gi76wy-QOP-llvz7u99 + 1 + OutParameter + + + fr.insee + l1gi76wy + 1 + QuestionItem + + + + + + + fr.insee + lmrrb3ah + 1 + + LANGUE2_ENF + + + LANGUE2_ENF label + + + fr.insee + l445u9x8-QOP-llvyyveq + 1 + OutParameter + + + fr.insee + l445u9x8 + 1 + QuestionItem + + + + + + + fr.insee + l4idtesq + 1 + + NBENFLOG + + + NBENFLOG label + + + fr.insee + l4idom4o-QOP-l4idkl19 + 1 + OutParameter + + + fr.insee + l4idom4o + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llgm8xcr + 1 + + CBENFLOG + + + CBENFLOG label + + + fr.insee + l4lcr3vb-QOP-l4lcyzfy + 1 + OutParameter + + + fr.insee + l4lcr3vb + 1 + QuestionItem + + + + + 1 + 20 + + Decimal + + + + + fr.insee + lai321wj + 1 + + NBENFAIL + + + NBENFAIL label + + + fr.insee + l447nuda-QOP-l4idwhis + 1 + OutParameter + + + fr.insee + l447nuda + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llgn328q + 1 + + CBENFAIL + + + CBENFAIL label + + + fr.insee + l4lfzig7-QOP-l4lgbag5 + 1 + OutParameter + + + fr.insee + l4lfzig7 + 1 + QuestionItem + + + + + 1 + 20 + + Decimal + + + + + fr.insee + l4i7t09m + 1 + + PRENOM_ENFLOG1 + + + PRENOM_ENFLOG1 label + + + fr.insee + l446nede-QOP-l446c5pz + 1 + OutParameter + + + fr.insee + l446nede + 1 + QuestionItem + + + + + + + fr.insee + llgbzex2 + 1 + + SEXE_ENFLOG1 + + + SEXE_ENFLOG1 label + + + fr.insee + kwqjk80w-QOP-kwqjqaig + 1 + OutParameter + + + fr.insee + kwqjk80w + 1 + QuestionItem + + + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + fr.insee + ln8waswe + 1 + + ANAI_ENFLOG1 + + + ANAI_ENFLOG1 label + + + fr.insee + kwqjmq2o-QOP-kwqjvmys + 1 + OutParameter + + + fr.insee + kwqjmq2o + 1 + QuestionItem + + + + + + + fr.insee + lai2q0l2 + 1 + + NEFRANCE_ENFLOG1 + + + NEFRANCE_ENFLOG1 label + + + fr.insee + l4qtls9o-QOP-l4qtebrx + 1 + OutParameter + + + fr.insee + l4qtls9o + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8k9fx47 + 1 + + PARENT_VIT_ENFLOG1 + + + PARENT_VIT_ENFLOG1 label + + + fr.insee + kwqjol7e-QOP-kwqj742g + 1 + OutParameter + + + fr.insee + kwqjol7e + 1 + QuestionItem + + + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + fr.insee + lai2vxng + 1 + + PARENT_FR_ENFLOG1 + + + PARENT_FR_ENFLOG1 label + + + fr.insee + l4iaicn8-QOP-l4ia62t2 + 1 + OutParameter + + + fr.insee + l4iaicn8 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvxl0i4 + 1 + + PARENT_DEP_ENFLOG1 + + + PARENT_DEP_ENFLOG1 label + + + fr.insee + l4pav1bd-QOP-llvz43dk + 1 + OutParameter + + + fr.insee + l4pav1bd + 1 + QuestionItem + + + + + + + fr.insee + llvxsb8n + 1 + + PARENT_COM_ENFLOG1 + + + PARENT_COM_ENFLOG1 label + + + fr.insee + l4parilg-QOP-llvz00eo + 1 + OutParameter + + + fr.insee + l4parilg + 1 + QuestionItem + + + + + + + fr.insee + llvxptki + 1 + + PARENT_PAY_ENFLOG1 + + + PARENT_PAY_ENFLOG1 label + + + fr.insee + l4pavrnh-QOP-llvz0tqh + 1 + OutParameter + + + fr.insee + l4pavrnh + 1 + QuestionItem + + + + + + + fr.insee + lij1gnxo + 1 + + PARENT_FREQ_ENFLOG1 + + + PARENT_FREQ_ENFLOG1 label + + + fr.insee + l1ez78st-QOP-l1ezqoac + 1 + OutParameter + + + fr.insee + l1ez78st + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + l4iaop7n + 1 + + PARENT_DORT_ENFLOG1 + + + PARENT_DORT_ENFLOG1 label + + + fr.insee + l4iain70-QOP-l4iapk3a + 1 + OutParameter + + + fr.insee + l4iain70 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lai37uhg + 1 + + PARENT_VECU_ENFLOG1 + + + PARENT_VECU_ENFLOG1 label + + + fr.insee + kwqk3gx2-QOP-kwqjmrl7 + 1 + OutParameter + + + fr.insee + kwqk3gx2 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + la6yvw8y + 1 + + SEP_AUT_PAR_ENFLOG1 + + + SEP_AUT_PAR_ENFLOG1 label + + + fr.insee + la6ydnyh-QOP-la6ylcb8 + 1 + OutParameter + + + fr.insee + la6ydnyh + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + la6ykpms + 1 + + RESID_ENFLOG1 + + + RESID_ENFLOG1 label + + + fr.insee + kwqjmy9d-QOP-kwqjfzw0 + 1 + OutParameter + + + fr.insee + kwqjmy9d + 1 + QuestionItem + + + + + fr.insee + kwqjqlpa + 1 + CodeList + + + + + + fr.insee + la6utxix + 1 + + SANTE_ENFLOG11 + + + 1 - "Oui, pour des raisons de santé" + + + fr.insee + l1gia5uh-QOP-la6vclx9 + 1 + OutParameter + + + fr.insee + l1gia5uh + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + la6us7lf + 1 + + SANTE_ENFLOG12 + + + 2 - "Oui, à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants" + + + fr.insee + l1gia5uh-QOP-la6vj3fw + 1 + OutParameter + + + fr.insee + l1gia5uh + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + la6uxdwx + 1 + + SANTE_ENFLOG13 + + + 3 - "Oui, pour une autre raison" + + + fr.insee + l1gia5uh-QOP-la6vaa94 + 1 + OutParameter + + + fr.insee + l1gia5uh + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + la6ugpn4 + 1 + + SANTE_ENFLOG14 + + + 4 - "Non" + + + fr.insee + l1gia5uh-QOP-la6v5qj3 + 1 + OutParameter + + + fr.insee + l1gia5uh + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l4i9d8v4 + 1 + + PRENOM_ENFLOG2 + + + PRENOM_ENFLOG2 label + + + fr.insee + l4i9118b-QOP-l4i95yyt + 1 + OutParameter + + + fr.insee + l4i9118b + 1 + QuestionItem + + + + + + + fr.insee + llgdof4r + 1 + + SEXE_ENFLOG2 + + + SEXE_ENFLOG2 label + + + fr.insee + l4i8zu5m-QOP-l4i9doqz + 1 + OutParameter + + + fr.insee + l4i8zu5m + 1 + QuestionItem + + + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + fr.insee + ln8wfpbb + 1 + + ANAI_ENFLOG2 + + + ANAI_ENFLOG2 label + + + fr.insee + l4ia7rxn-QOP-l4iad1cc + 1 + OutParameter + + + fr.insee + l4ia7rxn + 1 + QuestionItem + + + + + + + fr.insee + l4qtshn8 + 1 + + NEFRANCE_ENFLOG2 + + + NEFRANCE_ENFLOG2 label + + + fr.insee + l4qtpg9f-QOP-l4qtj10v + 1 + OutParameter + + + fr.insee + l4qtpg9f + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8k9zdgm + 1 + + PARENT_VIT_ENFLOG2 + + + PARENT_VIT_ENFLOG2 label + + + fr.insee + l4iano52-QOP-l4ia429z + 1 + OutParameter + + + fr.insee + l4iano52 + 1 + QuestionItem + + + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + fr.insee + l4pah4e9 + 1 + + PARENT_FR_ENFLOG2 + + + PARENT_FR_ENFLOG2 label + + + fr.insee + kwqjmujx-QOP-kwqjglld + 1 + OutParameter + + + fr.insee + kwqjmujx + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvxlqkx + 1 + + PARENT_DEP_ENFLOG2 + + + PARENT_DEP_ENFLOG2 label + + + fr.insee + l4pannoa-QOP-llvz35s7 + 1 + OutParameter + + + fr.insee + l4pannoa + 1 + QuestionItem + + + + + + + fr.insee + llvxvybh + 1 + + PARENT_COM_ENFLOG2 + + + PARENT_COM_ENFLOG2 label + + + fr.insee + l4pasuts-QOP-llvz300g + 1 + OutParameter + + + fr.insee + l4pasuts + 1 + QuestionItem + + + + + + + fr.insee + llvy0bjq + 1 + + PARENT_PAY_ENFLOG2 + + + PARENT_PAY_ENFLOG2 label + + + fr.insee + l4pbc5wa-QOP-llvz3uou + 1 + OutParameter + + + fr.insee + l4pbc5wa + 1 + QuestionItem + + + + + + + fr.insee + lij1la9n + 1 + + PARENT_FREQ_ENFLOG2 + + + PARENT_FREQ_ENFLOG2 label + + + fr.insee + l4idgpbr-QOP-l4idauus + 1 + OutParameter + + + fr.insee + l4idgpbr + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + l4ia9byx + 1 + + PARENT_DORT_ENFLOG2 + + + PARENT_DORT_ENFLOG2 label + + + fr.insee + l4486unb-QOP-l4486uz3 + 1 + OutParameter + + + fr.insee + l4486unb + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4iai6rj + 1 + + PARENT_VECU_ENFLOG2 + + + PARENT_VECU_ENFLOG2 label + + + fr.insee + l4ia5o28-QOP-l4ia9b25 + 1 + OutParameter + + + fr.insee + l4ia5o28 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + la6yqwyf + 1 + + SEP_AUT_PAR_ENFLOG2 + + + SEP_AUT_PAR_ENFLOG2 label + + + fr.insee + la6yjh65-QOP-la6yhprv + 1 + OutParameter + + + fr.insee + la6yjh65 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + la6yj02g + 1 + + RESID_ENFLOG2 + + + RESID_ENFLOG2 label + + + fr.insee + l4idgqx9-QOP-l4idnmx1 + 1 + OutParameter + + + fr.insee + l4idgqx9 + 1 + QuestionItem + + + + + fr.insee + kwqjqlpa + 1 + CodeList + + + + + + fr.insee + laqulhxj + 1 + + SANTE_ENFLOG21 + + + 1 - "Oui, pour des raisons de santé" + + + fr.insee + l4ia7y0p-QOP-laqv5c3y + 1 + OutParameter + + + fr.insee + l4ia7y0p + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + laquvj5h + 1 + + SANTE_ENFLOG22 + + + 2 - "Oui, à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants" + + + fr.insee + l4ia7y0p-QOP-laqv4eoa + 1 + OutParameter + + + fr.insee + l4ia7y0p + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + laquyfyu + 1 + + SANTE_ENFLOG23 + + + 3 - "Oui, pour une autre raison" + + + fr.insee + l4ia7y0p-QOP-laquos4t + 1 + OutParameter + + + fr.insee + l4ia7y0p + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + laquvz8u + 1 + + SANTE_ENFLOG24 + + + 4 - "Non" + + + fr.insee + l4ia7y0p-QOP-laqupuni + 1 + OutParameter + + + fr.insee + l4ia7y0p + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l4lcm3zm + 1 + + PRENOM_ENFLOG3 + + + PRENOM_ENFLOG3 label + + + fr.insee + l4ld0ziw-QOP-l4lco011 + 1 + OutParameter + + + fr.insee + l4ld0ziw + 1 + QuestionItem + + + + + + + fr.insee + llge4od7 + 1 + + SEXE_ENFLOG3 + + + SEXE_ENFLOG3 label + + + fr.insee + l4lcp4co-QOP-l4ld0wcd + 1 + OutParameter + + + fr.insee + l4lcp4co + 1 + QuestionItem + + + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + fr.insee + ln8wfuqp + 1 + + ANAI_ENFLOG3 + + + ANAI_ENFLOG3 label + + + fr.insee + l4ld3y0j-QOP-l4ld1d4p + 1 + OutParameter + + + fr.insee + l4ld3y0j + 1 + QuestionItem + + + + + + + fr.insee + l4qtpx6f + 1 + + NEFRANCE_ENFLOG3 + + + NEFRANCE_ENFLOG3 label + + + fr.insee + l4qty53i-QOP-l4qtewva + 1 + OutParameter + + + fr.insee + l4qty53i + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4lcwi2r + 1 + + PARENT_VIT_ENFLOG3 + + + PARENT_VIT_ENFLOG3 label + + + fr.insee + l4lct7cb-QOP-l4lctczi + 1 + OutParameter + + + fr.insee + l4lct7cb + 1 + QuestionItem + + + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + fr.insee + l4pae240 + 1 + + PARENT_FR_ENFLOG3 + + + PARENT_FR_ENFLOG3 label + + + fr.insee + l4ld827i-QOP-l4ld6gqw + 1 + OutParameter + + + fr.insee + l4ld827i + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvxwe5z + 1 + + PARENT_DEP_ENFLOG3 + + + PARENT_DEP_ENFLOG3 label + + + fr.insee + l4pat7vx-QOP-llvyw7q3 + 1 + OutParameter + + + fr.insee + l4pat7vx + 1 + QuestionItem + + + + + + + fr.insee + llvxo6tz + 1 + + PARENT_COM_ENFLOG3 + + + PARENT_COM_ENFLOG3 label + + + fr.insee + l4pavp6y-QOP-llvyyz9y + 1 + OutParameter + + + fr.insee + l4pavp6y + 1 + QuestionItem + + + + + + + fr.insee + llvy3238 + 1 + + PARENT_PAY_ENFLOG3 + + + PARENT_PAY_ENFLOG3 label + + + fr.insee + l4pb77tv-QOP-llvyspw0 + 1 + OutParameter + + + fr.insee + l4pb77tv + 1 + QuestionItem + + + + + + + fr.insee + lij1fss2 + 1 + + PARENT_FREQ_ENFLOG3 + + + PARENT_FREQ_ENFLOG3 label + + + fr.insee + l4ld15su-QOP-l4ld55kd + 1 + OutParameter + + + fr.insee + l4ld15su + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + l4ldfxok + 1 + + PARENT_DORT_ENFLOG3 + + + PARENT_DORT_ENFLOG3 label + + + fr.insee + l4ld0zmv-QOP-l4lda7jw + 1 + OutParameter + + + fr.insee + l4ld0zmv + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4ld9url + 1 + + PARENT_VECU_ENFLOG3 + + + PARENT_VECU_ENFLOG3 label + + + fr.insee + l4ld0jea-QOP-l4ld7yr1 + 1 + OutParameter + + + fr.insee + l4ld0jea + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + la6ymh2v + 1 + + SEP_AUT_PAR_ENFLOG3 + + + SEP_AUT_PAR_ENFLOG3 label + + + fr.insee + la6y9flo-QOP-la6y6kev + 1 + OutParameter + + + fr.insee + la6y9flo + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + la6yfso4 + 1 + + RESID_ENFLOG3 + + + RESID_ENFLOG3 label + + + fr.insee + l4lde13h-QOP-l4lddsd8 + 1 + OutParameter + + + fr.insee + l4lde13h + 1 + QuestionItem + + + + + fr.insee + kwqjqlpa + 1 + CodeList + + + + + + fr.insee + la6uhnek + 1 + + SANTE_ENFLOG31 + + + 1 - "Oui, pour des raisons de santé" + + + fr.insee + l4lcuoke-QOP-la6v5i7c + 1 + OutParameter + + + fr.insee + l4lcuoke + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + la6umv20 + 1 + + SANTE_ENFLOG32 + + + 2 - "Oui, à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants" + + + fr.insee + l4lcuoke-QOP-la6vlqvx + 1 + OutParameter + + + fr.insee + l4lcuoke + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + la6unknh + 1 + + SANTE_ENFLOG33 + + + 3 - "Oui, pour une autre raison" + + + fr.insee + l4lcuoke-QOP-la6vkkpx + 1 + OutParameter + + + fr.insee + l4lcuoke + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + la6urend + 1 + + SANTE_ENFLOG34 + + + 4 - "Non" + + + fr.insee + l4lcuoke-QOP-la6vkdlt + 1 + OutParameter + + + fr.insee + l4lcuoke + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l4le9osn + 1 + + PRENOM_ENFLOG4 + + + PRENOM_ENFLOG4 label + + + fr.insee + l4lec0rk-QOP-l4lefzhk + 1 + OutParameter + + + fr.insee + l4lec0rk + 1 + QuestionItem + + + + + + + fr.insee + llgdmzwn + 1 + + SEXE_ENFLOG4 + + + SEXE_ENFLOG4 label + + + fr.insee + l4lefdoh-QOP-l4le4jn4 + 1 + OutParameter + + + fr.insee + l4lefdoh + 1 + QuestionItem + + + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + fr.insee + ln8wqaw5 + 1 + + ANAI_ENFLOG4 + + + ANAI_ENFLOG4 label + + + fr.insee + l4le9rs3-QOP-l4le8tph + 1 + OutParameter + + + fr.insee + l4le9rs3 + 1 + QuestionItem + + + + + + + fr.insee + l4qtueyu + 1 + + NEFRANCE_ENFLOG4 + + + NEFRANCE_ENFLOG4 label + + + fr.insee + l4qtvt71-QOP-l4qtzd2y + 1 + OutParameter + + + fr.insee + l4qtvt71 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4lej5ls + 1 + + PARENT_VIT_ENFLOG4 + + + PARENT_VIT_ENFLOG4 label + + + fr.insee + l4ler7fu-QOP-l4lequew + 1 + OutParameter + + + fr.insee + l4ler7fu + 1 + QuestionItem + + + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + fr.insee + l4pao37f + 1 + + PARENT_FR_ENFLOG4 + + + PARENT_FR_ENFLOG4 label + + + fr.insee + l4lemegm-QOP-l4leh99i + 1 + OutParameter + + + fr.insee + l4lemegm + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvy3nrc + 1 + + PARENT_DEP_ENFLOG4 + + + PARENT_DEP_ENFLOG4 label + + + fr.insee + l4payjff-QOP-llvyruw7 + 1 + OutParameter + + + fr.insee + l4payjff + 1 + QuestionItem + + + + + + + fr.insee + llvy28yg + 1 + + PARENT_COM_ENFLOG4 + + + PARENT_COM_ENFLOG4 label + + + fr.insee + l4paz6m4-QOP-llvyy20q + 1 + OutParameter + + + fr.insee + l4paz6m4 + 1 + QuestionItem + + + + + + + fr.insee + llvy62d0 + 1 + + PARENT_PAY_ENFLOG4 + + + PARENT_PAY_ENFLOG4 label + + + fr.insee + l4pbax4x-QOP-llvz97hj + 1 + OutParameter + + + fr.insee + l4pbax4x + 1 + QuestionItem + + + + + + + fr.insee + lij177w0 + 1 + + PARENT_FREQ_ENFLOG4 + + + PARENT_FREQ_ENFLOG4 label + + + fr.insee + l4letwtq-QOP-l4lesyhr + 1 + OutParameter + + + fr.insee + l4letwtq + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + l4leeukk + 1 + + PARENT_DORT_ENFLOG4 + + + PARENT_DORT_ENFLOG4 label + + + fr.insee + l4letk9j-QOP-l4lergt1 + 1 + OutParameter + + + fr.insee + l4letk9j + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4leseyk + 1 + + PARENT_VECU_ENFLOG4 + + + PARENT_VECU_ENFLOG4 label + + + fr.insee + l4lekh2t-QOP-l4leazvr + 1 + OutParameter + + + fr.insee + l4lekh2t + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + la6yno8u + 1 + + SEP_AUT_PAR_ENFLOG4 + + + SEP_AUT_PAR_ENFLOG4 label + + + fr.insee + la6y7rno-QOP-la6yfcb1 + 1 + OutParameter + + + fr.insee + la6y7rno + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4levqra + 1 + + RESID_ENFLOG4 + + + RESID_ENFLOG4 label + + + fr.insee + l4lexatl-QOP-l4leps7n + 1 + OutParameter + + + fr.insee + l4lexatl + 1 + QuestionItem + + + + + fr.insee + kwqjqlpa + 1 + CodeList + + + + + + fr.insee + la6urqzv + 1 + + SANTE_ENFLOG41 + + + 1 - "Oui, pour des raisons de santé" + + + fr.insee + l4lec2qz-QOP-la6vffpf + 1 + OutParameter + + + fr.insee + l4lec2qz + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + la6up8zy + 1 + + SANTE_ENFLOG42 + + + 2 - "Oui, à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants" + + + fr.insee + l4lec2qz-QOP-la6vkyqn + 1 + OutParameter + + + fr.insee + l4lec2qz + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + la6ukx69 + 1 + + SANTE_ENFLOG43 + + + 3 - "Oui, pour une autre raison" + + + fr.insee + l4lec2qz-QOP-la6vfxog + 1 + OutParameter + + + fr.insee + l4lec2qz + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + la6ugfba + 1 + + SANTE_ENFLOG44 + + + 4 - "Non" + + + fr.insee + l4lec2qz-QOP-la6vkx70 + 1 + OutParameter + + + fr.insee + l4lec2qz + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l4lerlrc + 1 + + PRENOM_ENFLOG5 + + + PRENOM_ENFLOG5 label + + + fr.insee + l4leulqw-QOP-l4leruxk + 1 + OutParameter + + + fr.insee + l4leulqw + 1 + QuestionItem + + + + + + + fr.insee + llgdmwr4 + 1 + + SEXE_ENFLOG5 + + + SEXE_ENFLOG5 label + + + fr.insee + l4lem0yg-QOP-l4leqtd3 + 1 + OutParameter + + + fr.insee + l4lem0yg + 1 + QuestionItem + + + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + fr.insee + ln8wwl8u + 1 + + ANAI_ENFLOG5 + + + ANAI_ENFLOG5 label + + + fr.insee + l4lffj1f-QOP-l4lfqb24 + 1 + OutParameter + + + fr.insee + l4lffj1f + 1 + QuestionItem + + + + + + + fr.insee + l4qto89v + 1 + + NEFRANCE_ENFLOG5 + + + NEFRANCE_ENFLOG5 label + + + fr.insee + l4qtm8di-QOP-l4qtqnl5 + 1 + OutParameter + + + fr.insee + l4qtm8di + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4lfflqh + 1 + + PARENT_VIT_ENFLOG5 + + + PARENT_VIT_ENFLOG5 label + + + fr.insee + l4lfye1g-QOP-l4lfqvi9 + 1 + OutParameter + + + fr.insee + l4lfye1g + 1 + QuestionItem + + + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + fr.insee + l4pakdk6 + 1 + + PARENT_FR_ENFLOG5 + + + PARENT_FR_ENFLOG5 label + + + fr.insee + l4lfoek4-QOP-l4lfrft6 + 1 + OutParameter + + + fr.insee + l4lfoek4 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvy6d0r + 1 + + PARENT_DEP_ENFLOG5 + + + PARENT_DEP_ENFLOG5 label + + + fr.insee + l4pauqgi-QOP-llvyw6mw + 1 + OutParameter + + + fr.insee + l4pauqgi + 1 + QuestionItem + + + + + + + fr.insee + llvxz4y8 + 1 + + PARENT_COM_ENFLOG5 + + + PARENT_COM_ENFLOG5 label + + + fr.insee + l4paw4ax-QOP-llvyqmlu + 1 + OutParameter + + + fr.insee + l4paw4ax + 1 + QuestionItem + + + + + + + fr.insee + llvxv8yy + 1 + + PARENT_PAY_ENFLOG5 + + + PARENT_PAY_ENFLOG5 label + + + fr.insee + l4pb234a-QOP-llvz0jpe + 1 + OutParameter + + + fr.insee + l4pb234a + 1 + QuestionItem + + + + + + + fr.insee + lij1fszm + 1 + + PARENT_FREQ_ENFLOG5 + + + PARENT_FREQ_ENFLOG5 label + + + fr.insee + l8n262ck-QOP-l8n27wnd + 1 + OutParameter + + + fr.insee + l8n262ck + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + l4lg1pyn + 1 + + PARENT_DORT_ENFLOG5 + + + PARENT_DORT_ENFLOG5 label + + + fr.insee + l4lfr4qa-QOP-l4lfvr6s + 1 + OutParameter + + + fr.insee + l4lfr4qa + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4lg1xr6 + 1 + + PARENT_VECU_ENFLOG5 + + + PARENT_VECU_ENFLOG5 label + + + fr.insee + l4lfvape-QOP-l4lfk081 + 1 + OutParameter + + + fr.insee + l4lfvape + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + la6yidpr + 1 + + SEP_AUT_PAR_ENFLOG5 + + + SEP_AUT_PAR_ENFLOG5 label + + + fr.insee + la6yfjnf-QOP-la6y9op3 + 1 + OutParameter + + + fr.insee + la6yfjnf + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4lg6rq5 + 1 + + RESID_ENFLOG5 + + + RESID_ENFLOG5 label + + + fr.insee + l4lg25av-QOP-l4lfuclq + 1 + OutParameter + + + fr.insee + l4lg25av + 1 + QuestionItem + + + + + fr.insee + kwqjqlpa + 1 + CodeList + + + + + + fr.insee + la6um2n4 + 1 + + SANTE_ENFLOG51 + + + 1 - "Oui, pour des raisons de santé" + + + fr.insee + l4lfclty-QOP-la6vpzpe + 1 + OutParameter + + + fr.insee + l4lfclty + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + la6uvgky + 1 + + SANTE_ENFLOG52 + + + 2 - "Oui, à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants" + + + fr.insee + l4lfclty-QOP-la6vhlmp + 1 + OutParameter + + + fr.insee + l4lfclty + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + la6utzgi + 1 + + SANTE_ENFLOG53 + + + 3 - "Oui, pour une autre raison" + + + fr.insee + l4lfclty-QOP-la6vcgh1 + 1 + OutParameter + + + fr.insee + l4lfclty + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + la6unkqo + 1 + + SANTE_ENFLOG54 + + + 4 - "Non" + + + fr.insee + l4lfclty-QOP-la6v7y36 + 1 + OutParameter + + + fr.insee + l4lfclty + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l8n2vo7b + 1 + + PRENOM_ENFLOG6 + + + PRENOM_ENFLOG6 label + + + fr.insee + l8n2umnw-QOP-l8n2q8ti + 1 + OutParameter + + + fr.insee + l8n2umnw + 1 + QuestionItem + + + + + + + fr.insee + llge1k6m + 1 + + SEXE_ENFLOG6 + + + SEXE_ENFLOG6 label + + + fr.insee + l8n2e1mr-QOP-l8n2ef3o + 1 + OutParameter + + + fr.insee + l8n2e1mr + 1 + QuestionItem + + + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + fr.insee + ln8wicvh + 1 + + ANAI_ENFLOG6 + + + ANAI_ENFLOG6 label + + + fr.insee + l8n2lctv-QOP-l8n2f2zr + 1 + OutParameter + + + fr.insee + l8n2lctv + 1 + QuestionItem + + + + + + + fr.insee + l8n2f6ge + 1 + + NEFRANCE_ENFLOG6 + + + NEFRANCE_ENFLOG6 label + + + fr.insee + l8n2gmuq-QOP-l8n2bcdy + 1 + OutParameter + + + fr.insee + l8n2gmuq + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8n2jseg + 1 + + PARENT_VIT_ENFLOG6 + + + PARENT_VIT_ENFLOG6 label + + + fr.insee + l8n2ilpb-QOP-l8n290y2 + 1 + OutParameter + + + fr.insee + l8n2ilpb + 1 + QuestionItem + + + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + fr.insee + l8n2bifj + 1 + + PARENT_FR_ENFLOG6 + + + PARENT_FR_ENFLOG6 label + + + fr.insee + l8n1zy7o-QOP-l8n23nvd + 1 + OutParameter + + + fr.insee + l8n1zy7o + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvxysia + 1 + + PARENT_DEP_ENFLOG6 + + + PARENT_DEP_ENFLOG6 label + + + fr.insee + l8n2awb0-QOP-llvz079i + 1 + OutParameter + + + fr.insee + l8n2awb0 + 1 + QuestionItem + + + + + + + fr.insee + llvxyjt8 + 1 + + PARENT_COM_ENFLOG6 + + + PARENT_COM_ENFLOG6 label + + + fr.insee + l8n1u6yt-QOP-llvz20va + 1 + OutParameter + + + fr.insee + l8n1u6yt + 1 + QuestionItem + + + + + + + fr.insee + llvxx6pu + 1 + + PARENT_PAY_ENFLOG6 + + + PARENT_PAY_ENFLOG6 label + + + fr.insee + l8n20r8i-QOP-llvz6xrr + 1 + OutParameter + + + fr.insee + l8n20r8i + 1 + QuestionItem + + + + + + + fr.insee + lij1973b + 1 + + PARENT_FREQ_ENFLOG6 + + + PARENT_FREQ_ENFLOG6 label + + + fr.insee + l4lfnqiq-QOP-l4lg2h6j + 1 + OutParameter + + + fr.insee + l4lfnqiq + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + l8n28aup + 1 + + PARENT_DORT_ENFLOG6 + + + PARENT_DORT_ENFLOG6 label + + + fr.insee + l8n29jww-QOP-l8n23c9r + 1 + OutParameter + + + fr.insee + l8n29jww + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8n1v5qt + 1 + + PARENT_VECU_ENFLOG6 + + + PARENT_VECU_ENFLOG6 label + + + fr.insee + l8n1p0yj-QOP-l8n23ghn + 1 + OutParameter + + + fr.insee + l8n1p0yj + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + la6ygrmz + 1 + + SEP_AUT_PAR_ENFLOG6 + + + SEP_AUT_PAR_ENFLOG6 label + + + fr.insee + la6y7ni0-QOP-la6y43a4 + 1 + OutParameter + + + fr.insee + la6y7ni0 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + la6y0cbe + 1 + + RESID_ENFLOG6 + + + RESID_ENFLOG6 label + + + fr.insee + l8n1u2kg-QOP-l8n1lsvh + 1 + OutParameter + + + fr.insee + l8n1u2kg + 1 + QuestionItem + + + + + fr.insee + kwqjqlpa + 1 + CodeList + + + + + + fr.insee + la6v17x2 + 1 + + SANTE_ENFLOG61 + + + 1 - "Oui, pour des raisons de santé" + + + fr.insee + l8n2hdgw-QOP-la6v9e5y + 1 + OutParameter + + + fr.insee + l8n2hdgw + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + la6uk2lz + 1 + + SANTE_ENFLOG62 + + + 2 - "Oui, à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants" + + + fr.insee + l8n2hdgw-QOP-la6vmq5o + 1 + OutParameter + + + fr.insee + l8n2hdgw + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + la6umbz1 + 1 + + SANTE_ENFLOG63 + + + 3 - "Oui, pour une autre raison" + + + fr.insee + l8n2hdgw-QOP-la6ven7z + 1 + OutParameter + + + fr.insee + l8n2hdgw + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + la6uljbd + 1 + + SANTE_ENFLOG64 + + + 4 - "Non" + + + fr.insee + l8n2hdgw-QOP-la6vb73e + 1 + OutParameter + + + fr.insee + l8n2hdgw + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l8n3vait + 1 + + PRENOM_ENFLOG7 + + + PRENOM_ENFLOG7 label + + + fr.insee + l8n3pb4f-QOP-l8n3v5q6 + 1 + OutParameter + + + fr.insee + l8n3pb4f + 1 + QuestionItem + + + + + + + fr.insee + llgdp5xh + 1 + + SEXE_ENFLOG7 + + + SEXE_ENFLOG7 label + + + fr.insee + l8n3mik2-QOP-l8n3szau + 1 + OutParameter + + + fr.insee + l8n3mik2 + 1 + QuestionItem + + + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + fr.insee + ln8wny08 + 1 + + ANAI_ENFLOG7 + + + ANAI_ENFLOG7 label + + + fr.insee + l8n3jmk8-QOP-l8n3qluw + 1 + OutParameter + + + fr.insee + l8n3jmk8 + 1 + QuestionItem + + + + + + + fr.insee + l8n3hi4s + 1 + + NEFRANCE_ENFLOG7 + + + NEFRANCE_ENFLOG7 label + + + fr.insee + l8n36fv3-QOP-l8n384e4 + 1 + OutParameter + + + fr.insee + l8n36fv3 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8n3doff + 1 + + PARENT_VIT_ENFLOG7 + + + PARENT_VIT_ENFLOG7 label + + + fr.insee + l8n3ff6s-QOP-l8n3ns0y + 1 + OutParameter + + + fr.insee + l8n3ff6s + 1 + QuestionItem + + + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + fr.insee + l8n3jy6y + 1 + + PARENT_FR_ENFLOG7 + + + PARENT_FR_ENFLOG7 label + + + fr.insee + l8n3b7uo-QOP-l8n3h6xz + 1 + OutParameter + + + fr.insee + l8n3b7uo + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvy6ybc + 1 + + PARENT_DEP_ENFLOG7 + + + PARENT_DEP_ENFLOG7 label + + + fr.insee + l8n3fzap-QOP-llvz2fkv + 1 + OutParameter + + + fr.insee + l8n3fzap + 1 + QuestionItem + + + + + + + fr.insee + llvy2ddo + 1 + + PARENT_COM_ENFLOG7 + + + PARENT_COM_ENFLOG7 label + + + fr.insee + l8n3485v-QOP-llvyxcs0 + 1 + OutParameter + + + fr.insee + l8n3485v + 1 + QuestionItem + + + + + + + fr.insee + llvy83kg + 1 + + PARENT_PAY_ENFLOG7 + + + PARENT_PAY_ENFLOG7 label + + + fr.insee + l8n3burz-QOP-llvz5jsq + 1 + OutParameter + + + fr.insee + l8n3burz + 1 + QuestionItem + + + + + + + fr.insee + lij14x5q + 1 + + PARENT_FREQ_ENFLOG7 + + + PARENT_FREQ_ENFLOG7 label + + + fr.insee + l8n32xk9-QOP-l8n37thq + 1 + OutParameter + + + fr.insee + l8n32xk9 + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + l8n2ve3t + 1 + + PARENT_DORT_ENFLOG7 + + + PARENT_DORT_ENFLOG7 label + + + fr.insee + l8n2x7q4-QOP-l8n348ci + 1 + OutParameter + + + fr.insee + l8n2x7q4 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8n2x63v + 1 + + PARENT_VECU_ENFLOG7 + + + PARENT_VECU_ENFLOG7 label + + + fr.insee + l8n3ary8-QOP-l8n3c8ra + 1 + OutParameter + + + fr.insee + l8n3ary8 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + la6ya7r2 + 1 + + SEP_AUT_PAR_ENFLOG7 + + + SEP_AUT_PAR_ENFLOG7 label + + + fr.insee + la6y542q-QOP-la6y48t7 + 1 + OutParameter + + + fr.insee + la6y542q + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + la6yfv2n + 1 + + RESID_ENFLOG7 + + + RESID_ENFLOG7 label + + + fr.insee + l8n2t39d-QOP-l8n38vu9 + 1 + OutParameter + + + fr.insee + l8n2t39d + 1 + QuestionItem + + + + + fr.insee + kwqjqlpa + 1 + CodeList + + + + + + fr.insee + la6ut660 + 1 + + SANTE_ENFLOG71 + + + 1 - "Oui, pour des raisons de santé" + + + fr.insee + l8n3bp4o-QOP-la6vdrq8 + 1 + OutParameter + + + fr.insee + l8n3bp4o + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + la6v2yh2 + 1 + + SANTE_ENFLOG72 + + + 2 - "Oui, à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants" + + + fr.insee + l8n3bp4o-QOP-la6vbh88 + 1 + OutParameter + + + fr.insee + l8n3bp4o + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + la6uid9q + 1 + + SANTE_ENFLOG73 + + + 3 - "Oui, pour une autre raison" + + + fr.insee + l8n3bp4o-QOP-la6vk4x5 + 1 + OutParameter + + + fr.insee + l8n3bp4o + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + la6umgx0 + 1 + + SANTE_ENFLOG74 + + + 4 - "Non" + + + fr.insee + l8n3bp4o-QOP-la6vnbtp + 1 + OutParameter + + + fr.insee + l8n3bp4o + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l8n49za1 + 1 + + PRENOM_ENFLOG8 + + + PRENOM_ENFLOG8 label + + + fr.insee + l8n4cayp-QOP-l8n40opx + 1 + OutParameter + + + fr.insee + l8n4cayp + 1 + QuestionItem + + + + + + + fr.insee + llge0ibj + 1 + + SEXE_ENFLOG8 + + + SEXE_ENFLOG8 label + + + fr.insee + l8n406m9-QOP-l8n4es1f + 1 + OutParameter + + + fr.insee + l8n406m9 + 1 + QuestionItem + + + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + fr.insee + ln8x2bub + 1 + + ANAI_ENFLOG8 + + + ANAI_ENFLOG8 label + + + fr.insee + l8n3tya0-QOP-l8n414mk + 1 + OutParameter + + + fr.insee + l8n3tya0 + 1 + QuestionItem + + + + + + + fr.insee + l8n457wa + 1 + + NEFRANCE_ENFLOG8 + + + NEFRANCE_ENFLOG8 label + + + fr.insee + l8n3vr8b-QOP-l8n49n0l + 1 + OutParameter + + + fr.insee + l8n3vr8b + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8n3v3du + 1 + + PARENT_VIT_ENFLOG8 + + + PARENT_VIT_ENFLOG8 label + + + fr.insee + l8n427a2-QOP-l8n40s7s + 1 + OutParameter + + + fr.insee + l8n427a2 + 1 + QuestionItem + + + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + fr.insee + l8n3ocrc + 1 + + PARENT_FR_ENFLOG8 + + + PARENT_FR_ENFLOG8 label + + + fr.insee + l8n41hvu-QOP-l8n3z6kp + 1 + OutParameter + + + fr.insee + l8n41hvu + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvy6byb + 1 + + PARENT_DEP_ENFLOG8 + + + PARENT_DEP_ENFLOG8 label + + + fr.insee + l8n41c78-QOP-llvz93ha + 1 + OutParameter + + + fr.insee + l8n41c78 + 1 + QuestionItem + + + + + + + fr.insee + llvxyo73 + 1 + + PARENT_COM_ENFLOG8 + + + PARENT_COM_ENFLOG8 label + + + fr.insee + l8n3tbmd-QOP-llvyt2m9 + 1 + OutParameter + + + fr.insee + l8n3tbmd + 1 + QuestionItem + + + + + + + fr.insee + llvy74id + 1 + + PARENT_PAY_ENFLOG8 + + + PARENT_PAY_ENFLOG8 label + + + fr.insee + l8n40r7t-QOP-llvyxwit + 1 + OutParameter + + + fr.insee + l8n40r7t + 1 + QuestionItem + + + + + + + fr.insee + lij1njlj + 1 + + PARENT_FREQ_ENFLOG8 + + + PARENT_FREQ_ENFLOG8 label + + + fr.insee + l8n3fpp7-QOP-l8n40f43 + 1 + OutParameter + + + fr.insee + l8n3fpp7 + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + l8n3jswg + 1 + + PARENT_DORT_ENFLOG8 + + + PARENT_DORT_ENFLOG8 label + + + fr.insee + l8n3xb0z-QOP-l8n3tomk + 1 + OutParameter + + + fr.insee + l8n3xb0z + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8n3v5ev + 1 + + PARENT_VECU_ENFLOG8 + + + PARENT_VECU_ENFLOG8 label + + + fr.insee + l8n3tjlw-QOP-l8n3nqy3 + 1 + OutParameter + + + fr.insee + l8n3tjlw + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + la6vczh4 + 1 + + SEP_AUT_PAR_ENFLOG8 + + + SEP_AUT_PAR_ENFLOG8 label + + + fr.insee + la6v947r-QOP-la6v9lhg + 1 + OutParameter + + + fr.insee + la6v947r + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + la6v4m86 + 1 + + RESID_ENFLOG8 + + + RESID_ENFLOG8 label + + + fr.insee + l8n3ocd5-QOP-l8n3iyus + 1 + OutParameter + + + fr.insee + l8n3ocd5 + 1 + QuestionItem + + + + + fr.insee + kwqjqlpa + 1 + CodeList + + + + + + fr.insee + la6un8uv + 1 + + SANTE_ENFLOG81 + + + 1 - "Oui, pour des raisons de santé" + + + fr.insee + l8n3uqr2-QOP-la6vbpmh + 1 + OutParameter + + + fr.insee + l8n3uqr2 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + la6un3h5 + 1 + + SANTE_ENFLOG82 + + + 2 - "Oui, à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants" + + + fr.insee + l8n3uqr2-QOP-la6vpud7 + 1 + OutParameter + + + fr.insee + l8n3uqr2 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + la6unudc + 1 + + SANTE_ENFLOG83 + + + 3 - "Oui, pour une autre raison" + + + fr.insee + l8n3uqr2-QOP-la6vmmu5 + 1 + OutParameter + + + fr.insee + l8n3uqr2 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + la6utz4u + 1 + + SANTE_ENFLOG84 + + + 4 - "Non" + + + fr.insee + l8n3uqr2-QOP-la6vp6s1 + 1 + OutParameter + + + fr.insee + l8n3uqr2 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l4ie7fv4 + 1 + + PRENOM_ENFAIL1 + + + PRENOM_ENFAIL1 label + + + fr.insee + l4idug6p-QOP-l4idueaa + 1 + OutParameter + + + fr.insee + l4idug6p + 1 + QuestionItem + + + + + + + fr.insee + llge79j7 + 1 + + SEXE_ENFAIL1 + + + SEXE_ENFAIL1 label + + + fr.insee + kwqix1j5-QOP-kwqixdic + 1 + OutParameter + + + fr.insee + kwqix1j5 + 1 + QuestionItem + + + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + fr.insee + ln8x1qse + 1 + + ANAI_ENFAIL1 + + + ANAI_ENFAIL1 label + + + fr.insee + kwqj561a-QOP-kwqj8zg8 + 1 + OutParameter + + + fr.insee + kwqj561a + 1 + QuestionItem + + + + + + + fr.insee + l4ie15d7 + 1 + + NEFRANCE_ENFAIL1 + + + NEFRANCE_ENFAIL1 label + + + fr.insee + l4cjlk0i-QOP-l4cjenl6 + 1 + OutParameter + + + fr.insee + l4cjlk0i + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4idrbnq + 1 + + PARENT_VIT_ENFAIL1 + + + PARENT_VIT_ENFAIL1 label + + + fr.insee + l4cjivdg-QOP-l4cjvm0q + 1 + OutParameter + + + fr.insee + l4cjivdg + 1 + QuestionItem + + + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + fr.insee + l9dv2jor + 1 + + PARENT_VECU_ENFAIL1 + + + PARENT_VECU_ENFAIL1 label + + + fr.insee + l8lzt19v-QOP-l8lzmjqf + 1 + OutParameter + + + fr.insee + l8lzt19v + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8k9yqfn + 1 + + DC_ENFAIL1 + + + DC_ENFAIL1 label + + + fr.insee + l4485tkr-QOP-l4484mb2 + 1 + OutParameter + + + fr.insee + l4485tkr + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lnbxg7f8 + 1 + + AG_DC_ENFAIL1 + + + AG_DC_ENFAIL1 label + + + fr.insee + kwqkh05l-QOP-kwqk5oby + 1 + OutParameter + + + fr.insee + kwqkh05l + 1 + QuestionItem + + + + ans + + 0 + 95 + + Decimal + + + + + fr.insee + l8ojiby4 + 1 + + AG_DEPART_ENFAIL1 + + + AG_DEPART_ENFAIL1 label + + + fr.insee + kwqk3ki3-QOP-kwqkjt71 + 1 + OutParameter + + + fr.insee + kwqk3ki3 + 1 + QuestionItem + + + + ans + + 0 + 95 + + Decimal + + + + + fr.insee + lij1et9t + 1 + + PARENT_FREQ_ENFAIL1 + + + PARENT_FREQ_ENFAIL1 label + + + fr.insee + kwqkmusz-QOP-l34h1xd0 + 1 + OutParameter + + + fr.insee + kwqkmusz + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + lai72f8d + 1 + + FR_ENFAIL1 + + + FR_ENFAIL1 label + + + fr.insee + kwqjp9yr-QOP-l48dyt79 + 1 + OutParameter + + + fr.insee + kwqjp9yr + 1 + QuestionItem + + + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + fr.insee + llvylz7b + 1 + + DEP_ENFAIL1 + + + DEP_ENFAIL1 label + + + fr.insee + l4onskib-QOP-llvz9m81 + 1 + OutParameter + + + fr.insee + l4onskib + 1 + QuestionItem + + + + + + + fr.insee + llvycj4j + 1 + + COM_ENFAIL1 + + + COM_ENFAIL1 label + + + fr.insee + l4onsq99-QOP-llvyydq0 + 1 + OutParameter + + + fr.insee + l4onsq99 + 1 + QuestionItem + + + + + + + fr.insee + llvyajtl + 1 + + PAY_ENFAIL1 + + + PAY_ENFAIL1 label + + + fr.insee + l4onsf7y-QOP-llvyw05u + 1 + OutParameter + + + fr.insee + l4onsf7y + 1 + QuestionItem + + + + + + + fr.insee + l4ie8a4z + 1 + + LOG_ENFAIL1 + + + LOG_ENFAIL1 label + + + fr.insee + kwqk3a58-QOP-kwqkfnsx + 1 + OutParameter + + + fr.insee + kwqk3a58 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l5ilmykd + 1 + + AUT_PAR_ENFAIL1 + + + AUT_PAR_ENFAIL1 label + + + fr.insee + l44849iu-QOP-l4483bnv + 1 + OutParameter + + + fr.insee + l44849iu + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4iec3iy + 1 + + DORT_ENFAIL1 + + + DORT_ENFAIL1 label + + + fr.insee + kwqj7xh6-QOP-l1gkylst + 1 + OutParameter + + + fr.insee + kwqj7xh6 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4o7a7kk + 1 + + SEP_AUT_PAR_ENFAIL1 + + + SEP_AUT_PAR_ENFAIL1 label + + + fr.insee + l4o74e6d-QOP-l4o73ai5 + 1 + OutParameter + + + fr.insee + l4o74e6d + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4o7msxb + 1 + + RESID_ENFAIL1 + + + RESID_ENFAIL1 label + + + fr.insee + l1gknpsx-QOP-l1gkaoki + 1 + OutParameter + + + fr.insee + l1gknpsx + 1 + QuestionItem + + + + + fr.insee + l448z131 + 1 + CodeList + + + + + + fr.insee + lagwrj5e + 1 + + SANTE_ENFAIL11 + + + 1 - "Pour des raisons de santé" + + + fr.insee + l1gi8vrf-QOP-lagyu6fp + 1 + OutParameter + + + fr.insee + l1gi8vrf + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lagwgqxb + 1 + + SANTE_ENFAIL12 + + + 2 - "A la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants" + + + fr.insee + l1gi8vrf-QOP-lagyjdla + 1 + OutParameter + + + fr.insee + l1gi8vrf + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lagwrywk + 1 + + SANTE_ENFAIL13 + + + 3 - "Pour une autre raison" + + + fr.insee + l1gi8vrf-QOP-lagydkrl + 1 + OutParameter + + + fr.insee + l1gi8vrf + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l4lg2nk3 + 1 + + PRENOM_ENFAIL2 + + + PRENOM_ENFAIL2 label + + + fr.insee + l4lg1tus-QOP-l4lg294k + 1 + OutParameter + + + fr.insee + l4lg1tus + 1 + QuestionItem + + + + + + + fr.insee + llgjk2nm + 1 + + SEXE_ENFAIL2 + + + SEXE_ENFAIL2 label + + + fr.insee + l4lgd8bs-QOP-l4lg3zcd + 1 + OutParameter + + + fr.insee + l4lgd8bs + 1 + QuestionItem + + + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + fr.insee + ln8x5qdi + 1 + + ANAI_ENFAIL2 + + + ANAI_ENFAIL2 label + + + fr.insee + l4lgjbi8-QOP-l4lg7r84 + 1 + OutParameter + + + fr.insee + l4lgjbi8 + 1 + QuestionItem + + + + + + + fr.insee + l4lh0ajb + 1 + + NEFRANCE_ENFAIL2 + + + NEFRANCE_ENFAIL2 label + + + fr.insee + l4lgtwy7-QOP-l4lgmy6a + 1 + OutParameter + + + fr.insee + l4lgtwy7 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4lgwsqm + 1 + + PARENT_VIT_ENFAIL2 + + + PARENT_VIT_ENFAIL2 label + + + fr.insee + l4lgqbdk-QOP-l4lgpvm2 + 1 + OutParameter + + + fr.insee + l4lgqbdk + 1 + QuestionItem + + + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + fr.insee + l9dvg123 + 1 + + PARENT_VECU_ENFAIL2 + + + PARENT_VECU_ENFAIL2 label + + + fr.insee + l8lzthqx-QOP-l8m05h5g + 1 + OutParameter + + + fr.insee + l8lzthqx + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4lh4wfw + 1 + + DC_ENFAIL2 + + + DC_ENFAIL2 label + + + fr.insee + l4lh1bvw-QOP-l4lgv2yw + 1 + OutParameter + + + fr.insee + l4lh1bvw + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lnbxmgjx + 1 + + AG_DC_ENFAIL2 + + + AG_DC_ENFAIL2 label + + + fr.insee + l4lhc03p-QOP-l4lhgfos + 1 + OutParameter + + + fr.insee + l4lhc03p + 1 + QuestionItem + + + + ans + + 0 + 95 + + Decimal + + + + + fr.insee + l8ojxve4 + 1 + + AG_DEPART_ENFAIL2 + + + AG_DEPART_ENFAIL2 label + + + fr.insee + l4lhkbmw-QOP-l4lhq38m + 1 + OutParameter + + + fr.insee + l4lhkbmw + 1 + QuestionItem + + + + ans + + 0 + 95 + + Decimal + + + + + fr.insee + lij1my05 + 1 + + PARENT_FREQ_ENFAIL2 + + + PARENT_FREQ_ENFAIL2 label + + + fr.insee + l4liqyis-QOP-l4lj9ipw + 1 + OutParameter + + + fr.insee + l4liqyis + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + lai71qvf + 1 + + FR_ENFAIL2 + + + FR_ENFAIL2 label + + + fr.insee + l4lj22ar-QOP-l4likfdn + 1 + OutParameter + + + fr.insee + l4lj22ar + 1 + QuestionItem + + + + + fr.insee + l4ongo32 + 1 + CodeList + + + + + + fr.insee + llvyhx8j + 1 + + DEP_ENFAIL2 + + + DEP_ENFAIL2 label + + + fr.insee + l4oo8gk0-QOP-llvz89k3 + 1 + OutParameter + + + fr.insee + l4oo8gk0 + 1 + QuestionItem + + + + + + + fr.insee + llvys5r8 + 1 + + COM_ENFAIL2 + + + COM_ENFAIL2 label + + + fr.insee + l4oo2unu-QOP-llvyt4to + 1 + OutParameter + + + fr.insee + l4oo2unu + 1 + QuestionItem + + + + + + + fr.insee + llvyqaj6 + 1 + + PAY_ENFAIL2 + + + PAY_ENFAIL2 label + + + fr.insee + l4ooebmj-QOP-llvz2rjo + 1 + OutParameter + + + fr.insee + l4ooebmj + 1 + QuestionItem + + + + + + + fr.insee + l4lj0cki + 1 + + LOG_ENFAIL2 + + + LOG_ENFAIL2 label + + + fr.insee + l4liztyl-QOP-l4liyopf + 1 + OutParameter + + + fr.insee + l4liztyl + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4ljyhe4 + 1 + + AUT_PAR_ENFAIL2 + + + AUT_PAR_ENFAIL2 label + + + fr.insee + l4lk1w8p-QOP-l4lk92w2 + 1 + OutParameter + + + fr.insee + l4lk1w8p + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4lk2gex + 1 + + DORT_ENFAIL2 + + + DORT_ENFAIL2 label + + + fr.insee + l4ljkmaj-QOP-l4lk4f59 + 1 + OutParameter + + + fr.insee + l4ljkmaj + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l7un2f3g + 1 + + SEP_AUT_PAR_ENFAIL2 + + + SEP_AUT_PAR_ENFAIL2 label + + + fr.insee + l4o73m0u-QOP-l4o79ydp + 1 + OutParameter + + + fr.insee + l4o73m0u + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4o7d0hf + 1 + + RESID_ENFAIL2 + + + RESID_ENFAIL2 label + + + fr.insee + l4lmxke4-QOP-l4lmow3d + 1 + OutParameter + + + fr.insee + l4lmxke4 + 1 + QuestionItem + + + + + fr.insee + l448z131 + 1 + CodeList + + + + + + fr.insee + lagwqnte + 1 + + SANTE_ENFAIL21 + + + 1 - "Pour des raisons de santé" + + + fr.insee + l4ljj44i-QOP-lagyowte + 1 + OutParameter + + + fr.insee + l4ljj44i + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lagwu8wr + 1 + + SANTE_ENFAIL22 + + + 2 - "A la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants" + + + fr.insee + l4ljj44i-QOP-lagyfrw1 + 1 + OutParameter + + + fr.insee + l4ljj44i + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lagwevqg + 1 + + SANTE_ENFAIL23 + + + 3 - "Pour une autre raison" + + + fr.insee + l4ljj44i-QOP-lagyeeeb + 1 + OutParameter + + + fr.insee + l4ljj44i + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l4lfyg5t + 1 + + PRENOM_ENFAIL3 + + + PRENOM_ENFAIL3 label + + + fr.insee + l4lg3j5g-QOP-l4lg9z9j + 1 + OutParameter + + + fr.insee + l4lg3j5g + 1 + QuestionItem + + + + + + + fr.insee + llgjuydk + 1 + + SEXE_ENFAIL3 + + + SEXE_ENFAIL3 label + + + fr.insee + l4lg6nx5-QOP-l4lg6j08 + 1 + OutParameter + + + fr.insee + l4lg6nx5 + 1 + QuestionItem + + + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + fr.insee + ln8xfz8v + 1 + + ANAI_ENFAIL3 + + + ANAI_ENFAIL3 label + + + fr.insee + l4lgenh5-QOP-l4lgj042 + 1 + OutParameter + + + fr.insee + l4lgenh5 + 1 + QuestionItem + + + + + + + fr.insee + l4lgo3d3 + 1 + + NEFRANCE_ENFAIL3 + + + NEFRANCE_ENFAIL3 label + + + fr.insee + l4lh0q7i-QOP-l4lgw48z + 1 + OutParameter + + + fr.insee + l4lh0q7i + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4lh0wg5 + 1 + + PARENT_VIT_ENFAIL3 + + + PARENT_VIT_ENFAIL3 label + + + fr.insee + l4lgysxq-QOP-l4lgtxyg + 1 + OutParameter + + + fr.insee + l4lgysxq + 1 + QuestionItem + + + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + fr.insee + l9dv00hr + 1 + + PARENT_VECU_ENFAIL3 + + + PARENT_VECU_ENFAIL3 label + + + fr.insee + l8m0bu1o-QOP-l8m0gq78 + 1 + OutParameter + + + fr.insee + l8m0bu1o + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4lh1dxb + 1 + + DC_ENFAIL3 + + + DC_ENFAIL3 label + + + fr.insee + l4lh0ofl-QOP-l4lhcnt0 + 1 + OutParameter + + + fr.insee + l4lh0ofl + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l9fl847j + 1 + + AG_DC_ENFAIL3 + + + AG_DC_ENFAIL3 label + + + fr.insee + l4lhbuxg-QOP-l4lhhhhy + 1 + OutParameter + + + fr.insee + l4lhbuxg + 1 + QuestionItem + + + + ans + + 0 + 95 + + Decimal + + + + + fr.insee + l8ojnks0 + 1 + + AG_DEPART_ENFAIL3 + + + AG_DEPART_ENFAIL3 label + + + fr.insee + l4lhdubm-QOP-l4lhr1jr + 1 + OutParameter + + + fr.insee + l4lhdubm + 1 + QuestionItem + + + + ans + + 0 + 95 + + Decimal + + + + + fr.insee + lij1hbsi + 1 + + PARENT_FREQ_ENFAIL3 + + + PARENT_FREQ_ENFAIL3 label + + + fr.insee + l4lirpfm-QOP-l4lj5xeo + 1 + OutParameter + + + fr.insee + l4lirpfm + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + lai6zu1s + 1 + + FR_ENFAIL3 + + + FR_ENFAIL3 label + + + fr.insee + l4lj2cqg-QOP-l4liuj0u + 1 + OutParameter + + + fr.insee + l4lj2cqg + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvyhkhn + 1 + + DEP_ENFAIL3 + + + DEP_ENFAIL3 label + + + fr.insee + l4oo03nq-QOP-llvyxdr9 + 1 + OutParameter + + + fr.insee + l4oo03nq + 1 + QuestionItem + + + + + + + fr.insee + llvyc82v + 1 + + COM_ENFAIL3 + + + COM_ENFAIL3 label + + + fr.insee + l4oo41j6-QOP-llvyrgzl + 1 + OutParameter + + + fr.insee + l4oo41j6 + 1 + QuestionItem + + + + + + + fr.insee + llvytzoi + 1 + + PAY_ENFAIL3 + + + PAY_ENFAIL3 label + + + fr.insee + l4ooe2gj-QOP-llvz89lf + 1 + OutParameter + + + fr.insee + l4ooe2gj + 1 + QuestionItem + + + + + + + fr.insee + l4lj26cu + 1 + + LOG_ENFAIL3 + + + LOG_ENFAIL3 label + + + fr.insee + l4ljddzv-QOP-l4lj4c9v + 1 + OutParameter + + + fr.insee + l4ljddzv + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lasa136n + 1 + + AUT_PAR_ENFAIL3 + + + AUT_PAR_ENFAIL3 label + + + fr.insee + l4lmjzwd-QOP-l4lmk2uc + 1 + OutParameter + + + fr.insee + l4lmjzwd + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4lk2ey2 + 1 + + DORT_ENFAIL3 + + + DORT_ENFAIL3 label + + + fr.insee + l4ljm6cp-QOP-l4ljuv43 + 1 + OutParameter + + + fr.insee + l4ljm6cp + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4o7s6rx + 1 + + SEP_AUT_PAR_ENFAIL3 + + + SEP_AUT_PAR_ENFAIL3 label + + + fr.insee + l4o7gt0n-QOP-l4o7fj27 + 1 + OutParameter + + + fr.insee + l4o7gt0n + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4o7hjqb + 1 + + RESID_ENFAIL3 + + + RESID_ENFAIL3 label + + + fr.insee + l4lmszob-QOP-l4lmv8du + 1 + OutParameter + + + fr.insee + l4lmszob + 1 + QuestionItem + + + + + fr.insee + l448z131 + 1 + CodeList + + + + + + fr.insee + lagwatn6 + 1 + + SANTE_ENFAIL31 + + + 1 - "Pour des raisons de santé" + + + fr.insee + l4ljg7fn-QOP-lagyxtyg + 1 + OutParameter + + + fr.insee + l4ljg7fn + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lagwgz17 + 1 + + SANTE_ENFAIL32 + + + 2 - "A la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants" + + + fr.insee + l4ljg7fn-QOP-lagyuta3 + 1 + OutParameter + + + fr.insee + l4ljg7fn + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lagwogef + 1 + + SANTE_ENFAIL33 + + + 3 - "Pour une autre raison" + + + fr.insee + l4ljg7fn-QOP-lagyuxyh + 1 + OutParameter + + + fr.insee + l4ljg7fn + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l4lg13lj + 1 + + PRENOM_ENFAIL4 + + + PRENOM_ENFAIL4 label + + + fr.insee + l4lg5t9v-QOP-l4lg3csm + 1 + OutParameter + + + fr.insee + l4lg5t9v + 1 + QuestionItem + + + + + + + fr.insee + llgjs283 + 1 + + SEXE_ENFAIL4 + + + SEXE_ENFAIL4 label + + + fr.insee + l4lg3wub-QOP-l4lg3510 + 1 + OutParameter + + + fr.insee + l4lg3wub + 1 + QuestionItem + + + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + fr.insee + ln8xa2yf + 1 + + ANAI_ENFAIL4 + + + ANAI_ENFAIL4 label + + + fr.insee + l4lgfphb-QOP-l4lgh2oy + 1 + OutParameter + + + fr.insee + l4lgfphb + 1 + QuestionItem + + + + + + + fr.insee + l4lh0w7d + 1 + + NEFRANCE_ENFAIL4 + + + NEFRANCE_ENFAIL4 label + + + fr.insee + l4lgr9ny-QOP-l4lgx588 + 1 + OutParameter + + + fr.insee + l4lgr9ny + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4lgtg6z + 1 + + PARENT_VIT_ENFAIL4 + + + PARENT_VIT_ENFAIL4 label + + + fr.insee + l4lgo4yb-QOP-l4lgsplb + 1 + OutParameter + + + fr.insee + l4lgo4yb + 1 + QuestionItem + + + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + fr.insee + l9duyjkw + 1 + + PARENT_VECU_ENFAIL4 + + + PARENT_VECU_ENFAIL4 label + + + fr.insee + l8m03w7m-QOP-l8m0ghal + 1 + OutParameter + + + fr.insee + l8m03w7m + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4lh0y8b + 1 + + DC_ENFAIL4 + + + DC_ENFAIL4 label + + + fr.insee + l4lh1a42-QOP-l4lh8xt8 + 1 + OutParameter + + + fr.insee + l4lh1a42 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lnbxmkfn + 1 + + AG_DC_ENFAIL4 + + + AG_DC_ENFAIL4 label + + + fr.insee + l4lhbfxh-QOP-l4lh4m12 + 1 + OutParameter + + + fr.insee + l4lhbfxh + 1 + QuestionItem + + + + ans + + 0 + 95 + + Decimal + + + + + fr.insee + l8ojzphy + 1 + + AG_DEPART_ENFAIL4 + + + AG_DEPART_ENFAIL4 label + + + fr.insee + l4lho0e2-QOP-l4lhe3eu + 1 + OutParameter + + + fr.insee + l4lho0e2 + 1 + QuestionItem + + + + ans + + 0 + 95 + + Decimal + + + + + fr.insee + lij1q243 + 1 + + PARENT_FREQ_ENFAIL4 + + + PARENT_FREQ_ENFAIL4 label + + + fr.insee + l4lj5kv6-QOP-l4lj2kyh + 1 + OutParameter + + + fr.insee + l4lj5kv6 + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + lai6scfn + 1 + + FR_ENFAIL4 + + + FR_ENFAIL4 label + + + fr.insee + l4lj0iea-QOP-l4liwqkb + 1 + OutParameter + + + fr.insee + l4lj0iea + 1 + QuestionItem + + + + + fr.insee + l4onqoyo + 1 + CodeList + + + + + + fr.insee + llvyp2uu + 1 + + DEP_ENFAIL4 + + + DEP_ENFAIL4 label + + + fr.insee + l4oo4x1t-QOP-llvyr8d7 + 1 + OutParameter + + + fr.insee + l4oo4x1t + 1 + QuestionItem + + + + + + + fr.insee + llvytozk + 1 + + COM_ENFAIL4 + + + COM_ENFAIL4 label + + + fr.insee + l4onwhrf-QOP-llvz7vfx + 1 + OutParameter + + + fr.insee + l4onwhrf + 1 + QuestionItem + + + + + + + fr.insee + llvyka8z + 1 + + PAY_ENFAIL4 + + + PAY_ENFAIL4 label + + + fr.insee + l4oo1817-QOP-llvyukzs + 1 + OutParameter + + + fr.insee + l4oo1817 + 1 + QuestionItem + + + + + + + fr.insee + l4ljh4hd + 1 + + LOG_ENFAIL4 + + + LOG_ENFAIL4 label + + + fr.insee + l4lixcs2-QOP-l4lj1r3g + 1 + OutParameter + + + fr.insee + l4lixcs2 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4lmfm7a + 1 + + AUT_PAR_ENFAIL4 + + + AUT_PAR_ENFAIL4 label + + + fr.insee + l4lms9a0-QOP-l4lmo51c + 1 + OutParameter + + + fr.insee + l4lms9a0 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4lk882x + 1 + + DORT_ENFAIL4 + + + DORT_ENFAIL4 label + + + fr.insee + l4ljmpiu-QOP-l4ljxs6c + 1 + OutParameter + + + fr.insee + l4ljmpiu + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4o80sj1 + 1 + + SEP_AUT_PAR_ENFAIL4 + + + SEP_AUT_PAR_ENFAIL4 label + + + fr.insee + l4o7jdze-QOP-l4o7nzi9 + 1 + OutParameter + + + fr.insee + l4o7jdze + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4o7hp12 + 1 + + RESID_ENFAIL4 + + + RESID_ENFAIL4 label + + + fr.insee + l4lmvah7-QOP-l4lmu5ae + 1 + OutParameter + + + fr.insee + l4lmvah7 + 1 + QuestionItem + + + + + fr.insee + l448z131 + 1 + CodeList + + + + + + fr.insee + lagwk26x + 1 + + SANTE_ENFAIL41 + + + 1 - "Pour des raisons de santé" + + + fr.insee + l4ljjvig-QOP-lagyh7yq + 1 + OutParameter + + + fr.insee + l4ljjvig + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lagwolgd + 1 + + SANTE_ENFAIL42 + + + 2 - "A la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants" + + + fr.insee + l4ljjvig-QOP-lagyinu2 + 1 + OutParameter + + + fr.insee + l4ljjvig + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lagwtg5h + 1 + + SANTE_ENFAIL43 + + + 3 - "Pour une autre raison" + + + fr.insee + l4ljjvig-QOP-lagyvlaz + 1 + OutParameter + + + fr.insee + l4ljjvig + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l4lgdupn + 1 + + PRENOM_ENFAIL5 + + + PRENOM_ENFAIL5 label + + + fr.insee + l4lgayon-QOP-l4lg49i3 + 1 + OutParameter + + + fr.insee + l4lgayon + 1 + QuestionItem + + + + + + + fr.insee + llgjrwzu + 1 + + SEXE_ENFAIL5 + + + SEXE_ENFAIL5 label + + + fr.insee + l4lgep4c-QOP-l4lg9rqy + 1 + OutParameter + + + fr.insee + l4lgep4c + 1 + QuestionItem + + + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + fr.insee + ln8xgsgo + 1 + + ANAI_ENFAIL5 + + + ANAI_ENFAIL5 label + + + fr.insee + l4lgp1ft-QOP-l4lgleu5 + 1 + OutParameter + + + fr.insee + l4lgp1ft + 1 + QuestionItem + + + + + + + fr.insee + l4lgnml2 + 1 + + NEFRANCE_ENFAIL5 + + + NEFRANCE_ENFAIL5 label + + + fr.insee + l4lgnphx-QOP-l4lgsfsx + 1 + OutParameter + + + fr.insee + l4lgnphx + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4lh0oju + 1 + + PARENT_VIT_ENFAIL5 + + + PARENT_VIT_ENFAIL5 label + + + fr.insee + l4lh672z-QOP-l4lh0pbe + 1 + OutParameter + + + fr.insee + l4lh672z + 1 + QuestionItem + + + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + fr.insee + l9dvdo4p + 1 + + PARENT_VECU_ENFAIL5 + + + PARENT_VECU_ENFAIL5 label + + + fr.insee + l8m0ld6c-QOP-l8m08umx + 1 + OutParameter + + + fr.insee + l8m0ld6c + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4lh78pu + 1 + + DC_ENFAIL5 + + + DC_ENFAIL5 label + + + fr.insee + l4lhcdf6-QOP-l4lgwio5 + 1 + OutParameter + + + fr.insee + l4lhcdf6 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l9flf9hj + 1 + + AG_DC_ENFAIL5 + + + AG_DC_ENFAIL5 label + + + fr.insee + l4lh8c72-QOP-l4lh96gc + 1 + OutParameter + + + fr.insee + l4lh8c72 + 1 + QuestionItem + + + + ans + + 0 + 95 + + Decimal + + + + + fr.insee + l8ojekyz + 1 + + AG_DEPART_ENFAIL5 + + + AG_DEPART_ENFAIL5 label + + + fr.insee + l4lhn614-QOP-l4lhi8ks + 1 + OutParameter + + + fr.insee + l4lhn614 + 1 + QuestionItem + + + + ans + + 0 + 95 + + Decimal + + + + + fr.insee + lij1mx2e + 1 + + PARENT_FREQ_ENFAIL5 + + + PARENT_FREQ_ENFAIL5 label + + + fr.insee + l4lj98cz-QOP-l4lj2b7z + 1 + OutParameter + + + fr.insee + l4lj98cz + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + lai6w8kr + 1 + + FR_ENFAIL5 + + + FR_ENFAIL5 label + + + fr.insee + l4lijtvo-QOP-l4liqibl + 1 + OutParameter + + + fr.insee + l4lijtvo + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvysls5 + 1 + + DEP_ENFAIL5 + + + DEP_ENFAIL5 label + + + fr.insee + l4oo7lwi-QOP-llvz93jz + 1 + OutParameter + + + fr.insee + l4oo7lwi + 1 + QuestionItem + + + + + + + fr.insee + llvz0fqm + 1 + + COM_ENFAIL5 + + + COM_ENFAIL5 label + + + fr.insee + l4oo41q4-QOP-llvz0237 + 1 + OutParameter + + + fr.insee + l4oo41q4 + 1 + QuestionItem + + + + + + + fr.insee + llvylns4 + 1 + + PAY_ENFAIL5 + + + PAY_ENFAIL5 label + + + fr.insee + l4oo5bj9-QOP-llvz2kjk + 1 + OutParameter + + + fr.insee + l4oo5bj9 + 1 + QuestionItem + + + + + + + fr.insee + l4lj62bs + 1 + + LOG_ENFAIL5 + + + LOG_ENFAIL5 label + + + fr.insee + l4lizygc-QOP-l4lj1p4y + 1 + OutParameter + + + fr.insee + l4lizygc + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4o7oknh + 1 + + AUT_PAR_ENFAIL5 + + + AUT_PAR_ENFAIL5 label + + + fr.insee + l4lmc52p-QOP-l4lmdw7z + 1 + OutParameter + + + fr.insee + l4lmc52p + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4ljvm4i + 1 + + DORT_ENFAIL5 + + + DORT_ENFAIL5 label + + + fr.insee + l4ljxer7-QOP-l4ljxwvx + 1 + OutParameter + + + fr.insee + l4ljxer7 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4o7xizu + 1 + + SEP_AUT_PAR_ENFAIL5 + + + SEP_AUT_PAR_ENFAIL5 label + + + fr.insee + l4o7vzru-QOP-l4o80pka + 1 + OutParameter + + + fr.insee + l4o7vzru + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4o7n3ug + 1 + + RESID_ENFAIL5 + + + RESID_ENFAIL5 label + + + fr.insee + l4lms6u4-QOP-l4ln2eva + 1 + OutParameter + + + fr.insee + l4lms6u4 + 1 + QuestionItem + + + + + fr.insee + l448z131 + 1 + CodeList + + + + + + fr.insee + lagwmxd3 + 1 + + SANTE_ENFAIL51 + + + 1 - "Pour des raisons de santé" + + + fr.insee + l4ljcdar-QOP-lagyt3hb + 1 + OutParameter + + + fr.insee + l4ljcdar + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lagwbebj + 1 + + SANTE_ENFAIL52 + + + 2 - "A la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants" + + + fr.insee + l4ljcdar-QOP-lagyitoa + 1 + OutParameter + + + fr.insee + l4ljcdar + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lagwpanz + 1 + + SANTE_ENFAIL53 + + + 3 - "Pour une autre raison" + + + fr.insee + l4ljcdar-QOP-lagyycd1 + 1 + OutParameter + + + fr.insee + l4ljcdar + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l8oi7fel + 1 + + PRENOM_ENFAIL6 + + + PRENOM_ENFAIL6 label + + + fr.insee + l8oign0h-QOP-l8oifcrp + 1 + OutParameter + + + fr.insee + l8oign0h + 1 + QuestionItem + + + + + + + fr.insee + llgjkq9j + 1 + + SEXE_ENFAIL6 + + + SEXE_ENFAIL6 label + + + fr.insee + l8oi92w4-QOP-l8oihhrs + 1 + OutParameter + + + fr.insee + l8oi92w4 + 1 + QuestionItem + + + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + fr.insee + ln8xae81 + 1 + + ANAI_ENFAIL6 + + + ANAI_ENFAIL6 label + + + fr.insee + l8oi7q9f-QOP-l8oijkad + 1 + OutParameter + + + fr.insee + l8oi7q9f + 1 + QuestionItem + + + + + + + fr.insee + l8oij0b0 + 1 + + NEFRANCE_ENFAIL6 + + + NEFRANCE_ENFAIL6 label + + + fr.insee + l8oientz-QOP-l8oib8l6 + 1 + OutParameter + + + fr.insee + l8oientz + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8ohw6dq + 1 + + PARENT_VIT_ENFAIL6 + + + PARENT_VIT_ENFAIL6 label + + + fr.insee + l8oidc2m-QOP-l8ohy4u9 + 1 + OutParameter + + + fr.insee + l8oidc2m + 1 + QuestionItem + + + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + fr.insee + l9duy8g6 + 1 + + PARENT_VECU_ENFAIL6 + + + PARENT_VECU_ENFAIL6 label + + + fr.insee + l8oib75g-QOP-l8oi8s9r + 1 + OutParameter + + + fr.insee + l8oib75g + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8oi73zk + 1 + + DC_ENFAIL6 + + + DC_ENFAIL6 label + + + fr.insee + l8ohus0v-QOP-l8oi6wxh + 1 + OutParameter + + + fr.insee + l8ohus0v + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lnbxb1g6 + 1 + + AG_DC_ENFAIL6 + + + AG_DC_ENFAIL6 label + + + fr.insee + l8ohrpn7-QOP-l8ohwfm9 + 1 + OutParameter + + + fr.insee + l8ohrpn7 + 1 + QuestionItem + + + + ans + + 0 + 95 + + Decimal + + + + + fr.insee + l8ojv4ww + 1 + + AG_DEPART_ENFAIL6 + + + AG_DEPART_ENFAIL6 label + + + fr.insee + l8ohwpt9-QOP-l8ohnljo + 1 + OutParameter + + + fr.insee + l8ohwpt9 + 1 + QuestionItem + + + + ans + + 0 + 95 + + Decimal + + + + + fr.insee + lij1ifw6 + 1 + + PARENT_FREQ_ENFAIL6 + + + PARENT_FREQ_ENFAIL6 label + + + fr.insee + l8oh46rn-QOP-l8oh8ggp + 1 + OutParameter + + + fr.insee + l8oh46rn + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + lai76uzw + 1 + + FR_ENFAIL6 + + + FR_ENFAIL6 label + + + fr.insee + l8ogysyp-QOP-l8ogwc5d + 1 + OutParameter + + + fr.insee + l8ogysyp + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvywof5 + 1 + + DEP_ENFAIL6 + + + DEP_ENFAIL6 label + + + fr.insee + l8ogp9jo-QOP-llvz1v15 + 1 + OutParameter + + + fr.insee + l8ogp9jo + 1 + QuestionItem + + + + + + + fr.insee + llvyoxe1 + 1 + + COM_ENFAIL6 + + + COM_ENFAIL6 label + + + fr.insee + l8ogqig3-QOP-llvzas4q + 1 + OutParameter + + + fr.insee + l8ogqig3 + 1 + QuestionItem + + + + + + + fr.insee + llvypr5t + 1 + + PAY_ENFAIL6 + + + PAY_ENFAIL6 label + + + fr.insee + l8ogpnbn-QOP-llvz3tao + 1 + OutParameter + + + fr.insee + l8ogpnbn + 1 + QuestionItem + + + + + + + fr.insee + l8ogvwpl + 1 + + LOG_ENFAIL6 + + + LOG_ENFAIL6 label + + + fr.insee + l8ogukpt-QOP-l8ogy42h + 1 + OutParameter + + + fr.insee + l8ogukpt + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8oaxy5v + 1 + + AUT_PAR_ENFAIL6 + + + AUT_PAR_ENFAIL6 label + + + fr.insee + l8ob0dk4-QOP-l8oakgr4 + 1 + OutParameter + + + fr.insee + l8ob0dk4 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8ob2278 + 1 + + DORT_ENFAIL6 + + + DORT_ENFAIL6 label + + + fr.insee + l8oarkxm-QOP-l8oaqk9w + 1 + OutParameter + + + fr.insee + l8oarkxm + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8ob0bwo + 1 + + SEP_AUT_PAR_ENFAIL6 + + + SEP_AUT_PAR_ENFAIL6 label + + + fr.insee + l8oaqbj5-QOP-l8ob57h3 + 1 + OutParameter + + + fr.insee + l8oaqbj5 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8ob2zsx + 1 + + RESID_ENFAIL6 + + + RESID_ENFAIL6 label + + + fr.insee + l8oanpzw-QOP-l8oayvjg + 1 + OutParameter + + + fr.insee + l8oanpzw + 1 + QuestionItem + + + + + fr.insee + l448z131 + 1 + CodeList + + + + + + fr.insee + lagwf9yy + 1 + + SANTE_ENFAIL61 + + + 1 - "Pour des raisons de santé" + + + fr.insee + l8oasgat-QOP-lagyuenn + 1 + OutParameter + + + fr.insee + l8oasgat + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lagwd4vw + 1 + + SANTE_ENFAIL62 + + + 2 - "A la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants" + + + fr.insee + l8oasgat-QOP-lagyvzmn + 1 + OutParameter + + + fr.insee + l8oasgat + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lagwt98o + 1 + + SANTE_ENFAIL63 + + + 3 - "Pour une autre raison" + + + fr.insee + l8oasgat-QOP-lagyviqg + 1 + OutParameter + + + fr.insee + l8oasgat + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l8okm9vv + 1 + + PRENOM_ENFAIL7 + + + PRENOM_ENFAIL7 label + + + fr.insee + l8ok9kmj-QOP-l8okjmzy + 1 + OutParameter + + + fr.insee + l8ok9kmj + 1 + QuestionItem + + + + + + + fr.insee + llgjuj96 + 1 + + SEXE_ENFAIL7 + + + SEXE_ENFAIL7 label + + + fr.insee + l8okbmv3-QOP-l8ok3iy5 + 1 + OutParameter + + + fr.insee + l8okbmv3 + 1 + QuestionItem + + + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + fr.insee + ln8xllr2 + 1 + + ANAI_ENFAIL7 + + + ANAI_ENFAIL7 label + + + fr.insee + l8okh65e-QOP-l8okdvkx + 1 + OutParameter + + + fr.insee + l8okh65e + 1 + QuestionItem + + + + + + + fr.insee + l8ojza9l + 1 + + NEFRANCE_ENFAIL7 + + + NEFRANCE_ENFAIL7 label + + + fr.insee + l8okc5z9-QOP-l8ok6z0e + 1 + OutParameter + + + fr.insee + l8okc5z9 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8ok36f1 + 1 + + PARENT_VIT_ENFAIL7 + + + PARENT_VIT_ENFAIL7 label + + + fr.insee + l8okdoof-QOP-l8ojuyat + 1 + OutParameter + + + fr.insee + l8okdoof + 1 + QuestionItem + + + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + fr.insee + l9dvd6ci + 1 + + PARENT_VECU_ENFAIL7 + + + PARENT_VECU_ENFAIL7 label + + + fr.insee + l8ok0d4y-QOP-l8ojxc00 + 1 + OutParameter + + + fr.insee + l8ok0d4y + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8ojsho1 + 1 + + DC_ENFAIL7 + + + DC_ENFAIL7 label + + + fr.insee + l8ok0acp-QOP-l8ok9idc + 1 + OutParameter + + + fr.insee + l8ok0acp + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lnbxenl4 + 1 + + AG_DC_ENFAIL7 + + + AG_DC_ENFAIL7 label + + + fr.insee + l8ojs3vl-QOP-l8ojtruw + 1 + OutParameter + + + fr.insee + l8ojs3vl + 1 + QuestionItem + + + + ans + + 0 + 95 + + Decimal + + + + + fr.insee + l8ojfunn + 1 + + AG_DEPART_ENFAIL7 + + + AG_DEPART_ENFAIL7 label + + + fr.insee + l8ojuhud-QOP-l8ojvwk7 + 1 + OutParameter + + + fr.insee + l8ojuhud + 1 + QuestionItem + + + + ans + + 0 + 95 + + Decimal + + + + + fr.insee + lij1hx9z + 1 + + PARENT_FREQ_ENFAIL7 + + + PARENT_FREQ_ENFAIL7 label + + + fr.insee + l8ojmjws-QOP-l8ojhru1 + 1 + OutParameter + + + fr.insee + l8ojmjws + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + lai70va9 + 1 + + FR_ENFAIL7 + + + FR_ENFAIL7 label + + + fr.insee + l8oj98gw-QOP-l8ojo8na + 1 + OutParameter + + + fr.insee + l8oj98gw + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvyy4np + 1 + + DEP_ENFAIL7 + + + DEP_ENFAIL7 label + + + fr.insee + l8ojb4ub-QOP-llvzaolo + 1 + OutParameter + + + fr.insee + l8ojb4ub + 1 + QuestionItem + + + + + + + fr.insee + llvypqbk + 1 + + COM_ENFAIL7 + + + COM_ENFAIL7 label + + + fr.insee + l8ojczfv-QOP-llvz57ns + 1 + OutParameter + + + fr.insee + l8ojczfv + 1 + QuestionItem + + + + + + + fr.insee + llvyovak + 1 + + PAY_ENFAIL7 + + + PAY_ENFAIL7 label + + + fr.insee + l8ojif3m-QOP-llvyqwz8 + 1 + OutParameter + + + fr.insee + l8ojif3m + 1 + QuestionItem + + + + + + + fr.insee + l8ojhh6l + 1 + + LOG_ENFAIL7 + + + LOG_ENFAIL7 label + + + fr.insee + l8oja1pz-QOP-l8oj6h19 + 1 + OutParameter + + + fr.insee + l8oja1pz + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8oig2bs + 1 + + AUT_PAR_ENFAIL7 + + + AUT_PAR_ENFAIL7 label + + + fr.insee + l8oiinpy-QOP-l8oia0f4 + 1 + OutParameter + + + fr.insee + l8oiinpy + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8oj2ija + 1 + + DORT_ENFAIL7 + + + DORT_ENFAIL7 label + + + fr.insee + l8oj67fo-QOP-l8oiz02v + 1 + OutParameter + + + fr.insee + l8oj67fo + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8oivphd + 1 + + SEP_AUT_PAR_ENFAIL7 + + + SEP_AUT_PAR_ENFAIL7 label + + + fr.insee + l8oiu9ax-QOP-l8oimcso + 1 + OutParameter + + + fr.insee + l8oiu9ax + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8oith8b + 1 + + RESID_ENFAIL7 + + + RESID_ENFAIL7 label + + + fr.insee + l8oicj6e-QOP-l8oirvyk + 1 + OutParameter + + + fr.insee + l8oicj6e + 1 + QuestionItem + + + + + fr.insee + l448z131 + 1 + CodeList + + + + + + fr.insee + lagwmluw + 1 + + SANTE_ENFAIL71 + + + 1 - "Pour des raisons de santé" + + + fr.insee + l8oizp0r-QOP-lagyku3m + 1 + OutParameter + + + fr.insee + l8oizp0r + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lagwrae6 + 1 + + SANTE_ENFAIL72 + + + 2 - "A la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants" + + + fr.insee + l8oizp0r-QOP-lagyel8m + 1 + OutParameter + + + fr.insee + l8oizp0r + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lagwha9j + 1 + + SANTE_ENFAIL73 + + + 3 - "Pour une autre raison" + + + fr.insee + l8oizp0r-QOP-lagyk7tb + 1 + OutParameter + + + fr.insee + l8oizp0r + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l8olff0v + 1 + + PRENOM_ENFAIL8 + + + PRENOM_ENFAIL8 label + + + fr.insee + l8olci32-QOP-l8oln1gt + 1 + OutParameter + + + fr.insee + l8olci32 + 1 + QuestionItem + + + + + + + fr.insee + llgjincl + 1 + + SEXE_ENFAIL8 + + + SEXE_ENFAIL8 label + + + fr.insee + l8olbhxj-QOP-l8ol8o60 + 1 + OutParameter + + + fr.insee + l8olbhxj + 1 + QuestionItem + + + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + fr.insee + ln8xn95w + 1 + + ANAI_ENFAIL8 + + + ANAI_ENFAIL8 label + + + fr.insee + l8ol9xy3-QOP-l8ol6h1q + 1 + OutParameter + + + fr.insee + l8ol9xy3 + 1 + QuestionItem + + + + + + + fr.insee + l8olls0i + 1 + + NEFRANCE_ENFAIL8 + + + NEFRANCE_ENFAIL8 label + + + fr.insee + l8ola1mr-QOP-l8olb2am + 1 + OutParameter + + + fr.insee + l8ola1mr + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8oljfdf + 1 + + PARENT_VIT_ENFAIL8 + + + PARENT_VIT_ENFAIL8 label + + + fr.insee + l8okz45l-QOP-l8olfzvu + 1 + OutParameter + + + fr.insee + l8okz45l + 1 + QuestionItem + + + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + fr.insee + l9dvbaqq + 1 + + PARENT_VECU_ENFAIL8 + + + PARENT_VECU_ENFAIL8 label + + + fr.insee + l8ol369l-QOP-l8okxkvv + 1 + OutParameter + + + fr.insee + l8ol369l + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8ol5yre + 1 + + DC_ENFAIL8 + + + DC_ENFAIL8 label + + + fr.insee + l8ole120-QOP-l8ol3o2i + 1 + OutParameter + + + fr.insee + l8ole120 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l9flj5ll + 1 + + AG_DC_ENFAIL8 + + + AG_DC_ENFAIL8 label + + + fr.insee + l8olcd8n-QOP-l8oku4vn + 1 + OutParameter + + + fr.insee + l8olcd8n + 1 + QuestionItem + + + + ans + + 0 + 95 + + Decimal + + + + + fr.insee + l8okya6y + 1 + + AG_DEPART_ENFAIL8 + + + AG_DEPART_ENFAIL8 label + + + fr.insee + l8ol84b7-QOP-l8ol1ust + 1 + OutParameter + + + fr.insee + l8ol84b7 + 1 + QuestionItem + + + + ans + + 0 + 95 + + Decimal + + + + + fr.insee + lij1c5mx + 1 + + PARENT_FREQ_ENFAIL8 + + + PARENT_FREQ_ENFAIL8 label + + + fr.insee + l8okx7cd-QOP-l8ol3s4a + 1 + OutParameter + + + fr.insee + l8okx7cd + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + lai6too4 + 1 + + FR_ENFAIL8 + + + FR_ENFAIL8 label + + + fr.insee + l8okpxv8-QOP-l8okk1db + 1 + OutParameter + + + fr.insee + l8okpxv8 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvz0k9p + 1 + + DEP_ENFAIL8 + + + DEP_ENFAIL8 label + + + fr.insee + l8okue2t-QOP-llvz6npr + 1 + OutParameter + + + fr.insee + l8okue2t + 1 + QuestionItem + + + + + + + fr.insee + llvz0iw5 + 1 + + COM_ENFAIL8 + + + COM_ENFAIL8 label + + + fr.insee + l8okjfla-QOP-llvz0mdc + 1 + OutParameter + + + fr.insee + l8okjfla + 1 + QuestionItem + + + + + + + fr.insee + llvyxbi2 + 1 + + PAY_ENFAIL8 + + + PAY_ENFAIL8 label + + + fr.insee + l8okxgwv-QOP-llvz12vx + 1 + OutParameter + + + fr.insee + l8okxgwv + 1 + QuestionItem + + + + + + + fr.insee + l8okm2oj + 1 + + LOG_ENFAIL8 + + + LOG_ENFAIL8 label + + + fr.insee + l8oksuft-QOP-l8okh5d0 + 1 + OutParameter + + + fr.insee + l8oksuft + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8okskbt + 1 + + AUT_PAR_ENFAIL8 + + + AUT_PAR_ENFAIL8 label + + + fr.insee + l8okked6-QOP-l8okd51b + 1 + OutParameter + + + fr.insee + l8okked6 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8okje65 + 1 + + DORT_ENFAIL8 + + + DORT_ENFAIL8 label + + + fr.insee + l8okkkef-QOP-l8oktkgp + 1 + OutParameter + + + fr.insee + l8okkkef + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8okt0i0 + 1 + + SEP_AUT_PAR_ENFAIL8 + + + SEP_AUT_PAR_ENFAIL8 label + + + fr.insee + l8okfvhy-QOP-l8oke48c + 1 + OutParameter + + + fr.insee + l8okfvhy + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8okgq26 + 1 + + RESID_ENFAIL8 + + + RESID_ENFAIL8 label + + + fr.insee + l8okioqc-QOP-l8oksr34 + 1 + OutParameter + + + fr.insee + l8okioqc + 1 + QuestionItem + + + + + fr.insee + l448z131 + 1 + CodeList + + + + + + fr.insee + lagwt3sh + 1 + + SANTE_ENFAIL81 + + + 1 - "Pour des raisons de santé" + + + fr.insee + l8oklb21-QOP-lagyjvmi + 1 + OutParameter + + + fr.insee + l8oklb21 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lagwo4de + 1 + + SANTE_ENFAIL82 + + + 2 - "A la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants" + + + fr.insee + l8oklb21-QOP-lagynhci + 1 + OutParameter + + + fr.insee + l8oklb21 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lagwnufr + 1 + + SANTE_ENFAIL83 + + + 3 - "Pour une autre raison" + + + fr.insee + l8oklb21-QOP-lagyehg2 + 1 + OutParameter + + + fr.insee + l8oklb21 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l5iaj6j7 + 1 + + PETIT_ENF + + + PETIT_ENF label + + + fr.insee + l1f6a3qv-QOP-l1f67xik + 1 + OutParameter + + + fr.insee + l1f6a3qv + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lm69vsc6 + 1 + + NB_PETIT_ENF + + + NB_PETIT_ENF label + + + fr.insee + l1f6dz1j-QOP-l1f6aqky + 1 + OutParameter + + + fr.insee + l1f6dz1j + 1 + QuestionItem + + + + + 1 + 40 + + Decimal + + + + + fr.insee + lij1xpcq + 1 + + AG_PETIT_ENF + + + AG_PETIT_ENF label + + + fr.insee + l1f69ivh-QOP-l1f6h1an + 1 + OutParameter + + + fr.insee + l1f69ivh + 1 + QuestionItem + + + + ans + + 0 + 80 + + Decimal + + + + + fr.insee + llf391dx + 1 + + FREQ_VU_PETIT_ENF1 + + + 2 - Une ou plusieurs fois par semaine + + + fr.insee + l1g3hka7-QOP-llf32z1d + 1 + OutParameter + + + fr.insee + l1g3hka7 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + llf3cd67 + 1 + + FREQ_VU_PETIT_ENF2 + + + 3 - Une ou plusieurs fois par mois + + + fr.insee + l1g3hka7-QOP-llf309m5 + 1 + OutParameter + + + fr.insee + l1g3hka7 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + llf32wcn + 1 + + FREQ_VU_PETIT_ENF3 + + + 4 - Une ou plusieurs fois par an + + + fr.insee + l1g3hka7-QOP-llf3bgof + 1 + OutParameter + + + fr.insee + l1g3hka7 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + llf2wpz5 + 1 + + FREQ_VU_PETIT_ENF4 + + + 5 - Plus rarement ou jamais + + + fr.insee + l1g3hka7-QOP-llf38epk + 1 + OutParameter + + + fr.insee + l1g3hka7 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + llf2x5mt + 1 + + FREQ_CONT_PETIT_ENF1 + + + 2 - Une ou plusieurs fois par semaine + + + fr.insee + l1f4yrno-QOP-llf334dp + 1 + OutParameter + + + fr.insee + l1f4yrno + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + llf31djx + 1 + + FREQ_CONT_PETIT_ENF2 + + + 3 - Une ou plusieurs fois par mois + + + fr.insee + l1f4yrno-QOP-llf35l7f + 1 + OutParameter + + + fr.insee + l1f4yrno + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + llf35phn + 1 + + FREQ_CONT_PETIT_ENF3 + + + 4 - Une ou plusieurs fois par an + + + fr.insee + l1f4yrno-QOP-llf2xk2h + 1 + OutParameter + + + fr.insee + l1f4yrno + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + llf2x3ve + 1 + + FREQ_CONT_PETIT_ENF4 + + + 5 - Plus rarement ou jamais + + + fr.insee + l1f4yrno-QOP-llf355j1 + 1 + OutParameter + + + fr.insee + l1f4yrno + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lmrrau72 + 1 + + AIDE_APPORT1 + + + 1 - "Oui, une aide pour les tâches quotidiennes" + + + fr.insee + l1g87t8t-QOP-lmrsjz2q + 1 + OutParameter + + + fr.insee + l1g87t8t + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lmrreutd + 1 + + AIDE_APPORT2 + + + 2 - "Oui, une aide financière ou matérielle" + + + fr.insee + l1g87t8t-QOP-lmrsu19x + 1 + OutParameter + + + fr.insee + l1g87t8t + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lmrro9wt + 1 + + AIDE_APPORT3 + + + 3 - "Oui, un soutien moral" + + + fr.insee + l1g87t8t-QOP-lmrsjxl8 + 1 + OutParameter + + + fr.insee + l1g87t8t + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lmrrld0e + 1 + + AIDE_APPORT4 + + + 4 - "Oui, vous êtes" || (if (¤ln0892lt-GOP¤ ="1") then " tuteur ou curateur " else " tutrice ou curatrice") + + + fr.insee + l1g87t8t-QOP-lmrswobh + 1 + OutParameter + + + fr.insee + l1g87t8t + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lmrriwq0 + 1 + + AIDE_APPORT5 + + + 5 - "Non, aucune aide de ce type" + + + fr.insee + l1g87t8t-QOP-lmrsncuh + 1 + OutParameter + + + fr.insee + l1g87t8t + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + llz4pt0a + 1 + + QUI_AID_APP_11 + + + 1 - Vos parents + + + fr.insee + l1ggssgl-QOP-llz50h9h + 1 + OutParameter + + + fr.insee + l1ggssgl + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + llz4w6fk + 1 + + QUI_AID_APP_12 + + + 2 - "" || if (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "Votre conjoint" else "Votre conjointe" + + + fr.insee + l1ggssgl-QOP-llz4zodt + 1 + OutParameter + + + fr.insee + l1ggssgl + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + llz50qv7 + 1 + + QUI_AID_APP_13 + + + 3 - Vos enfants + + + fr.insee + l1ggssgl-QOP-llz4thr9 + 1 + OutParameter + + + fr.insee + l1ggssgl + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + llz4x6ay + 1 + + QUI_AID_APP_14 + + + 4 - Un autre membre de la famille + + + fr.insee + l1ggssgl-QOP-llz4uavy + 1 + OutParameter + + + fr.insee + l1ggssgl + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l8le1kw4 + 1 + + QUI_AID_APP_21 + + + 1 - Vos parents + + + fr.insee + l1ggm06b-QOP-l8lfgbqf + 1 + OutParameter + + + fr.insee + l1ggm06b + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l8le04ts + 1 + + QUI_AID_APP_22 + + + 2 - Votre conjoint(e) + + + fr.insee + l1ggm06b-QOP-l8lfhiwk + 1 + OutParameter + + + fr.insee + l1ggm06b + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l8le2mq9 + 1 + + QUI_AID_APP_23 + + + 3 - Vos enfants + + + fr.insee + l1ggm06b-QOP-l8lffrns + 1 + OutParameter + + + fr.insee + l1ggm06b + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l8ldz05j + 1 + + QUI_AID_APP_24 + + + 4 - Un autre membre de la famille + + + fr.insee + l1ggm06b-QOP-l8lffy1z + 1 + OutParameter + + + fr.insee + l1ggm06b + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l8ldwcav + 1 + + QUI_AID_APP_31 + + + 1 - Vos parents + + + fr.insee + l1ggtznr-QOP-l8lfrnl6 + 1 + OutParameter + + + fr.insee + l1ggtznr + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l8le2myg + 1 + + QUI_AID_APP_32 + + + 2 - Votre conjoint(e) + + + fr.insee + l1ggtznr-QOP-l8lftaoi + 1 + OutParameter + + + fr.insee + l1ggtznr + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l8le88o9 + 1 + + QUI_AID_APP_33 + + + 3 - Vos enfants + + + fr.insee + l1ggtznr-QOP-l8lfdroz + 1 + OutParameter + + + fr.insee + l1ggtznr + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l8lds3ui + 1 + + QUI_AID_APP_34 + + + 4 - Un autre membre de la famille + + + fr.insee + l1ggtznr-QOP-l8lfgqn9 + 1 + OutParameter + + + fr.insee + l1ggtznr + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l8le5n9q + 1 + + QUI_AID_APP_41 + + + 1 - Vos parents + + + fr.insee + l4lf0y9m-QOP-l8lfdihy + 1 + OutParameter + + + fr.insee + l4lf0y9m + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l8le80hx + 1 + + QUI_AID_APP_42 + + + 2 - Votre conjoint(e) + + + fr.insee + l4lf0y9m-QOP-l8lfirt9 + 1 + OutParameter + + + fr.insee + l4lf0y9m + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l8lduam7 + 1 + + QUI_AID_APP_43 + + + 3 - Vos enfants + + + fr.insee + l4lf0y9m-QOP-l8lfeq6r + 1 + OutParameter + + + fr.insee + l4lf0y9m + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l8ldya76 + 1 + + QUI_AID_APP_44 + + + 4 - Un autre membre de la famille + + + fr.insee + l4lf0y9m-QOP-l8lfjwx6 + 1 + OutParameter + + + fr.insee + l4lf0y9m + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lmrrafby + 1 + + AIDE_RECUE1 + + + 1 - "Oui, une aide pour les tâches quotidiennes" + + + fr.insee + l1g8o84g-QOP-lmrsrwwh + 1 + OutParameter + + + fr.insee + l1g8o84g + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lmrrig7t + 1 + + AIDE_RECUE2 + + + 2 - "Oui, une aide financière ou matérielle" + + + fr.insee + l1g8o84g-QOP-lmrsiwcj + 1 + OutParameter + + + fr.insee + l1g8o84g + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lmrr4p8n + 1 + + AIDE_RECUE3 + + + 3 - "Oui, un soutien moral" + + + fr.insee + l1g8o84g-QOP-lmrslpuw + 1 + OutParameter + + + fr.insee + l1g8o84g + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lmrr90h5 + 1 + + AIDE_RECUE4 + + + 5 - "Non, aucune aide de ce type" + + + fr.insee + l1g8o84g-QOP-lmrspudh + 1 + OutParameter + + + fr.insee + l1g8o84g + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l8le4u3b + 1 + + QUI_AID_REC_11 + + + 1 - Vos parents + + + fr.insee + l1ggpjd7-QOP-l8lfnnly + 1 + OutParameter + + + fr.insee + l1ggpjd7 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l8le2502 + 1 + + QUI_AID_REC_12 + + + 2 - Votre conjoint(e) + + + fr.insee + l1ggpjd7-QOP-l8lflmwj + 1 + OutParameter + + + fr.insee + l1ggpjd7 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l8le9mmb + 1 + + QUI_AID_REC_13 + + + 3 - Vos enfants + + + fr.insee + l1ggpjd7-QOP-l8lfhcl4 + 1 + OutParameter + + + fr.insee + l1ggpjd7 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l8lebsfh + 1 + + QUI_AID_REC_14 + + + 4 - Un autre membre de la famille + + + fr.insee + l1ggpjd7-QOP-l8lfi83w + 1 + OutParameter + + + fr.insee + l1ggpjd7 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l8le8q83 + 1 + + QUI_AID_REC_21 + + + 1 - Vos parents + + + fr.insee + l1ggp8js-QOP-l8lfslzm + 1 + OutParameter + + + fr.insee + l1ggp8js + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l8le2aes + 1 + + QUI_AID_REC_22 + + + 2 - Votre conjoint(e) + + + fr.insee + l1ggp8js-QOP-l8lf8uhf + 1 + OutParameter + + + fr.insee + l1ggp8js + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l8lec6vu + 1 + + QUI_AID_REC_23 + + + 3 - Vos enfants + + + fr.insee + l1ggp8js-QOP-l8lfnjgv + 1 + OutParameter + + + fr.insee + l1ggp8js + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l8lduhdu + 1 + + QUI_AID_REC_24 + + + 4 - Un autre membre de la famille + + + fr.insee + l1ggp8js-QOP-l8lfccyo + 1 + OutParameter + + + fr.insee + l1ggp8js + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l5jnxmnk + 1 + + QUI_AID_REC_31 + + + 1 - Vos parents + + + fr.insee + l1gh36ky-QOP-l5jp75md + 1 + OutParameter + + + fr.insee + l1gh36ky + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l5jo1job + 1 + + QUI_AID_REC_32 + + + 2 - Votre conjoint(e) + + + fr.insee + l1gh36ky-QOP-l5jpgd0s + 1 + OutParameter + + + fr.insee + l1gh36ky + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l5joa3bl + 1 + + QUI_AID_REC_33 + + + 3 - Vos enfants + + + fr.insee + l1gh36ky-QOP-l5jplm82 + 1 + OutParameter + + + fr.insee + l1gh36ky + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l5jo6z82 + 1 + + QUI_AID_REC_34 + + + 4 - Un autre membre de la famille + + + fr.insee + l1gh36ky-QOP-l5jpm5d8 + 1 + OutParameter + + + fr.insee + l1gh36ky + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + llvz479p + 1 + + LANGUE1_ENTOU + + + LANGUE1_ENTOU label + + + fr.insee + l1g8apw2-QOP-llvz9ewy + 1 + OutParameter + + + fr.insee + l1g8apw2 + 1 + QuestionItem + + + + + + + fr.insee + lmrr3o83 + 1 + + LANGUE2_ENTOU + + + LANGUE2_ENTOU label + + + fr.insee + l43tgurz-QOP-llvz9gdb + 1 + OutParameter + + + fr.insee + l43tgurz + 1 + QuestionItem + + + + + + + fr.insee + l4oec1lq + 1 + + PRENOM_PAR1 + + + PRENOM_PAR1 label + + + fr.insee + l2kjnm8k-QOP-l2kjn4vg + 1 + OutParameter + + + fr.insee + l2kjnm8k + 1 + QuestionItem + + + + + + + fr.insee + lnekb9g4 + 1 + + ANAI_PAR1 + + + ANAI_PAR1 label + + + fr.insee + l2kjy49o-QOP-l2kjupyp + 1 + OutParameter + + + fr.insee + l2kjy49o + 1 + QuestionItem + + + + + + + fr.insee + l3vpisia + 1 + + SEXE_PAR1 + + + SEXE_PAR1 label + + + fr.insee + l2kkvar7-QOP-l2kkywzf + 1 + OutParameter + + + fr.insee + l2kkvar7 + 1 + QuestionItem + + + + + fr.insee + kwqir1cc + 1 + CodeList + + + + + + fr.insee + l34iqhee + 1 + + NATIO_PAR1 + + + NATIO_PAR1 label + + + fr.insee + l2kk539f-QOP-l2kk2tl9 + 1 + OutParameter + + + fr.insee + l2kk539f + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l7yx0sde + 1 + + TRAV_PAR1 + + + TRAV_PAR1 label + + + fr.insee + l7ywp1vk-QOP-l7yx6ylx + 1 + OutParameter + + + fr.insee + l7ywp1vk + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvywjqt + 1 + + PROF_PAR1H + + + PROF_PAR1H label + + + fr.insee + l2kjueig-QOP-llvyzrpx + 1 + OutParameter + + + fr.insee + l2kjueig + 1 + QuestionItem + + + + + + + fr.insee + llvytrfl + 1 + + PROF_PAR1F + + + PROF_PAR1F label + + + fr.insee + l4qzvm5v-QOP-llvz490j + 1 + OutParameter + + + fr.insee + l4qzvm5v + 1 + QuestionItem + + + + + + + fr.insee + l8ldy184 + 1 + + PROF_PAR1_2 + + + PROF_PAR1_2 label + + + fr.insee + l45cjoj7-QOP-l4o6wqdy + 1 + OutParameter + + + fr.insee + l45cjoj7 + 1 + QuestionItem + + + + + + + fr.insee + llgnqpnr + 1 + + STATUT_PAR1 + + + STATUT_PAR1 label + + + fr.insee + l2kjshy4-QOP-l2kk0l5l + 1 + OutParameter + + + fr.insee + l2kjshy4 + 1 + QuestionItem + + + + + fr.insee + l1f23fi8 + 1 + CodeList + + + + + + fr.insee + llgrqor1 + 1 + + SAL_FP_PAR1 + + + SAL_FP_PAR1 label + + + fr.insee + llgo5n7b-QOP-llgozn3p + 1 + OutParameter + + + fr.insee + llgo5n7b + 1 + QuestionItem + + + + + fr.insee + llgq8911 + 1 + CodeList + + + + + + fr.insee + llnhw38q + 1 + + SAL_ENT_PAR1 + + + SAL_ENT_PAR1 label + + + fr.insee + llgqspnh-QOP-llgqj9en + 1 + OutParameter + + + fr.insee + llgqspnh + 1 + QuestionItem + + + + + fr.insee + llgoa6cg + 1 + CodeList + + + + + + fr.insee + llvypib1 + 1 + + LANGUE1_PAR1 + + + LANGUE1_PAR1 label + + + fr.insee + l2kk4seh-QOP-llvyt5ul + 1 + OutParameter + + + fr.insee + l2kk4seh + 1 + QuestionItem + + + + + + + fr.insee + lmrr15k8 + 1 + + LANGUE2_PAR1 + + + LANGUE2_PAR1 label + + + fr.insee + l447j7cx-QOP-llvyrge5 + 1 + OutParameter + + + fr.insee + l447j7cx + 1 + QuestionItem + + + + + + + fr.insee + l8k99ilg + 1 + + VIV_PAR1 + + + VIV_PAR1 label + + + fr.insee + l2kjzugb-QOP-l2kjv6tv + 1 + OutParameter + + + fr.insee + l2kjzugb + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + ln8yc8bi + 1 + + ANNEE_DC_PAR1 + + + ANNEE_DC_PAR1 label + + + fr.insee + l2kkd59n-QOP-l2kk3398 + 1 + OutParameter + + + fr.insee + l2kkd59n + 1 + QuestionItem + + + + + + + fr.insee + lm0e90yl + 1 + + LOG_PAR1 + + + LOG_PAR1 label + + + fr.insee + l2kk4snz-QOP-l34gopr4 + 1 + OutParameter + + + fr.insee + l2kk4snz + 1 + QuestionItem + + + + + fr.insee + l4qualpe + 1 + CodeList + + + + + + fr.insee + lai70nzp + 1 + + FR_PAR1 + + + FR_PAR1 label + + + fr.insee + l2kkb4xa-QOP-l2kk5rd6 + 1 + OutParameter + + + fr.insee + l2kkb4xa + 1 + QuestionItem + + + + + fr.insee + l4o7x17y + 1 + CodeList + + + + + + fr.insee + llvz8tcu + 1 + + DEP_PAR1 + + + DEP_PAR1 label + + + fr.insee + l4o7ufzl-QOP-llvzb0k0 + 1 + OutParameter + + + fr.insee + l4o7ufzl + 1 + QuestionItem + + + + + + + fr.insee + llvytyg5 + 1 + + COM_PAR1 + + + COM_PAR1 label + + + fr.insee + l4onhpvd-QOP-llvz5uy3 + 1 + OutParameter + + + fr.insee + l4onhpvd + 1 + QuestionItem + + + + + + + fr.insee + llvyqp24 + 1 + + PAY_PAR1 + + + PAY_PAR1 label + + + fr.insee + l4o8eale-QOP-llvzajdd + 1 + OutParameter + + + fr.insee + l4o8eale + 1 + QuestionItem + + + + + + + fr.insee + l2kihdd6 + 1 + + ETAB_PAR1 + + + ETAB_PAR1 label + + + fr.insee + l1ezkqes-QOP-l1ezmkcq + 1 + OutParameter + + + fr.insee + l1ezkqes + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lij1rmvu + 1 + + FREQ_VU_PAR1 + + + FREQ_VU_PAR1 label + + + fr.insee + l2kkeqsz-QOP-l2kjzdaf + 1 + OutParameter + + + fr.insee + l2kkeqsz + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + lij1rmjq + 1 + + FREQ_CONT_PAR1 + + + FREQ_CONT_PAR1 label + + + fr.insee + l2kk296y-QOP-l2kkit9z + 1 + OutParameter + + + fr.insee + l2kk296y + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + l4lonoaj + 1 + + PROX_EGO_PAR1 + + + PROX_EGO_PAR1 label + + + fr.insee + l4lojzxg-QOP-l4lop1g7 + 1 + OutParameter + + + fr.insee + l4lojzxg + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l43y4bul + 1 + + PROX_FRAT_PAR1 + + + PROX_FRAT_PAR1 label + + + fr.insee + l43yap7r-QOP-l43xwxm8 + 1 + OutParameter + + + fr.insee + l43yap7r + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l5axyvf9 + 1 + + EXIST_PAR2 + + + EXIST_PAR2 label + + + fr.insee + l5axrwsa-QOP-l5ay3o3r + 1 + OutParameter + + + fr.insee + l5axrwsa + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4oeo539 + 1 + + PRENOM_PAR2 + + + PRENOM_PAR2 label + + + fr.insee + l27ijusa-QOP-l27i3154 + 1 + OutParameter + + + fr.insee + l27ijusa + 1 + QuestionItem + + + + + + + fr.insee + ln8y0vv7 + 1 + + ANAI_PAR2 + + + ANAI_PAR2 label + + + fr.insee + kwqfufye-QOP-l0wf22g3 + 1 + OutParameter + + + fr.insee + kwqfufye + 1 + QuestionItem + + + + + + + fr.insee + l45cezmn + 1 + + SEXE_PAR2 + + + SEXE_PAR2 label + + + fr.insee + l27ig4yy-QOP-l27ii3c9 + 1 + OutParameter + + + fr.insee + l27ig4yy + 1 + QuestionItem + + + + + fr.insee + kwqir1cc + 1 + CodeList + + + + + + fr.insee + l2kjzgzk + 1 + + NATIO_PAR2 + + + NATIO_PAR2 label + + + fr.insee + kwqfhhge-QOP-kwqft4ub + 1 + OutParameter + + + fr.insee + kwqfhhge + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l7ywxkf7 + 1 + + TRAV_PAR2 + + + TRAV_PAR2 label + + + fr.insee + l7ywxphs-QOP-l7yx8jjw + 1 + OutParameter + + + fr.insee + l7ywxphs + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvz3hw4 + 1 + + PROF_PAR2H + + + PROF_PAR2H label + + + fr.insee + l1ezowxi-QOP-llvz8km0 + 1 + OutParameter + + + fr.insee + l1ezowxi + 1 + QuestionItem + + + + + + + fr.insee + llvz5gpf + 1 + + PROF_PAR2F + + + PROF_PAR2F label + + + fr.insee + l4qzjbsx-QOP-llvzb8qa + 1 + OutParameter + + + fr.insee + l4qzjbsx + 1 + QuestionItem + + + + + + + fr.insee + l4o73c23 + 1 + + PROF_PAR2_2 + + + PROF_PAR2_2 label + + + fr.insee + l444t31z-QOP-l4o6zyol + 1 + OutParameter + + + fr.insee + l444t31z + 1 + QuestionItem + + + + + + + fr.insee + llgnuzxv + 1 + + STATUT_PAR2 + + + STATUT_PAR2 label + + + fr.insee + kwqfto3c-QOP-kwqg4dq2 + 1 + OutParameter + + + fr.insee + kwqfto3c + 1 + QuestionItem + + + + + fr.insee + l4n5c408 + 1 + CodeList + + + + + + fr.insee + llnhstp4 + 1 + + SAL_FP_PAR2 + + + SAL_FP_PAR2 label + + + fr.insee + llgosp3i-QOP-llgom4r9 + 1 + OutParameter + + + fr.insee + llgosp3i + 1 + QuestionItem + + + + + fr.insee + llmi5xl5 + 1 + CodeList + + + + + + fr.insee + llni1mhr + 1 + + SAL_ENT_PAR2 + + + SAL_ENT_PAR2 label + + + fr.insee + llgrqyqg-QOP-llgs2ez2 + 1 + OutParameter + + + fr.insee + llgrqyqg + 1 + QuestionItem + + + + + fr.insee + llgry90d + 1 + CodeList + + + + + + fr.insee + llvz8cp5 + 1 + + LANGUE1_PAR2 + + + LANGUE1_PAR2 label + + + fr.insee + l1ezgxe3-QOP-llvz4083 + 1 + OutParameter + + + fr.insee + l1ezgxe3 + 1 + QuestionItem + + + + + + + fr.insee + lmrreu7w + 1 + + LANGUE2_PAR2 + + + LANGUE2_PAR2 label + + + fr.insee + l444xjux-QOP-llvzbbbd + 1 + OutParameter + + + fr.insee + l444xjux + 1 + QuestionItem + + + + + + + fr.insee + l8k9sjms + 1 + + VIV_PAR2 + + + VIV_PAR2 label + + + fr.insee + kwqhjfzk-QOP-kwqhv63j + 1 + OutParameter + + + fr.insee + kwqhjfzk + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + ln8yd8j8 + 1 + + ANNEE_DC_PAR2 + + + ANNEE_DC_PAR2 label + + + fr.insee + kwqg35i9-QOP-kwqg1sjf + 1 + OutParameter + + + fr.insee + kwqg35i9 + 1 + QuestionItem + + + + + + + fr.insee + lm0fd7qv + 1 + + LOG_PAR2A1 + + + 1 - "Avec vous, dans ce logement" + + + fr.insee + kwqgffvw-QOP-lm0fqbdz + 1 + OutParameter + + + fr.insee + kwqgffvw + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lm0fb0me + 1 + + LOG_PAR2A2 + + + 2 - "Avec " || (if (isnull(¤l2kjnm8k-QOP-l2kjn4vg¤)) then "votre autre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) + + + fr.insee + kwqgffvw-QOP-lm0f8md7 + 1 + OutParameter + + + fr.insee + kwqgffvw + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lm0f8sao + 1 + + LOG_PAR2A3 + + + 3 - "Ailleurs" + + + fr.insee + kwqgffvw-QOP-lm0fpbr7 + 1 + OutParameter + + + fr.insee + kwqgffvw + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + laguuyk8 + 1 + + LOG_PAR2B + + + LOG_PAR2B label + + + fr.insee + lab6xfk9-QOP-lab73lgn + 1 + OutParameter + + + fr.insee + lab6xfk9 + 1 + QuestionItem + + + + + fr.insee + kwqjgcfw + 1 + CodeList + + + + + + fr.insee + lai7blbr + 1 + + FR_PAR2 + + + FR_PAR2 label + + + fr.insee + kwqgawqp-QOP-kwqgeipr + 1 + OutParameter + + + fr.insee + kwqgawqp + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvz5jjn + 1 + + DEP_PAR2 + + + DEP_PAR2 label + + + fr.insee + l4o8co0c-QOP-llvyr5wh + 1 + OutParameter + + + fr.insee + l4o8co0c + 1 + QuestionItem + + + + + + + fr.insee + llvytvcv + 1 + + COM_PAR2 + + + COM_PAR2 label + + + fr.insee + l4onk34z-QOP-llvz0ewe + 1 + OutParameter + + + fr.insee + l4onk34z + 1 + QuestionItem + + + + + + + fr.insee + llvz5i4v + 1 + + PAY_PAR2 + + + PAY_PAR2 label + + + fr.insee + l4o8dk7q-QOP-llvyu3jn + 1 + OutParameter + + + fr.insee + l4o8dk7q + 1 + QuestionItem + + + + + + + fr.insee + l8m1qyu9 + 1 + + ETAB_PAR2 + + + ETAB_PAR2 label + + + fr.insee + l2kkc8s9-QOP-l2kkfxvm + 1 + OutParameter + + + fr.insee + l2kkc8s9 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lij1nowz + 1 + + FREQ_VU_PAR2 + + + FREQ_VU_PAR2 label + + + fr.insee + l1gl4054-QOP-l1gl5e3e + 1 + OutParameter + + + fr.insee + l1gl4054 + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + lij1bnzj + 1 + + FREQ_CONT_PAR2 + + + FREQ_CONT_PAR2 label + + + fr.insee + l1ezkbsf-QOP-l1ezevjd + 1 + OutParameter + + + fr.insee + l1ezkbsf + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + l4los1a5 + 1 + + PROX_EGO_PAR2 + + + PROX_EGO_PAR2 label + + + fr.insee + l445itcb-QOP-l445hldo + 1 + OutParameter + + + fr.insee + l445itcb + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4lonmxd + 1 + + PROX_FRAT_PAR2 + + + PROX_FRAT_PAR2 label + + + fr.insee + l4cjeqc0-QOP-l4ciywxr + 1 + OutParameter + + + fr.insee + l4cjeqc0 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + liiy5f7u + 1 + + NB_FRERES + + + NB_FRERES label + + + fr.insee + l473kp51-QOP-l473rzw1 + 1 + OutParameter + + + fr.insee + l473kp51 + 1 + QuestionItem + + + + + 0 + 20 + + Decimal + + + + + fr.insee + li362nsa + 1 + + NB_FRERES_VIV1 + + + NB_FRERES_VIV1 label + + + fr.insee + l5ikk5zq-QOP-l5iken9h + 1 + OutParameter + + + fr.insee + l5ikk5zq + 1 + QuestionItem + + + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + fr.insee + l473t9qd + 1 + + NB_FRERES_VIV + + + NB_FRERES_VIV label + + + fr.insee + l4740wd1-QOP-l473vroh + 1 + OutParameter + + + fr.insee + l4740wd1 + 1 + QuestionItem + + + + + 0 + 20 + + Decimal + + + + + fr.insee + liiygg3q + 1 + + NB_SOEURS + + + NB_SOEURS label + + + fr.insee + l4742c2v-QOP-l473q5ei + 1 + OutParameter + + + fr.insee + l4742c2v + 1 + QuestionItem + + + + + 0 + 20 + + Decimal + + + + + fr.insee + li367ko1 + 1 + + NB_SOEURS_VIV1 + + + NB_SOEURS_VIV1 label + + + fr.insee + l5ikyrbc-QOP-l5ikxm9l + 1 + OutParameter + + + fr.insee + l5ikyrbc + 1 + QuestionItem + + + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + fr.insee + lai0huem + 1 + + NB_SOEURS_VIV + + + NB_SOEURS_VIV label + + + fr.insee + l473w273-QOP-l4741u6l + 1 + OutParameter + + + fr.insee + l473w273 + 1 + QuestionItem + + + + + 0 + 20 + + Decimal + + + + + fr.insee + lbqcq021 + 1 + + AG_DEP_PARENT + + + AG_DEP_PARENT label + + + fr.insee + l1f5th3i-QOP-l1f5ynl3 + 1 + OutParameter + + + fr.insee + l1f5th3i + 1 + QuestionItem + + + + ans + + 0 + 100 + + Decimal + + + + + fr.insee + llev0wxd + 1 + + VECU_JEUNESSE1 + + + 1 - Vos deux parents en couple + + + fr.insee + l1f61fa3-QOP-llevctvx + 1 + OutParameter + + + fr.insee + l1f61fa3 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + llev4x3a + 1 + + VECU_JEUNESSE2 + + + 2 - Votre mère seule + + + fr.insee + l1f61fa3-QOP-llevmlms + 1 + OutParameter + + + fr.insee + l1f61fa3 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + llevhx1v + 1 + + VECU_JEUNESSE3 + + + 3 - Votre père seul + + + fr.insee + l1f61fa3-QOP-llevhkg9 + 1 + OutParameter + + + fr.insee + l1f61fa3 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + llevb1bs + 1 + + VECU_JEUNESSE4 + + + 4 - Votre père et son/sa conjoint(e) + + + fr.insee + l1f61fa3-QOP-llevc737 + 1 + OutParameter + + + fr.insee + l1f61fa3 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + llev21lo + 1 + + VECU_JEUNESSE5 + + + 5 - Votre mère et son/sa conjoint(e) + + + fr.insee + l1f61fa3-QOP-llevfk5v + 1 + OutParameter + + + fr.insee + l1f61fa3 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + llev258v + 1 + + VECU_JEUNESSE6 + + + 6 - Une autre personne de votre famille + + + fr.insee + l1f61fa3-QOP-llevqbyz + 1 + OutParameter + + + fr.insee + l1f61fa3 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + llev4lrn + 1 + + VECU_JEUNESSE7 + + + 7 - En dehors de votre famille + + + fr.insee + l1f61fa3-QOP-lleve2gb + 1 + OutParameter + + + fr.insee + l1f61fa3 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l8k9vl42 + 1 + + VECU_PLACE + + + VECU_PLACE label + + + fr.insee + l43ttd47-QOP-l43tsfar + 1 + OutParameter + + + fr.insee + l43ttd47 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l43tta6c + 1 + + TYP_PLACE1 + + + 1 - "Placement en foyer" + + + fr.insee + l43u439h-QOP-l43tpzt7 + 1 + OutParameter + + + fr.insee + l43u439h + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l43u7w3y + 1 + + TYP_PLACE2 + + + 2 - "Placement en famille d''accueil" + + + fr.insee + l43u439h-QOP-l43tpqco + 1 + OutParameter + + + fr.insee + l43u439h + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l43to2k0 + 1 + + TYP_PLACE3 + + + 3 - "Placement chez une personne de la famille" + + + fr.insee + l43u439h-QOP-l43tov3w + 1 + OutParameter + + + fr.insee + l43u439h + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l43u7j0s + 1 + + TYP_PLACE4 + + + 4 - "Autre type de placement" + + + fr.insee + l43u439h-QOP-l43trgyp + 1 + OutParameter + + + fr.insee + l43u439h + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l1f6b3hb + 1 + + HEBERG + + + HEBERG label + + + fr.insee + l1f65zkh-QOP-l1f6bv9c + 1 + OutParameter + + + fr.insee + l1f65zkh + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llethxrg + 1 + + FINETU + + + FINETU label + + + fr.insee + l1g3unwh-QOP-l1g3npll + 1 + OutParameter + + + fr.insee + l1g3unwh + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lneknegu + 1 + + ANNEE_FINETU + + + ANNEE_FINETU label + + + fr.insee + l1g3yk6q-QOP-l1g42814 + 1 + OutParameter + + + fr.insee + l1g3yk6q + 1 + QuestionItem + + + + + + + fr.insee + lij28s0w + 1 + + DEJATRAV + + + DEJATRAV label + + + fr.insee + l1g7pgbn-QOP-l1g7tm7z + 1 + OutParameter + + + fr.insee + l1g7pgbn + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + ln8yfhub + 1 + + ANNEE_EMPLOI1 + + + ANNEE_EMPLOI1 label + + + fr.insee + l1g4pid1-QOP-l1g4r0qn + 1 + OutParameter + + + fr.insee + l1g4pid1 + 1 + QuestionItem + + + + + + + fr.insee + l445l6g2 + 1 + + TRAVACT + + + TRAVACT label + + + fr.insee + l445x7tq-QOP-l445yz7o + 1 + OutParameter + + + fr.insee + l445x7tq + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + ln8z1iyb + 1 + + ANNEE_FINEMP + + + ANNEE_FINEMP label + + + fr.insee + l1g7iu0j-QOP-l1g7p8dq + 1 + OutParameter + + + fr.insee + l1g7iu0j + 1 + QuestionItem + + + + + + + fr.insee + lleu2mxy + 1 + + INTER_TRAV1 + + + INTER_TRAV1 label + + + fr.insee + l1g7vwo6-QOP-lleu3ict + 1 + OutParameter + + + fr.insee + l1g7vwo6 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lleu2a71 + 1 + + INTER_TRAV2 + + + INTER_TRAV2 label + + + fr.insee + lletbq7t-QOP-lletstp8 + 1 + OutParameter + + + fr.insee + lletbq7t + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llett62k + 1 + + INTER_TRAV3 + + + INTER_TRAV3 label + + + fr.insee + lletqevy-QOP-lletwvhh + 1 + OutParameter + + + fr.insee + lletqevy + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + ljwz1ro0 + 1 + + PRENOM_FIN + + + PRENOM_FIN label + + + fr.insee + ljwxkrnl-QOP-ljwxfacv + 1 + OutParameter + + + fr.insee + ljwxkrnl + 1 + QuestionItem + + + + + fr.insee + ljwxdg2x + 1 + CodeList + + + + + + fr.insee + lamjg3vg + 1 + + PRENOM_PROX + + + PRENOM_PROX label + + + fr.insee + lamjnyx4-QOP-lamjnllg + 1 + OutParameter + + + fr.insee + lamjnyx4 + 1 + QuestionItem + + + + + + + fr.insee + ln8zj767 + 1 + + AVIS_FILTRE + + + AVIS_FILTRE label + + + fr.insee + lm4w39kw-QOP-lm4xzq82 + 1 + OutParameter + + + fr.insee + lm4w39kw + 1 + QuestionItem + + + + + fr.insee + lm4vxed5 + 1 + CodeList + + + + + + fr.insee + lnbsqvck + 1 + + AVIS_FILTRE_P + + + AVIS_FILTRE_P label + + + fr.insee + lnbss8ix-QOP-lnbt0dc4 + 1 + OutParameter + + + fr.insee + lnbss8ix + 1 + QuestionItem + + + + + fr.insee + lm4vxed5 + 1 + CodeList + + + + + + fr.insee + lm6beldl + 1 + + AVIS_RMQ + + + AVIS_RMQ label + + + fr.insee + lm4vxp7a-QOP-lm4xyv3t + 1 + OutParameter + + + fr.insee + lm4vxp7a + 1 + QuestionItem + + + + + + + fr.insee + ln8zzd7l + 1 + + AVIS_RAISON1 + + + 1 - "Le sujet m’intéresse" + + + fr.insee + lm4vudcf-QOP-ln90n9fq + 1 + OutParameter + + + fr.insee + lm4vudcf + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + ln8zp32c + 1 + + AVIS_RAISON2 + + + 2 - "C'est une enquête obligatoire" + + + fr.insee + lm4vudcf-QOP-ln90ubso + 1 + OutParameter + + + fr.insee + lm4vudcf + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + ln8zxu8p + 1 + + AVIS_RAISON3 + + + 3 - "La notice donnée par l’agent recenseur m’a incité" || (if (isnull(¤ln0892lt-GOP¤)) then "" else (if (¤ln0892lt-GOP¤ = "2") then "e" else "")) || " à le faire" + + + fr.insee + lm4vudcf-QOP-ln913d78 + 1 + OutParameter + + + fr.insee + lm4vudcf + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + ln8zstss + 1 + + AVIS_RAISON4 + + + 4 - "L’agent recenseur m’a incité" || (if (isnull(¤ln0892lt-GOP¤)) then "" else (if (¤ln0892lt-GOP¤ = "2") then "e" else "")) || " à le faire" + + + fr.insee + lm4vudcf-QOP-ln90m9r7 + 1 + OutParameter + + + fr.insee + lm4vudcf + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + ln8zj7dd + 1 + + AVIS_RAISON5 + + + 5 - "La communication de la commune sur l’enquête m’a incité" || (if (isnull(¤ln0892lt-GOP¤)) then "" else (if (¤ln0892lt-GOP¤ = "2") then "e" else "")) || " à le faire" + + + fr.insee + lm4vudcf-QOP-ln90xj95 + 1 + OutParameter + + + fr.insee + lm4vudcf + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + ln8zmr1m + 1 + + AVIS_RAISON6 + + + 6 - "Pour une autre raison" + + + fr.insee + lm4vudcf-QOP-ln911lw0 + 1 + OutParameter + + + fr.insee + lm4vudcf + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + ln8zx8zp + 1 + + AVIS_AR + + + AVIS_AR label + + + fr.insee + lmrsfyuh-QOP-lmrsqwss + 1 + OutParameter + + + fr.insee + lmrsfyuh + 1 + QuestionItem + + + + + fr.insee + lmrsjojv + 1 + CodeList + + + + + + fr.insee + ln900vbh + 1 + + AVIS_NOTICE + + + AVIS_NOTICE label + + + fr.insee + lmrscuvs-QOP-lmrsy3l0 + 1 + OutParameter + + + fr.insee + lmrscuvs + 1 + QuestionItem + + + + + fr.insee + lmrsjetq + 1 + CodeList + + + + + + fr.insee + ln904m83 + 1 + + AVIS_RAIS_NOTICE + + + AVIS_RAIS_NOTICE label + + + fr.insee + lmrssoql-QOP-lmrslj85 + 1 + OutParameter + + + fr.insee + lmrssoql + 1 + QuestionItem + + + + + + + fr.insee + ln8ztjkt + 1 + + AVIS_SITE_NET + + + AVIS_SITE_NET label + + + fr.insee + lmrtsn5f-QOP-lmrtv32i + 1 + OutParameter + + + fr.insee + lmrtsn5f + 1 + QuestionItem + + + + + fr.insee + lmrtk3dn + 1 + CodeList + + + + + + fr.insee + ln9049y6 + 1 + + AVIS_RAIS_SITE + + + AVIS_RAIS_SITE label + + + fr.insee + lmrtt1a2-QOP-lmrtb5m2 + 1 + OutParameter + + + fr.insee + lmrtt1a2 + 1 + QuestionItem + + + + + + + fr.insee + lnbwe3lz + 1 + + AVIS_MAIL + + + AVIS_MAIL label + + + fr.insee + ln912ymy-QOP-ln90w8kn + 1 + OutParameter + + + fr.insee + ln912ymy + 1 + QuestionItem + + + + + fr.insee + ln90sqiu + 1 + CodeList + + + + + + fr.insee + lna27hq8 + 1 + + AVIS_SUPPORT1 + + + 1 - "Sur un smartphone" + + + fr.insee + ln919mtn-QOP-lna3guyv + 1 + OutParameter + + + fr.insee + ln919mtn + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lna2ep2b + 1 + + AVIS_SUPPORT2 + + + 2 - "Sur une tablette" + + + fr.insee + ln919mtn-QOP-lna3mhap + 1 + OutParameter + + + fr.insee + ln919mtn + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lna24zod + 1 + + AVIS_SUPPORT3 + + + 3 - "Sur un ordinateur" + + + fr.insee + ln919mtn-QOP-lna3ccqm + 1 + OutParameter + + + fr.insee + ln919mtn + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lna336y2 + 1 + + AVIS_TEL + + + AVIS_TEL label + + + fr.insee + lna2b92s-QOP-lna3bcsp + 1 + OutParameter + + + fr.insee + lna2b92s + 1 + QuestionItem + + + + + fr.insee + lna263dc + 1 + CodeList + + + + + + fr.insee + lna24ghn + 1 + + AVIS_DIFF1 + + + 1 - "J’ai eu des difficultés pour me connecter au site" + + + fr.insee + lna1z5hs-QOP-lna3g9og + 1 + OutParameter + + + fr.insee + lna1z5hs + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lna2e523 + 1 + + AVIS_DIFF2 + + + 2 - "J’ai eu des difficultés pour dérouler les listes (profession, langue, commune, pays) et/ou cliquer sur la réponse souhaitée" + + + fr.insee + lna1z5hs-QOP-lna3o7x6 + 1 + OutParameter + + + fr.insee + lna1z5hs + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lna25zfb + 1 + + AVIS_DIFF3 + + + 3 - "J’ai eu des difficultés pour passer aux questions suivantes (je ne voyais pas le bouton, ...)" + + + fr.insee + lna1z5hs-QOP-lna3atiw + 1 + OutParameter + + + fr.insee + lna1z5hs + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lna2cey8 + 1 + + AVIS_DIFF4 + + + 4 - "J’étais perdu" || (if (isnull(¤ln0892lt-GOP¤)) then "" else (if (¤ln0892lt-GOP¤ = "2") then "e" else "")) || " dans le questionnaire, je ne savais plus où j’en étais, sur quoi ou qui les questions portaient" + + + fr.insee + lna1z5hs-QOP-lna3cm7h + 1 + OutParameter + + + fr.insee + lna1z5hs + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lna28pfz + 1 + + AVIS_DIFF5 + + + 5 - "Il y avait trop de pages, il fallait trop souvent changer d’écran" + + + fr.insee + lna1z5hs-QOP-lna3ih02 + 1 + OutParameter + + + fr.insee + lna1z5hs + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lna251km + 1 + + AVIS_DIFF6 + + + 6 - "J’ai eu des difficultés pour répondre à certaines questions (questions peu claires, auxquelles je n’avais pas la réponse…)" + + + fr.insee + lna1z5hs-QOP-lna3iyg6 + 1 + OutParameter + + + fr.insee + lna1z5hs + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lna2a78o + 1 + + AVIS_DIFF7 + + + 7 - "J’ai rencontré d’autres difficultés" + + + fr.insee + lna1z5hs-QOP-lna3n335 + 1 + OutParameter + + + fr.insee + lna1z5hs + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lna2jr28 + 1 + + AVIS_DIFF8 + + + 8 - "Non, je n’ai pas eu de difficultés" + + + fr.insee + lna1z5hs-QOP-lna38km4 + 1 + OutParameter + + + fr.insee + lna1z5hs + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lna3cb84 + 1 + + AVIS_QUEST + + + AVIS_QUEST label + + + fr.insee + lna24vso-QOP-lna3p2ls + 1 + OutParameter + + + fr.insee + lna24vso + 1 + QuestionItem + + + + + + + fr.insee + lna3ektj + 1 + + AVIS_AUTR_DIFF + + + AVIS_AUTR_DIFF label + + + fr.insee + lna2aygn-QOP-lna2mb8t + 1 + OutParameter + + + fr.insee + lna2aygn + 1 + QuestionItem + + + + + + + fr.insee + lna2lir0 + 1 + + AVIS_ORDRE + + + AVIS_ORDRE label + + + fr.insee + lna2jxe5-QOP-lna3fdxl + 1 + OutParameter + + + fr.insee + lna2jxe5 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lna3hct7 + 1 + + AVIS_ASSIST + + + AVIS_ASSIST label + + + fr.insee + lna2hnnt-QOP-lna374rk + 1 + OutParameter + + + fr.insee + lna2hnnt + 1 + QuestionItem + + + + + fr.insee + lna2mshx + 1 + CodeList + + + + + + fr.insee + lna3kjkd + 1 + + AVIS_RMQ_FIN + + + AVIS_RMQ_FIN label + + + fr.insee + lna2fkqe-QOP-lna2wl0f + 1 + OutParameter + + + fr.insee + lna2fkqe + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lna3nd24 + 1 + + AVIS_AUTR_RMQ + + + AVIS_AUTR_RMQ label + + + fr.insee + lna2hbsx-QOP-lna2pz8m + 1 + OutParameter + + + fr.insee + lna2hbsx + 1 + QuestionItem + + + + + + + fr.insee + l4idqt1t-vg + 1 + + + fr.insee + l4idqt1t + 1 + Loop + + + fr.insee + ljmw8vex + 1 + Loop + + + Loop + + B_PRENOMREP + + + fr.insee + ljog4umf + 1 + Variable + + + fr.insee + ljog5qlp + 1 + Variable + + + fr.insee + ljog2d02 + 1 + Variable + + + fr.insee + ljogcnx2 + 1 + Variable + + + fr.insee + ljoganho + 1 + Variable + + + fr.insee + ljog08x8 + 1 + Variable + + + fr.insee + ljogftf8 + 1 + Variable + + + fr.insee + ljogel01 + 1 + Variable + + + fr.insee + ljogh1as + 1 + Variable + + + fr.insee + ljog7t5a + 1 + Variable + + + fr.insee + ljog1iz6 + 1 + Variable + + + fr.insee + ljogbx4g + 1 + Variable + + + fr.insee + ljogazh7 + 1 + Variable + + + fr.insee + ljogdxy3 + 1 + Variable + + + fr.insee + ljoghjsl + 1 + Variable + + + fr.insee + ljogjmnt + 1 + Variable + + + fr.insee + ljog3bu3 + 1 + Variable + + + fr.insee + ljog3j43 + 1 + Variable + + + fr.insee + ljogax1t + 1 + Variable + + + fr.insee + ll2aimkg + 1 + Variable + + + fr.insee + lldhn2ou + 1 + Variable + + + fr.insee + lldhnh87 + 1 + Variable + + + fr.insee + lldhp45c + 1 + Variable + + + fr.insee + llmgtini + 1 + Variable + + + fr.insee + ll2avq1u + 1 + Variable + + + fr.insee + ll2b4m0i + 1 + Variable + + + fr.insee + ll2b0ey3 + 1 + Variable + + + fr.insee + ll2azas1 + 1 + Variable + + + fr.insee + ll2bd9e4 + 1 + Variable + + + fr.insee + ll2axtj0 + 1 + Variable + + + fr.insee + ll2b1clq + 1 + Variable + + + fr.insee + ll2bblgh + 1 + Variable + + + fr.insee + ll2azcsb + 1 + Variable + + + fr.insee + ll2b08tv + 1 + Variable + + + fr.insee + ll2awtri + 1 + Variable + + + fr.insee + ln38wwhm + 1 + Variable + + + fr.insee + li34mnyd + 1 + Variable + + + fr.insee + lai10jze + 1 + Variable + + + fr.insee + lai0r1fc + 1 + Variable + + + fr.insee + li359gpp + 1 + Variable + + + fr.insee + lai0w6gt + 1 + Variable + + + fr.insee + lna1wj6r + 1 + Variable + + + fr.insee + lldrx968 + 1 + Variable + + + fr.insee + lldrjxp8 + 1 + Variable + + + fr.insee + llvxlfv8 + 1 + Variable + + + fr.insee + llvxhzxi + 1 + Variable + + + fr.insee + llds0mf9 + 1 + Variable + + + fr.insee + llvx9163 + 1 + Variable + + + fr.insee + llvxubc4 + 1 + Variable + + + fr.insee + llds9t21 + 1 + Variable + + + fr.insee + llmh74gq + 1 + Variable + + + fr.insee + llmhufxz + 1 + Variable + + + fr.insee + llni7khh + 1 + Variable + + + fr.insee + lldrj7dd + 1 + Variable + + + fr.insee + lldrxbyn + 1 + Variable + + + fr.insee + llvxrs8n + 1 + Variable + + + fr.insee + llvxem9q + 1 + Variable + + + fr.insee + llds46nr + 1 + Variable + + + fr.insee + llvxpjun + 1 + Variable + + + fr.insee + llvxbql6 + 1 + Variable + + + fr.insee + lldse6ue + 1 + Variable + + + fr.insee + llmhxy6z + 1 + Variable + + + fr.insee + llmi0a7o + 1 + Variable + + + fr.insee + llnhq9nc + 1 + Variable + + + fr.insee + ln3921g6 + 1 + Variable + + + fr.insee + llm3di1p + 1 + Variable + + + fr.insee + ln3ab45e + 1 + Variable + + + fr.insee + li36k75s + 1 + Variable + + + fr.insee + ln4mu3a8 + 1 + Variable + + + fr.insee + ln0berao + 1 + Variable + + + fr.insee + ln4my54k + 1 + Variable + + + fr.insee + ln4n3pvd + 1 + Variable + + + fr.insee + li36l5p1 + 1 + Variable + + + fr.insee + l9iilq19 + 1 + Variable + + + fr.insee + li36im4p + 1 + Variable + + + fr.insee + llulzq4k + 1 + Variable + + + fr.insee + li36eujn + 1 + Variable + + + fr.insee + lnbuofy2 + 1 + Variable + + + fr.insee + lnbuf89j + 1 + Variable + + + fr.insee + lnbudx04 + 1 + Variable + + + fr.insee + lnbumlrt + 1 + Variable + + + fr.insee + li36e6jz + 1 + Variable + + + fr.insee + lagvhww3 + 1 + Variable + + + fr.insee + l34g1oxk + 1 + Variable + + + fr.insee + llgbswhy + 1 + Variable + + + fr.insee + llgbm843 + 1 + Variable + + + fr.insee + ln4nkp5t + 1 + Variable + + + fr.insee + llm3jau1 + 1 + Variable + + + fr.insee + ln8ul9ii + 1 + Variable + + + fr.insee + li36ikzo + 1 + Variable + + + fr.insee + ln8ue6l0 + 1 + Variable + + + fr.insee + ln0fo50d + 1 + Variable + + + fr.insee + ln8uhww1 + 1 + Variable + + + fr.insee + ln8v07e9 + 1 + Variable + + + fr.insee + l4cje9hx + 1 + Variable + + + fr.insee + l5ktp37h + 1 + Variable + + + fr.insee + l5jnkoyz + 1 + Variable + + + fr.insee + lluma0ok + 1 + Variable + + + fr.insee + l9ildsj0 + 1 + Variable + + + fr.insee + l9ilmr79 + 1 + Variable + + + fr.insee + llgbwr7a + 1 + Variable + + + fr.insee + llgbkefo + 1 + Variable + + + fr.insee + ln8v8dtc + 1 + Variable + + + fr.insee + llm3orfw + 1 + Variable + + + fr.insee + ln8vjhau + 1 + Variable + + + fr.insee + l9ilplrs + 1 + Variable + + + fr.insee + ln8vkzos + 1 + Variable + + + fr.insee + ln0hhy39 + 1 + Variable + + + fr.insee + ln8w3sfe + 1 + Variable + + + fr.insee + ln8w3yku + 1 + Variable + + + fr.insee + l9imhwey + 1 + Variable + + + fr.insee + l9imlci5 + 1 + Variable + + + fr.insee + l9imbft1 + 1 + Variable + + + fr.insee + liizkz29 + 1 + Variable + + + fr.insee + l8k91eas + 1 + Variable + + + fr.insee + lai2qly5 + 1 + Variable + + + fr.insee + la6x1ozi + 1 + Variable + + + fr.insee + llumdbvx + 1 + Variable + + + fr.insee + llvxrvuz + 1 + Variable + + + fr.insee + lmrrb3ah + 1 + Variable + + + fr.insee + l4idtesq + 1 + Variable + + + fr.insee + llgm8xcr + 1 + Variable + + + fr.insee + lai321wj + 1 + Variable + + + fr.insee + llgn328q + 1 + Variable + + + fr.insee + l4i7t09m + 1 + Variable + + + fr.insee + llgbzex2 + 1 + Variable + + + fr.insee + ln8waswe + 1 + Variable + + + fr.insee + lai2q0l2 + 1 + Variable + + + fr.insee + l8k9fx47 + 1 + Variable + + + fr.insee + lai2vxng + 1 + Variable + + + fr.insee + llvxl0i4 + 1 + Variable + + + fr.insee + llvxsb8n + 1 + Variable + + + fr.insee + llvxptki + 1 + Variable + + + fr.insee + lij1gnxo + 1 + Variable + + + fr.insee + l4iaop7n + 1 + Variable + + + fr.insee + lai37uhg + 1 + Variable + + + fr.insee + la6yvw8y + 1 + Variable + + + fr.insee + la6ykpms + 1 + Variable + + + fr.insee + la6utxix + 1 + Variable + + + fr.insee + la6us7lf + 1 + Variable + + + fr.insee + la6uxdwx + 1 + Variable + + + fr.insee + la6ugpn4 + 1 + Variable + + + fr.insee + l4i9d8v4 + 1 + Variable + + + fr.insee + llgdof4r + 1 + Variable + + + fr.insee + ln8wfpbb + 1 + Variable + + + fr.insee + l4qtshn8 + 1 + Variable + + + fr.insee + l8k9zdgm + 1 + Variable + + + fr.insee + l4pah4e9 + 1 + Variable + + + fr.insee + llvxlqkx + 1 + Variable + + + fr.insee + llvxvybh + 1 + Variable + + + fr.insee + llvy0bjq + 1 + Variable + + + fr.insee + lij1la9n + 1 + Variable + + + fr.insee + l4ia9byx + 1 + Variable + + + fr.insee + l4iai6rj + 1 + Variable + + + fr.insee + la6yqwyf + 1 + Variable + + + fr.insee + la6yj02g + 1 + Variable + + + fr.insee + laqulhxj + 1 + Variable + + + fr.insee + laquvj5h + 1 + Variable + + + fr.insee + laquyfyu + 1 + Variable + + + fr.insee + laquvz8u + 1 + Variable + + + fr.insee + l4lcm3zm + 1 + Variable + + + fr.insee + llge4od7 + 1 + Variable + + + fr.insee + ln8wfuqp + 1 + Variable + + + fr.insee + l4qtpx6f + 1 + Variable + + + fr.insee + l4lcwi2r + 1 + Variable + + + fr.insee + l4pae240 + 1 + Variable + + + fr.insee + llvxwe5z + 1 + Variable + + + fr.insee + llvxo6tz + 1 + Variable + + + fr.insee + llvy3238 + 1 + Variable + + + fr.insee + lij1fss2 + 1 + Variable + + + fr.insee + l4ldfxok + 1 + Variable + + + fr.insee + l4ld9url + 1 + Variable + + + fr.insee + la6ymh2v + 1 + Variable + + + fr.insee + la6yfso4 + 1 + Variable + + + fr.insee + la6uhnek + 1 + Variable + + + fr.insee + la6umv20 + 1 + Variable + + + fr.insee + la6unknh + 1 + Variable + + + fr.insee + la6urend + 1 + Variable + + + fr.insee + l4le9osn + 1 + Variable + + + fr.insee + llgdmzwn + 1 + Variable + + + fr.insee + ln8wqaw5 + 1 + Variable + + + fr.insee + l4qtueyu + 1 + Variable + + + fr.insee + l4lej5ls + 1 + Variable + + + fr.insee + l4pao37f + 1 + Variable + + + fr.insee + llvy3nrc + 1 + Variable + + + fr.insee + llvy28yg + 1 + Variable + + + fr.insee + llvy62d0 + 1 + Variable + + + fr.insee + lij177w0 + 1 + Variable + + + fr.insee + l4leeukk + 1 + Variable + + + fr.insee + l4leseyk + 1 + Variable + + + fr.insee + la6yno8u + 1 + Variable + + + fr.insee + l4levqra + 1 + Variable + + + fr.insee + la6urqzv + 1 + Variable + + + fr.insee + la6up8zy + 1 + Variable + + + fr.insee + la6ukx69 + 1 + Variable + + + fr.insee + la6ugfba + 1 + Variable + + + fr.insee + l4lerlrc + 1 + Variable + + + fr.insee + llgdmwr4 + 1 + Variable + + + fr.insee + ln8wwl8u + 1 + Variable + + + fr.insee + l4qto89v + 1 + Variable + + + fr.insee + l4lfflqh + 1 + Variable + + + fr.insee + l4pakdk6 + 1 + Variable + + + fr.insee + llvy6d0r + 1 + Variable + + + fr.insee + llvxz4y8 + 1 + Variable + + + fr.insee + llvxv8yy + 1 + Variable + + + fr.insee + lij1fszm + 1 + Variable + + + fr.insee + l4lg1pyn + 1 + Variable + + + fr.insee + l4lg1xr6 + 1 + Variable + + + fr.insee + la6yidpr + 1 + Variable + + + fr.insee + l4lg6rq5 + 1 + Variable + + + fr.insee + la6um2n4 + 1 + Variable + + + fr.insee + la6uvgky + 1 + Variable + + + fr.insee + la6utzgi + 1 + Variable + + + fr.insee + la6unkqo + 1 + Variable + + + fr.insee + l8n2vo7b + 1 + Variable + + + fr.insee + llge1k6m + 1 + Variable + + + fr.insee + ln8wicvh + 1 + Variable + + + fr.insee + l8n2f6ge + 1 + Variable + + + fr.insee + l8n2jseg + 1 + Variable + + + fr.insee + l8n2bifj + 1 + Variable + + + fr.insee + llvxysia + 1 + Variable + + + fr.insee + llvxyjt8 + 1 + Variable + + + fr.insee + llvxx6pu + 1 + Variable + + + fr.insee + lij1973b + 1 + Variable + + + fr.insee + l8n28aup + 1 + Variable + + + fr.insee + l8n1v5qt + 1 + Variable + + + fr.insee + la6ygrmz + 1 + Variable + + + fr.insee + la6y0cbe + 1 + Variable + + + fr.insee + la6v17x2 + 1 + Variable + + + fr.insee + la6uk2lz + 1 + Variable + + + fr.insee + la6umbz1 + 1 + Variable + + + fr.insee + la6uljbd + 1 + Variable + + + fr.insee + l8n3vait + 1 + Variable + + + fr.insee + llgdp5xh + 1 + Variable + + + fr.insee + ln8wny08 + 1 + Variable + + + fr.insee + l8n3hi4s + 1 + Variable + + + fr.insee + l8n3doff + 1 + Variable + + + fr.insee + l8n3jy6y + 1 + Variable + + + fr.insee + llvy6ybc + 1 + Variable + + + fr.insee + llvy2ddo + 1 + Variable + + + fr.insee + llvy83kg + 1 + Variable + + + fr.insee + lij14x5q + 1 + Variable + + + fr.insee + l8n2ve3t + 1 + Variable + + + fr.insee + l8n2x63v + 1 + Variable + + + fr.insee + la6ya7r2 + 1 + Variable + + + fr.insee + la6yfv2n + 1 + Variable + + + fr.insee + la6ut660 + 1 + Variable + + + fr.insee + la6v2yh2 + 1 + Variable + + + fr.insee + la6uid9q + 1 + Variable + + + fr.insee + la6umgx0 + 1 + Variable + + + fr.insee + l8n49za1 + 1 + Variable + + + fr.insee + llge0ibj + 1 + Variable + + + fr.insee + ln8x2bub + 1 + Variable + + + fr.insee + l8n457wa + 1 + Variable + + + fr.insee + l8n3v3du + 1 + Variable + + + fr.insee + l8n3ocrc + 1 + Variable + + + fr.insee + llvy6byb + 1 + Variable + + + fr.insee + llvxyo73 + 1 + Variable + + + fr.insee + llvy74id + 1 + Variable + + + fr.insee + lij1njlj + 1 + Variable + + + fr.insee + l8n3jswg + 1 + Variable + + + fr.insee + l8n3v5ev + 1 + Variable + + + fr.insee + la6vczh4 + 1 + Variable + + + fr.insee + la6v4m86 + 1 + Variable + + + fr.insee + la6un8uv + 1 + Variable + + + fr.insee + la6un3h5 + 1 + Variable + + + fr.insee + la6unudc + 1 + Variable + + + fr.insee + la6utz4u + 1 + Variable + + + fr.insee + l4ie7fv4 + 1 + Variable + + + fr.insee + llge79j7 + 1 + Variable + + + fr.insee + ln8x1qse + 1 + Variable + + + fr.insee + l4ie15d7 + 1 + Variable + + + fr.insee + l4idrbnq + 1 + Variable + + + fr.insee + l9dv2jor + 1 + Variable + + + fr.insee + l8k9yqfn + 1 + Variable + + + fr.insee + lnbxg7f8 + 1 + Variable + + + fr.insee + l8ojiby4 + 1 + Variable + + + fr.insee + lij1et9t + 1 + Variable + + + fr.insee + lai72f8d + 1 + Variable + + + fr.insee + llvylz7b + 1 + Variable + + + fr.insee + llvycj4j + 1 + Variable + + + fr.insee + llvyajtl + 1 + Variable + + + fr.insee + l4ie8a4z + 1 + Variable + + + fr.insee + l5ilmykd + 1 + Variable + + + fr.insee + l4iec3iy + 1 + Variable + + + fr.insee + l4o7a7kk + 1 + Variable + + + fr.insee + l4o7msxb + 1 + Variable + + + fr.insee + lagwrj5e + 1 + Variable + + + fr.insee + lagwgqxb + 1 + Variable + + + fr.insee + lagwrywk + 1 + Variable + + + fr.insee + l4lg2nk3 + 1 + Variable + + + fr.insee + llgjk2nm + 1 + Variable + + + fr.insee + ln8x5qdi + 1 + Variable + + + fr.insee + l4lh0ajb + 1 + Variable + + + fr.insee + l4lgwsqm + 1 + Variable + + + fr.insee + l9dvg123 + 1 + Variable + + + fr.insee + l4lh4wfw + 1 + Variable + + + fr.insee + lnbxmgjx + 1 + Variable + + + fr.insee + l8ojxve4 + 1 + Variable + + + fr.insee + lij1my05 + 1 + Variable + + + fr.insee + lai71qvf + 1 + Variable + + + fr.insee + llvyhx8j + 1 + Variable + + + fr.insee + llvys5r8 + 1 + Variable + + + fr.insee + llvyqaj6 + 1 + Variable + + + fr.insee + l4lj0cki + 1 + Variable + + + fr.insee + l4ljyhe4 + 1 + Variable + + + fr.insee + l4lk2gex + 1 + Variable + + + fr.insee + l7un2f3g + 1 + Variable + + + fr.insee + l4o7d0hf + 1 + Variable + + + fr.insee + lagwqnte + 1 + Variable + + + fr.insee + lagwu8wr + 1 + Variable + + + fr.insee + lagwevqg + 1 + Variable + + + fr.insee + l4lfyg5t + 1 + Variable + + + fr.insee + llgjuydk + 1 + Variable + + + fr.insee + ln8xfz8v + 1 + Variable + + + fr.insee + l4lgo3d3 + 1 + Variable + + + fr.insee + l4lh0wg5 + 1 + Variable + + + fr.insee + l9dv00hr + 1 + Variable + + + fr.insee + l4lh1dxb + 1 + Variable + + + fr.insee + l9fl847j + 1 + Variable + + + fr.insee + l8ojnks0 + 1 + Variable + + + fr.insee + lij1hbsi + 1 + Variable + + + fr.insee + lai6zu1s + 1 + Variable + + + fr.insee + llvyhkhn + 1 + Variable + + + fr.insee + llvyc82v + 1 + Variable + + + fr.insee + llvytzoi + 1 + Variable + + + fr.insee + l4lj26cu + 1 + Variable + + + fr.insee + lasa136n + 1 + Variable + + + fr.insee + l4lk2ey2 + 1 + Variable + + + fr.insee + l4o7s6rx + 1 + Variable + + + fr.insee + l4o7hjqb + 1 + Variable + + + fr.insee + lagwatn6 + 1 + Variable + + + fr.insee + lagwgz17 + 1 + Variable + + + fr.insee + lagwogef + 1 + Variable + + + fr.insee + l4lg13lj + 1 + Variable + + + fr.insee + llgjs283 + 1 + Variable + + + fr.insee + ln8xa2yf + 1 + Variable + + + fr.insee + l4lh0w7d + 1 + Variable + + + fr.insee + l4lgtg6z + 1 + Variable + + + fr.insee + l9duyjkw + 1 + Variable + + + fr.insee + l4lh0y8b + 1 + Variable + + + fr.insee + lnbxmkfn + 1 + Variable + + + fr.insee + l8ojzphy + 1 + Variable + + + fr.insee + lij1q243 + 1 + Variable + + + fr.insee + lai6scfn + 1 + Variable + + + fr.insee + llvyp2uu + 1 + Variable + + + fr.insee + llvytozk + 1 + Variable + + + fr.insee + llvyka8z + 1 + Variable + + + fr.insee + l4ljh4hd + 1 + Variable + + + fr.insee + l4lmfm7a + 1 + Variable + + + fr.insee + l4lk882x + 1 + Variable + + + fr.insee + l4o80sj1 + 1 + Variable + + + fr.insee + l4o7hp12 + 1 + Variable + + + fr.insee + lagwk26x + 1 + Variable + + + fr.insee + lagwolgd + 1 + Variable + + + fr.insee + lagwtg5h + 1 + Variable + + + fr.insee + l4lgdupn + 1 + Variable + + + fr.insee + llgjrwzu + 1 + Variable + + + fr.insee + ln8xgsgo + 1 + Variable + + + fr.insee + l4lgnml2 + 1 + Variable + + + fr.insee + l4lh0oju + 1 + Variable + + + fr.insee + l9dvdo4p + 1 + Variable + + + fr.insee + l4lh78pu + 1 + Variable + + + fr.insee + l9flf9hj + 1 + Variable + + + fr.insee + l8ojekyz + 1 + Variable + + + fr.insee + lij1mx2e + 1 + Variable + + + fr.insee + lai6w8kr + 1 + Variable + + + fr.insee + llvysls5 + 1 + Variable + + + fr.insee + llvz0fqm + 1 + Variable + + + fr.insee + llvylns4 + 1 + Variable + + + fr.insee + l4lj62bs + 1 + Variable + + + fr.insee + l4o7oknh + 1 + Variable + + + fr.insee + l4ljvm4i + 1 + Variable + + + fr.insee + l4o7xizu + 1 + Variable + + + fr.insee + l4o7n3ug + 1 + Variable + + + fr.insee + lagwmxd3 + 1 + Variable + + + fr.insee + lagwbebj + 1 + Variable + + + fr.insee + lagwpanz + 1 + Variable + + + fr.insee + l8oi7fel + 1 + Variable + + + fr.insee + llgjkq9j + 1 + Variable + + + fr.insee + ln8xae81 + 1 + Variable + + + fr.insee + l8oij0b0 + 1 + Variable + + + fr.insee + l8ohw6dq + 1 + Variable + + + fr.insee + l9duy8g6 + 1 + Variable + + + fr.insee + l8oi73zk + 1 + Variable + + + fr.insee + lnbxb1g6 + 1 + Variable + + + fr.insee + l8ojv4ww + 1 + Variable + + + fr.insee + lij1ifw6 + 1 + Variable + + + fr.insee + lai76uzw + 1 + Variable + + + fr.insee + llvywof5 + 1 + Variable + + + fr.insee + llvyoxe1 + 1 + Variable + + + fr.insee + llvypr5t + 1 + Variable + + + fr.insee + l8ogvwpl + 1 + Variable + + + fr.insee + l8oaxy5v + 1 + Variable + + + fr.insee + l8ob2278 + 1 + Variable + + + fr.insee + l8ob0bwo + 1 + Variable + + + fr.insee + l8ob2zsx + 1 + Variable + + + fr.insee + lagwf9yy + 1 + Variable + + + fr.insee + lagwd4vw + 1 + Variable + + + fr.insee + lagwt98o + 1 + Variable + + + fr.insee + l8okm9vv + 1 + Variable + + + fr.insee + llgjuj96 + 1 + Variable + + + fr.insee + ln8xllr2 + 1 + Variable + + + fr.insee + l8ojza9l + 1 + Variable + + + fr.insee + l8ok36f1 + 1 + Variable + + + fr.insee + l9dvd6ci + 1 + Variable + + + fr.insee + l8ojsho1 + 1 + Variable + + + fr.insee + lnbxenl4 + 1 + Variable + + + fr.insee + l8ojfunn + 1 + Variable + + + fr.insee + lij1hx9z + 1 + Variable + + + fr.insee + lai70va9 + 1 + Variable + + + fr.insee + llvyy4np + 1 + Variable + + + fr.insee + llvypqbk + 1 + Variable + + + fr.insee + llvyovak + 1 + Variable + + + fr.insee + l8ojhh6l + 1 + Variable + + + fr.insee + l8oig2bs + 1 + Variable + + + fr.insee + l8oj2ija + 1 + Variable + + + fr.insee + l8oivphd + 1 + Variable + + + fr.insee + l8oith8b + 1 + Variable + + + fr.insee + lagwmluw + 1 + Variable + + + fr.insee + lagwrae6 + 1 + Variable + + + fr.insee + lagwha9j + 1 + Variable + + + fr.insee + l8olff0v + 1 + Variable + + + fr.insee + llgjincl + 1 + Variable + + + fr.insee + ln8xn95w + 1 + Variable + + + fr.insee + l8olls0i + 1 + Variable + + + fr.insee + l8oljfdf + 1 + Variable + + + fr.insee + l9dvbaqq + 1 + Variable + + + fr.insee + l8ol5yre + 1 + Variable + + + fr.insee + l9flj5ll + 1 + Variable + + + fr.insee + l8okya6y + 1 + Variable + + + fr.insee + lij1c5mx + 1 + Variable + + + fr.insee + lai6too4 + 1 + Variable + + + fr.insee + llvz0k9p + 1 + Variable + + + fr.insee + llvz0iw5 + 1 + Variable + + + fr.insee + llvyxbi2 + 1 + Variable + + + fr.insee + l8okm2oj + 1 + Variable + + + fr.insee + l8okskbt + 1 + Variable + + + fr.insee + l8okje65 + 1 + Variable + + + fr.insee + l8okt0i0 + 1 + Variable + + + fr.insee + l8okgq26 + 1 + Variable + + + fr.insee + lagwt3sh + 1 + Variable + + + fr.insee + lagwo4de + 1 + Variable + + + fr.insee + lagwnufr + 1 + Variable + + + fr.insee + l5iaj6j7 + 1 + Variable + + + fr.insee + lm69vsc6 + 1 + Variable + + + fr.insee + lij1xpcq + 1 + Variable + + + fr.insee + llf391dx + 1 + Variable + + + fr.insee + llf3cd67 + 1 + Variable + + + fr.insee + llf32wcn + 1 + Variable + + + fr.insee + llf2wpz5 + 1 + Variable + + + fr.insee + llf2x5mt + 1 + Variable + + + fr.insee + llf31djx + 1 + Variable + + + fr.insee + llf35phn + 1 + Variable + + + fr.insee + llf2x3ve + 1 + Variable + + + fr.insee + lmrrau72 + 1 + Variable + + + fr.insee + lmrreutd + 1 + Variable + + + fr.insee + lmrro9wt + 1 + Variable + + + fr.insee + lmrrld0e + 1 + Variable + + + fr.insee + lmrriwq0 + 1 + Variable + + + fr.insee + llz4pt0a + 1 + Variable + + + fr.insee + llz4w6fk + 1 + Variable + + + fr.insee + llz50qv7 + 1 + Variable + + + fr.insee + llz4x6ay + 1 + Variable + + + fr.insee + l8le1kw4 + 1 + Variable + + + fr.insee + l8le04ts + 1 + Variable + + + fr.insee + l8le2mq9 + 1 + Variable + + + fr.insee + l8ldz05j + 1 + Variable + + + fr.insee + l8ldwcav + 1 + Variable + + + fr.insee + l8le2myg + 1 + Variable + + + fr.insee + l8le88o9 + 1 + Variable + + + fr.insee + l8lds3ui + 1 + Variable + + + fr.insee + l8le5n9q + 1 + Variable + + + fr.insee + l8le80hx + 1 + Variable + + + fr.insee + l8lduam7 + 1 + Variable + + + fr.insee + l8ldya76 + 1 + Variable + + + fr.insee + lmrrafby + 1 + Variable + + + fr.insee + lmrrig7t + 1 + Variable + + + fr.insee + lmrr4p8n + 1 + Variable + + + fr.insee + lmrr90h5 + 1 + Variable + + + fr.insee + l8le4u3b + 1 + Variable + + + fr.insee + l8le2502 + 1 + Variable + + + fr.insee + l8le9mmb + 1 + Variable + + + fr.insee + l8lebsfh + 1 + Variable + + + fr.insee + l8le8q83 + 1 + Variable + + + fr.insee + l8le2aes + 1 + Variable + + + fr.insee + l8lec6vu + 1 + Variable + + + fr.insee + l8lduhdu + 1 + Variable + + + fr.insee + l5jnxmnk + 1 + Variable + + + fr.insee + l5jo1job + 1 + Variable + + + fr.insee + l5joa3bl + 1 + Variable + + + fr.insee + l5jo6z82 + 1 + Variable + + + fr.insee + llvz479p + 1 + Variable + + + fr.insee + lmrr3o83 + 1 + Variable + + + fr.insee + l4oec1lq + 1 + Variable + + + fr.insee + lnekb9g4 + 1 + Variable + + + fr.insee + l3vpisia + 1 + Variable + + + fr.insee + l34iqhee + 1 + Variable + + + fr.insee + l7yx0sde + 1 + Variable + + + fr.insee + llvywjqt + 1 + Variable + + + fr.insee + llvytrfl + 1 + Variable + + + fr.insee + l8ldy184 + 1 + Variable + + + fr.insee + llgnqpnr + 1 + Variable + + + fr.insee + llgrqor1 + 1 + Variable + + + fr.insee + llnhw38q + 1 + Variable + + + fr.insee + llvypib1 + 1 + Variable + + + fr.insee + lmrr15k8 + 1 + Variable + + + fr.insee + l8k99ilg + 1 + Variable + + + fr.insee + ln8yc8bi + 1 + Variable + + + fr.insee + lm0e90yl + 1 + Variable + + + fr.insee + lai70nzp + 1 + Variable + + + fr.insee + llvz8tcu + 1 + Variable + + + fr.insee + llvytyg5 + 1 + Variable + + + fr.insee + llvyqp24 + 1 + Variable + + + fr.insee + l2kihdd6 + 1 + Variable + + + fr.insee + lij1rmvu + 1 + Variable + + + fr.insee + lij1rmjq + 1 + Variable + + + fr.insee + l4lonoaj + 1 + Variable + + + fr.insee + l43y4bul + 1 + Variable + + + fr.insee + l5axyvf9 + 1 + Variable + + + fr.insee + l4oeo539 + 1 + Variable + + + fr.insee + ln8y0vv7 + 1 + Variable + + + fr.insee + l45cezmn + 1 + Variable + + + fr.insee + l2kjzgzk + 1 + Variable + + + fr.insee + l7ywxkf7 + 1 + Variable + + + fr.insee + llvz3hw4 + 1 + Variable + + + fr.insee + llvz5gpf + 1 + Variable + + + fr.insee + l4o73c23 + 1 + Variable + + + fr.insee + llgnuzxv + 1 + Variable + + + fr.insee + llnhstp4 + 1 + Variable + + + fr.insee + llni1mhr + 1 + Variable + + + fr.insee + llvz8cp5 + 1 + Variable + + + fr.insee + lmrreu7w + 1 + Variable + + + fr.insee + l8k9sjms + 1 + Variable + + + fr.insee + ln8yd8j8 + 1 + Variable + + + fr.insee + lm0fd7qv + 1 + Variable + + + fr.insee + lm0fb0me + 1 + Variable + + + fr.insee + lm0f8sao + 1 + Variable + + + fr.insee + laguuyk8 + 1 + Variable + + + fr.insee + lai7blbr + 1 + Variable + + + fr.insee + llvz5jjn + 1 + Variable + + + fr.insee + llvytvcv + 1 + Variable + + + fr.insee + llvz5i4v + 1 + Variable + + + fr.insee + l8m1qyu9 + 1 + Variable + + + fr.insee + lij1nowz + 1 + Variable + + + fr.insee + lij1bnzj + 1 + Variable + + + fr.insee + l4los1a5 + 1 + Variable + + + fr.insee + l4lonmxd + 1 + Variable + + + fr.insee + liiy5f7u + 1 + Variable + + + fr.insee + li362nsa + 1 + Variable + + + fr.insee + l473t9qd + 1 + Variable + + + fr.insee + liiygg3q + 1 + Variable + + + fr.insee + li367ko1 + 1 + Variable + + + fr.insee + lai0huem + 1 + Variable + + + fr.insee + lbqcq021 + 1 + Variable + + + fr.insee + llev0wxd + 1 + Variable + + + fr.insee + llev4x3a + 1 + Variable + + + fr.insee + llevhx1v + 1 + Variable + + + fr.insee + llevb1bs + 1 + Variable + + + fr.insee + llev21lo + 1 + Variable + + + fr.insee + llev258v + 1 + Variable + + + fr.insee + llev4lrn + 1 + Variable + + + fr.insee + l8k9vl42 + 1 + Variable + + + fr.insee + l43tta6c + 1 + Variable + + + fr.insee + l43u7w3y + 1 + Variable + + + fr.insee + l43to2k0 + 1 + Variable + + + fr.insee + l43u7j0s + 1 + Variable + + + fr.insee + l1f6b3hb + 1 + Variable + + + fr.insee + llethxrg + 1 + Variable + + + fr.insee + lneknegu + 1 + Variable + + + fr.insee + lij28s0w + 1 + Variable + + + fr.insee + ln8yfhub + 1 + Variable + + + fr.insee + l445l6g2 + 1 + Variable + + + fr.insee + ln8z1iyb + 1 + Variable + + + fr.insee + lleu2mxy + 1 + Variable + + + fr.insee + lleu2a71 + 1 + Variable + + + fr.insee + llett62k + 1 + Variable + + + fr.insee + ljwz1ro0 + 1 + Variable + + + fr.insee + lamjg3vg + 1 + Variable + + + fr.insee + ln8zj767 + 1 + Variable + + + fr.insee + lnbsqvck + 1 + Variable + + + fr.insee + lm6beldl + 1 + Variable + + + fr.insee + ln8zzd7l + 1 + Variable + + + fr.insee + ln8zp32c + 1 + Variable + + + fr.insee + ln8zxu8p + 1 + Variable + + + fr.insee + ln8zstss + 1 + Variable + + + fr.insee + ln8zj7dd + 1 + Variable + + + fr.insee + ln8zmr1m + 1 + Variable + + + fr.insee + ln8zx8zp + 1 + Variable + + + fr.insee + ln900vbh + 1 + Variable + + + fr.insee + ln904m83 + 1 + Variable + + + fr.insee + ln8ztjkt + 1 + Variable + + + fr.insee + ln9049y6 + 1 + Variable + + + fr.insee + lnbwe3lz + 1 + Variable + + + fr.insee + lna27hq8 + 1 + Variable + + + fr.insee + lna2ep2b + 1 + Variable + + + fr.insee + lna24zod + 1 + Variable + + + fr.insee + lna336y2 + 1 + Variable + + + fr.insee + lna24ghn + 1 + Variable + + + fr.insee + lna2e523 + 1 + Variable + + + fr.insee + lna25zfb + 1 + Variable + + + fr.insee + lna2cey8 + 1 + Variable + + + fr.insee + lna28pfz + 1 + Variable + + + fr.insee + lna251km + 1 + Variable + + + fr.insee + lna2a78o + 1 + Variable + + + fr.insee + lna2jr28 + 1 + Variable + + + fr.insee + lna3cb84 + 1 + Variable + + + fr.insee + lna3ektj + 1 + Variable + + + fr.insee + lna2lir0 + 1 + Variable + + + fr.insee + lna3hct7 + 1 + Variable + + + fr.insee + lna3kjkd + 1 + Variable + + + fr.insee + lna3nd24 + 1 + Variable + + + + fr.insee + INSEE-Instrument-lnycjn6n-vg + 1 + + + fr.insee + Instrument-lnycjn6n + 1 + Instrument + + + Questionnaire + + ENQFAMI24 + + + fr.insee + ln0892lt + 1 + Variable + + + fr.insee + ll2b2moe + 1 + Variable + + + fr.insee + ll2az6pb + 1 + Variable + + + fr.insee + ll2b6m2t + 1 + Variable + + + fr.insee + ll2b5mz0 + 1 + Variable + + + fr.insee + l4idqt1t-vg + 1 + VariableGroup + + + + + fr.insee + INSEE-SIMPSONS-PIS-1 + 1 + + SIMPSONS + + + Processing instructions of the Simpsons questionnaire + + + fr.insee + ljog4umf-GI + 1 + + fr.insee + l2kkvar7 + 1 + QuestionItem + + + fr.insee + l3vpisia + 1 + Variable + + + + vtl + + fr.insee + ljog4umf-IP-1 + 1 + + SEXE_PAR1 + + + + fr.insee + ljog4umf-GOP + 1 + + + + fr.insee + l2kkvar7-QOP-l2kkywzf + 1 + OutParameter + + + fr.insee + ljog4umf-IP-1 + 1 + InParameter + + + if (isnull(ljog4umf-IP-1)) then "" else (if (ljog4umf-IP-1 = "1") then "e" else "") + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ljog5qlp-GI + 1 + + fr.insee + l27ig4yy + 1 + QuestionItem + + + fr.insee + l45cezmn + 1 + Variable + + + + vtl + + fr.insee + ljog5qlp-IP-1 + 1 + + SEXE_PAR2 + + + + fr.insee + ljog5qlp-GOP + 1 + + + + fr.insee + l27ig4yy-QOP-l27ii3c9 + 1 + OutParameter + + + fr.insee + ljog5qlp-IP-1 + 1 + InParameter + + + if (isnull(ljog5qlp-IP-1)) then "" else (if (ljog5qlp-IP-1 = "1") then "e" else "") + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ljog2d02-GI + 1 + + fr.insee + l2kkvar7 + 1 + QuestionItem + + + fr.insee + l3vpisia + 1 + Variable + + + + vtl + + fr.insee + ljog2d02-IP-1 + 1 + + SEXE_PAR1 + + + + fr.insee + ljog2d02-GOP + 1 + + + + fr.insee + l2kkvar7-QOP-l2kkywzf + 1 + OutParameter + + + fr.insee + ljog2d02-IP-1 + 1 + InParameter + + + if (isnull(ljog2d02-IP-1)) then "il" else (if (ljog2d02-IP-1 = "1") then "elle" else "il") + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ljogcnx2-GI + 1 + + fr.insee + l27ig4yy + 1 + QuestionItem + + + fr.insee + l45cezmn + 1 + Variable + + + + vtl + + fr.insee + ljogcnx2-IP-1 + 1 + + SEXE_PAR2 + + + + fr.insee + ljogcnx2-GOP + 1 + + + + fr.insee + l27ig4yy-QOP-l27ii3c9 + 1 + OutParameter + + + fr.insee + ljogcnx2-IP-1 + 1 + InParameter + + + if (isnull(ljogcnx2-IP-1)) then "il" else (if (ljogcnx2-IP-1 = "1") then "elle" else "il") + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ljoganho-GI + 1 + + fr.insee + ln0892lt + 1 + Variable + + + fr.insee + ll2b5mz0 + 1 + Variable + + + + vtl + + fr.insee + ljoganho-IP-1 + 1 + + TYPE_QUEST + + + + fr.insee + ljoganho-IP-2 + 1 + + TYPE_QUEST + + + + fr.insee + ljoganho-GOP + 1 + + + + fr.insee + ln0892lt-GOP + 1 + OutParameter + + + fr.insee + ljoganho-IP-1 + 1 + InParameter + + + + + fr.insee + TYPE_QUEST + 1 + InParameter + + + fr.insee + ljoganho-IP-2 + 1 + InParameter + + + if (isnull(ljoganho-IP-1)) then "" else (if (ljoganho-IP-1 = "2") then "e" else "") + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ljog08x8-GI + 1 + + + vtl + + fr.insee + ljog08x8-GOP + 1 + + 2024 - ANAIS + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ljogftf8-GI + 1 + + fr.insee + kwqabjga + 1 + QuestionItem + + + fr.insee + lldrx968 + 1 + Variable + + + + vtl + + fr.insee + ljogftf8-IP-1 + 1 + + SEXE_CH + + + + fr.insee + ljogftf8-GOP + 1 + + + + fr.insee + kwqabjga-QOP-kwqai8pk + 1 + OutParameter + + + fr.insee + ljogftf8-IP-1 + 1 + InParameter + + + if (isnull(ljogftf8-IP-1)) then "" else (if ljogftf8-IP-1="1" then "e" else "") + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ljogel01-GI + 1 + + fr.insee + kwqa0ism + 1 + QuestionItem + + + fr.insee + lna1wj6r + 1 + Variable + + + + vtl + + fr.insee + ljogel01-IP-1 + 1 + + DATNAIS_C + + + + fr.insee + ljogel01-GOP + 1 + + + + fr.insee + kwqa0ism-QOP-kwqa5c2z + 1 + OutParameter + + + fr.insee + ljogel01-IP-1 + 1 + InParameter + + + substr(cast(ljogel01-IP-1,string),1,4) + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ljogh1as-GI + 1 + + fr.insee + lldhn2ou + 1 + Variable + + + fr.insee + ll2bblgh + 1 + Variable + + + + vtl + + fr.insee + ljogh1as-IP-1 + 1 + + SEXE_C + + + + fr.insee + ljogh1as-IP-2 + 1 + + RPSEXCONJ + + + + fr.insee + ljogh1as-GOP + 1 + + + + fr.insee + lldhn2ou-GOP + 1 + OutParameter + + + fr.insee + ljogh1as-IP-1 + 1 + InParameter + + + + + fr.insee + RPSEXCONJ + 1 + InParameter + + + fr.insee + ljogh1as-IP-2 + 1 + InParameter + + + if isnull(ljogh1as-IP-2) then ljogh1as-IP-1 else ljogh1as-IP-2 + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ljog7t5a-GI + 1 + + fr.insee + l473latk + 1 + QuestionItem + + + fr.insee + kwq9wijq + 1 + QuestionItem + + + fr.insee + ll2awtri + 1 + Variable + + + fr.insee + ln38wwhm + 1 + Variable + + + fr.insee + li34mnyd + 1 + Variable + + + + vtl + + fr.insee + ljog7t5a-IP-1 + 1 + + RPANAISENQ + + + + fr.insee + ljog7t5a-IP-2 + 1 + + VAL_ANNAISS + + + + fr.insee + ljog7t5a-IP-3 + 1 + + DATNAIS_X + + + + fr.insee + ljog7t5a-GOP + 1 + + + + fr.insee + RPANAISENQ + 1 + InParameter + + + fr.insee + ljog7t5a-IP-1 + 1 + InParameter + + + + + fr.insee + l473latk-QOP-ll2h5il3 + 1 + OutParameter + + + fr.insee + ljog7t5a-IP-2 + 1 + InParameter + + + + + fr.insee + kwq9wijq-QOP-kwq9l0nj + 1 + OutParameter + + + fr.insee + ljog7t5a-IP-3 + 1 + InParameter + + + if (nvl(ljog7t5a-IP-2,"") = "2") then substr(cast(ljog7t5a-IP-3,string),1,4) else ljog7t5a-IP-1 + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ljog1iz6-GI + 1 + + fr.insee + ljog7t5a + 1 + Variable + + + + vtl + + fr.insee + ljog1iz6-IP-1 + 1 + + ANAISS + + + + fr.insee + ljog1iz6-GOP + 1 + + + + fr.insee + ljog7t5a-GOP + 1 + OutParameter + + + fr.insee + ljog1iz6-IP-1 + 1 + InParameter + + + cast(ljog1iz6-IP-1,integer) + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ljogbx4g-GI + 1 + + fr.insee + kwqj561a + 1 + QuestionItem + + + fr.insee + ln8x1qse + 1 + Variable + + + + vtl + + fr.insee + ljogbx4g-IP-1 + 1 + + ANAI_ENFAIL1 + + + + fr.insee + ljogbx4g-GOP + 1 + + + + fr.insee + kwqj561a-QOP-kwqj8zg8 + 1 + OutParameter + + + fr.insee + ljogbx4g-IP-1 + 1 + InParameter + + + if isnull(ljogbx4g-IP-1) then 0 else 2024-cast(ljogbx4g-IP-1,integer) + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ljogazh7-GI + 1 + + fr.insee + l4lgjbi8 + 1 + QuestionItem + + + fr.insee + ln8x5qdi + 1 + Variable + + + + vtl + + fr.insee + ljogazh7-IP-1 + 1 + + ANAI_ENFAIL2 + + + + fr.insee + ljogazh7-GOP + 1 + + + + fr.insee + l4lgjbi8-QOP-l4lg7r84 + 1 + OutParameter + + + fr.insee + ljogazh7-IP-1 + 1 + InParameter + + + if isnull(ljogazh7-IP-1) then 0 else 2024-cast(ljogazh7-IP-1,integer) + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ljogdxy3-GI + 1 + + fr.insee + l4lgenh5 + 1 + QuestionItem + + + fr.insee + ln8xfz8v + 1 + Variable + + + + vtl + + fr.insee + ljogdxy3-IP-1 + 1 + + ANAI_ENFAIL3 + + + + fr.insee + ljogdxy3-GOP + 1 + + + + fr.insee + l4lgenh5-QOP-l4lgj042 + 1 + OutParameter + + + fr.insee + ljogdxy3-IP-1 + 1 + InParameter + + + if isnull(ljogdxy3-IP-1) then 0 else 2024-cast(ljogdxy3-IP-1,integer) + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ljoghjsl-GI + 1 + + fr.insee + l4lgfphb + 1 + QuestionItem + + + fr.insee + ln8xa2yf + 1 + Variable + + + + vtl + + fr.insee + ljoghjsl-IP-1 + 1 + + ANAI_ENFAIL4 + + + + fr.insee + ljoghjsl-GOP + 1 + + + + fr.insee + l4lgfphb-QOP-l4lgh2oy + 1 + OutParameter + + + fr.insee + ljoghjsl-IP-1 + 1 + InParameter + + + if isnull(ljoghjsl-IP-1) then 0 else 2024-cast(ljoghjsl-IP-1,integer) + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ljogjmnt-GI + 1 + + fr.insee + l4lgp1ft + 1 + QuestionItem + + + fr.insee + ln8xgsgo + 1 + Variable + + + + vtl + + fr.insee + ljogjmnt-IP-1 + 1 + + ANAI_ENFAIL5 + + + + fr.insee + ljogjmnt-GOP + 1 + + + + fr.insee + l4lgp1ft-QOP-l4lgleu5 + 1 + OutParameter + + + fr.insee + ljogjmnt-IP-1 + 1 + InParameter + + + if isnull(ljogjmnt-IP-1) then 0 else 2024-cast(ljogjmnt-IP-1,integer) + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ljog3bu3-GI + 1 + + fr.insee + l8oi7q9f + 1 + QuestionItem + + + fr.insee + ln8xae81 + 1 + Variable + + + + vtl + + fr.insee + ljog3bu3-IP-1 + 1 + + ANAI_ENFAIL6 + + + + fr.insee + ljog3bu3-GOP + 1 + + + + fr.insee + l8oi7q9f-QOP-l8oijkad + 1 + OutParameter + + + fr.insee + ljog3bu3-IP-1 + 1 + InParameter + + + if isnull(ljog3bu3-IP-1) then 0 else 2024-cast(ljog3bu3-IP-1,integer) + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ljog3j43-GI + 1 + + fr.insee + l8okh65e + 1 + QuestionItem + + + fr.insee + ln8xllr2 + 1 + Variable + + + + vtl + + fr.insee + ljog3j43-IP-1 + 1 + + ANAI_ENFAIL7 + + + + fr.insee + ljog3j43-GOP + 1 + + + + fr.insee + l8okh65e-QOP-l8okdvkx + 1 + OutParameter + + + fr.insee + ljog3j43-IP-1 + 1 + InParameter + + + if isnull(ljog3j43-IP-1) then 0 else 2024-cast(ljog3j43-IP-1,integer) + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ljogax1t-GI + 1 + + fr.insee + l8ol9xy3 + 1 + QuestionItem + + + fr.insee + ln8xn95w + 1 + Variable + + + + vtl + + fr.insee + ljogax1t-IP-1 + 1 + + ANAI_ENFAIL8 + + + + fr.insee + ljogax1t-GOP + 1 + + + + fr.insee + l8ol9xy3-QOP-l8ol6h1q + 1 + OutParameter + + + fr.insee + ljogax1t-IP-1 + 1 + InParameter + + + if isnull(ljogax1t-IP-1) then 0 else 2024-cast(ljogax1t-IP-1,integer) + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ll2aimkg-GI + 1 + + fr.insee + ll2b08tv + 1 + Variable + + + + vtl + + fr.insee + ll2aimkg-IP-1 + 1 + + RPPRENOM + + + + fr.insee + ll2aimkg-GOP + 1 + + + + fr.insee + RPPRENOM + 1 + InParameter + + + fr.insee + ll2aimkg-IP-1 + 1 + InParameter + + + ll2aimkg-IP-1 + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + lldhn2ou-GI + 1 + + fr.insee + ln0892lt + 1 + Variable + + + fr.insee + ll2b5mz0 + 1 + Variable + + + + vtl + + fr.insee + lldhn2ou-IP-1 + 1 + + TYPE_QUEST + + + + fr.insee + lldhn2ou-IP-2 + 1 + + TYPE_QUEST + + + + fr.insee + lldhn2ou-GOP + 1 + + + + fr.insee + ln0892lt-GOP + 1 + OutParameter + + + fr.insee + lldhn2ou-IP-1 + 1 + InParameter + + + + + fr.insee + TYPE_QUEST + 1 + InParameter + + + fr.insee + lldhn2ou-IP-2 + 1 + InParameter + + + if lldhn2ou-IP-1="1" then SEXE_CH else SEXE_CF + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + lldhnh87-GI + 1 + + fr.insee + ln0892lt + 1 + Variable + + + fr.insee + ll2b5mz0 + 1 + Variable + + + + vtl + + fr.insee + lldhnh87-IP-1 + 1 + + TYPE_QUEST + + + + fr.insee + lldhnh87-IP-2 + 1 + + TYPE_QUEST + + + + fr.insee + lldhnh87-GOP + 1 + + + + fr.insee + ln0892lt-GOP + 1 + OutParameter + + + fr.insee + lldhnh87-IP-1 + 1 + InParameter + + + + + fr.insee + TYPE_QUEST + 1 + InParameter + + + fr.insee + lldhnh87-IP-2 + 1 + InParameter + + + if lldhnh87-IP-1="1" then SEXE_U1H else SEXE_U1F + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + lldhp45c-GI + 1 + + fr.insee + ln0892lt + 1 + Variable + + + fr.insee + ll2b5mz0 + 1 + Variable + + + + vtl + + fr.insee + lldhp45c-IP-1 + 1 + + TYPE_QUEST + + + + fr.insee + lldhp45c-IP-2 + 1 + + TYPE_QUEST + + + + fr.insee + lldhp45c-GOP + 1 + + + + fr.insee + ln0892lt-GOP + 1 + OutParameter + + + fr.insee + lldhp45c-IP-1 + 1 + InParameter + + + + + fr.insee + TYPE_QUEST + 1 + InParameter + + + fr.insee + lldhp45c-IP-2 + 1 + InParameter + + + if lldhp45c-IP-1="1" then SEXE_U2H else SEXE_U2F + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + llmgtini-GI + 1 + + fr.insee + llde3pgg + 1 + QuestionItem + + + fr.insee + lldrj7dd + 1 + Variable + + + + vtl + + fr.insee + llmgtini-IP-1 + 1 + + SEXE_CF + + + + fr.insee + llmgtini-GOP + 1 + + + + fr.insee + llde3pgg-QOP-lldeidzi + 1 + OutParameter + + + fr.insee + llmgtini-IP-1 + 1 + InParameter + + + if (isnull(llmgtini-IP-1)) then "" else (if llmgtini-IP-1="2" then "e" else "") + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ln0892lt-GI + 1 + + + vtl + + fr.insee + ln0892lt-GOP + 1 + + "2" + + + + fr.insee + Sequence-lnycjn6n + 1 + Sequence + + + + + fr.insee + INSEE-SIMPSONS-MRS + 1 + + Liste de formats numériques et dates de + l'enquête + Numeric and DateTime list for the survey + + + fr.insee + INSEE-COMMUN-MNR-DateTimedate-YYYY-MM-DD + 1 + YYYY-MM-DD + date + + 1900-01-01 + format-date(current-date(),'[Y0001]-[M01]-[D01]') + + + + + + fr.insee + StudyUnit-lnycjn6n + 1 + + + fr.insee + DataCollection-lnycjn6n + 1 + + fr.insee + QuestionScheme-lnycjn6n + 1 + QuestionScheme + + + fr.insee + ControlConstructScheme-lnycjn6n + 1 + ControlConstructScheme + + + fr.insee + InterviewerInstructionScheme-lnycjn6n + 1 + InterviewerInstructionScheme + + + fr.insee + InstrumentScheme-lnycjn6n + 1 + + fr.insee + Instrument-lnycjn6n + 1 + + ENQFAMI24 + + + VraiQuest - Enquête Familles 2024 V6 Livraison questionnaire + + A définir + + fr.insee + Sequence-lnycjn6n + 1 + Sequence + + + + + + diff --git a/eno-core/src/test/resources/functional/lunatic/Note.txt b/eno-core/src/test/resources/functional/lunatic/Note.txt index bfe85ad20..d1c937bfd 100644 --- a/eno-core/src/test/resources/functional/lunatic/Note.txt +++ b/eno-core/src/test/resources/functional/lunatic/Note.txt @@ -1,2 +1,2 @@ -Questionnaires generated using the /questionnaire/HOUSEHOLD/lunatic-json/CAWI endpoint from Eno "xml" web-service. -(Identation added for readability.) +Questionnaires generated using Eno "xml" service. +(Identation added for readability.) \ No newline at end of file diff --git a/eno-core/src/test/resources/functional/lunatic/pagination/lunatic-llxh9g6g.json b/eno-core/src/test/resources/functional/lunatic/pagination/lunatic-llxh9g6g.json new file mode 100644 index 000000000..0ff7f9c3c --- /dev/null +++ b/eno-core/src/test/resources/functional/lunatic/pagination/lunatic-llxh9g6g.json @@ -0,0 +1,27990 @@ +{ + "id": "llxh9g6g", + "modele": "m1", + "enoCoreVersion": "2.4.10", + "lunaticModelVersion": "2.3.4", + "generatingDate": "23-11-2023 15:06:42", + "missing": false, + "pagination": "question", + "maxPage": "173", + "label": { + "value": "VraiQuest - Enquête Logement - Séquence 1 (ENL en 2023 sur Internet)", + "type": "VTL|MD" + }, + "components": [ + { + "id": "kb9hi4j0", + "componentType": "Sequence", + "page": "1", + "label": { + "value": "\"I - \" || \"Adresse\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kb9hi4j0-krnoclfe", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Nous allons vous interroger sur le logement situé à l’adresse suivante : \" || ADRESSE", + "type": "VTL|MD" + } + }, + { + "id": "kb9hi4j0-kwgg3npw", + "declarationType": "INSTRUCTION", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Appuyer sur \"Continuer\" pour passer à la page suivante.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "true", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kb9hi4j0", + "page": "1", + "label": { + "value": "\"I - \" || \"Adresse\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "ADRESSE" + ] + }, + { + "id": "kb9hlpdc", + "componentType": "Radio", + "mandatory": false, + "page": "2", + "label": { + "value": "\"Confirmez-vous que vous habitez toujours à l’adresse suivante : \" || ADRESSE || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "true", + "type": "VTL" + }, + "controls": [ + { + "id": "kb9hlpdc-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(nvl(CADR, \"\") = \"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "Votre réponse est importante pour le bon déroulement du questionnaire. Merci de répondre à cette question.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "CADR" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kb9hi4j0", + "page": "1", + "label": { + "value": "\"I - \" || \"Adresse\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "ADRESSE", + "CADR" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui, j’habite toujours à cette adresse et l’adresse est correcte et complète", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Oui, j’habite toujours à cette adresse, mais l’adresse est incorrecte ou incomplète", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Non, j’ai déménagé et habite à une autre adresse", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Non, je n’ai jamais habité à cette adresse", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "CADR" + } + }, + { + "id": "kbakywwy", + "componentType": "Input", + "mandatory": false, + "page": "3", + "maxLength": 10, + "label": { + "value": "Numéro de voie :", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "krp3zark-SI", + "declarationType": "STATEMENT", + "position": "BEFORE_QUESTION_TEXT", + "label": { + "value": "Pouvez-vous indiquer votre adresse ci-dessous ?", + "type": "VTL|MD" + } + }, + { + "id": "krp3lw6x-SI", + "declarationType": "STATEMENT", + "position": "BEFORE_QUESTION_TEXT", + "label": { + "value": "Cette adresse sera utilisée pour envoyer les courriers.", + "type": "VTL|MD" + } + }, + { + "id": "kbakywwy-kbal5fzg", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "En précisant bis, ter si besoin. Par exemple : 12 bis.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"2\")", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "kb9hi4j0", + "page": "1", + "label": { + "value": "\"I - \" || \"Adresse\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "NUMTH_COLL" + ], + "response": { + "name": "NUMTH_COLL" + } + }, + { + "id": "kbal4bzb", + "componentType": "Input", + "mandatory": false, + "page": "4", + "maxLength": 50, + "label": { + "value": "Libellé de la voie :", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kbal4bzb-kbalg7ww", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Saisissez le type et le nom de la voie. Par exemple : rue des Plantes.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"2\")", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "controls": [ + { + "id": "kbal4bzb-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(nvl(ADR_COLL, \"\") = \"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "Vous n’avez pas renseigné votre voie. Merci de renseigner votre adresse complète.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ADR_COLL" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kb9hi4j0", + "page": "1", + "label": { + "value": "\"I - \" || \"Adresse\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "ADR_COLL" + ], + "response": { + "name": "ADR_COLL" + } + }, + { + "id": "kbalhn4i", + "componentType": "Input", + "mandatory": false, + "page": "5", + "maxLength": 50, + "label": { + "value": "Complément d’adresse :", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kbalhn4i-kbalm3fl", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Précisez un bâtiment, un lieu-dit…", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"2\")", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "kb9hi4j0", + "page": "1", + "label": { + "value": "\"I - \" || \"Adresse\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "CADRTH_COLL" + ], + "response": { + "name": "CADRTH_COLL" + } + }, + { + "id": "kbal8crw", + "componentType": "Input", + "mandatory": false, + "page": "6", + "maxLength": 5, + "label": { + "value": "Code postal :", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kbal8crw-kbal97f4", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Pour PARIS, LYON et MARSEILLE, précisez l’arrondissement. Par exemple : 75012.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"2\")", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "controls": [ + { + "id": "kbal8crw-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(nvl(CODEPOST1_COLL, \"\") = \"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "Vous n’avez pas renseigné votre code postal. Merci de renseigner votre adresse complète.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "CODEPOST1_COLL" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kb9hi4j0", + "page": "1", + "label": { + "value": "\"I - \" || \"Adresse\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "CODEPOST1_COLL" + ], + "response": { + "name": "CODEPOST1_COLL" + } + }, + { + "id": "kbal9dwk", + "componentType": "Input", + "mandatory": false, + "page": "7", + "maxLength": 100, + "label": { + "value": "Commune :", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"2\")", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "controls": [ + { + "id": "kbal9dwk-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(nvl(LIBCOM_COLL, \"\") = \"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "Vous n’avez pas renseigné votre commune. Merci de renseigner votre adresse complète. ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "LIBCOM_COLL" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kb9hi4j0", + "page": "1", + "label": { + "value": "\"I - \" || \"Adresse\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "LIBCOM_COLL" + ], + "response": { + "name": "LIBCOM_COLL" + } + }, + { + "id": "kqwen63d", + "componentType": "Subsequence", + "goToPage": "8", + "label": { + "value": "Nouveaux occupants", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"3\")", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "kb9hi4j0", + "page": "1", + "label": { + "value": "\"I - \" || \"Adresse\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kqwen63d", + "page": "8", + "label": { + "value": "Nouveaux occupants", + "type": "VTL|MD" + } + } + } + }, + { + "id": "kqweh61i", + "componentType": "Radio", + "mandatory": false, + "page": "8", + "label": { + "value": "\"Connaissez-vous le nom de la ou des personnes qui vous ont succédé dans le logement situé à l’adresse suivante : \" || ADRESSE || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"3\")", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "kb9hi4j0", + "page": "1", + "label": { + "value": "\"I - \" || \"Adresse\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kqwen63d", + "page": "8", + "label": { + "value": "Nouveaux occupants", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "ADRESSE", + "INDNVOCC" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "INDNVOCC" + } + }, + { + "id": "kqwga16w", + "componentType": "Input", + "mandatory": false, + "page": "9", + "maxLength": 40, + "label": { + "value": "Nom :", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kqwg4t12-SI", + "declarationType": "STATEMENT", + "position": "BEFORE_QUESTION_TEXT", + "label": { + "value": "\"Pouvez-vous indiquer le nom ou éventuellement les noms des habitants du logement situé à l’adresse : \" || ADRESSE || \" ?\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"3\") and (INDNVOCC = \"1\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "INDNVOCC" + ] + }, + "hierarchy": { + "sequence": { + "id": "kb9hi4j0", + "page": "1", + "label": { + "value": "\"I - \" || \"Adresse\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kqwen63d", + "page": "8", + "label": { + "value": "Nouveaux occupants", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "ADRESSE", + "NOMNVOCC1" + ], + "response": { + "name": "NOMNVOCC1" + } + }, + { + "id": "kqwfswjj", + "componentType": "Input", + "mandatory": false, + "page": "10", + "maxLength": 20, + "label": { + "value": "Prénom :", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"3\") and (INDNVOCC = \"1\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "INDNVOCC" + ] + }, + "hierarchy": { + "sequence": { + "id": "kb9hi4j0", + "page": "1", + "label": { + "value": "\"I - \" || \"Adresse\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kqwen63d", + "page": "8", + "label": { + "value": "Nouveaux occupants", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMNVOCC1" + ], + "response": { + "name": "PRENOMNVOCC1" + } + }, + { + "id": "kqwfedoy", + "componentType": "Input", + "mandatory": false, + "page": "11", + "maxLength": 40, + "label": { + "value": "Nom d’un éventuel deuxième occupant :", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"3\") and (INDNVOCC = \"1\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "INDNVOCC" + ] + }, + "hierarchy": { + "sequence": { + "id": "kb9hi4j0", + "page": "1", + "label": { + "value": "\"I - \" || \"Adresse\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kqwen63d", + "page": "8", + "label": { + "value": "Nouveaux occupants", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "NOMNVOCC2" + ], + "response": { + "name": "NOMNVOCC2" + } + }, + { + "id": "kqwg9azb", + "componentType": "Input", + "mandatory": false, + "page": "12", + "maxLength": 20, + "label": { + "value": "Prénom d’un éventuel deuxième occupant :", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"3\") and (INDNVOCC = \"1\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "INDNVOCC" + ] + }, + "hierarchy": { + "sequence": { + "id": "kb9hi4j0", + "page": "1", + "label": { + "value": "\"I - \" || \"Adresse\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kqwen63d", + "page": "8", + "label": { + "value": "Nouveaux occupants", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMNVOCC2" + ], + "response": { + "name": "PRENOMNVOCC2" + } + }, + { + "id": "kr0e0pav", + "componentType": "Input", + "mandatory": false, + "page": "13", + "maxLength": 10, + "label": { + "value": "\"Pouvez-vous indiquer un numéro de téléphone \" || if (isnull(NOMNVOCC2) and isnull(PRENOMNVOCC2)) then \"de l’occupant du logement ?\" else \"des occupants du logement ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kr0e0pav-kr0e4p61", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Ne pas mettre d’espace, de \"/\", de \"-\" ni de \".\" entre les numéros. Ex. : 0147200001", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"3\") and (INDNVOCC = \"1\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "INDNVOCC" + ] + }, + "hierarchy": { + "sequence": { + "id": "kb9hi4j0", + "page": "1", + "label": { + "value": "\"I - \" || \"Adresse\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kqwen63d", + "page": "8", + "label": { + "value": "Nouveaux occupants", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "NOMNVOCC2", + "PRENOMNVOCC2", + "TELNVOCC" + ], + "response": { + "name": "TELNVOCC" + } + }, + { + "id": "kr0ee3u2", + "componentType": "Input", + "mandatory": false, + "page": "14", + "maxLength": 249, + "label": { + "value": "\"Pouvez-vous indiquer un mail \" || if (isnull(NOMNVOCC2) and isnull(PRENOMNVOCC2)) then \"de l’occupant du logement ?\" else \"des occupants du logement ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"3\") and (INDNVOCC = \"1\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "INDNVOCC" + ] + }, + "hierarchy": { + "sequence": { + "id": "kb9hi4j0", + "page": "1", + "label": { + "value": "\"I - \" || \"Adresse\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kqwen63d", + "page": "8", + "label": { + "value": "Nouveaux occupants", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "NOMNVOCC2", + "PRENOMNVOCC2", + "MAILNVOCC" + ], + "response": { + "name": "MAILNVOCC" + } + }, + { + "id": "jruq5os5", + "componentType": "Sequence", + "page": "15", + "label": { + "value": "\"II - \" || \"Description des habitants du logement\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "jruq5os5-kqhuxnyt", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Nous allons commencer par décrire rapidement les personnes qui vivent habituellement dans ce logement, même si elles sont temporairement absentes.", + "type": "VTL|MD" + } + }, + { + "id": "jruq5os5-kwgh1n9c", + "declarationType": "INSTRUCTION", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Appuyer sur \"Continuer\" pour passer à la page suivante.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "jruq5os5", + "page": "15", + "label": { + "value": "\"II - \" || \"Description des habitants du logement\"", + "type": "VTL|MD" + } + } + } + }, + { + "id": "kbc1b4k2", + "componentType": "InputNumber", + "mandatory": false, + "page": "16", + "min": 1, + "max": 15, + "decimals": 0, + "label": { + "value": "Au total, en vous comptant, combien de personnes habitent dans ce logement ?", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kbc1b4k2-kbc1gah1", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Inclure les enfants habitant aussi ailleurs pour leurs études, les conjoints éloignés pour leur travail, les enfants en résidence alternée, les employés de maison ou jeunes au pair habitant dans le logement, les personnes âgées vivant partiellement en maison de retraite ou en institution…", + "type": "VTL|MD" + } + }, + { + "id": "kbc1b4k2-kqhv3glr", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Exclure les personnes ayant l’intention de résider moins de 12 mois en France.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "controls": [ + { + "id": "kbc1b4k2-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(NBHAB)) and (1>NBHAB or 15NBHAB)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "kbc1b4k2-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(nvl(NBHAB,0) = 0)", + "type": "VTL" + }, + "errorMessage": { + "value": "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer le nombre d’habitants du logement.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NBHAB" + ] + }, + { + "id": "kbc1b4k2-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((instr(cast(nvl(NBHAB,0),string),\".\") <> 0) or (instr(cast(nvl(NBHAB,0),string),\",) <> 0))", + "type": "VTL" + }, + "errorMessage": { + "value": "Merci de ne pas renseigner de chiffre après la virgule.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NBHAB" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "jruq5os5", + "page": "15", + "label": { + "value": "\"II - \" || \"Description des habitants du logement\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "NBHAB" + ], + "response": { + "name": "NBHAB" + } + }, + { + "id": "kmnnjaf1", + "componentType": "Sequence", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kmnnjaf1-kr0tdccr", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "libINTROPRENOM", + "type": "VTL|MD" + } + }, + { + "id": "kmnnjaf1-kr0syent", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "libINTROPRENOM2", + "type": "VTL|MD" + } + }, + { + "id": "kmnnjaf1-kwggla1b", + "declarationType": "INSTRUCTION", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Appuyer sur \"Continuer\" pour passer à la page suivante.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libINTROPRENOM", + "libINTROPRENOM2" + ] + }, + { + "id": "kmnolkxb", + "componentType": "Loop", + "page": "18", + "depth": 1, + "paginatedLoop": false, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "NHAB", + "PRENOMREF", + "G_PRENOM", + "NBHAB" + ], + "loopDependencies": [ + "NHAB" + ], + "lines": { + "min": { + "value": "cast(NHAB,integer)", + "type": "VTL" + }, + "max": { + "value": "cast(NHAB,integer)", + "type": "VTL" + } + }, + "components": [ + { + "id": "kmnnxf2w", + "componentType": "Subsequence", + "page": "18", + "goToPage": "18", + "label": { + "value": "if (isnull(PRENOMREF) or G_PRENOM=PRENOMREF) then \"Prénoms des habitants du logement\" else \"\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kmnnxf2w", + "page": "18", + "label": { + "value": "if (isnull(PRENOMREF) or G_PRENOM=PRENOMREF) then \"Prénoms des habitants du logement\" else \"\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREF", + "G_PRENOM", + "NHAB" + ] + }, + { + "id": "kmno1n7m", + "componentType": "Input", + "mandatory": false, + "page": "18", + "maxLength": 20, + "label": { + "value": "\" \" || if (isnull(NBHAB) or cast(NBHAB,integer)=1) then \"Votre prénom : \" else (if ( not(isnull(G_PRENOM)) and G_PRENOM=PRENOMREF ) then \"Votre prénom : \" else ( if (isnull(PRENOMREF) and isnull(G_PRENOM)) then \"Prénom (commencez par votre prénom) : \" else \"Prénom : \"))", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "controls": [ + { + "id": "kmno1n7m-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not((nvl(G_PRENOM, \"\") = \"\") and (isnull(NBHAB) or cast(NBHAB,integer)=1))", + "type": "VTL" + }, + "errorMessage": { + "value": "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre prénom (ou vos initiales, ou autre) pour pouvoir poursuivre le questionnaire.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "G_PRENOM", + "NBHAB" + ] + }, + { + "id": "kmno1n7m-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(G_PRENOM, \"\") = \"\") and (not(isnull(NBHAB)) and cast(NBHAB,integer)>1))", + "type": "VTL" + }, + "errorMessage": { + "value": "Merci d’indiquer l’ensemble des prénoms (initiales ou autre) afin de pouvoir vous repérer dans la suite du questionnaire lorsque les questions porteront sur une personne en particulier.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "G_PRENOM", + "NBHAB" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kmnnxf2w", + "page": "18", + "label": { + "value": "if (isnull(PRENOMREF) or G_PRENOM=PRENOMREF) then \"Prénoms des habitants du logement\" else \"\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "NBHAB", + "G_PRENOM", + "PRENOMREF", + "NHAB" + ], + "response": { + "name": "G_PRENOM" + } + } + ] + }, + { + "id": "kmooeas1", + "componentType": "Loop", + "page": "19", + "maxPage": "8", + "depth": 1, + "paginatedLoop": true, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "DATENAIS", + "persplus18TR", + "persplus18AGE", + "LIB_FEM", + "NATIO1N1", + "NATIO1N2", + "NATIO1N4", + "NATIO1N3", + "SEXE", + "TRAGE", + "LNAIS", + "DEPNAIS", + "PAYSNAIS", + "NATIO2N" + ], + "loopDependencies": [ + "G_PRENOM" + ], + "components": [ + { + "id": "kmnoigj8", + "componentType": "Subsequence", + "goToPage": "19.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Votre état civil\" else \"État civil de \" || PRENOM", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kmnoigj8", + "page": "19.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Votre état civil\" else \"État civil de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "G_PRENOM" + ] + }, + { + "id": "kmoo2fiy", + "componentType": "Radio", + "mandatory": false, + "page": "19.1", + "label": { + "value": "\"Quel est \" || if (PRENOM=PRENOMREF) then \"votre sexe ?\" else \"le sexe de \" || PRENOM || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kmnoigj8", + "page": "19.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Votre état civil\" else \"État civil de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "SEXE", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Masculin", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Féminin", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEXE" + } + }, + { + "id": "kmoouamz", + "componentType": "Datepicker", + "mandatory": false, + "page": "19.2", + "min": "1900-01-01", + "max": "2022-12-31", + "label": { + "value": "\"Quelle est \" || if (PRENOM=PRENOMREF) then \"votre date de naissance ?\" else \"la date de naissance de \" || PRENOM ||\" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "controls": [ + { + "id": "kmoouamz-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(DATENAIS)) and (cast(DATENAIS, date, \"YYYY-MM-DD\")>cast(\"2022-12-31\", date, \"YYYY-MM-DD\") or cast(DATENAIS, date, \"YYYY-MM-DD\")PRENOMREF))", + "type": "VTL" + }, + "errorMessage": { + "value": "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer une date de naissance.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "DATENAIS", + "PRENOM", + "PRENOMREF" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kmnoigj8", + "page": "19.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Votre état civil\" else \"État civil de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "DATENAIS", + "G_PRENOM" + ], + "dateFormat": "YYYY-MM-DD", + "response": { + "name": "DATENAIS" + } + }, + { + "id": "kmx6w6n5", + "componentType": "Radio", + "mandatory": false, + "page": "19.3", + "label": { + "value": "\"Vous n’avez pas indiqué de date de naissance, pouvez-vous indiquer la tranche d’âge dans laquelle \" || if (PRENOM=PRENOMREF) then \"vous vous situez ?\" else \"se situe\" || \" \" || PRENOM || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (nvl(DATENAIS,\"\")=\"\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "DATENAIS" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kmnoigj8", + "page": "19.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Votre état civil\" else \"État civil de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "TRAGE", + "G_PRENOM" + ], + "options": [ + { + "value": "4", + "label": { + "value": "Moins de 15 ans", + "type": "VTL|MD" + } + }, + { + "value": "1", + "label": { + "value": "De 15 à 18 ans", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "De 18 à 25 ans", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Plus de 25 ans", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "TRAGE" + } + }, + { + "id": "kmookacu", + "componentType": "Radio", + "mandatory": false, + "page": "19.4", + "label": { + "value": "\"Où \"|| if (PRENOM=PRENOMREF) then \"êtes-vous né\" || LIB_FEM || \" ?\" else \"est né\" || LIB_FEM || \" \" || PRENOM || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kmookacu-lo8om6yc", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "cast(persplus18TR,string)", + "type": "VTL|MD" + } + }, + { + "id": "kmookacu-lo8onkqg", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "cast(persplus18AGE,string)", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kmnoigj8", + "page": "19.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Votre état civil\" else \"État civil de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "persplus18TR", + "persplus18AGE", + "PRENOM", + "PRENOMREF", + "LIB_FEM", + "LNAIS", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "En France (y compris outre-mer)", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "À l’étranger", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "LNAIS" + } + }, + { + "id": "kmor2z1x", + "componentType": "Input", + "mandatory": false, + "page": "19.5", + "maxLength": 20, + "label": { + "value": "\"Dans quel département \"|| if (PRENOM=PRENOMREF) then \"êtes-vous né\" || LIB_FEM || \" ?\" else \"est né\" || LIB_FEM || \" \" || PRENOM || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kmor2z1x-kwzak25x", + "declarationType": "INSTRUCTION", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Saisir le code ou les premières lettres du département afin de le sélectionner dans la liste proposée", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (LNAIS =\"1\" and (persplus18TR=\"1\" or persplus18AGE=\"1\"))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "LNAIS", + "persplus18TR", + "TRAGE", + "persplus18AGE", + "DATENAIS", + "AGE" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kmnoigj8", + "page": "19.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Votre état civil\" else \"État civil de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "LIB_FEM", + "DEPNAIS", + "G_PRENOM" + ], + "response": { + "name": "DEPNAIS" + } + }, + { + "id": "kmorege9", + "componentType": "Input", + "mandatory": false, + "page": "19.6", + "maxLength": 20, + "label": { + "value": "\"Dans quel pays \"|| if (PRENOM=PRENOMREF) then \"êtes-vous né\" || LIB_FEM || \" ?\" else \"est né\" || LIB_FEM || \" \" || PRENOM || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kmorege9-kwyzaj0t", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Prendre en compte les frontières actuelles.", + "type": "VTL|MD" + } + }, + { + "id": "kmorege9-kwzasuub", + "declarationType": "INSTRUCTION", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Saisir les premières lettres du pays afin de le sélectionner dans la liste proposée", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (LNAIS = \"2\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "LNAIS" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kmnoigj8", + "page": "19.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Votre état civil\" else \"État civil de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "LIB_FEM", + "PAYSNAIS", + "G_PRENOM" + ], + "response": { + "name": "PAYSNAIS" + } + }, + { + "id": "kmort6x9", + "componentType": "CheckboxGroup", + "page": "19.7", + "label": { + "value": "\"Quelle est \"|| if (PRENOM=PRENOMREF) then \"votre nationalité ?\" else \"la nationalité de \" || PRENOM || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kmort6x9-kmorxjxc", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Plusieurs réponses possibles", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "controls": [ + { + "id": "kmort6x9-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not((nvl(NATIO1N1, false) = true and nvl(NATIO1N2, false) = true) or (nvl(NATIO1N1, false) = true and nvl(NATIO1N4, false) = true) or (nvl(NATIO1N2, false) = true and nvl(NATIO1N4, false) = true) or (nvl(NATIO1N3, false) = true and nvl(NATIO1N4, false) = true))", + "type": "VTL" + }, + "errorMessage": { + "value": "Ces réponses sont incompatibles. Merci de corriger votre réponse.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NATIO1N1", + "NATIO1N2", + "NATIO1N4", + "NATIO1N3" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kmnoigj8", + "page": "19.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Votre état civil\" else \"État civil de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "NATIO1N1", + "NATIO1N2", + "NATIO1N3", + "NATIO1N4", + "G_PRENOM" + ], + "responses": [ + { + "id": "kmort6x9-QOP-kmosa98y", + "label": { + "value": "Française de naissance ou par réintégration", + "type": "VTL|MD" + }, + "response": { + "name": "NATIO1N1" + } + }, + { + "id": "kmort6x9-QOP-kmos360k", + "label": { + "value": "\"Française par déclaration, naturalisation, option à \" || if (PRENOM=PRENOMREF) then \"votre majorité\" else \"sa majorité\"", + "type": "VTL|MD" + }, + "response": { + "name": "NATIO1N2" + } + }, + { + "id": "kmort6x9-QOP-kmos37e1", + "label": { + "value": "Étrangère", + "type": "VTL|MD" + }, + "response": { + "name": "NATIO1N3" + } + }, + { + "id": "kmort6x9-QOP-kmorue9c", + "label": { + "value": "Apatride (pas de nationalité)", + "type": "VTL|MD" + }, + "response": { + "name": "NATIO1N4" + } + } + ] + }, + { + "id": "kmos2yo6", + "componentType": "Input", + "mandatory": false, + "page": "19.8", + "maxLength": 20, + "label": { + "value": "\"Quelle est \"|| if (PRENOM=PRENOMREF) then \"votre nationalité étrangère ?\" else \"la nationalité étrangère de \" || PRENOM || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kmos2yo6-kwzb4byw", + "declarationType": "INSTRUCTION", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Saisir les premières lettres de la nationalité afin de la sélectionner dans la liste proposée", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (NATIO1N3 = true)", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "NATIO1N3" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kmnoigj8", + "page": "19.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Votre état civil\" else \"État civil de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "NATIO2N", + "G_PRENOM" + ], + "response": { + "name": "NATIO2N" + } + } + ], + "iterations": { + "value": "count(G_PRENOM)", + "type": "VTL" + } + }, + { + "id": "kmw4iq4w", + "componentType": "Loop", + "page": "20", + "maxPage": "3", + "depth": 1, + "paginatedLoop": true, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "LIB_FEM", + "LIB_PARENT", + "LIB_ENFANT", + "SEXE", + "LIB_GDPARENT", + "LIB_PTENFANT", + "LIB_SUJET", + "LIB_VEUF", + "LIEN", + "COUPLE", + "SITUMATRI1", + "SITUMATRI2", + "SITUMATRI3", + "SITUMATRI4", + "SITUMATRI5", + "SITUMATRI6" + ], + "loopDependencies": [ + "G_PRENOM" + ], + "components": [ + { + "id": "kmw3dz2a", + "componentType": "Subsequence", + "goToPage": "20.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Votre situation familiale\" else \"Situation familiale de \" || PRENOM", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kmw3dz2a", + "page": "20.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Votre situation familiale\" else \"Situation familiale de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "G_PRENOM" + ] + }, + { + "id": "kmw4revw", + "componentType": "Radio", + "mandatory": false, + "page": "20.1", + "label": { + "value": "\"Qui est \"|| PRENOM || \" pour vous ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (PRENOM <> PRENOMREF)", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "PRENOM", + "G_PRENOM", + "PRENOMVIDE", + "PRENOMREF" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kmw3dz2a", + "page": "20.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Votre situation familiale\" else \"Situation familiale de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "LIB_FEM", + "LIB_PARENT", + "LIB_ENFANT", + "SEXE", + "LIB_GDPARENT", + "LIB_PTENFANT", + "LIEN", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Votre conjoint\"||LIB_FEM", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "LIB_PARENT", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "LIB_ENFANT", + "type": "VTL|MD" + } + }, + { + "value": "8", + "label": { + "value": "if (nvl(SEXE,\"\")=\"\") then \"Votre frère, votre sœur, votre demi-frère, votre demi-soeur\" else (if (SEXE = \"2\") then \"Votre soeur, votre demi-soeur\" else (if (SEXE = \"1\") then \"Votre frère, votre demi-frère \" else \"Votre frère, votre sœur, votre demi-frère, votre demi-sœur\"))", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "LIB_GDPARENT", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "LIB_PTENFANT", + "type": "VTL|MD" + } + }, + { + "value": "6", + "label": { + "value": "Un autre membre de votre famille", + "type": "VTL|MD" + } + }, + { + "value": "7", + "label": { + "value": "\"Une autre personne (ami\"||LIB_FEM||\", colocataire...)\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "LIEN" + } + }, + { + "id": "kod271pp", + "componentType": "Radio", + "mandatory": false, + "page": "20.2", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Vivez-vous en couple ?\" else PRENOM || \" vit-\" || LIB_SUJET || \" en couple ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((not(isnull(LIEN)) and LIEN<>\"1\") or (PRENOM=PRENOMREF)) and ((persplus18TR=\"1\" or persplus18AGE=\"1\"))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "LIEN", + "PRENOM", + "G_PRENOM", + "PRENOMVIDE", + "PRENOMREF", + "persplus18TR", + "TRAGE", + "persplus18AGE", + "DATENAIS", + "AGE" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kmw3dz2a", + "page": "20.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Votre situation familiale\" else \"Situation familiale de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "LIB_SUJET", + "COUPLE", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui, avec une personne qui vit dans le logement", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Oui, avec une personne qui ne vit pas dans le logement", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "COUPLE" + } + }, + { + "id": "kmw5h275", + "componentType": "CheckboxGroup", + "page": "20.3", + "label": { + "value": "\"Quelle est \" || if (PRENOM=PRENOMREF) then \"votre situation matrimoniale ?\" else \"la situation matrimoniale de \" || PRENOM || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((not(isnull(LIEN)) and LIEN<>\"1\") or (PRENOM=PRENOMREF)) and ((persplus18TR=\"1\" or persplus18AGE=\"1\"))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "LIEN", + "PRENOM", + "G_PRENOM", + "PRENOMVIDE", + "PRENOMREF", + "persplus18TR", + "TRAGE", + "persplus18AGE", + "DATENAIS", + "AGE" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kmw3dz2a", + "page": "20.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Votre situation familiale\" else \"Situation familiale de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "LIB_FEM", + "LIB_VEUF", + "SITUMATRI1", + "SITUMATRI2", + "SITUMATRI3", + "SITUMATRI4", + "SITUMATRI5", + "SITUMATRI6", + "G_PRENOM" + ], + "responses": [ + { + "id": "kmw5h275-QOP-kqi51gzp", + "label": { + "value": "\"Marié\"||LIB_FEM", + "type": "VTL|MD" + }, + "response": { + "name": "SITUMATRI1" + } + }, + { + "id": "kmw5h275-QOP-kqi557ae", + "label": { + "value": "\"Pacsé\"||LIB_FEM", + "type": "VTL|MD" + }, + "response": { + "name": "SITUMATRI2" + } + }, + { + "id": "kmw5h275-QOP-kqi572vy", + "label": { + "value": "En concubinage ou union libre", + "type": "VTL|MD" + }, + "response": { + "name": "SITUMATRI3" + } + }, + { + "id": "kmw5h275-QOP-kqi54qj5", + "label": { + "value": "LIB_VEUF", + "type": "VTL|MD" + }, + "response": { + "name": "SITUMATRI4" + } + }, + { + "id": "kmw5h275-QOP-kqi5ewaq", + "label": { + "value": "\"Divorcé\"||LIB_FEM||\", dépacsé\"||LIB_FEM||\", rupture d’union libre\"", + "type": "VTL|MD" + }, + "response": { + "name": "SITUMATRI5" + } + }, + { + "id": "kmw5h275-QOP-kqi5h0rk", + "label": { + "value": "Célibataire", + "type": "VTL|MD" + }, + "response": { + "name": "SITUMATRI6" + } + } + ] + } + ], + "iterations": { + "value": "count(G_PRENOM)", + "type": "VTL" + } + }, + { + "id": "kmx8gebp", + "componentType": "Loop", + "page": "21", + "maxPage": "8", + "depth": 1, + "paginatedLoop": true, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "ADRCOLLC", + "LIB_SUJET", + "UNLOG", + "DURLOG", + "LOGENQ", + "LOGAUT", + "GARDE", + "DORM", + "LOGCO", + "TYPLOGCO" + ], + "loopDependencies": [ + "G_PRENOM" + ], + "components": [ + { + "id": "kmukkury", + "componentType": "Subsequence", + "goToPage": "21.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Vos lieux de vie\" else \"Lieux de vie de \" || PRENOM", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kmukkury", + "page": "21.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Vos lieux de vie\" else \"Lieux de vie de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "G_PRENOM" + ] + }, + { + "id": "kmx8sgeu", + "componentType": "Radio", + "mandatory": false, + "page": "21.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Vivez-vous uniquement dans ce logement ou aussi dans un autre logement ?\" else PRENOM || \" vit-\" || LIB_SUJET || \" uniquement dans ce logement ou aussi dans un autre logement ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kmx8sgeu-kvl9opds", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\" « Ce logement » désigne le logement situé à cette adresse : \" || ADRCOLLC || \".\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kmukkury", + "page": "21.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Vos lieux de vie\" else \"Lieux de vie de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "ADRCOLLC", + "PRENOM", + "PRENOMREF", + "LIB_SUJET", + "UNLOG", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Vous vivez uniquement dans ce logement\" else PRENOM || \" vit uniquement dans ce logement\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Vous vivez aussi dans un autre logement\" else PRENOM || \" vit aussi dans un autre logement\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "UNLOG" + } + }, + { + "id": "kmx97ttc", + "componentType": "Radio", + "mandatory": false, + "page": "21.2", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Vous vivez dans le logement situé à l’adresse : \" || ADRCOLLC || \" ... ?\" else PRENOM || \" vit dans ce logement situé à l’adresse : \" || ADRCOLLC || \" ... ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (UNLOG = \"2\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "UNLOG" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kmukkury", + "page": "21.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Vos lieux de vie\" else \"Lieux de vie de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "ADRCOLLC", + "DURLOG", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Plus de la moitié du temps", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "La moitié du temps", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Moins de la moitié du temps", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "DURLOG" + } + }, + { + "id": "kmx97tz1", + "componentType": "Radio", + "mandatory": false, + "page": "21.3", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Pour vous, ce logement est... ?\" else \"Pour \" || PRENOM || \", ce logement est... ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kmx97tz1-kvlaj6p8", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\" « Ce logement » désigne le logement situé à cette adresse : \" || ADRCOLLC || \".\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (UNLOG = \"2\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "UNLOG" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kmukkury", + "page": "21.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Vos lieux de vie\" else \"Lieux de vie de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "ADRCOLLC", + "PRENOM", + "PRENOMREF", + "LOGENQ", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Votre résidence principale\" else \"Sa résidence principale\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Le logement de vos parents ou de l’un d’entre eux\" else \"Le logement de ses parents ou de l’un d’entre eux\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Un logement occupé pour vos études\" else \"Un logement occupé pour ses études\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Un logement occupé pour votre travail ou une formation professionnelle\" else \"Un logement occupé pour son travail ou une formation professionnelle\"", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Une résidence secondaire, un logement occupé pour vos vacances ou vos loisirs\" else \"Une résidence secondaire, un logement occupé pour ses vacances ou ses loisirs\"", + "type": "VTL|MD" + } + }, + { + "value": "6", + "label": { + "value": "Un logement occupé pour une autre raison", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "LOGENQ" + } + }, + { + "id": "kmx93med", + "componentType": "Radio", + "mandatory": false, + "page": "21.4", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Pour vous, l’autre logement où vous vivez est... ?\" else \"Pour \" || PRENOM || \", l’autre logement où \" || LIB_SUJET || \" vit est... ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kmx93med-kvm8n3pp", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Autre logement que celui situé à l’adresse : \" || ADRCOLLC", + "type": "VTL|MD" + } + }, + { + "id": "kmx93med-kvm8xhsc", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Si vous vivez dans plusieurs autres logements, décrivez l’autre logement dans lequel vous passez le plus de temps.\" else \"Si \"|| PRENOM || \" vit dans plusieurs autres logements, décrivez l’autre logement dans lequel \"|| LIB_SUJET || \" passe le plus de temps.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (UNLOG = \"2\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "UNLOG" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kmukkury", + "page": "21.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Vos lieux de vie\" else \"Lieux de vie de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "ADRCOLLC", + "PRENOM", + "PRENOMREF", + "LIB_SUJET", + "LOGAUT", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Votre résidence principale\" else \"Sa résidence principale\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Le logement de vos parents ou de l’un d’entre eux\" else \"Le logement de ses parents ou de l’un d’entre eux\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Un logement occupé pour vos études\" else \"Un logement occupé pour ses études\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Un logement occupé pour votre travail ou une formation professionnelle\" else \"Un logement occupé pour son travail ou une formation professionnelle\"", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Une résidence secondaire, un logement occupé pour vos vacances ou loisirs\" else \"Une résidence secondaire, un logement occupé pour ses vacances ou loisirs\"", + "type": "VTL|MD" + } + }, + { + "value": "6", + "label": { + "value": "Un logement occupé pour une autre raison", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "LOGAUT" + } + }, + { + "id": "kmx9punx", + "componentType": "Radio", + "mandatory": false, + "page": "21.5", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Êtes-vous en garde alternée chez vos deux parents ?\" else PRENOM || \" est-\" || LIB_SUJET || \" en garde alternée chez ses deux parents ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (UNLOG = \"2\") and (DURLOG = \"2\" and LOGENQ = \"2\" and LOGAUT = \"2\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "UNLOG", + "DURLOG", + "LOGENQ", + "LOGAUT" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kmukkury", + "page": "21.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Vos lieux de vie\" else \"Lieux de vie de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "LIB_SUJET", + "GARDE", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "GARDE" + } + }, + { + "id": "kmx9im0b", + "componentType": "Radio", + "mandatory": false, + "page": "21.6", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Où avez-vous dormi la nuit dernière ?\" else \"Où \" || PRENOM || \" a-t-\" || LIB_SUJET || \" dormi la nuit dernière ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kmx9im0b-kn7jf1jt", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Si vous avez dormi chez un(e) ami(e), indiquez le logement où vous deviez normalement dormir.\" else \"Si \" || PRENOM || \" a dormi chez un(e) ami(e), indiquez le logement où \" || LIB_SUJET || \" devait normalement dormir.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (UNLOG = \"2\") and (DURLOG = \"2\" and LOGENQ = \"2\" and LOGAUT = \"2\") and (GARDE = \"1\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "UNLOG", + "DURLOG", + "LOGENQ", + "LOGAUT", + "GARDE" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kmukkury", + "page": "21.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Vos lieux de vie\" else \"Lieux de vie de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "LIB_SUJET", + "ADRCOLLC", + "DORM", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Dans ce logement situé à l’adresse : \" || ADRCOLLC", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Dans le logement de \" || (if (PRENOM=PRENOMREF) then \"votre\" else \"son\") || \" autre parent\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "DORM" + } + }, + { + "id": "kqi4zdkk", + "componentType": "Radio", + "mandatory": false, + "page": "21.7", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"À propos de cet autre logement dans lequel vous vivez, s’agit-il d’une chambre dans une structure collective ?\" else \"À propos de cet autre logement dans lequel vit \" || PRENOM || \", s’agit-il d’une chambre dans une structure collective ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kqi4zdkk-kvm8hkmj", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Autre logement que celui situé à l’adresse : \" || ADRCOLLC", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (UNLOG = \"2\") and (LOGAUT = \"3\" or LOGAUT = \"4\" or LOGAUT = \"6\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "UNLOG", + "LOGAUT" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kmukkury", + "page": "21.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Vos lieux de vie\" else \"Lieux de vie de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "ADRCOLLC", + "PRENOM", + "PRENOMREF", + "LOGCO", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "LOGCO" + } + }, + { + "id": "kmx9pvyn", + "componentType": "Radio", + "mandatory": false, + "page": "21.8", + "label": { + "value": "De quelle structure s’agit-il ?", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kmx9pvyn-kvm8t64a", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Structure collective de l’autre logement que celui situé à l’adresse : \" || ADRCOLLC", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (UNLOG = \"2\") and (LOGAUT = \"3\" or LOGAUT = \"4\" or LOGAUT = \"6\") and (LOGCO = \"1\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "UNLOG", + "LOGAUT", + "LOGCO" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kmukkury", + "page": "21.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Vos lieux de vie\" else \"Lieux de vie de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "ADRCOLLC", + "TYPLOGCO", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Un internat, une résidence étudiante ou un foyer d’étudiants", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Un établissement pour personnes âgées (maison de retraite, Ehpad)", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Un foyer ou une résidence sociale (CADA, structures gérées par Adoma…), foyer de réinsertion ou foyer de travailleurs", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Une structure d’aide sociale à l’enfance ou de protection judiciaire", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Une structure pour personne nécessitant des soins médicaux (hôpital, maison de repos, centre de rééducation)", + "type": "VTL|MD" + } + }, + { + "value": "6", + "label": { + "value": "Une caserne, un camp militaire", + "type": "VTL|MD" + } + }, + { + "value": "7", + "label": { + "value": "Une autre structure (prison, communauté religieuse, hébergement d’urgence...)", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "TYPLOGCO" + } + } + ], + "iterations": { + "value": "count(G_PRENOM)", + "type": "VTL" + } + }, + { + "id": "kmx9wphw", + "componentType": "Loop", + "page": "22", + "maxPage": "7", + "depth": 1, + "paginatedLoop": true, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0)", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "nbpersmaj", + "persmaj", + "DATENAIS", + "TRAGE" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "LIB_FEM", + "SEXE", + "SITUA", + "LIB_SUJET", + "TRAVAIL", + "GRDIPA", + "GRDIPB", + "GRDIPC", + "TELET", + "TELETNJ" + ], + "loopDependencies": [ + "G_PRENOM" + ], + "components": [ + { + "id": "kmxa5rqb", + "componentType": "Subsequence", + "goToPage": "22.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Activité et formation\" else \"Activité et formation de \" || PRENOM", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "nbpersmaj", + "persmaj", + "DATENAIS", + "TRAGE", + "persplus18TR", + "persplus18AGE", + "AGE" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kmxa5rqb", + "page": "22.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Activité et formation\" else \"Activité et formation de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "G_PRENOM" + ] + }, + { + "id": "kmxfqrb1", + "componentType": "Radio", + "mandatory": false, + "page": "22.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Actuellement, quelle est votre situation principale ?\" else \"Actuellement, quelle est la situation principale de \" || PRENOM || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kmxfqrb1-krd9g6bh", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Si vous hésitez entre plusieurs situations, choisissez celle qui vous décrit le mieux, ou celle qui vous prend le plus de temps.\" else \"Si vous hésitez entre plusieurs situations, choisissez celle qui décrit le mieux \" || PRENOM || \", ou celle qui lui prend le plus de temps.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "nbpersmaj", + "persmaj", + "DATENAIS", + "TRAGE", + "persplus18TR", + "persplus18AGE", + "AGE" + ] + }, + "controls": [ + { + "id": "kmxfqrb1-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(nvl(SITUA, \"\") = \"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer une situation principale.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SITUA" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kmxa5rqb", + "page": "22.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Activité et formation\" else \"Activité et formation de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "LIB_FEM", + "SEXE", + "SITUA", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "En emploi", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Au chômage (inscrit\"|| LIB_FEM ||\" ou non à Pôle emploi)\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Retraité\"||LIB_FEM||\", préretraité\"||LIB_FEM", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "En incapacité de travailler en raison d’un handicap ou d’un problème de santé durable", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "En études", + "type": "VTL|MD" + } + }, + { + "value": "6", + "label": { + "value": "if (isnull(SEXE)) then \"Femme ou homme au foyer\" else (if (SEXE = \"2\") then \"Femme au foyer\" else \"Homme au foyer\")", + "type": "VTL|MD" + } + }, + { + "value": "7", + "label": { + "value": "Dans une autre situation", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SITUA" + } + }, + { + "id": "kmxg8ci7", + "componentType": "Radio", + "mandatory": false, + "page": "22.2", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Avez-vous cependant un emploi ?\" else PRENOM || \" a-t-\" || LIB_SUJET || \" cependant un emploi ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kmxg8ci7-kqi7dwk7", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Inclure : petit boulot, apprentissage, stage rémunéré, personne en congé \" || (if (isnull(SEXE)) then \"paternité, maternité\" else (if (cast(SEXE,string) = \"2\") then \"maternité\" else \"paternité\")) || \" ou parental, en congé maladie ou en chômage partiel, personne travaillant sans être rémunérée avec un membre de sa famille, élu.\"", + "type": "VTL|MD" + } + }, + { + "id": "kmxg8ci7-kqi7omwd", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Exclure le bénévolat.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (not(isnull(SITUA)) and (SITUA = \"2\" or SITUA = \"3\" or SITUA = \"4\" or SITUA = \"5\" or SITUA = \"6\" or SITUA = \"7\"))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "nbpersmaj", + "persmaj", + "DATENAIS", + "TRAGE", + "persplus18TR", + "persplus18AGE", + "AGE", + "SITUA" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kmxa5rqb", + "page": "22.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Activité et formation\" else \"Activité et formation de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "SEXE", + "PRENOM", + "PRENOMREF", + "LIB_SUJET", + "TRAVAIL", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "TRAVAIL" + } + }, + { + "id": "kmxgftfs", + "componentType": "Radio", + "mandatory": false, + "page": "22.3", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"À ce jour, quel est le plus haut diplôme ou titre que vous possédez ?\" else \"À ce jour, quel est le plus haut diplôme ou titre que \" || PRENOM || \" possède ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kmxgftfs-kqi89yfr", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Indiquez le niveau de diplôme au moment où vous l’avez obtenu, pas votre niveau actuel.\" else \"Indiquez le niveau de diplôme au moment où \" || PRENOM || \" l’a obtenu, pas son niveau actuel.\"", + "type": "VTL|MD" + } + }, + { + "id": "kmxgftfs-kqi81ih3", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Exclure : CQP, CACES, BAFA, permis de conduire, TOEIC ou autre test de langue, habilitations électriques ou de type équivalent.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "nbpersmaj", + "persmaj", + "DATENAIS", + "TRAGE", + "persplus18TR", + "persplus18AGE", + "AGE" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kmxa5rqb", + "page": "22.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Activité et formation\" else \"Activité et formation de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "GRDIPA", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Aucun diplôme", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "CEP (certificat d’études primaires)", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "BEPC, brevet élémentaire, brevet des collèges, DNB", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "CAP, BEP ou diplôme de niveau équivalent", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Baccalauréat (général, technologique ou professionnel), brevet supérieur, brevet professionnel, de technicien ou d’enseignement ou diplôme équivalent", + "type": "VTL|MD" + } + }, + { + "value": "6", + "label": { + "value": "Capacité en droit, DAEU, ESEU", + "type": "VTL|MD" + } + }, + { + "value": "7", + "label": { + "value": "BTS, DUT, Deug, Deust, diplôme de la santé ou du social de niveau bac+2 ou diplôme équivalent", + "type": "VTL|MD" + } + }, + { + "value": "8", + "label": { + "value": "Diplôme de niveau supérieur à bac+2 (licence, licence pro, maîtrise, master, DESS, DEA, doctorat, diplôme d’une grande école)", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "GRDIPA" + } + }, + { + "id": "kqi8s71l", + "componentType": "Radio", + "mandatory": false, + "page": "22.4", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Plus précisément, quel est votre niveau d’études ?\" else \"Plus précisément, quel est le niveau d’études de \" || PRENOM ||\" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (GRDIPA = \"1\" and not(isnull(GRDIPA)))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "nbpersmaj", + "persmaj", + "DATENAIS", + "TRAGE", + "persplus18TR", + "persplus18AGE", + "AGE", + "GRDIPA" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kmxa5rqb", + "page": "22.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Activité et formation\" else \"Activité et formation de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "GRDIPB", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "N’a jamais été à l’école ou l’a quittée avant la fin du primaire", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Scolarité jusqu’à la fin du primaire ou avant la fin du collège", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Scolarité jusqu’à la fin du collège ou au-delà", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "GRDIPB" + } + }, + { + "id": "kqi8mfos", + "componentType": "Radio", + "mandatory": false, + "page": "22.5", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Plus précisément, quel diplôme de niveau supérieur à bac+2 avez-vous obtenu ?\" else \"Plus précisément, quel diplôme de niveau supérieur à bac+2 \"|| PRENOM || \" a-t-\" || LIB_SUJET || \" obtenu ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(GRDIPA)) and GRDIPA = \"8\"))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "nbpersmaj", + "persmaj", + "DATENAIS", + "TRAGE", + "persplus18TR", + "persplus18AGE", + "AGE", + "GRDIPA" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kmxa5rqb", + "page": "22.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Activité et formation\" else \"Activité et formation de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "LIB_SUJET", + "GRDIPC", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Licence, licence pro, maîtrise ou diplôme équivalent de niveau bac+3 ou bac+4", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Master, DEA, DESS, diplôme de grande école de niveau bac+5, doctorat de santé (médecine, pharmacie, dentaire...)", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Doctorat de recherche (hors doctorat de santé)", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "GRDIPC" + } + }, + { + "id": "kp4dw3br", + "componentType": "Radio", + "mandatory": false, + "page": "22.6", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Pratiquez-vous le télétravail ?\" else PRENOM || \" pratique-t-\" || LIB_SUJET || \" le télétravail ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kp4dw3br-lepxuxk2", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Télétravail : une forme d’organisation du travail dans laquelle un travail qui aurait également pu être exécuté dans les locaux de l’employeur est effectué par un salarié hors de ces locaux de façon volontaire", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(EMPLOI)) and EMPLOI = \"1\"))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "nbpersmaj", + "persmaj", + "DATENAIS", + "TRAGE", + "persplus18TR", + "persplus18AGE", + "AGE", + "EMPLOI", + "SITUA", + "TRAVAIL" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kmxa5rqb", + "page": "22.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Activité et formation\" else \"Activité et formation de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "LIB_SUJET", + "TELET", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "TELET" + } + }, + { + "id": "kvjb8q33", + "componentType": "InputNumber", + "mandatory": false, + "page": "22.7", + "min": 0, + "max": 7, + "decimals": 1, + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Combien de jours par semaine êtes-vous en télétravail, en moyenne ?\" else \"Combien de jours par semaine \" || PRENOM || \" est-\" || LIB_SUJET || \" en télétravail, en moyenne ? \"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(EMPLOI)) and EMPLOI = \"1\")) and (TELET=\"1\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "nbpersmaj", + "persmaj", + "DATENAIS", + "TRAGE", + "persplus18TR", + "persplus18AGE", + "AGE", + "EMPLOI", + "SITUA", + "TRAVAIL", + "TELET" + ] + }, + "controls": [ + { + "id": "kvjb8q33-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(TELETNJ)) and (0.0>TELETNJ or 7.0TELETNJ)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 1 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kmxa5rqb", + "page": "22.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Activité et formation\" else \"Activité et formation de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "LIB_SUJET", + "TELETNJ", + "G_PRENOM" + ], + "unit": "jours", + "response": { + "name": "TELETNJ" + } + } + ], + "iterations": { + "value": "count(G_PRENOM)", + "type": "VTL" + } + }, + { + "id": "ley4go4m", + "componentType": "Subsequence", + "page": "23", + "goToPage": "23", + "label": { + "value": "Ressources du ménage", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "ley4go4m-lo8pde7a", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "cast(nbpers15,string)", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer) > 1)", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "nbpers15", + "persplus15", + "DATENAIS", + "TRAGE" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ley4go4m", + "page": "23", + "label": { + "value": "Ressources du ménage", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "nbpers15" + ] + }, + { + "id": "lgmc7929", + "componentType": "Input", + "mandatory": false, + "page": "24", + "maxLength": 249, + "label": { + "value": "Qui est le principal apporteur de ressources du ménage ?", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lgmc7929-lgmd7uor", + "declarationType": "INSTRUCTION", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Indiquez le prénom du principal apporteur de ressources du ménage.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer) > 1)", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "nbpers15", + "persplus15", + "DATENAIS", + "TRAGE" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ley4go4m", + "page": "23", + "label": { + "value": "Ressources du ménage", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRACT_NOM" + ], + "response": { + "name": "PRACT_NOM" + } + }, + { + "id": "kvqoffs5", + "componentType": "Subsequence", + "goToPage": "25", + "label": { + "value": "Type de logement", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kvqoffs5", + "page": "25", + "label": { + "value": "Type de logement", + "type": "VTL|MD" + } + } + } + }, + { + "id": "kd8qd4ou", + "componentType": "Radio", + "mandatory": false, + "page": "25", + "label": { + "value": "À quoi correspond votre logement ?", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kwf3y6nj-SI", + "declarationType": "STATEMENT", + "position": "BEFORE_QUESTION_TEXT", + "label": { + "value": "\"Nous allons maintenant passer à la description de votre logement situé à l’adresse suivante : \" || ADRCOLLC || \" .\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "controls": [ + { + "id": "kd8qd4ou-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(nvl(HTLC1, \"\") = \"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "Votre réponse est importante pour le bon déroulement du questionnaire. Merci de choisir le type de logement qui correspond à votre logement.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "HTLC1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kvqoffs5", + "page": "25", + "label": { + "value": "Type de logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "ADRCOLLC", + "HTLC1" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Maison ​", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Appartement ​", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "[Logement-foyer](. 'Par exemple : résidence services ou résidence autonomie') ​", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Chambre d’hôtel ​", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Habitation de fortune (construction précaire) ​", + "type": "VTL|MD" + } + }, + { + "value": "6", + "label": { + "value": "Pièce indépendante (ayant sa propre entrée) ​", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "HTLC1" + } + }, + { + "id": "l7kb07wt", + "componentType": "InputNumber", + "mandatory": false, + "page": "26", + "min": 1, + "max": 99, + "decimals": 0, + "label": { + "value": "Combien de niveaux comporte votre logement ?", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l7kb07wt-l7kato20", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Une maison avec un étage comporte deux niveaux : le rez-de-chaussée et l’étage.", + "type": "VTL|MD" + } + }, + { + "id": "l7kb07wt-lhiyps86", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Prendre en compte uniquement les niveaux avec des pièces habitables (ne pas compter le sous-sol, cave...)", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (nvl(HTLC1, \"\") = \"1\" or nvl(HTLC1 , \"\") = \"2\" or nvl(HTLC1, \"\") = \"3\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "HTLC1" + ] + }, + "controls": [ + { + "id": "l7kb07wt-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(NIVEAU)) and (1>NIVEAU or 99NIVEAU)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kvqoffs5", + "page": "25", + "label": { + "value": "Type de logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "NIVEAU" + ], + "response": { + "name": "NIVEAU" + } + }, + { + "id": "kp4b8f63", + "componentType": "Radio", + "mandatory": false, + "page": "27", + "label": { + "value": "Est-ce que votre logement se trouve en foyer (ou résidence) pour personnes âgées ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((not(isnull(HTLC1)) and HTLC1 = \"3\"))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "HTLC1" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kvqoffs5", + "page": "25", + "label": { + "value": "Type de logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "FOYPAGEES" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "FOYPAGEES" + } + }, + { + "id": "kp4bwrb9", + "componentType": "Radio", + "mandatory": false, + "page": "28", + "label": { + "value": "Plus précisément, quel est le type de cette résidence ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((not(isnull(HTLC1)) and HTLC1 = \"3\")) and (FOYPAGEES=\"1\" and not(isnull(FOYPAGEES)))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "HTLC1", + "FOYPAGEES" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kvqoffs5", + "page": "25", + "label": { + "value": "Type de logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "RESAUTO" + ], + "options": [ + { + "value": "1", + "label": { + "value": "[Résidence \"autonomie\"](. 'Établissement médico-social géré par un centre communal d’action sociale (CCAS) ou par une association par exemple')", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "[Résidence \"services\" ](. 'Autres résidences comportant des logements individuels et privatifs et des espaces communs dédiés à la vie collective')", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "RESAUTO" + } + }, + { + "id": "kbgi5n3g", + "componentType": "Radio", + "mandatory": false, + "page": "29", + "label": { + "value": "Le logement fait-il partie d’un immeuble collectif ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((not(isnull(HTLC1)) and HTLC1 = \"6\"))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "HTLC1" + ] + }, + "controls": [ + { + "id": "kbgi5n3g-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(nvl(INDCOLL, \"\") = \"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "Votre réponse est importante pour le bon déroulement du questionnaire. Merci de répondre à cette question.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "INDCOLL" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kvqoffs5", + "page": "25", + "label": { + "value": "Type de logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "INDCOLL" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "INDCOLL" + } + }, + { + "id": "kbgigljc", + "componentType": "Radio", + "mandatory": false, + "page": "30", + "label": { + "value": "Quel est le type de construction de la maison individuelle ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HTLC1 = \"1\" or INDCOLL = \"2\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "HTLC1", + "INDCOLL" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kvqoffs5", + "page": "25", + "label": { + "value": "Type de logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "IMI" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Isolée (sans mur mitoyen)", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Jumelée (avec un mur mitoyen)", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "IMI" + } + }, + { + "id": "kbgim4v3", + "componentType": "Radio", + "mandatory": false, + "page": "31", + "label": { + "value": "La maison fait-elle partie d’une résidence ou d’un ’village’ en copropriété ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HTLC1 = \"1\" or INDCOLL = \"2\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "HTLC1", + "INDCOLL" + ] + }, + "controls": [ + { + "id": "kbgim4v3-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(nvl(ICOI, \"\") = \"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "Votre réponse est importante pour le bon déroulement du questionnaire. Merci de répondre à cette question.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ICOI" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kvqoffs5", + "page": "25", + "label": { + "value": "Type de logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "ICOI" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "ICOI" + } + }, + { + "id": "kbgidvnm", + "componentType": "Radio", + "mandatory": false, + "page": "32", + "label": { + "value": "Y a-t-il au moins un ascenseur dans l’immeuble collectif ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HTLC1 = \"2\" or INDCOLL = \"1\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "HTLC1", + "INDCOLL" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kvqoffs5", + "page": "25", + "label": { + "value": "Type de logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "IAS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "IAS" + } + }, + { + "id": "kbgigafp", + "componentType": "InputNumber", + "mandatory": false, + "page": "33", + "min": 0, + "max": 99, + "decimals": 0, + "label": { + "value": "À quel étage se trouve votre logement ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HTLC1 = \"2\" or INDCOLL = \"1\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "HTLC1", + "INDCOLL" + ] + }, + "controls": [ + { + "id": "kbgigafp-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(IEL)) and (0>IEL or 99IEL)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "kbgigafp-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((instr(cast(nvl(IEL,0),string),\".\") <> 0) or (instr(cast(nvl(IEL,0),string),\",) <> 0))", + "type": "VTL" + }, + "errorMessage": { + "value": "Merci de ne pas renseigner de chiffres après la virgule.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "IEL" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kvqoffs5", + "page": "25", + "label": { + "value": "Type de logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "IEL" + ], + "response": { + "name": "IEL" + } + }, + { + "id": "kbghszh6", + "componentType": "Radio", + "mandatory": false, + "page": "34", + "label": { + "value": "\"À quelle période a été achevée la construction \"|| libIAATC || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kvqoffs5", + "page": "25", + "label": { + "value": "Type de logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libIAATC", + "IAATC" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Avant 1919", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "De 1919 à 1945", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "De 1946 à 1970", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "De 1971 à 1990", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "De 1991 à 2005", + "type": "VTL|MD" + } + }, + { + "value": "6", + "label": { + "value": "\"2006 ou après\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "IAATC" + } + }, + { + "id": "kbghz7mp", + "componentType": "Input", + "mandatory": false, + "page": "35", + "maxLength": 4, + "label": { + "value": "\"En quelle année exactement la construction \" || libIAATC || \" a-t-elle été achevée ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((not(isnull(IAATC)) and IAATC = \"6\"))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "IAATC" + ] + }, + "controls": [ + { + "id": "kbghz7mp-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(nvl(IAATCD,\"\"),integer) < 2006 or cast(nvl(IAATCD,\"\"),integer) >2024)", + "type": "VTL" + }, + "errorMessage": { + "value": "Merci d’indiquer une année comprise entre 2006 et 2024.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "IAATCD" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kmnnjaf1", + "page": "17", + "label": { + "value": "\"III - \" || \"Présentation des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kvqoffs5", + "page": "25", + "label": { + "value": "Type de logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libIAATC", + "IAATCD" + ], + "response": { + "name": "IAATCD" + } + }, + { + "id": "jn0cmg7j", + "componentType": "Sequence", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "jn0cmg7j-kvseiv6v", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Nous allons vous interroger sur \" || intro_STOC || \" et la date d’installation dans le logement.\"", + "type": "VTL|MD" + } + }, + { + "id": "jn0cmg7j-kwggrhk0", + "declarationType": "INSTRUCTION", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Appuyer sur \"Continuer\" pour passer à la page suivante.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "intro_STOC" + ] + }, + { + "id": "jn0ccyw1", + "componentType": "Subsequence", + "goToPage": "37", + "label": { + "value": "Statut d’occupation du ménage", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "jn0ccyw1", + "page": "37", + "label": { + "value": "Statut d’occupation du ménage", + "type": "VTL|MD" + } + } + } + }, + { + "id": "jn0cttir", + "componentType": "Radio", + "mandatory": false, + "page": "37", + "label": { + "value": "Comment votre ménage occupe-t-il ce logement ?", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "jn0cttir-jn0d8za4", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"On désigne ici le ménage comme étant l’ensemble des occupants du logement. \" || libSTOC1", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "controls": [ + { + "id": "jn0cttir-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(nvl(STOC1, \"\") = \"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "Votre réponse est importante pour le bon déroulement de la suite du questionnaire. Merci de choisir le statut d’occupation correspondant à la situation de votre ménage.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "STOC1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "jn0ccyw1", + "page": "37", + "label": { + "value": "Statut d’occupation du ménage", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libSTOC1", + "STOC1" + ], + "options": [ + { + "value": "1", + "label": { + "value": "[Propriétaire accédant (remboursement d'emprunt en cours)](. 'Ménages ayant encore des charges de remboursement d’emprunt pour l’achat de leur logement. Y compris en SCI ou en indivision.')", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "[Propriétaire non accédant (ne remboursant plus d'emprunt)](. 'Ménages qui ne remboursent plus d’emprunt lié à l’achat de leur logement. Y compris en SCI ou en indivision.')", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "[Usufruitier, y compris en viager](. 'Qui a le droit d’utiliser le logement et d’en percevoir les fruits (loyers), sans la nue-propriété (le droit de vendre ou de donner le logement).')", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "[Locataire ou sous-locataire](. 'Devant payer un loyer, même si ce loyer est payé par une personne extérieure au ménage.')", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "[Logé gratuitement, avec un paiement éventuel de charges](. 'N’ayant pas à acquitter de loyer. Cela peut-être le cas si le logement a été vendu en viager.')", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "STOC1" + } + }, + { + "id": "klusnxnh", + "componentType": "Radio", + "mandatory": false, + "page": "38", + "label": { + "value": "Un des occupants actuels du logement est-il propriétaire de ce logement ?", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "klusnxnh-knrah5ep", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Y compris en indivision", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (STOC1 = \"3\" and cast(NBHAB,integer) > 1)", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "STOC1", + "NBHAB" + ] + }, + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "jn0ccyw1", + "page": "37", + "label": { + "value": "Statut d’occupation du ménage", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "STOC2" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui, propriétaire accédant (remboursement d’emprunt en cours)", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Oui, propriétaire non accédant (ne remboursant plus d’emprunt)", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "STOC2" + } + }, + { + "id": "l7j247p7", + "componentType": "Radio", + "mandatory": false, + "page": "39", + "label": { + "value": "Vivez-vous en colocation ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (nvl(STOC1 ,\"\") = \"4\" and cast(nbpersamiscoloc,integer) >= 1)", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "STOC1", + "nbpersamiscoloc", + "persamiscoloc", + "LIEN" + ] + }, + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "jn0ccyw1", + "page": "37", + "label": { + "value": "Statut d’occupation du ménage", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "COLOC" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "COLOC" + } + }, + { + "id": "l95euppt", + "componentType": "Radio", + "mandatory": false, + "page": "40", + "label": { + "value": "Disposez-vous d’un bail ou d’un engagement écrit de location ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (nvl(STOC1 ,\"\") = \"4\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "STOC1" + ] + }, + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "jn0ccyw1", + "page": "37", + "label": { + "value": "Statut d’occupation du ménage", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "LBA" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "LBA" + } + }, + { + "id": "jn0e3nhg", + "componentType": "Radio", + "mandatory": false, + "page": "41", + "label": { + "value": "Votre ménage occupe-t-il ce logement en pleine propriété ou en propriété partielle ? ​", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((not(isnull(STOC)) and (STOC=\"1\" or STOC=\"2\")))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "STOC", + "STOC2", + "STOC1" + ] + }, + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "jn0ccyw1", + "page": "37", + "label": { + "value": "Statut d’occupation du ménage", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "STOCP" + ], + "options": [ + { + "value": "1", + "label": { + "value": "En pleine propriété : votre ménage se partage la totalité de la propriété du logement", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "En propriété partielle : en indivision avec des personnes extérieures au ménage", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "STOCP" + } + }, + { + "id": "kl809dku", + "componentType": "Loop", + "page": "42", + "maxPage": "4", + "depth": 1, + "paginatedLoop": true, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "STOC1", + "filtre_autrepers", + "INDconj", + "nbpersmaj", + "LIEN", + "DATENAIS", + "TRAGE" + ] + }, + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "STOCA12", + "LIB_SUJET", + "LIB_FEM2", + "STOCA3", + "STOCA4", + "STOC", + "LIB_FEM", + "STOCB1" + ], + "loopDependencies": [ + "G_PRENOM" + ], + "components": [ + { + "id": "jo776s4d", + "componentType": "Subsequence", + "goToPage": "42.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Votre statut d’occupation individuel\" else \"Statut d’occupation individuel de \" || PRENOM", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "STOC1", + "filtre_autrepers", + "INDconj", + "nbpersmaj", + "LIEN", + "DATENAIS", + "TRAGE", + "persplus18TR", + "persplus18AGE", + "AGE" + ] + }, + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "jo776s4d", + "page": "42.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Votre statut d’occupation individuel\" else \"Statut d’occupation individuel de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "G_PRENOM" + ] + }, + { + "id": "ko9tiu0f", + "componentType": "Radio", + "mandatory": false, + "page": "42.1", + "label": { + "value": "\"À titre personnel, \" || if (PRENOM=PRENOMREF) then \"votre nom figure-t-il sur l’acte de propriété ?\" else \"le nom de \" || PRENOM || \" figure-t-il sur l’acte de propriété ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "ko9tiu0f-kp5nuwqt", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Y compris usufruitier", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(STOC1)) and (STOC=\"1\" or STOC=\"2\")))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "STOC1", + "filtre_autrepers", + "INDconj", + "nbpersmaj", + "LIEN", + "DATENAIS", + "TRAGE", + "persplus18TR", + "persplus18AGE", + "AGE", + "STOC", + "STOC2" + ] + }, + "controls": [ + { + "id": "ko9tiu0f-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(nvl(STOCA12, \"\") = \"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "Votre réponse est importante pour le bon déroulement de la suite du questionnaire. Merci de répondre à cette question. ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "STOCA12" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "jo776s4d", + "page": "42.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Votre statut d’occupation individuel\" else \"Statut d’occupation individuel de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "STOCA12", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "STOCA12" + } + }, + { + "id": "ko9r0alc", + "componentType": "Radio", + "mandatory": false, + "page": "42.2", + "label": { + "value": "\"À titre personnel, \" || (if (PRENOM=PRENOMREF) then \"êtes-vous\" else (PRENOM || \" est-\" || LIB_SUJET)) || \" usufruitier\" || LIB_FEM2 || \" de ce logement ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (not(isnull(STOC1)) and STOC=\"3\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "STOC1", + "filtre_autrepers", + "INDconj", + "nbpersmaj", + "LIEN", + "DATENAIS", + "TRAGE", + "persplus18TR", + "persplus18AGE", + "AGE", + "STOC", + "STOC2" + ] + }, + "controls": [ + { + "id": "ko9r0alc-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(nvl(STOCA3, \"\") = \"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "Votre réponse est importante pour le bon déroulement de la suite du questionnaire. Merci de répondre à cette question. ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "STOCA3" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "jo776s4d", + "page": "42.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Votre statut d’occupation individuel\" else \"Statut d’occupation individuel de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "LIB_SUJET", + "LIB_FEM2", + "STOCA3", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "STOCA3" + } + }, + { + "id": "ko9t45t9", + "componentType": "Radio", + "mandatory": false, + "page": "42.3", + "label": { + "value": "\"À titre personnel, \" || if (PRENOM=PRENOMREF) then \"votre nom figure-t-il sur le bail de location ?\" else \"le nom de \" || PRENOM || \" figure-t-il sur le bail de location ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(STOC1)) and STOC=\"4\" and nvl(LBA,\"\")=\"1\"))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "STOC1", + "filtre_autrepers", + "INDconj", + "nbpersmaj", + "LIEN", + "DATENAIS", + "TRAGE", + "persplus18TR", + "persplus18AGE", + "AGE", + "STOC", + "STOC2", + "LBA" + ] + }, + "controls": [ + { + "id": "ko9t45t9-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(nvl(STOCA4, \"\") = \"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "Votre réponse est importante pour le bon déroulement de la suite du questionnaire. Merci de répondre à cette question. ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "STOCA4" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "jo776s4d", + "page": "42.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Votre statut d’occupation individuel\" else \"Statut d’occupation individuel de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "STOCA4", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "STOCA4" + } + }, + { + "id": "knoqewds", + "componentType": "Radio", + "mandatory": false, + "page": "42.4", + "label": { + "value": "(if (PRENOM=PRENOMREF) then \"Êtes-vous\" else (PRENOM || \" est-\" || LIB_SUJET)) || \" \" || if (isnull(STOC)) then \"locataire, sous-locataire ou colocataire\" else (if (STOC=\"1\" or STOC=\"2\" or STOC=\"3\") then \"locataire ou colocataire\" else \"sous-locataire\") || \" d’une partie du logement ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((STOCA=\"2\" and not(isnull(STOCA))) and ((LIEN<>\"1\" and LIEN<>\"3\") or isnull(LIEN)))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "STOC1", + "filtre_autrepers", + "INDconj", + "nbpersmaj", + "LIEN", + "DATENAIS", + "TRAGE", + "persplus18TR", + "persplus18AGE", + "AGE", + "STOCA", + "STOCC", + "STOCA12", + "STOCA3", + "STOCA4", + "STOC2" + ] + }, + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "jo776s4d", + "page": "42.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Votre statut d’occupation individuel\" else \"Statut d’occupation individuel de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "LIB_SUJET", + "STOC", + "LIB_FEM", + "STOCB1", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Non, \" || (if (PRENOM=PRENOMREF) then \"vous êtes\" else (PRENOM || \" est\")) || \" accueilli\" || LIB_FEM || \" dans ce logement\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "STOCB1" + } + } + ], + "iterations": { + "value": "count(G_PRENOM)", + "type": "VTL" + } + }, + { + "id": "koka314y", + "componentType": "Loop", + "page": "43", + "maxPage": "10", + "depth": 1, + "paginatedLoop": true, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "STOC1", + "filtre_autrepers", + "INDconj", + "nbpersmaj", + "LIEN", + "DATENAIS", + "TRAGE", + "filtre_HebEnfant", + "nb_HebEnfant", + "STOCB1", + "LOGENQ", + "LOGAUT", + "DURLOG", + "STOCA12", + "STOCA3", + "STOCA4", + "STOC2" + ] + }, + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "LIB_SUJET", + "LIB_FEM", + "EPAS1", + "ERETOUR", + "EPASB", + "EPASC", + "ERET11", + "ERET12", + "ERET13", + "ERET14", + "ERET15", + "ERET16", + "ECOVID", + "EPROJ", + "EPROJB", + "EPROJC", + "EPROJD" + ], + "loopDependencies": [ + "G_PRENOM" + ], + "components": [ + { + "id": "joh85k5c", + "componentType": "Subsequence", + "goToPage": "43.1", + "label": { + "value": "\"Situation de \" || PRENOM", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\")))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "STOC1", + "filtre_autrepers", + "INDconj", + "nbpersmaj", + "LIEN", + "DATENAIS", + "TRAGE", + "filtre_HebEnfant", + "nb_HebEnfant", + "STOCB1", + "LOGENQ", + "LOGAUT", + "DURLOG", + "STOCA12", + "STOCA3", + "STOCA4", + "STOC2", + "STOCA", + "STOCC", + "persplus25TR", + "persplus25AGE", + "AGE" + ] + }, + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "joh85k5c", + "page": "43.1", + "label": { + "value": "\"Situation de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "G_PRENOM" + ] + }, + { + "id": "joh8lowu", + "componentType": "Radio", + "mandatory": false, + "page": "43.1", + "label": { + "value": "PRENOM || \" a-t-\" || LIB_SUJET || \" déjà quitté le logement familial pour vivre dans un logement indépendant pendant plus de trois mois ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "joh8lowu-kqv2lwqk", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Y compris pour un logement en colocation.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\")))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "STOC1", + "filtre_autrepers", + "INDconj", + "nbpersmaj", + "LIEN", + "DATENAIS", + "TRAGE", + "filtre_HebEnfant", + "nb_HebEnfant", + "STOCB1", + "LOGENQ", + "LOGAUT", + "DURLOG", + "STOCA12", + "STOCA3", + "STOCA4", + "STOC2", + "STOCA", + "STOCC", + "persplus25TR", + "persplus25AGE", + "AGE" + ] + }, + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "joh85k5c", + "page": "43.1", + "label": { + "value": "\"Situation de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "LIB_SUJET", + "EPAS1", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui, en dehors de la période de ses études", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Oui, uniquement pendant la période de ses études", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "EPAS1" + } + }, + { + "id": "kppmespv", + "componentType": "Radio", + "mandatory": false, + "page": "43.2", + "label": { + "value": "PRENOM || \" vit-\" || LIB_SUJET || \" chez vous uniquement pour les vacances, les week-ends ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "STOC1", + "filtre_autrepers", + "INDconj", + "nbpersmaj", + "LIEN", + "DATENAIS", + "TRAGE", + "filtre_HebEnfant", + "nb_HebEnfant", + "STOCB1", + "LOGENQ", + "LOGAUT", + "DURLOG", + "STOCA12", + "STOCA3", + "STOCA4", + "STOC2", + "STOCA", + "STOCC", + "persplus25TR", + "persplus25AGE", + "AGE", + "EPAS1" + ] + }, + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "joh85k5c", + "page": "43.1", + "label": { + "value": "\"Situation de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "LIB_SUJET", + "ERETOUR", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "ERETOUR" + } + }, + { + "id": "joh8ixt2", + "componentType": "Radio", + "mandatory": false, + "page": "43.3", + "label": { + "value": "\"Au total, pendant combien de temps \" || PRENOM || \" a-t-\" || LIB_SUJET || \" vécu dans un logement indépendant ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "joh8ixt2-joh97u9u", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Cumuler les périodes le cas échéant.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "STOC1", + "filtre_autrepers", + "INDconj", + "nbpersmaj", + "LIEN", + "DATENAIS", + "TRAGE", + "filtre_HebEnfant", + "nb_HebEnfant", + "STOCB1", + "LOGENQ", + "LOGAUT", + "DURLOG", + "STOCA12", + "STOCA3", + "STOCA4", + "STOC2", + "STOCA", + "STOCC", + "persplus25TR", + "persplus25AGE", + "AGE", + "EPAS1", + "ERETOUR" + ] + }, + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "joh85k5c", + "page": "43.1", + "label": { + "value": "\"Situation de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "LIB_SUJET", + "EPASB", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Moins de 6 mois", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "De 6 mois à moins de 1 an", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "De 1 an à moins de 2 ans", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "De 2 ans à moins de 5 ans", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Plus de 5 ans", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "EPASB" + } + }, + { + "id": "kcnccgjg", + "componentType": "Radio", + "mandatory": false, + "page": "43.4", + "label": { + "value": "\"Depuis quand \" || PRENOM || \" est-\" || LIB_SUJET || \" venu\" || LIB_FEM || \" ou revenu\" || LIB_FEM || \" vivre chez vous ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "STOC1", + "filtre_autrepers", + "INDconj", + "nbpersmaj", + "LIEN", + "DATENAIS", + "TRAGE", + "filtre_HebEnfant", + "nb_HebEnfant", + "STOCB1", + "LOGENQ", + "LOGAUT", + "DURLOG", + "STOCA12", + "STOCA3", + "STOCA4", + "STOC2", + "STOCA", + "STOCC", + "persplus25TR", + "persplus25AGE", + "AGE", + "EPAS1", + "ERETOUR" + ] + }, + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "joh85k5c", + "page": "43.1", + "label": { + "value": "\"Situation de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "LIB_SUJET", + "LIB_FEM", + "EPASC", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Depuis moins de 6 mois", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Entre 6 mois et moins de 1 an", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Entre 1 an et moins de 3 ans", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "De 3 ans à moins de 10 ans", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Depuis 10 ans ou plus", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "EPASC" + } + }, + { + "id": "knorcs48", + "componentType": "CheckboxGroup", + "page": "43.5", + "label": { + "value": "\"Dans quelles circonstances \" || PRENOM || \" est-\" || LIB_SUJET || \" venu\" || LIB_FEM || \" ou revenu\" || LIB_FEM || \" vivre avec vous après avoir eu un logement indépendant ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "knorcs48-kqigjlze", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Plusieurs réponses possibles", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "STOC1", + "filtre_autrepers", + "INDconj", + "nbpersmaj", + "LIEN", + "DATENAIS", + "TRAGE", + "filtre_HebEnfant", + "nb_HebEnfant", + "STOCB1", + "LOGENQ", + "LOGAUT", + "DURLOG", + "STOCA12", + "STOCA3", + "STOCA4", + "STOC2", + "STOCA", + "STOCC", + "persplus25TR", + "persplus25AGE", + "AGE", + "EPAS1", + "ERETOUR" + ] + }, + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "joh85k5c", + "page": "43.1", + "label": { + "value": "\"Situation de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "LIB_SUJET", + "LIB_FEM", + "ERET11", + "ERET12", + "ERET13", + "ERET14", + "ERET15", + "ERET16", + "G_PRENOM" + ], + "responses": [ + { + "id": "knorcs48-QOP-kwqpl9t4", + "label": { + "value": "Changement de situation professionnelle (lieu de travail, perte d’emploi...)", + "type": "VTL|MD" + }, + "response": { + "name": "ERET11" + } + }, + { + "id": "knorcs48-QOP-kwqplt17", + "label": { + "value": "Séparation familiale", + "type": "VTL|MD" + }, + "response": { + "name": "ERET12" + } + }, + { + "id": "knorcs48-QOP-kwqpx010", + "label": { + "value": "Difficultés financières", + "type": "VTL|MD" + }, + "response": { + "name": "ERET13" + } + }, + { + "id": "knorcs48-QOP-kwqpvqw9", + "label": { + "value": "Fin des études ou études en cours", + "type": "VTL|MD" + }, + "response": { + "name": "ERET14" + } + }, + { + "id": "knorcs48-QOP-kwqprhw6", + "label": { + "value": "Raisons de santé ou pour s’occuper d’un membre du ménage", + "type": "VTL|MD" + }, + "response": { + "name": "ERET15" + } + }, + { + "id": "knorcs48-QOP-kwqq04zh", + "label": { + "value": "Autre", + "type": "VTL|MD" + }, + "response": { + "name": "ERET16" + } + } + ] + }, + { + "id": "kp5vtjh4", + "componentType": "Radio", + "mandatory": false, + "page": "43.6", + "label": { + "value": "\"Le fait que \" || PRENOM || \" vit chez vous est-il lié à la crise sanitaire due à l’épidémie de Covid19 ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\"))) and (not(nvl(EPASC,\"\")=\"5\"))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "STOC1", + "filtre_autrepers", + "INDconj", + "nbpersmaj", + "LIEN", + "DATENAIS", + "TRAGE", + "filtre_HebEnfant", + "nb_HebEnfant", + "STOCB1", + "LOGENQ", + "LOGAUT", + "DURLOG", + "STOCA12", + "STOCA3", + "STOCA4", + "STOC2", + "STOCA", + "STOCC", + "persplus25TR", + "persplus25AGE", + "AGE", + "EPAS1", + "ERETOUR", + "EPASC" + ] + }, + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "joh85k5c", + "page": "43.1", + "label": { + "value": "\"Situation de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "ECOVID", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "ECOVID" + } + }, + { + "id": "joirni0x", + "componentType": "Radio", + "mandatory": false, + "page": "43.7", + "label": { + "value": "PRENOM || \" envisage-t-\" || LIB_SUJET || \" d’aller habiter dans un logement indépendant dans les six mois qui viennent ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\"))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "STOC1", + "filtre_autrepers", + "INDconj", + "nbpersmaj", + "LIEN", + "DATENAIS", + "TRAGE", + "filtre_HebEnfant", + "nb_HebEnfant", + "STOCB1", + "LOGENQ", + "LOGAUT", + "DURLOG", + "STOCA12", + "STOCA3", + "STOCA4", + "STOC2", + "STOCA", + "STOCC", + "persplus25TR", + "persplus25AGE", + "AGE", + "EPAS1" + ] + }, + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "joh85k5c", + "page": "43.1", + "label": { + "value": "\"Situation de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "LIB_SUJET", + "EPROJ", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Vous ne savez pas", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "EPROJ" + } + }, + { + "id": "joirve2f", + "componentType": "Radio", + "mandatory": false, + "page": "43.8", + "label": { + "value": "PRENOM || \" a-t-\" || LIB_SUJET || \" actuellement les moyens financiers lui permettant d’avoir un logement indépendant ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ = \"1\" and not(isnull(EPROJ)))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "STOC1", + "filtre_autrepers", + "INDconj", + "nbpersmaj", + "LIEN", + "DATENAIS", + "TRAGE", + "filtre_HebEnfant", + "nb_HebEnfant", + "STOCB1", + "LOGENQ", + "LOGAUT", + "DURLOG", + "STOCA12", + "STOCA3", + "STOCA4", + "STOC2", + "STOCA", + "STOCC", + "persplus25TR", + "persplus25AGE", + "AGE", + "EPAS1", + "EPROJ" + ] + }, + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "joh85k5c", + "page": "43.1", + "label": { + "value": "\"Situation de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "LIB_SUJET", + "EPROJB", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui, par ses propres moyens", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Oui, mais seulement grâce à l’aide de sa famille", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Non", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Vous ne savez pas", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "EPROJB" + } + }, + { + "id": "joirtz3j", + "componentType": "Radio", + "mandatory": false, + "page": "43.9", + "label": { + "value": "PRENOM || \" aurait-\" || LIB_SUJET || \" les moyens financiers d’obtenir un logement indépendant ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ=\"2\" or EPROJ=\"3\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "STOC1", + "filtre_autrepers", + "INDconj", + "nbpersmaj", + "LIEN", + "DATENAIS", + "TRAGE", + "filtre_HebEnfant", + "nb_HebEnfant", + "STOCB1", + "LOGENQ", + "LOGAUT", + "DURLOG", + "STOCA12", + "STOCA3", + "STOCA4", + "STOC2", + "STOCA", + "STOCC", + "persplus25TR", + "persplus25AGE", + "AGE", + "EPAS1", + "EPROJ" + ] + }, + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "joh85k5c", + "page": "43.1", + "label": { + "value": "\"Situation de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "LIB_SUJET", + "EPROJC", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui, par ses propres moyens", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Oui, mais seulement grâce à l’aide de sa famille", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Non", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Vous ne savez pas", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "EPROJC" + } + }, + { + "id": "joisp3u9", + "componentType": "Radio", + "mandatory": false, + "page": "43.10", + "label": { + "value": "\"Si \" || PRENOM || \" en avait les moyens financiers, quitterait-\" || LIB_SUJET || \" le logement familial ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJB=\"3\" or EPROJC=\"3\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "STOC1", + "filtre_autrepers", + "INDconj", + "nbpersmaj", + "LIEN", + "DATENAIS", + "TRAGE", + "filtre_HebEnfant", + "nb_HebEnfant", + "STOCB1", + "LOGENQ", + "LOGAUT", + "DURLOG", + "STOCA12", + "STOCA3", + "STOCA4", + "STOC2", + "STOCA", + "STOCC", + "persplus25TR", + "persplus25AGE", + "AGE", + "EPAS1", + "EPROJB", + "EPROJC" + ] + }, + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "joh85k5c", + "page": "43.1", + "label": { + "value": "\"Situation de \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "LIB_SUJET", + "EPROJD", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Non, \" || LIB_SUJET || \" ne le souhaite pas\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Non, \" || LIB_SUJET|| \" ne le peut pas\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Vous ne savez pas", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "EPROJD" + } + } + ], + "iterations": { + "value": "count(G_PRENOM)", + "type": "VTL" + } + }, + { + "id": "koka0f5v", + "componentType": "Loop", + "page": "44", + "maxPage": "6", + "depth": 1, + "paginatedLoop": true, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "STOC1", + "filtre_autrepers", + "INDconj", + "nbpersmaj", + "LIEN", + "DATENAIS", + "TRAGE", + "filtre_HEB", + "nb_HEB", + "STOCB1", + "SITUA", + "LOGENQ", + "LOGAUT", + "DURLOG", + "G_PRENOM", + "STOCA12", + "STOCA3", + "STOCA4", + "STOC2" + ] + }, + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "LIB_SUJET", + "EAMIA", + "EAMID11", + "EAMID12", + "EAMID13", + "EAMID14", + "EAMID15", + "EAMID16", + "EAMID17", + "ECOVID2", + "EAMIH", + "EAMIK", + "EAMIL" + ], + "loopDependencies": [ + "G_PRENOM" + ], + "components": [ + { + "id": "jsygk7m7", + "componentType": "Subsequence", + "goToPage": "44.1", + "label": { + "value": "Hébergement", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "STOC1", + "filtre_autrepers", + "INDconj", + "nbpersmaj", + "LIEN", + "DATENAIS", + "TRAGE", + "filtre_HEB", + "nb_HEB", + "STOCB1", + "SITUA", + "LOGENQ", + "LOGAUT", + "DURLOG", + "G_PRENOM", + "STOCA12", + "STOCA3", + "STOCA4", + "STOC2", + "PRENOM", + "PRENOMVIDE", + "PRENOMREF", + "STOCA", + "STOCC", + "persplus18TR", + "persplus18AGE", + "AGE" + ] + }, + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "jsygk7m7", + "page": "44.1", + "label": { + "value": "Hébergement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "G_PRENOM" + ] + }, + { + "id": "joisq6l3", + "componentType": "Radio", + "mandatory": false, + "page": "44.1", + "label": { + "value": "\"Depuis quand \" || PRENOM || \" vit-\" || LIB_SUJET ||\" chez vous ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "STOC1", + "filtre_autrepers", + "INDconj", + "nbpersmaj", + "LIEN", + "DATENAIS", + "TRAGE", + "filtre_HEB", + "nb_HEB", + "STOCB1", + "SITUA", + "LOGENQ", + "LOGAUT", + "DURLOG", + "G_PRENOM", + "STOCA12", + "STOCA3", + "STOCA4", + "STOC2", + "PRENOM", + "PRENOMVIDE", + "PRENOMREF", + "STOCA", + "STOCC", + "persplus18TR", + "persplus18AGE", + "AGE" + ] + }, + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "jsygk7m7", + "page": "44.1", + "label": { + "value": "Hébergement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "LIB_SUJET", + "EAMIA", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Depuis moins de 6 mois", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Entre 6 mois et moins de 1 an", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Entre 1 an et moins de 3 ans", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "De 3 ans à moins de 10 ans", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Depuis 10 ans ou plus", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "EAMIA" + } + }, + { + "id": "knpolbu3", + "componentType": "CheckboxGroup", + "page": "44.2", + "label": { + "value": "\"Pour quelles raisons \" || PRENOM || \" vit-\" || LIB_SUJET || \" chez vous ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "knpolbu3-kqigai4x", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Plusieurs réponses possibles", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "STOC1", + "filtre_autrepers", + "INDconj", + "nbpersmaj", + "LIEN", + "DATENAIS", + "TRAGE", + "filtre_HEB", + "nb_HEB", + "STOCB1", + "SITUA", + "LOGENQ", + "LOGAUT", + "DURLOG", + "G_PRENOM", + "STOCA12", + "STOCA3", + "STOCA4", + "STOC2", + "PRENOM", + "PRENOMVIDE", + "PRENOMREF", + "STOCA", + "STOCC", + "persplus18TR", + "persplus18AGE", + "AGE" + ] + }, + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "jsygk7m7", + "page": "44.1", + "label": { + "value": "Hébergement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "LIB_SUJET", + "EAMID11", + "EAMID12", + "EAMID13", + "EAMID14", + "EAMID15", + "EAMID16", + "EAMID17", + "G_PRENOM" + ], + "responses": [ + { + "id": "knpolbu3-QOP-l3d88g6a", + "label": { + "value": "En couple avec l’un des membres du ménage", + "type": "VTL|MD" + }, + "response": { + "name": "EAMID11" + } + }, + { + "id": "knpolbu3-QOP-l3d8efe0", + "label": { + "value": "Changement de situation professionnelle (lieu de travail, perte d’emploi...)", + "type": "VTL|MD" + }, + "response": { + "name": "EAMID12" + } + }, + { + "id": "knpolbu3-QOP-l3d8iii6", + "label": { + "value": "Séparation familiale", + "type": "VTL|MD" + }, + "response": { + "name": "EAMID13" + } + }, + { + "id": "knpolbu3-QOP-l3d8aqcq", + "label": { + "value": "Difficultés financières", + "type": "VTL|MD" + }, + "response": { + "name": "EAMID14" + } + }, + { + "id": "knpolbu3-QOP-l3d8e08c", + "label": { + "value": "Fin des études ou études en cours", + "type": "VTL|MD" + }, + "response": { + "name": "EAMID15" + } + }, + { + "id": "knpolbu3-QOP-l3d896r3", + "label": { + "value": "Raisons de santé ou pour s’occuper d’un membre du ménage", + "type": "VTL|MD" + }, + "response": { + "name": "EAMID16" + } + }, + { + "id": "knpolbu3-QOP-l3d87rh5", + "label": { + "value": "Je rends service à quelqu’un qui n’a pas d’autre solution d’hébergement", + "type": "VTL|MD" + }, + "response": { + "name": "EAMID17" + } + } + ] + }, + { + "id": "kppptqlu", + "componentType": "Radio", + "mandatory": false, + "page": "44.3", + "label": { + "value": "\"Le fait que \" || PRENOM || \" vive chez vous est-il lié à la crise sanitaire due à l’épidémie de Covid 19 ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false)) and (not(nvl(EAMIA,\"\")=\"5\"))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "STOC1", + "filtre_autrepers", + "INDconj", + "nbpersmaj", + "LIEN", + "DATENAIS", + "TRAGE", + "filtre_HEB", + "nb_HEB", + "STOCB1", + "SITUA", + "LOGENQ", + "LOGAUT", + "DURLOG", + "G_PRENOM", + "STOCA12", + "STOCA3", + "STOCA4", + "STOC2", + "PRENOM", + "PRENOMVIDE", + "PRENOMREF", + "STOCA", + "STOCC", + "persplus18TR", + "persplus18AGE", + "AGE", + "EAMID11", + "EAMIA" + ] + }, + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "jsygk7m7", + "page": "44.1", + "label": { + "value": "Hébergement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "ECOVID2", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "ECOVID2" + } + }, + { + "id": "joismxwd", + "componentType": "Radio", + "mandatory": false, + "page": "44.4", + "label": { + "value": "\"Selon vous, \" || PRENOM || \" a-t-\" || LIB_SUJET || \" actuellement les moyens financiers lui permettant d’avoir un logement indépendant ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "STOC1", + "filtre_autrepers", + "INDconj", + "nbpersmaj", + "LIEN", + "DATENAIS", + "TRAGE", + "filtre_HEB", + "nb_HEB", + "STOCB1", + "SITUA", + "LOGENQ", + "LOGAUT", + "DURLOG", + "G_PRENOM", + "STOCA12", + "STOCA3", + "STOCA4", + "STOC2", + "PRENOM", + "PRENOMVIDE", + "PRENOMREF", + "STOCA", + "STOCC", + "persplus18TR", + "persplus18AGE", + "AGE", + "EAMID11" + ] + }, + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "jsygk7m7", + "page": "44.1", + "label": { + "value": "Hébergement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "LIB_SUJET", + "EAMIH", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Vous ne savez pas", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "EAMIH" + } + }, + { + "id": "kqv3atis", + "componentType": "Radio", + "mandatory": false, + "page": "44.5", + "label": { + "value": "\"Est-ce compliqué pour vous d’héberger \" || PRENOM || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "STOC1", + "filtre_autrepers", + "INDconj", + "nbpersmaj", + "LIEN", + "DATENAIS", + "TRAGE", + "filtre_HEB", + "nb_HEB", + "STOCB1", + "SITUA", + "LOGENQ", + "LOGAUT", + "DURLOG", + "G_PRENOM", + "STOCA12", + "STOCA3", + "STOCA4", + "STOC2", + "PRENOM", + "PRENOMVIDE", + "PRENOMREF", + "STOCA", + "STOCC", + "persplus18TR", + "persplus18AGE", + "AGE", + "EAMID11" + ] + }, + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "jsygk7m7", + "page": "44.1", + "label": { + "value": "Hébergement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "EAMIK", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui, beaucoup", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Oui, un peu", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "EAMIK" + } + }, + { + "id": "kqv44b8j", + "componentType": "Radio", + "mandatory": false, + "page": "44.6", + "label": { + "value": "\"Est-ce que \" || PRENOM || \" a une chambre indépendante dans votre logement ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "STOC1", + "filtre_autrepers", + "INDconj", + "nbpersmaj", + "LIEN", + "DATENAIS", + "TRAGE", + "filtre_HEB", + "nb_HEB", + "STOCB1", + "SITUA", + "LOGENQ", + "LOGAUT", + "DURLOG", + "G_PRENOM", + "STOCA12", + "STOCA3", + "STOCA4", + "STOC2", + "PRENOM", + "PRENOMVIDE", + "PRENOMREF", + "STOCA", + "STOCC", + "persplus18TR", + "persplus18AGE", + "AGE", + "EAMID11" + ] + }, + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "jsygk7m7", + "page": "44.1", + "label": { + "value": "Hébergement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "EAMIL", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "EAMIL" + } + } + ], + "iterations": { + "value": "count(G_PRENOM)", + "type": "VTL" + } + }, + { + "id": "kvsdwoef", + "componentType": "Subsequence", + "goToPage": "45", + "label": { + "value": "Date d’installation dans le logement", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kvsdwoef", + "page": "45", + "label": { + "value": "Date d’installation dans le logement", + "type": "VTL|MD" + } + } + } + }, + { + "id": "jojtbo85", + "componentType": "Input", + "mandatory": false, + "page": "45", + "maxLength": 4, + "label": { + "value": "\"En quelle année êtes-vous arrivé\" || (if (isnull(SEXEREF)) then \"\" else (if (cast(SEXEREF,string) = \"2\") then \"e\" else \"\")) || \" dans ce logement ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "controls": [ + { + "id": "jojtbo85-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(nvl(MAA2A,\"\") = \"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "Merci d’indiquer l’année de votre arrivée dans ce logement. Si vous n’avez jamais déménagé de votre vie, merci d’indiquer votre année de naissance.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "MAA2A" + ] + }, + { + "id": "jojtbo85-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(nvl(MAA2A,\"\"),integer) < 1900 or cast(nvl(MAA2A,\"\"),integer) >2024)", + "type": "VTL" + }, + "errorMessage": { + "value": "Merci d’indiquer une année comprise entre 1900 et 2024.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "MAA2A" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kvsdwoef", + "page": "45", + "label": { + "value": "Date d’installation dans le logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "SEXEREF", + "MAA2A" + ], + "response": { + "name": "MAA2A" + } + }, + { + "id": "kp6iwd90", + "componentType": "Radio", + "mandatory": false, + "page": "46", + "label": { + "value": "\"Depuis environ combien d’années êtes-vous arrivé\" || (if (isnull(SEXEREF)) then \"\" else (if (cast(SEXEREF,string) = \"2\") then \"e\" else \"\")) || \" dans ce logement ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (isnull(MAA2A))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "MAA2A" + ] + }, + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kvsdwoef", + "page": "45", + "label": { + "value": "Date d’installation dans le logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "SEXEREF", + "MAA2AT_Q" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Moins d’un an", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "De 1 an à moins de 4 ans", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "De 4 ans à moins de 8 ans", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "De 8 ans à moins de 12 ans", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\"12 ans et plus\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "MAA2AT_Q" + } + }, + { + "id": "jojt16mt", + "componentType": "Dropdown", + "mandatory": false, + "page": "47", + "label": { + "value": "\"Quel est le mois de votre arrivée en \" || cast(MAA2A,string) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2A)) and (cast(MAA2A,integer) >= cast(ANNEENQmoins4,integer)))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "MAA2A", + "ANNEENQmoins4", + "ANNEENQ" + ] + }, + "controls": [ + { + "id": "jojt16mt-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(nvl(MAA2M, \"\") = \"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "Votre réponse est importante pour le bon déroulement du questionnaire. Merci de répondre à cette question.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "MAA2M" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kvsdwoef", + "page": "45", + "label": { + "value": "Date d’installation dans le logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "MAA2A", + "MAA2M" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Janvier - 01", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Février - 02", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Mars - 03", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Avril - 04", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Mai - 05", + "type": "VTL|MD" + } + }, + { + "value": "6", + "label": { + "value": "Juin - 06", + "type": "VTL|MD" + } + }, + { + "value": "7", + "label": { + "value": "Juillet - 07", + "type": "VTL|MD" + } + }, + { + "value": "8", + "label": { + "value": "Août - 08", + "type": "VTL|MD" + } + }, + { + "value": "9", + "label": { + "value": "Septembre - 09", + "type": "VTL|MD" + } + }, + { + "value": "10", + "label": { + "value": "Octobre - 10", + "type": "VTL|MD" + } + }, + { + "value": "11", + "label": { + "value": "Novembre - 11", + "type": "VTL|MD" + } + }, + { + "value": "12", + "label": { + "value": "Décembre - 12", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "MAA2M" + } + }, + { + "id": "jojt3qxp", + "componentType": "Radio", + "mandatory": false, + "page": "48", + "label": { + "value": "\"Votre conjoint\" || SEXECJ_E || \" est-\" || SEXECJ_IEL || \" arrivé\" || SEXECJ_E || \" dans ce logement en même temps que vous ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (INDconj = \"1\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "INDconj", + "nbpersconj", + "LIEN" + ] + }, + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kvsdwoef", + "page": "45", + "label": { + "value": "Date d’installation dans le logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "SEXECJ_E", + "SEXECJ_IEL", + "MARRIVC" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "MARRIVC" + } + }, + { + "id": "jojtnq9z", + "componentType": "Input", + "mandatory": false, + "page": "49", + "maxLength": 4, + "label": { + "value": "\"En quelle année votre conjoint\" || SEXECJ_E || \" est-\" || SEXECJ_IEL || \" arrivé\" || SEXECJ_E || \" dans ce logement ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (INDconj = \"1\") and (MARRIVC = \"2\" and not(isnull(MARRIVC )))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "INDconj", + "nbpersconj", + "LIEN", + "MARRIVC" + ] + }, + "controls": [ + { + "id": "jojtnq9z-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(nvl(MAA2AC,\"\"),integer) < 1900 or cast(nvl(MAA2AC,\"\"),integer) >2024)", + "type": "VTL" + }, + "errorMessage": { + "value": "Merci d’indiquer une année comprise entre 1900 et 2024.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "MAA2AC" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kvsdwoef", + "page": "45", + "label": { + "value": "Date d’installation dans le logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "SEXECJ_E", + "SEXECJ_IEL", + "MAA2AC" + ], + "response": { + "name": "MAA2AC" + } + }, + { + "id": "kp6ja40b", + "componentType": "Radio", + "mandatory": false, + "page": "50", + "label": { + "value": "\"Depuis environ combien d’années votre conjoint\" || SEXECJ_E || \" est-\" || SEXECJ_IEL || \" arrivé\" || SEXECJ_E || \" dans ce logement ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (INDconj = \"1\") and (MARRIVC = \"2\" and not(isnull(MARRIVC ))) and (isnull(MAA2AC))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "INDconj", + "nbpersconj", + "LIEN", + "MARRIVC", + "MAA2AC" + ] + }, + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kvsdwoef", + "page": "45", + "label": { + "value": "Date d’installation dans le logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "SEXECJ_E", + "SEXECJ_IEL", + "MAA2ATC_Q" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Moins d’un an", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "De 1 an à moins de 4 ans", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "De 4 ans à moins de 8 ans", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "De 8 ans à moins de 12 ans", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\"12 ans et plus\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "MAA2ATC_Q" + } + }, + { + "id": "jor73af6", + "componentType": "Dropdown", + "mandatory": false, + "page": "51", + "label": { + "value": "\"Quel est le mois de son arrivée dans le logement en \" || cast(MAA2AC,string) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (INDconj = \"1\") and (MARRIVC = \"2\" and not(isnull(MARRIVC ))) and (not(isnull(MAA2AC)) and (cast(MAA2AC,integer) >= cast(ANNEENQmoins4,integer)))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "INDconj", + "nbpersconj", + "LIEN", + "MARRIVC", + "MAA2AC", + "ANNEENQmoins4", + "ANNEENQ" + ] + }, + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kvsdwoef", + "page": "45", + "label": { + "value": "Date d’installation dans le logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "MAA2AC", + "MAA2MC" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Janvier - 01", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Février - 02", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Mars - 03", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Avril - 04", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Mai - 05", + "type": "VTL|MD" + } + }, + { + "value": "6", + "label": { + "value": "Juin - 06", + "type": "VTL|MD" + } + }, + { + "value": "7", + "label": { + "value": "Juillet - 07", + "type": "VTL|MD" + } + }, + { + "value": "8", + "label": { + "value": "Août - 08", + "type": "VTL|MD" + } + }, + { + "value": "9", + "label": { + "value": "Septembre - 09", + "type": "VTL|MD" + } + }, + { + "value": "10", + "label": { + "value": "Octobre - 10", + "type": "VTL|MD" + } + }, + { + "value": "11", + "label": { + "value": "Novembre - 11", + "type": "VTL|MD" + } + }, + { + "value": "12", + "label": { + "value": "Décembre - 12", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "MAA2MC" + } + }, + { + "id": "jojtsgsr", + "componentType": "Radio", + "mandatory": false, + "page": "52", + "label": { + "value": "\"Parmi les membres de votre ménage actuel, une personne habitait-elle déjà dans ce logement, au moment de \" || libMAA3 || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (filtre_autrepers=\"1\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "filtre_autrepers", + "INDconj", + "nbpersmaj", + "LIEN", + "DATENAIS", + "TRAGE" + ] + }, + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kvsdwoef", + "page": "45", + "label": { + "value": "Date d’installation dans le logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libMAA3", + "MAA3" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "MAA3" + } + }, + { + "id": "jojtutyy", + "componentType": "Input", + "mandatory": false, + "page": "53", + "maxLength": 4, + "label": { + "value": "En quelle année cette personne est-elle arrivée dans ce logement ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (filtre_autrepers=\"1\") and (not(isnull(MAA3)) and MAA3=\"1\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "filtre_autrepers", + "INDconj", + "nbpersmaj", + "LIEN", + "DATENAIS", + "TRAGE", + "MAA3" + ] + }, + "controls": [ + { + "id": "jojtutyy-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(MAA3,\"\")=\"1\" and (cast(nvl(MAA3A,\"\"),integer)>cast(nvl(MAA2A,\"\"),integer)) and ( isnull(MARRIVC) or MARRIVC=\"1\" or isnull(MAA2AC) or (MARRIVC=\"2\" and ((cast(MAA2AC,integer)>cast(MAA2A,integer)) or ((cast(MAA2AC,integer)=cast(MAA2A,integer)) and (cast(MAA2MC,integer)>=cast(MAA2M,integer))) ) ) ) ))", + "type": "VTL" + }, + "errorMessage": { + "value": "Si cette personne habitait déjà le logement à votre arrivée, la date d’installation de cette personne doit être antérieure à la vôtre, merci de corriger l’une de vos réponses.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "MAA3", + "MAA3A", + "MAA2A", + "MARRIVC", + "MAA2AC", + "MAA2MC", + "MAA2M" + ] + }, + { + "id": "jojtutyy-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(nvl(MAA3A,\"\"),integer) < 1900 or cast(nvl(MAA3A,\"\"),integer) >2024)", + "type": "VTL" + }, + "errorMessage": { + "value": "Merci d’indiquer une année comprise entre 1900 et 2024.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "MAA3A" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kvsdwoef", + "page": "45", + "label": { + "value": "Date d’installation dans le logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "MAA3A" + ], + "response": { + "name": "MAA3A" + } + }, + { + "id": "jojtizrx", + "componentType": "Dropdown", + "mandatory": false, + "page": "54", + "label": { + "value": "\"Quel est le mois de son arrivée dans le logement en \" || cast(MAA3A,string) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (filtre_autrepers=\"1\") and (not(isnull(MAA3)) and MAA3=\"1\") and (not(isnull(MAA3A)) and (cast(MAA3A,integer) >= cast(ANNEENQmoins4,integer)))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "filtre_autrepers", + "INDconj", + "nbpersmaj", + "LIEN", + "DATENAIS", + "TRAGE", + "MAA3", + "MAA3A", + "ANNEENQmoins4", + "ANNEENQ" + ] + }, + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kvsdwoef", + "page": "45", + "label": { + "value": "Date d’installation dans le logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "MAA3A", + "MAA3M" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Janvier - 01", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Février - 02", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Mars - 03", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Avril - 04", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Mai - 05", + "type": "VTL|MD" + } + }, + { + "value": "6", + "label": { + "value": "Juin - 06", + "type": "VTL|MD" + } + }, + { + "value": "7", + "label": { + "value": "Juillet - 07", + "type": "VTL|MD" + } + }, + { + "value": "8", + "label": { + "value": "Août - 08", + "type": "VTL|MD" + } + }, + { + "value": "9", + "label": { + "value": "Septembre - 09", + "type": "VTL|MD" + } + }, + { + "value": "10", + "label": { + "value": "Octobre - 10", + "type": "VTL|MD" + } + }, + { + "value": "11", + "label": { + "value": "Novembre - 11", + "type": "VTL|MD" + } + }, + { + "value": "12", + "label": { + "value": "Décembre - 12", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "MAA3M" + } + }, + { + "id": "l3yket2i", + "componentType": "Radio", + "mandatory": false, + "page": "55", + "label": { + "value": "\"Avez-vous\" || libSDEJA || \" déjà été propriétaire d’une résidence principale autre que celle-ci ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (nvl(STOC,\"\") =\"1\" or nvl(STOC,\"\")= \"2\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "STOC", + "STOC2", + "STOC1" + ] + }, + "hierarchy": { + "sequence": { + "id": "jn0cmg7j", + "page": "36", + "label": { + "value": "\"IV - \" || \"Statut d’occupation et date d’installation\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kvsdwoef", + "page": "45", + "label": { + "value": "Date d’installation dans le logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libSDEJA", + "SDEJA" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SDEJA" + } + }, + { + "id": "jojuy3c4", + "componentType": "Sequence", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "jojuy3c4-jojurgz6", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Nous allons maintenant passer à la description de votre logement.", + "type": "VTL|MD" + } + }, + { + "id": "jojuy3c4-kwgh620s", + "declarationType": "INSTRUCTION", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Appuyer sur \"Continuer\" pour passer à la page suivante.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + } + } + }, + { + "id": "kp6n3avl", + "componentType": "Subsequence", + "goToPage": "57", + "label": { + "value": "Description du logement - Cuisine", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kp6n3avl", + "page": "57", + "label": { + "value": "Description du logement - Cuisine", + "type": "VTL|MD" + } + } + } + }, + { + "id": "jojuueml", + "componentType": "Radio", + "mandatory": false, + "page": "57", + "label": { + "value": "Votre logement dispose-t-il d’une cuisine ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kp6n3avl", + "page": "57", + "label": { + "value": "Description du logement - Cuisine", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "KCU1" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui, une cuisine séparée", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Oui, une cuisine ouverte ou américaine", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Seulement une petite installation pour faire la cuisine (avec évacuation des eaux usées)", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Non, pas d’installation pour faire la cuisine", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "KCU1" + } + }, + { + "id": "jojuno0d", + "componentType": "Radio", + "mandatory": false, + "page": "58", + "label": { + "value": "Quelle est la surface de la cuisine ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KCU1=\"1\" and not(isnull(KCU1)))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "KCU1" + ] + }, + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kp6n3avl", + "page": "57", + "label": { + "value": "Description du logement - Cuisine", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "KCU2" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Moins de 4 m²", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "De 4 m² à moins de 7 m²", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "De 7 m² à moins de 12 m²", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Plus de 12 m²", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "KCU2" + } + }, + { + "id": "kp6n8gha", + "componentType": "Subsequence", + "goToPage": "59", + "label": { + "value": "Description du logement - Conditions de télétravail", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbperstelet)) and (cast(nbperstelet,integer) >0))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "nbperstelet", + "perstelet", + "TELET" + ] + }, + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kp6n8gha", + "page": "59", + "label": { + "value": "Description du logement - Conditions de télétravail", + "type": "VTL|MD" + } + } + } + }, + { + "id": "klv34du0", + "componentType": "InputNumber", + "mandatory": false, + "page": "59", + "min": 0, + "max": 10, + "decimals": 0, + "label": { + "value": "Par rapport à l’exercice du télétravail, quelle note entre 0 et 10 donneriez-vous à vos conditions de logement ?", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "klv34du0-l3ioieyl", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"10 correspond à la meilleure note, 0 à la plus mauvaise.\" || \"\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbperstelet)) and (cast(nbperstelet,integer) >0))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "nbperstelet", + "perstelet", + "TELET" + ] + }, + "controls": [ + { + "id": "klv34du0-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(HUTCOND)) and (0>HUTCOND or 10HUTCOND)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kp6n8gha", + "page": "59", + "label": { + "value": "Description du logement - Conditions de télétravail", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "HUTCOND" + ], + "response": { + "name": "HUTCOND" + } + }, + { + "id": "l3io7e8f", + "componentType": "Table", + "mandatory": false, + "page": "60", + "positioning": "HORIZONTAL", + "label": { + "value": "Par rapport à l’exercice du télétravail, votre logement présente-t-il les défauts suivants ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbperstelet)) and (cast(nbperstelet,integer) >0))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "nbperstelet", + "perstelet", + "TELET" + ] + }, + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kp6n8gha", + "page": "59", + "label": { + "value": "Description du logement - Conditions de télétravail", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "HUTDEF1", + "HUTDEF2", + "HUTDEF3", + "HUTDEF4" + ], + "body": [ + [ + { + "value": "1", + "label": { + "value": "Bruit", + "type": "VTL|MD" + } + }, + { + "componentType": "Radio", + "id": "l3io7e8f-QOP-l3irxifk", + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "HUTDEF1" + }, + "bindingDependencies": [ + "HUTDEF1" + ] + } + ], + [ + { + "value": "2", + "label": { + "value": "Absence d’une pièce dédiée au télétravail", + "type": "VTL|MD" + } + }, + { + "componentType": "Radio", + "id": "l3io7e8f-QOP-l3irkq5a", + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "HUTDEF2" + }, + "bindingDependencies": [ + "HUTDEF2" + ] + } + ], + [ + { + "value": "3", + "label": { + "value": "Manque de place", + "type": "VTL|MD" + } + }, + { + "componentType": "Radio", + "id": "l3io7e8f-QOP-l3irr1yx", + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "HUTDEF3" + }, + "bindingDependencies": [ + "HUTDEF3" + ] + } + ], + [ + { + "value": "4", + "label": { + "value": "Problème de connexion Internet", + "type": "VTL|MD" + } + }, + { + "componentType": "Radio", + "id": "l3io7e8f-QOP-l3irjbx5", + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "HUTDEF4" + }, + "bindingDependencies": [ + "HUTDEF4" + ] + } + ] + ] + }, + { + "id": "kp6ni06e", + "componentType": "Subsequence", + "goToPage": "61", + "label": { + "value": "Description du logement - Pièces à usage exclusivement professionnel", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kp6ni06e", + "page": "61", + "label": { + "value": "Description du logement - Pièces à usage exclusivement professionnel", + "type": "VTL|MD" + } + } + } + }, + { + "id": "jojuwst2", + "componentType": "Radio", + "mandatory": false, + "page": "61", + "label": { + "value": "Y a-t-il, dans le logement, des [pièces réservées exclusivement à une activité professionnelle](. 'Ne rentrent pas dans cette catégorie les pièces à usage mixte, utilisées également par les membres de la famille.'), comme un cabinet de dentiste ou d’avocat par exemple ?", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kkpnqrqh-SI", + "declarationType": "STATEMENT", + "position": "BEFORE_QUESTION_TEXT", + "label": { + "value": "On s’intéresse ici aux éventuelles pièces destinées à une activité professionnelle domiciliée dans le logement.", + "type": "VTL|MD" + } + }, + { + "id": "jojuwst2-kkpmu4ui", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Ne pas tenir compte des pièces dédiées au télétravail.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kp6ni06e", + "page": "61", + "label": { + "value": "Description du logement - Pièces à usage exclusivement professionnel", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "HUP" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "HUP" + } + }, + { + "id": "jojv1e5e", + "componentType": "InputNumber", + "mandatory": false, + "page": "62", + "min": 1, + "max": 9, + "decimals": 0, + "label": { + "value": "Combien avez-vous de pièces à usage exclusivement professionnel ?", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "jojv1e5e-klv3gkq8", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Ne pas tenir compte des pièces dédiées au télétravail.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUP=\"1\" and not(isnull(HUP)))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "HUP" + ] + }, + "controls": [ + { + "id": "jojv1e5e-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(HPP)) and (1>HPP or 9HPP)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "jojv1e5e-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((instr(cast(nvl(HPP,0),string),\".\") <> 0) or (instr(cast(nvl(HPP,0),string),\",) <> 0))", + "type": "VTL" + }, + "errorMessage": { + "value": "Merci de ne pas renseigner de chiffres après la virgule.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "HPP" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kp6ni06e", + "page": "61", + "label": { + "value": "Description du logement - Pièces à usage exclusivement professionnel", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "HPP" + ], + "response": { + "name": "HPP" + } + }, + { + "id": "jojuz9k3", + "componentType": "InputNumber", + "mandatory": false, + "page": "63", + "min": 1, + "max": 997, + "decimals": 2, + "label": { + "value": "\"Quelle est la surface totale de \" || libHSP || \" à usage exclusivement professionnel ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUP=\"1\" and not(isnull(HUP))) and (cast(HPP,integer) >0 and HUP =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "HUP", + "HPP" + ] + }, + "controls": [ + { + "id": "jojuz9k3-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(HSP)) and (1.00>HSP or 997.00HSP)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 2 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kp6ni06e", + "page": "61", + "label": { + "value": "Description du logement - Pièces à usage exclusivement professionnel", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libHSP", + "HSP" + ], + "unit": "mètres carrés", + "response": { + "name": "HSP" + } + }, + { + "id": "kp6ns6ar", + "componentType": "Subsequence", + "goToPage": "64", + "label": { + "value": "Description du logement - Pièces annexes à usage d’habitation", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kp6ns6ar", + "page": "64", + "label": { + "value": "Description du logement - Pièces annexes à usage d’habitation", + "type": "VTL|MD" + } + } + } + }, + { + "id": "jojv79ut", + "componentType": "Radio", + "mandatory": false, + "page": "64", + "label": { + "value": "Y a-t-il des pièces annexes à usage d’habitation rattachées au logement avec une entrée indépendante, telles que des chambres de bonne ou d’anciens garages réaménagés en studios par exemple ?", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "jojv79ut-jrj0gbrz", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Ne pas compter les pièces qui n’ont pas un usage d’habitation : débarras, buanderies, garages...", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kp6ns6ar", + "page": "64", + "label": { + "value": "Description du logement - Pièces annexes à usage d’habitation", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "HUA" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "HUA" + } + }, + { + "id": "jojv3ha7", + "componentType": "InputNumber", + "mandatory": false, + "page": "65", + "min": 1, + "max": 9, + "decimals": 0, + "label": { + "value": "Combien avez-vous de [pièces annexes](. 'Pièces rattachées au logement avec une entrée indépendante telles que des chambres de bonne ou d’anciens garages réaménagés en studios par exemple') à usage d’habitation ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUA = \"1\" and not(isnull(HUA)))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "HUA" + ] + }, + "controls": [ + { + "id": "jojv3ha7-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(HPA)) and (1>HPA or 9HPA)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "jojv3ha7-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((instr(cast(nvl(HPA,0),string),\".\") <> 0) or (instr(cast(nvl(HPA,0),string),\",) <> 0))", + "type": "VTL" + }, + "errorMessage": { + "value": "Merci de ne pas renseigner de chiffres après la virgule.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "HPA" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kp6ns6ar", + "page": "64", + "label": { + "value": "Description du logement - Pièces annexes à usage d’habitation", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "HPA" + ], + "response": { + "name": "HPA" + } + }, + { + "id": "kmd6o006", + "componentType": "Radio", + "mandatory": false, + "page": "66", + "label": { + "value": "Quel usage faites-vous de la pièce annexe ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUA = \"1\" and not(isnull(HUA))) and (cast(HPA,integer) > 0) and (cast(HPA,integer) = 1)", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "HUA", + "HPA" + ] + }, + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kp6ns6ar", + "page": "64", + "label": { + "value": "Description du logement - Pièces annexes à usage d’habitation", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "HULHUI1" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Louée, sous-louée ou prêtée à des tiers", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Réservée à votre usage personnel", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "À l’usage d’un salarié à votre service (employé, jeune au pair...)", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "HULHUI1" + } + }, + { + "id": "kmcdiwdv", + "componentType": "CheckboxGroup", + "page": "67", + "label": { + "value": "Quel usage faites-vous des [pièces annexes](. 'Pièces rattachées au logement avec une entrée indépendante telles que des chambres de bonnes ou d’anciens garages réaménagés en studios, par exemple') ?", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kmcdiwdv-kmcdfb60", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Plusieurs réponses possibles", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUA = \"1\" and not(isnull(HUA))) and (cast(HPA,integer) > 0) and ((not(isnull(HPA))) and (cast(HPA,integer) >1))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "HUA", + "HPA" + ] + }, + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kp6ns6ar", + "page": "64", + "label": { + "value": "Description du logement - Pièces annexes à usage d’habitation", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "HULHUI21", + "HULHUI22", + "HULHUI23" + ], + "responses": [ + { + "id": "kmcdiwdv-QOP-kmd9jdka", + "label": { + "value": "Louées, sous-louées ou prêtées à des tiers.", + "type": "VTL|MD" + }, + "response": { + "name": "HULHUI21" + } + }, + { + "id": "kmcdiwdv-QOP-kmd9qoms", + "label": { + "value": "Réservées à votre usage personnel", + "type": "VTL|MD" + }, + "response": { + "name": "HULHUI22" + } + }, + { + "id": "kmcdiwdv-QOP-kmd988n2", + "label": { + "value": "À l’usage d’un salarié à votre service (employé, jeune au pair..)", + "type": "VTL|MD" + }, + "response": { + "name": "HULHUI23" + } + } + ] + }, + { + "id": "jojuzbus", + "componentType": "InputNumber", + "mandatory": false, + "page": "68", + "min": 1, + "max": 9, + "decimals": 0, + "label": { + "value": "\"Parmi les \" || cast(HPA,string) || \" pièces annexes, combien sont-elles réservées à votre usage personnel ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUA = \"1\" and not(isnull(HUA))) and (cast(HPA,integer) > 0) and ((not(isnull(HPA))) and (cast(HPA,integer) >1)) and ((HULHUI22) and (HULHUI21 or HULHUI23))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "HUA", + "HPA", + "HULHUI22", + "HULHUI21", + "HULHUI23" + ] + }, + "controls": [ + { + "id": "jojuzbus-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(HPI1)) and (1>HPI1 or 9HPI1)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "jojuzbus-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((instr(cast(nvl(HPI1,0),string),\".\") <> 0) or (instr(cast(nvl(HPI1,0),string),\",) <> 0))", + "type": "VTL" + }, + "errorMessage": { + "value": "Merci de ne pas renseigner de chiffres après la virgule.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "HPI1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kp6ns6ar", + "page": "64", + "label": { + "value": "Description du logement - Pièces annexes à usage d’habitation", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "HPA", + "HPI1" + ], + "response": { + "name": "HPI1" + } + }, + { + "id": "klv4iusu", + "componentType": "InputNumber", + "mandatory": false, + "page": "69", + "min": 1, + "max": 9, + "decimals": 0, + "label": { + "value": "\"Parmi les \" || cast(HPA,string) || \" pièces annexes, combien sont-elles réservées au logement d’un salarié à votre service ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUA = \"1\" and not(isnull(HUA))) and (cast(HPA,integer) > 0) and ((not(isnull(HPA))) and (cast(HPA,integer) >1)) and ((HULHUI23) and (HULHUI21 or HULHUI22))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "HUA", + "HPA", + "HULHUI23", + "HULHUI21", + "HULHUI22" + ] + }, + "controls": [ + { + "id": "klv4iusu-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(HPI2)) and (1>HPI2 or 9HPI2)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "klv4iusu-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((instr(cast(nvl(HPI2,0),string),\".\") <> 0) or (instr(cast(nvl(HPI2,0),string),\",) <> 0))", + "type": "VTL" + }, + "errorMessage": { + "value": "Merci de ne pas renseigner de chiffres après la virgule.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "HPI2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kp6ns6ar", + "page": "64", + "label": { + "value": "Description du logement - Pièces annexes à usage d’habitation", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "HPA", + "HPI2" + ], + "response": { + "name": "HPI2" + } + }, + { + "id": "jojv5bnw", + "componentType": "InputNumber", + "mandatory": false, + "page": "70", + "min": 1, + "max": 999, + "decimals": 2, + "label": { + "value": "\"Quelle est la surface totale de \" || libHSI1 || \" à votre usage personnel ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUA = \"1\" and not(isnull(HUA))) and (cast(HPA,integer) > 0) and ((HULHUI1=\"2\" or (HULHUI22)))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "HUA", + "HPA", + "HULHUI1", + "HULHUI22" + ] + }, + "controls": [ + { + "id": "jojv5bnw-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(HSI1)) and (1.00>HSI1 or 999.00HSI1)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 2 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kp6ns6ar", + "page": "64", + "label": { + "value": "Description du logement - Pièces annexes à usage d’habitation", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libHSI1", + "HSI1" + ], + "unit": "mètres carrés", + "response": { + "name": "HSI1" + } + }, + { + "id": "klw36l7v", + "componentType": "InputNumber", + "mandatory": false, + "page": "71", + "min": 1, + "max": 999, + "decimals": 2, + "label": { + "value": "\"Quelle est la surface totale de \" || libHSI2 || \" au logement d’un salarié à votre service ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUA = \"1\" and not(isnull(HUA))) and (cast(HPA,integer) > 0) and ((HULHUI1=\"3\" or (HULHUI23)))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "HUA", + "HPA", + "HULHUI1", + "HULHUI23" + ] + }, + "controls": [ + { + "id": "klw36l7v-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(HSI2)) and (1.00>HSI2 or 999.00HSI2)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 2 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kp6ns6ar", + "page": "64", + "label": { + "value": "Description du logement - Pièces annexes à usage d’habitation", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libHSI2", + "HSI2" + ], + "unit": "mètres carrés", + "response": { + "name": "HSI2" + } + }, + { + "id": "kp6nfjxe", + "componentType": "Subsequence", + "goToPage": "72", + "label": { + "value": "Description du logement - Taille", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kp6nfjxe", + "page": "72", + "label": { + "value": "Description du logement - Taille", + "type": "VTL|MD" + } + } + } + }, + { + "id": "jojvgfei", + "componentType": "InputNumber", + "mandatory": false, + "page": "72", + "min": 1, + "max": 100, + "decimals": 0, + "label": { + "value": "Combien avez-vous de pièces d’habitation (ou de pièces habitables) ?", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "jojvgfei-kd5qr5s5", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Ne pas compter : \" || libHPHc || \" \" || \" \" || libHPHp || \" \" || libHPHa || \"entrée, couloir, salle de bains, W-C, véranda...\"", + "type": "VTL|MD" + } + }, + { + "id": "jojvgfei-kmdb0cfn", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "liHPHc2", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "controls": [ + { + "id": "jojvgfei-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(HPH)) and (1>HPH or 100HPH)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "jojvgfei-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(nvl(HPH,0),integer) >= 10)", + "type": "VTL" + }, + "errorMessage": { + "value": "Êtes-vous certain(e) que votre logement comporte ce nombre de pièces d’habitation ? Il s’agit du nombre de pièces (hors cuisine séparée, salle de bain, entrée, véranda etc.) Pouvez-vous vérifier votre réponse ?", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "HPH" + ] + }, + { + "id": "jojvgfei-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(nvl(HPH,0) = 0)", + "type": "VTL" + }, + "errorMessage": { + "value": "Votre réponse est essentielle pour la description de votre logement, pouvez-vous indiquer le nombre de pièces habitables de votre logement ?", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "HPH" + ] + }, + { + "id": "jojvgfei-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((instr(cast(nvl(HPH,0),string),\".\") <> 0) or (instr(cast(nvl(HPH,0),string),\",) <> 0))", + "type": "VTL" + }, + "errorMessage": { + "value": "Merci de ne pas renseigner de chiffres après la virgule.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "HPH" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kp6nfjxe", + "page": "72", + "label": { + "value": "Description du logement - Taille", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libHPHc", + "libHPHp", + "libHPHa", + "liHPHc2", + "HPH" + ], + "response": { + "name": "HPH" + } + }, + { + "id": "jojv4yqe", + "componentType": "InputNumber", + "mandatory": false, + "page": "73", + "min": 0, + "max": 100, + "decimals": 0, + "label": { + "value": "\"Parmi ces \" || cast(HPH,string) || \" pièces, combien de chambres avez-vous ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "jojv4yqe-js0hn6b6", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Ne pas compter les pièces ayant un usage mixte (exemple : salon le jour, chambre la nuit). Compter cependant les chambres également utilisées comme bureau.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(HPH,integer) > 1)", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "HPH" + ] + }, + "controls": [ + { + "id": "jojv4yqe-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(HCHA)) and (0>HCHA or 100HCHA)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "jojv4yqe-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((not(isnull(HCHA)) and not(isnull(HPH))) and (cast(HCHA,integer)>=0) and (cast(HPH,integer)>=1) and (cast(HCHA,integer)>cast(HPH,integer)))", + "type": "VTL" + }, + "errorMessage": { + "value": "Vous avez indiqué avoir plus de chambres que de pièces d’habitation. Pouvez-vous corriger l’une de vos réponses ?", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "HCHA", + "HPH" + ] + }, + { + "id": "jojv4yqe-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((not(isnull(HCHA)) and not(isnull(HPH))) and (cast(HCHA,integer)>=0) and (cast(HPH,integer)>0) and (cast(HCHA,integer)=cast(HPH,integer)))", + "type": "VTL" + }, + "errorMessage": { + "value": "Vous avez indiqué avoir le même nombre de pièces d’habitation que de chambres. Pouvez-vous corriger l’une de vos réponses si votre logement ne comporte pas que des chambres ?", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "HCHA", + "HPH" + ] + }, + { + "id": "jojv4yqe-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((instr(cast(nvl(HCHA,0),string),\".\") <> 0) or (instr(cast(nvl(HCHA,0),string),\",) <> 0))", + "type": "VTL" + }, + "errorMessage": { + "value": "Merci de ne pas renseigner de chiffres après la virgule.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "HCHA" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kp6nfjxe", + "page": "72", + "label": { + "value": "Description du logement - Taille", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "HPH", + "HCHA" + ], + "response": { + "name": "HCHA" + } + }, + { + "id": "jojvc0vt", + "componentType": "InputNumber", + "mandatory": false, + "page": "74", + "min": 1, + "max": 1000, + "decimals": 2, + "label": { + "value": "\"Quelle est la surface totale habitable de votre logement\" || libHST || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "jojvc0vt-kd5v90t1", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Inclure la surface des couloirs, pièces de service, cuisine...", + "type": "VTL|MD" + } + }, + { + "id": "jojvc0vt-kd5vkr8v", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Ne pas inclure la surface des balcons, loggias, vérandas, terrasses, garages, caves, combles non aménagés.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "controls": [ + { + "id": "jojvc0vt-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(HST)) and (1.00>HST or 1000.00HST)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 2 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "jojvc0vt-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(nvl(HST,0) = 0))", + "type": "VTL" + }, + "errorMessage": { + "value": "Votre réponse est essentielle pour la description de votre logement, pouvez-vous indiquer la surface habitable de votre logement ?", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "HST" + ] + }, + { + "id": "jojvc0vt-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(nvl(HST,0) = 0) and not(nvl(HPH,0) = 0 ) and (cast(HST,integer)>=81) and (cast(HPH,integer)=1))", + "type": "VTL" + }, + "errorMessage": { + "value": "Êtes-vous certain(e) que votre logement mesure cette surface et comporte une seule pièce ?", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "HST", + "HPH" + ] + }, + { + "id": "jojvc0vt-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(nvl(HPH,0) = 0) and not(nvl(HST,0) =0 ) and (cast(HST,integer)>8) and (cast(HPH,integer)>1) and ((cast(libHSTmoy,integer) <= 8) or (cast(libHSTmoy2,integer) >=56)))", + "type": "VTL" + }, + "errorMessage": { + "value": "Êtes-vous certain(e) que votre logement mesure cette surface et comporte ce nombre de pièces d’habitation ?", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "HPH", + "HST", + "libHSTmoy", + "libHSTmoy2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kp6nfjxe", + "page": "72", + "label": { + "value": "Description du logement - Taille", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libHST", + "HST" + ], + "unit": "mètres carrés", + "response": { + "name": "HST" + } + }, + { + "id": "jojv1ux1", + "componentType": "Radio", + "mandatory": false, + "page": "75", + "label": { + "value": "Compte tenu du nombre de personnes de votre ménage, comment estimez-vous le nombre de pièces dont vous disposez ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kp6nfjxe", + "page": "72", + "label": { + "value": "Description du logement - Taille", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "HPEUP" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Très insuffisant", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Insuffisant", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Correct", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Supérieur à vos besoins", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Très supérieur à vos besoins", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "HPEUP" + } + }, + { + "id": "kv29cjdq", + "componentType": "Radio", + "mandatory": false, + "page": "76", + "label": { + "value": "Quelle est la hauteur sous plafond de votre pièce principale ?", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kv29cjdq-ljny78kx", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Lorsque la pièce principale est située sous des combles, la hauteur sous plafond varie. Choisir la réponse correspondant à la partie la plus haute de la pièce.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kp6nfjxe", + "page": "72", + "label": { + "value": "Description du logement - Taille", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "HAUT" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Moins de 2,20 mètres", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Entre 2,20 mètres et 2,50 mètres", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Plus de 2,50 mètres", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "HAUT" + } + }, + { + "id": "kv852xbl", + "componentType": "Subsequence", + "goToPage": "77", + "label": { + "value": "Dépendances du logement", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kv852xbl", + "page": "77", + "label": { + "value": "Dépendances du logement", + "type": "VTL|MD" + } + } + } + }, + { + "id": "jrupq1i5", + "componentType": "Radio", + "mandatory": false, + "page": "77", + "label": { + "value": "Avez-vous une véranda ?", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "jrupq1i5-jrupk9tg", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Local habitable tout au long de l’année (entièrement clos et couvert) et pouvant être chauffé.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kv852xbl", + "page": "77", + "label": { + "value": "Dépendances du logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "KVE" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "KVE" + } + }, + { + "id": "jrupsr80", + "componentType": "InputNumber", + "mandatory": false, + "page": "78", + "min": 1, + "max": 999, + "decimals": 2, + "label": { + "value": "Quelle est la surface de cette véranda ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KVE =\"1\" and not(isnull(KVE)))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "KVE" + ] + }, + "controls": [ + { + "id": "jrupsr80-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(KSV)) and (1.00>KSV or 999.00KSV)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 2 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kv852xbl", + "page": "77", + "label": { + "value": "Dépendances du logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "KSV" + ], + "unit": "mètres carrés", + "response": { + "name": "KSV" + } + }, + { + "id": "jrupy93h", + "componentType": "Radio", + "mandatory": false, + "page": "79", + "label": { + "value": "\"La surface de la véranda (\" || cast(KSV,string) || \" m²) a t-elle été prise en compte dans la surface totale du logement (\" || cast(HST,string) || \" m²) que vous avez indiquée précédemment ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KVE =\"1\" and not(isnull(KVE))) and ((cast(KSV,integer)>=1) and (cast(HST,integer)>=1))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "KVE", + "KSV", + "HST" + ] + }, + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kv852xbl", + "page": "77", + "label": { + "value": "Dépendances du logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "KSV", + "HST", + "KSV1" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "KSV1" + } + }, + { + "id": "jrupzl7m", + "componentType": "Radio", + "mandatory": false, + "page": "80", + "label": { + "value": "\"Avez-vous un balcon\"|| libKBA || \" ou une loggia ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kv852xbl", + "page": "77", + "label": { + "value": "Dépendances du logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libKBA", + "KBA" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "KBA" + } + }, + { + "id": "jrupx7iz", + "componentType": "InputNumber", + "mandatory": false, + "page": "81", + "min": 1, + "max": 999, + "decimals": 2, + "label": { + "value": "\"Quelle est la surface totale des balcons\"|| libKBA || \" ou loggias ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KBA=\"1\" and not(isnull(KBA)))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "KBA" + ] + }, + "controls": [ + { + "id": "jrupx7iz-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(KSB)) and (1.00>KSB or 999.00KSB)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 2 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kv852xbl", + "page": "77", + "label": { + "value": "Dépendances du logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libKBA", + "KSB" + ], + "unit": "mètres carrés", + "response": { + "name": "KSB" + } + }, + { + "id": "jruq98v2", + "componentType": "Radio", + "mandatory": false, + "page": "82", + "label": { + "value": "libKJA || \" un jardin, un terrain ou une cour réservés à votre usage personnel ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kv852xbl", + "page": "77", + "label": { + "value": "Dépendances du logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libKJA", + "KJA" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "KJA" + } + }, + { + "id": "jruq8x6e", + "componentType": "InputNumber", + "mandatory": false, + "page": "83", + "min": 1, + "max": 100000, + "decimals": 2, + "label": { + "value": "Quelle est la surface totale de votre terrain ?", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "jruq8x6e-js06xqg5", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Inclure la surface de la maison sur le terrain ​", + "type": "VTL|MD" + } + }, + { + "id": "jruq8x6e-kmdhsqjj", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Prendre en compte le terrain sur lequel est construite la maison et réservé à l’usage personnel \" || libKSJPI || \"y compris les parcelles séparées.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KJA=\"1\" and libHTLC=\"individuel\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "KJA", + "libHTLC", + "HTLC1", + "INDCOLL" + ] + }, + "controls": [ + { + "id": "jruq8x6e-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(KSJPI)) and (1.00>KSJPI or 100000.00KSJPI)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 2 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "jruq8x6e-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(nvl(KSJPI,0)=0)", + "type": "VTL" + }, + "errorMessage": { + "value": "La surface de votre terrain n’a pas pu être enregistrée, merci de ne pas renseigner d’espaces dans votre réponse.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "KSJPI" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kv852xbl", + "page": "77", + "label": { + "value": "Dépendances du logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libKSJPI", + "KSJPI" + ], + "unit": "mètres carrés", + "response": { + "name": "KSJPI" + } + }, + { + "id": "jruq85av", + "componentType": "Radio", + "mandatory": false, + "page": "84", + "label": { + "value": "Pouvez-vous néanmoins indiquer dans quelle tranche se situe la surface du terrain ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KJA=\"1\" and libHTLC=\"individuel\") and (isnull(KSJPI))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "KJA", + "libHTLC", + "HTLC1", + "INDCOLL", + "KSJPI" + ] + }, + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kv852xbl", + "page": "77", + "label": { + "value": "Dépendances du logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "KSJPIT" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Inférieur à 300 m²", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "De 300 à moins de 500 m²", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "De 500 à moins de 1 000 m²", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "De 1 000 à moins de 1 500m²", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\"1 500 m² ou plus\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "KSJPIT" + } + }, + { + "id": "jruq4was", + "componentType": "InputNumber", + "mandatory": false, + "page": "85", + "min": 1, + "max": 99999, + "decimals": 2, + "label": { + "value": "Quelle est la surface de terrain couverte par la maison (emprise au sol) ?", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "jruq4was-jruq9370", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Inclure la surface du garage\" || libKSMI || \".\"", + "type": "VTL|MD" + } + }, + { + "id": "jruq4was-kd8v214t", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Exclure les abris de jardin, les piscines, ...", + "type": "VTL|MD" + } + }, + { + "id": "jruq4was-lex5yu47", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "L’emprise au sol est la surface totale qu’occupe votre maison sur le terrain", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KJA=\"1\" and libHTLC=\"individuel\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "KJA", + "libHTLC", + "HTLC1", + "INDCOLL" + ] + }, + "controls": [ + { + "id": "jruq4was-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(KSMI)) and (1.00>KSMI or 99999.00KSMI)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 2 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "jruq4was-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((cast(nvl(KSMI,0),integer)>cast(nvl(KSJPI,0),integer)))", + "type": "VTL" + }, + "errorMessage": { + "value": "Votre réponse ne semble pas compatible avec la surface totale du terrain (maison comprise). Pouvez-vous corriger l’une ou l’autre de vos réponses ?", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "KSMI", + "KSJPI" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kv852xbl", + "page": "77", + "label": { + "value": "Dépendances du logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libKSMI", + "KSMI" + ], + "unit": "mètres carrés", + "response": { + "name": "KSMI" + } + }, + { + "id": "jruq6fv0", + "componentType": "InputNumber", + "mandatory": false, + "page": "86", + "min": 1, + "max": 99999, + "decimals": 2, + "label": { + "value": "Quelle est la surface de ces espaces privatifs attenants au logement ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (libHTLC=\"collectif\" and KJA=\"1\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "libHTLC", + "HTLC1", + "INDCOLL", + "KJA" + ] + }, + "controls": [ + { + "id": "jruq6fv0-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(KSJPC)) and (1.00>KSJPC or 99999.00KSJPC)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 2 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kv852xbl", + "page": "77", + "label": { + "value": "Dépendances du logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "KSJPC" + ], + "unit": "mètres carrés", + "response": { + "name": "KSJPC" + } + }, + { + "id": "jruqlf39", + "componentType": "Radio", + "mandatory": false, + "page": "87", + "label": { + "value": "Disposez-vous d’espaces extérieurs (jardin, terrain, cour...) en tant que parties communes de la résidence ou de la copropriété ?", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "jruqlf39-jruse4ew", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Exclure les emplacements de stationnement, les voies de circulation et les espaces utilisés uniquement à des fins professionnelles.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((libHTLC =\"collectif\") or (ICOI=\"1\"))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "libHTLC", + "HTLC1", + "INDCOLL", + "ICOI" + ] + }, + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kv852xbl", + "page": "77", + "label": { + "value": "Dépendances du logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "KJC" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "KJC" + } + }, + { + "id": "jrusmgfq", + "componentType": "Radio", + "mandatory": false, + "page": "88", + "label": { + "value": "Quelle est la surface de ces espaces partagés ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((libHTLC =\"collectif\") or (ICOI=\"1\")) and (KJC=\"1\" and not(isnull(KJC)))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "libHTLC", + "HTLC1", + "INDCOLL", + "ICOI", + "KJC" + ] + }, + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kv852xbl", + "page": "77", + "label": { + "value": "Dépendances du logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "KSJC" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Moins de 200 m²", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"200 à moins de 1 000 m²\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"1 000 m² ou plus\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "KSJC" + } + }, + { + "id": "l3irva5g", + "componentType": "Radio", + "mandatory": false, + "page": "89", + "label": { + "value": "De combien de voitures les habitants de ce logement disposent-ils ?", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l3irva5g-l3is5o9g", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Ne pas compter les voitures ou les fourgonnettes à usage exclusivement professionnel.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kv852xbl", + "page": "77", + "label": { + "value": "Dépendances du logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "GVOIT" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Une", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Deux", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Trois ou plus", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Aucune", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "GVOIT" + } + }, + { + "id": "jrusjpqy", + "componentType": "CheckboxGroup", + "page": "90", + "label": { + "value": "\"Au sein de \" || libHTLC2 ||\", disposez-vous d’un emplacement privatif de stationnement ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "jrusjpqy-kd8yemf2", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Plusieurs réponses possibles.", + "type": "VTL|MD" + } + }, + { + "id": "jrusjpqy-kmdk73lg", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Inclure les emplacements que vous utilisez pour votre usage personnel ou que vous mettez en location.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "controls": [ + { + "id": "jrusjpqy-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(((nvl(KGA4, false) = true and nvl(KGA1, false) = true) or (nvl(KGA4, false) = true and nvl(KGA2, false) = true) or (nvl(KGA4, false) = true and nvl(KGA3, false) = true) ))", + "type": "VTL" + }, + "errorMessage": { + "value": "La réponse \"Non, ni garage, ni box, ni parking\" n’en permet pas d’autre. Pouvez-vous corriger votre réponse ?", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "KGA4", + "KGA1", + "KGA2", + "KGA3" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kv852xbl", + "page": "77", + "label": { + "value": "Dépendances du logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libHTLC2", + "KGA1", + "KGA2", + "KGA3", + "KGA4" + ], + "responses": [ + { + "id": "jrusjpqy-QOP-kf8972di", + "label": { + "value": "Oui, un garage ou un box", + "type": "VTL|MD" + }, + "response": { + "name": "KGA1" + } + }, + { + "id": "jrusjpqy-QOP-kf893sen", + "label": { + "value": "Oui, une place de parking souterrain", + "type": "VTL|MD" + }, + "response": { + "name": "KGA2" + } + }, + { + "id": "jrusjpqy-QOP-kf89737h", + "label": { + "value": "Oui, une place de parking en plein air", + "type": "VTL|MD" + }, + "response": { + "name": "KGA3" + } + }, + { + "id": "jrusjpqy-QOP-kf89ei4h", + "label": { + "value": "Non, ni garage, ni box, ni parking", + "type": "VTL|MD" + }, + "response": { + "name": "KGA4" + } + } + ] + }, + { + "id": "jrut4vl7", + "componentType": "CheckboxGroup", + "page": "91", + "label": { + "value": "\"En dehors de \"|| libHTLC2 || \", disposez-vous d’un emplacement privatif de stationnement ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "jrut4vl7-jrut167a", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Plusieurs réponses possibles.", + "type": "VTL|MD" + } + }, + { + "id": "jrut4vl7-kmdk288d", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Inclure les emplacements que vous utilisez pour votre usage personnel ou que vous mettez en location.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "controls": [ + { + "id": "jrut4vl7-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(((nvl(KGA14, false) = true and nvl(KGA11, false) = true) or (nvl(KGA14, false) = true and nvl(KGA12, false) = true) or (nvl(KGA14, false) = true and nvl(KGA13, false) = true) ))", + "type": "VTL" + }, + "errorMessage": { + "value": "La réponse \"Non, ni garage, ni box, ni parking\" n’en permet pas d’autre, pouvez-vous corriger votre réponse ?", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "KGA14", + "KGA11", + "KGA12", + "KGA13" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kv852xbl", + "page": "77", + "label": { + "value": "Dépendances du logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libHTLC2", + "KGA11", + "KGA12", + "KGA13", + "KGA14" + ], + "responses": [ + { + "id": "jrut4vl7-QOP-kf8913r1", + "label": { + "value": "Oui, un garage ou un box", + "type": "VTL|MD" + }, + "response": { + "name": "KGA11" + } + }, + { + "id": "jrut4vl7-QOP-kf89c33b", + "label": { + "value": "Oui, une place de parking souterrain", + "type": "VTL|MD" + }, + "response": { + "name": "KGA12" + } + }, + { + "id": "jrut4vl7-QOP-kf899mmw", + "label": { + "value": "Oui, une place de parking en plein air", + "type": "VTL|MD" + }, + "response": { + "name": "KGA13" + } + }, + { + "id": "jrut4vl7-QOP-kf8931vm", + "label": { + "value": "Non, ni garage, ni box, ni parking", + "type": "VTL|MD" + }, + "response": { + "name": "KGA14" + } + } + ] + }, + { + "id": "jrut0i0j", + "componentType": "Radio", + "mandatory": false, + "page": "92", + "label": { + "value": "Disposez-vous d’une cave ou d’un sous-sol (même si vous ne l’utilisez pas) ?", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "jrut0i0j-jrusw7aw", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Prendre en compte les sous-sols utilisés comme garage.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kv852xbl", + "page": "77", + "label": { + "value": "Dépendances du logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "KCA" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "KCA" + } + }, + { + "id": "jrusu349", + "componentType": "Radio", + "mandatory": false, + "page": "93", + "label": { + "value": "\"Disposez-vous, dans les parties communes de \" || libKVELO || \", d’un local fermé où vous pouvez déposer un vélo ou une poussette ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "jrusu349-kmdk6e4h", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Hors cave ou local privatif.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((libHTLC =\"collectif\") or (ICOI=\"1\"))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "libHTLC", + "HTLC1", + "INDCOLL", + "ICOI" + ] + }, + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kv852xbl", + "page": "77", + "label": { + "value": "Dépendances du logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libKVELO", + "KVELO" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Vous ne savez pas", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "KVELO" + } + }, + { + "id": "jrutj5co", + "componentType": "Radio", + "mandatory": false, + "page": "94", + "label": { + "value": "Disposez-vous d’un grenier ou de combles aménageables, mais non aménagés en pièces d’habitation ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kv852xbl", + "page": "77", + "label": { + "value": "Dépendances du logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "KGRA" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "KGRA" + } + }, + { + "id": "jruu4ry3", + "componentType": "Radio", + "mandatory": false, + "page": "95", + "label": { + "value": "Disposez-vous d’un sous-sol non aménagé en pièces d’habitation ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KCA=\"1\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "KCA" + ] + }, + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kv852xbl", + "page": "77", + "label": { + "value": "Dépendances du logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "KSOA" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "KSOA" + } + }, + { + "id": "jruue197", + "componentType": "Radio", + "mandatory": false, + "page": "96", + "label": { + "value": "Avez-vous une piscine fixe d’une profondeur de plus de 1 mètre ?", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "jruue197-jruu3t31", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Exclure les piscines démontables et les piscines hors-sol.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HTLC1=\"1\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "HTLC1" + ] + }, + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kv852xbl", + "page": "77", + "label": { + "value": "Dépendances du logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "KPISC" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "KPISC" + } + }, + { + "id": "jruubukg", + "componentType": "Radio", + "mandatory": false, + "page": "97", + "label": { + "value": "Disposez-vous d’une grange non aménagée en pièces d’habitation ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HTLC1=\"1\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "HTLC1" + ] + }, + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kv852xbl", + "page": "77", + "label": { + "value": "Dépendances du logement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "KGRAA" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "KGRAA" + } + }, + { + "id": "kv857tu4", + "componentType": "Subsequence", + "goToPage": "98", + "label": { + "value": "Équipement sanitaire", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kv857tu4", + "page": "98", + "label": { + "value": "Équipement sanitaire", + "type": "VTL|MD" + } + } + } + }, + { + "id": "jruuncm0", + "componentType": "Radio", + "mandatory": false, + "page": "98", + "label": { + "value": "Comment votre logement est-il alimenté en eau ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kv857tu4", + "page": "98", + "label": { + "value": "Équipement sanitaire", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "KAO1" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Eau froide et chaude", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Eau froide uniquement", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Pas d’eau courante", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "KAO1" + } + }, + { + "id": "jruv1cla", + "componentType": "Radio", + "mandatory": false, + "page": "99", + "label": { + "value": "Disposez-vous de W-C à l’intérieur du logement ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kv857tu4", + "page": "98", + "label": { + "value": "Équipement sanitaire", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "KWC1" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non, W-C extérieurs au logement", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Non, pas de W-C du tout", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "KWC1" + } + }, + { + "id": "kmeu61l4", + "componentType": "InputNumber", + "mandatory": false, + "page": "100", + "min": 0, + "max": 9, + "decimals": 0, + "label": { + "value": "Combien avez-vous de W-C ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KWC1=\"1\" and not(isnull(KWC1)))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "KWC1" + ] + }, + "controls": [ + { + "id": "kmeu61l4-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(KWCID)) and (0>KWCID or 9KWCID)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "kmeu61l4-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(nvl(KWCID,0) = 0)", + "type": "VTL" + }, + "errorMessage": { + "value": "Vous avez indiqué posséder des W-C à l’intérieur de votre logement. Pouvez-vous indiquer combien ?", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "KWCID" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kv857tu4", + "page": "98", + "label": { + "value": "Équipement sanitaire", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "KWCID" + ], + "response": { + "name": "KWCID" + } + }, + { + "id": "lfjgw27o", + "componentType": "Radio", + "mandatory": false, + "page": "101", + "label": { + "value": "Vos W-C sont-ils situés dans une pièce indépendante ?", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lfjgw27o-lh5x9lsb", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "On exclut ici les W-C situés dans une autre pièce comme une salle de bain par exemple.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KWC1=\"1\" and not(isnull(KWC1))) and (nvl(KWCID,0)=1)", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "KWC1", + "KWCID" + ] + }, + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kv857tu4", + "page": "98", + "label": { + "value": "Équipement sanitaire", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "KWCIDB" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "KWCIDB" + } + }, + { + "id": "lfjel2zf", + "componentType": "InputNumber", + "mandatory": false, + "page": "102", + "min": 0, + "max": 9, + "decimals": 0, + "label": { + "value": "\"Parmi vos \" || cast(KWCID,string) || \" W-C, combien sont situés dans une pièce indépendante ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lfjel2zf-lfjehv20", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "On exclut ici les W-C situés dans une autre pièce comme une salle de bain par exemple.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KWC1=\"1\" and not(isnull(KWC1))) and (nvl(KWCID,0)>1)", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "KWC1", + "KWCID" + ] + }, + "controls": [ + { + "id": "lfjel2zf-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(KWCID2)) and (0>KWCID2 or 9KWCID2)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kv857tu4", + "page": "98", + "label": { + "value": "Équipement sanitaire", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "KWCID", + "KWCID2" + ], + "response": { + "name": "KWCID2" + } + }, + { + "id": "jruva8uu", + "componentType": "Radio", + "mandatory": false, + "page": "103", + "label": { + "value": "Possédez-vous une salle d’eau ou une salle de bain (pièce contenant une douche ou une baignoire) ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KAO1<>\"3\" or isnull(KAO1))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "KAO1" + ] + }, + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kv857tu4", + "page": "98", + "label": { + "value": "Équipement sanitaire", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "KBD" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "KBD" + } + }, + { + "id": "kksgd6fv", + "componentType": "InputNumber", + "mandatory": false, + "page": "104", + "min": 0, + "max": 9, + "decimals": 0, + "label": { + "value": "Combien avez-vous de salles d’eau ou de salles de bain ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KAO1<>\"3\" or isnull(KAO1)) and (KBD=\"1\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "KAO1", + "KBD" + ] + }, + "controls": [ + { + "id": "kksgd6fv-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(KSE)) and (0>KSE or 9KSE)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "kksgd6fv-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(nvl(KSE,0) = 0)", + "type": "VTL" + }, + "errorMessage": { + "value": "Vous avez indiqué posséder au moins une salle d’eau ou de bain. Pouvez-vous indiquer leur nombre ?", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "KSE" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kv857tu4", + "page": "98", + "label": { + "value": "Équipement sanitaire", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "KSE" + ], + "response": { + "name": "KSE" + } + }, + { + "id": "lfjgy3we", + "componentType": "Radio", + "mandatory": false, + "page": "105", + "label": { + "value": "Votre salle d’eau ou de bain comporte-t-elle une baignoire ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KAO1<>\"3\" or isnull(KAO1)) and (KBD=\"1\") and (nvl(KSE,0)=1)", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "KAO1", + "KBD", + "KSE" + ] + }, + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kv857tu4", + "page": "98", + "label": { + "value": "Équipement sanitaire", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "KSEB" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "KSEB" + } + }, + { + "id": "lfjedybr", + "componentType": "InputNumber", + "mandatory": false, + "page": "106", + "min": 0, + "max": 9, + "decimals": 0, + "label": { + "value": "\"Parmi vos \" || cast(KSE,string) || \" salles d’eau ou de bain, combien comportent une baignoire ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KAO1<>\"3\" or isnull(KAO1)) and (KBD=\"1\") and (nvl(KSE,0)>1)", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "KAO1", + "KBD", + "KSE" + ] + }, + "controls": [ + { + "id": "lfjedybr-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(KSE2)) and (0>KSE2 or 9KSE2)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kv857tu4", + "page": "98", + "label": { + "value": "Équipement sanitaire", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "KSE", + "KSE2" + ], + "response": { + "name": "KSE2" + } + }, + { + "id": "kmf0xcox", + "componentType": "Radio", + "mandatory": false, + "page": "107", + "label": { + "value": "Avez-vous une douche ou une baignoire installée dans une pièce destinée à un autre usage ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KAO1<>\"3\" or isnull(KAO1)) and (KBD=\"2\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "KAO1", + "KBD" + ] + }, + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kv857tu4", + "page": "98", + "label": { + "value": "Équipement sanitaire", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "KDLK1" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "KDLK1" + } + }, + { + "id": "jruv164k", + "componentType": "Radio", + "mandatory": false, + "page": "108", + "label": { + "value": "Disposez-vous d’un ou plusieurs lavabos ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KAO1<>\"3\" or isnull(KAO1)) and (KBD=\"2\") and (KDLK1=\"2\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "KAO1", + "KBD", + "KDLK1" + ] + }, + "hierarchy": { + "sequence": { + "id": "jojuy3c4", + "page": "56", + "label": { + "value": "\"V - \" || \"Description du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kv857tu4", + "page": "98", + "label": { + "value": "Équipement sanitaire", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "KDLK2" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui, dans une pièce réservée à la toilette", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Oui, dans une pièce destinée à un autre usage", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Non, seulement un évier dans la cuisine", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "KDLK2" + } + }, + { + "id": "joicksrx", + "componentType": "Sequence", + "page": "109", + "label": { + "value": "\"VI - \" || \"Opinion sur le logement actuel\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "joicksrx-joiciihu", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Nous allons nous intéresser maintenant à votre opinion sur vos conditions de logement.", + "type": "VTL|MD" + } + }, + { + "id": "joicksrx-kwggtqx5", + "declarationType": "INSTRUCTION", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Appuyer sur \"Continuer\" pour passer à la page suivante.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "joicksrx", + "page": "109", + "label": { + "value": "\"VI - \" || \"Opinion sur le logement actuel\"", + "type": "VTL|MD" + } + } + } + }, + { + "id": "joicolgp", + "componentType": "Radio", + "mandatory": false, + "page": "110", + "label": { + "value": "Comment estimez-vous vos conditions actuelles de logement ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "joicksrx", + "page": "109", + "label": { + "value": "\"VI - \" || \"Opinion sur le logement actuel\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "OLA" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Très satisfaisantes", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Satisfaisantes", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Acceptables", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Insuffisantes", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Très insuffisantes", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "OLA" + } + }, + { + "id": "joiccm1l", + "componentType": "InputNumber", + "mandatory": false, + "page": "111", + "min": 1, + "max": 10, + "decimals": 0, + "label": { + "value": "En tant qu’endroit pour vivre, quelle note globale de 1 à 10 donneriez-vous à votre logement ?", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "joiccm1l-kc21oley", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"10 correspond à la meilleure note, 1 à la plus mauvaise.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "controls": [ + { + "id": "joiccm1l-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(OLAD)) and (1>OLAD or 10OLAD)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "joiccm1l-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((instr(cast(nvl(OLAD,0),string),\".\") <> 0) or (instr(cast(nvl(OLAD,0),string),\",) <> 0))", + "type": "VTL" + }, + "errorMessage": { + "value": "Merci de ne pas renseigner de chiffres après la virgule.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "OLAD" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "joicksrx", + "page": "109", + "label": { + "value": "\"VI - \" || \"Opinion sur le logement actuel\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "OLAD" + ], + "response": { + "name": "OLAD" + } + }, + { + "id": "knio1w9d", + "componentType": "Table", + "mandatory": false, + "page": "112", + "positioning": "HORIZONTAL", + "label": { + "value": "Votre logement présente-t-il les défauts suivants ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "joicksrx", + "page": "109", + "label": { + "value": "\"VI - \" || \"Opinion sur le logement actuel\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "OLAR11", + "OLAR12", + "OLAR13", + "OLAR14" + ], + "body": [ + [ + { + "value": "1", + "label": { + "value": "Pas d’eau chaude", + "type": "VTL|MD" + } + }, + { + "componentType": "Radio", + "id": "knio1w9d-QOP-l8bbx7nd", + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "OLAR11" + }, + "bindingDependencies": [ + "OLAR11" + ] + } + ], + [ + { + "value": "2", + "label": { + "value": "Pas de chauffage central ou électrique", + "type": "VTL|MD" + } + }, + { + "componentType": "Radio", + "id": "knio1w9d-QOP-l8bc28f0", + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "OLAR12" + }, + "bindingDependencies": [ + "OLAR12" + ] + } + ], + [ + { + "value": "3", + "label": { + "value": "Toit percé, humidité, infiltrations", + "type": "VTL|MD" + } + }, + { + "componentType": "Radio", + "id": "knio1w9d-QOP-l8bccet1", + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "OLAR13" + }, + "bindingDependencies": [ + "OLAR13" + ] + } + ], + [ + { + "value": "4", + "label": { + "value": "Logement bruyant", + "type": "VTL|MD" + } + }, + { + "componentType": "Radio", + "id": "knio1w9d-QOP-l8bbz1zl", + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "OLAR14" + }, + "bindingDependencies": [ + "OLAR14" + ] + } + ] + ] + }, + { + "id": "l7j1k2un", + "componentType": "Table", + "mandatory": false, + "page": "113", + "positioning": "HORIZONTAL", + "label": { + "value": "Du fait d’un handicap, d’un problème de santé ou d’une avancée en âge, les occupants du logement ont-ils des difficultés", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((nvl(libHTLC,\"\")<>\"collectif\") and (nvl(ICOI,\"\")<>\"1\"))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "libHTLC", + "HTLC1", + "INDCOLL", + "ICOI" + ] + }, + "hierarchy": { + "sequence": { + "id": "joicksrx", + "page": "109", + "label": { + "value": "\"VI - \" || \"Opinion sur le logement actuel\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "OLAR1DIF1", + "OLAR1DIF2" + ], + "body": [ + [ + { + "value": "1", + "label": { + "value": "pour accéder au logement ou s’y déplacer ?", + "type": "VTL|MD" + } + }, + { + "componentType": "Radio", + "id": "l7j1k2un-QOP-l7j1nesf", + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "OLAR1DIF1" + }, + "bindingDependencies": [ + "OLAR1DIF1" + ] + } + ], + [ + { + "value": "2", + "label": { + "value": "pour accomplir les tâches du quotidien dans leur logement (cuisiner, se laver, fermer les volets, etc.) ?", + "type": "VTL|MD" + } + }, + { + "componentType": "Radio", + "id": "l7j1k2un-QOP-l7j1n6nb", + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "OLAR1DIF2" + }, + "bindingDependencies": [ + "OLAR1DIF2" + ] + } + ] + ] + }, + { + "id": "l7j1y65o", + "componentType": "Table", + "mandatory": false, + "page": "114", + "positioning": "HORIZONTAL", + "label": { + "value": "Du fait d’un handicap, d’un problème de santé ou d’une avancée en âge, les occupants du logement ont-ils des difficultés", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((libHTLC=\"collectif\") or (ICOI=\"1\"))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "libHTLC", + "HTLC1", + "INDCOLL", + "ICOI" + ] + }, + "hierarchy": { + "sequence": { + "id": "joicksrx", + "page": "109", + "label": { + "value": "\"VI - \" || \"Opinion sur le logement actuel\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "OLAR1DIFCO1", + "OLAR1DIFCO2", + "OLAR1DIFCO3" + ], + "body": [ + [ + { + "value": "1", + "label": { + "value": "pour accéder au logement ou s’y déplacer ?", + "type": "VTL|MD" + } + }, + { + "componentType": "Radio", + "id": "l7j1y65o-QOP-l7j1x8s4", + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "OLAR1DIFCO1" + }, + "bindingDependencies": [ + "OLAR1DIFCO1" + ] + } + ], + [ + { + "value": "2", + "label": { + "value": "pour accomplir les tâches du quotidien dans leur logement (cuisiner, se laver, fermer les volets, etc.) ?", + "type": "VTL|MD" + } + }, + { + "componentType": "Radio", + "id": "l7j1y65o-QOP-l7j1mfn2", + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "OLAR1DIFCO2" + }, + "bindingDependencies": [ + "OLAR1DIFCO2" + ] + } + ], + [ + { + "value": "3", + "label": { + "value": "pour accéder aux parties communes de l’immeuble ?", + "type": "VTL|MD" + } + }, + { + "componentType": "Radio", + "id": "l7j1y65o-QOP-l7j1stx0", + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "OLAR1DIFCO3" + }, + "bindingDependencies": [ + "OLAR1DIFCO3" + ] + } + ] + ] + }, + { + "id": "kninrf3p", + "componentType": "Table", + "mandatory": false, + "page": "115", + "positioning": "HORIZONTAL", + "label": { + "value": "Votre logement présente-t-il les autres défauts suivants ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "joicksrx", + "page": "109", + "label": { + "value": "\"VI - \" || \"Opinion sur le logement actuel\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "OLAR21", + "OLAR22", + "OLAR23", + "OLAR24", + "OLAR25" + ], + "body": [ + [ + { + "value": "1", + "label": { + "value": "Trop sombre", + "type": "VTL|MD" + } + }, + { + "componentType": "Radio", + "id": "kninrf3p-QOP-ko3x6kz1", + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "OLAR21" + }, + "bindingDependencies": [ + "OLAR21" + ] + } + ], + [ + { + "value": "2", + "label": { + "value": "Trop petit", + "type": "VTL|MD" + } + }, + { + "componentType": "Radio", + "id": "kninrf3p-QOP-ko3wyuod", + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "OLAR22" + }, + "bindingDependencies": [ + "OLAR22" + ] + } + ], + [ + { + "value": "3", + "label": { + "value": "Trop difficile ou trop coûteux à chauffer", + "type": "VTL|MD" + } + }, + { + "componentType": "Radio", + "id": "kninrf3p-QOP-ko3xdviu", + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "OLAR23" + }, + "bindingDependencies": [ + "OLAR23" + ] + } + ], + [ + { + "value": "4", + "label": { + "value": "Trop chaud (trop difficile ou coûteux à rafraîchir l’été)", + "type": "VTL|MD" + } + }, + { + "componentType": "Radio", + "id": "kninrf3p-QOP-ko3xbz9m", + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "OLAR24" + }, + "bindingDependencies": [ + "OLAR24" + ] + } + ], + [ + { + "value": "5", + "label": { + "value": "Trop cher", + "type": "VTL|MD" + } + }, + { + "componentType": "Radio", + "id": "kninrf3p-QOP-ko3x1rx5", + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "OLAR25" + }, + "bindingDependencies": [ + "OLAR25" + ] + } + ] + ] + }, + { + "id": "knioggcs", + "componentType": "Table", + "mandatory": false, + "page": "116", + "positioning": "HORIZONTAL", + "label": { + "value": "L’environnement de votre logement présente-t-il les défauts suivants ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "joicksrx", + "page": "109", + "label": { + "value": "\"VI - \" || \"Opinion sur le logement actuel\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "OLAR31", + "OLAR32", + "OLAR33", + "OLAR34", + "OLAR35" + ], + "body": [ + [ + { + "value": "1", + "label": { + "value": "Problèmes de pollution", + "type": "VTL|MD" + } + }, + { + "componentType": "Radio", + "id": "knioggcs-QOP-l7kmxkga", + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "OLAR31" + }, + "bindingDependencies": [ + "OLAR31" + ] + } + ], + [ + { + "value": "2", + "label": { + "value": "Problèmes de délinquance, violence ou vandalisme dans les environs", + "type": "VTL|MD" + } + }, + { + "componentType": "Radio", + "id": "knioggcs-QOP-l7kmxnbz", + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "OLAR32" + }, + "bindingDependencies": [ + "OLAR32" + ] + } + ], + [ + { + "value": "3", + "label": { + "value": "Services médicaux insuffisants", + "type": "VTL|MD" + } + }, + { + "componentType": "Radio", + "id": "knioggcs-QOP-l7knhcad", + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "OLAR33" + }, + "bindingDependencies": [ + "OLAR33" + ] + } + ], + [ + { + "value": "4", + "label": { + "value": "Services publics insuffisants", + "type": "VTL|MD" + } + }, + { + "componentType": "Radio", + "id": "knioggcs-QOP-l7kn7vvm", + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "OLAR34" + }, + "bindingDependencies": [ + "OLAR34" + ] + } + ], + [ + { + "value": "5", + "label": { + "value": "Manque de végétation", + "type": "VTL|MD" + } + }, + { + "componentType": "Radio", + "id": "knioggcs-QOP-l7knchw6", + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "OLAR35" + }, + "bindingDependencies": [ + "OLAR35" + ] + } + ] + ] + }, + { + "id": "l3yli2im", + "componentType": "Radio", + "mandatory": false, + "page": "117", + "label": { + "value": "Est-il difficile de trouver un lieu d’éducation qui vous convienne à proximité de votre logement ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbenfant)) and (cast(nbenfant,integer)>0))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "nbenfant", + "avecenfant", + "LIEN" + ] + }, + "hierarchy": { + "sequence": { + "id": "joicksrx", + "page": "109", + "label": { + "value": "\"VI - \" || \"Opinion sur le logement actuel\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "OLAR4" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "OLAR4" + } + }, + { + "id": "kniwyjy0", + "componentType": "Radio", + "mandatory": false, + "page": "118", + "label": { + "value": "Vous plaisez-vous dans votre quartier (ou village) ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "joicksrx", + "page": "109", + "label": { + "value": "\"VI - \" || \"Opinion sur le logement actuel\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "OQA" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Vous ne savez pas", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "OQA" + } + }, + { + "id": "joidpl4s", + "componentType": "InputNumber", + "mandatory": false, + "page": "119", + "min": 1, + "max": 10, + "decimals": 0, + "label": { + "value": "Quelle note globale de 1 à 10 donneriez-vous à votre quartier (ou village) ?", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "joidpl4s-kculau3o", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"10 correspond à la meilleure note, 1 à la plus mauvaise.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "controls": [ + { + "id": "joidpl4s-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(OQAD)) and (1>OQAD or 10OQAD)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "joidpl4s-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((instr(cast(nvl(OQAD,0),string),\".\") <> 0) or (instr(cast(nvl(OQAD,0),string),\",) <> 0))", + "type": "VTL" + }, + "errorMessage": { + "value": "Merci de ne pas renseigner de chiffres après la virgule.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "OQAD" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "joicksrx", + "page": "109", + "label": { + "value": "\"VI - \" || \"Opinion sur le logement actuel\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "OQAD" + ], + "response": { + "name": "OQAD" + } + }, + { + "id": "joinv857", + "componentType": "Sequence", + "page": "120", + "label": { + "value": "\"VII - \" || \"Expériences éventuelles de situations difficiles de logement\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "joinv857-kq819sio", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Nous allons nous intéresser aux éventuels problèmes de logement qu’ont pu connaître les membres de votre ménage dans le passé, dans des périodes particulièrement difficiles de l’existence : difficultés financières, professionnelles, personnelles…", + "type": "VTL|MD" + } + }, + { + "id": "joinv857-kwglf1ui", + "declarationType": "INSTRUCTION", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Appuyer sur \"Continuer\" pour passer à la page suivante.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0)", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "nbpers15", + "persplus15", + "DATENAIS", + "TRAGE" + ] + }, + "hierarchy": { + "sequence": { + "id": "joinv857", + "page": "120", + "label": { + "value": "\"VII - \" || \"Expériences éventuelles de situations difficiles de logement\"", + "type": "VTL|MD" + } + } + } + }, + { + "id": "kkcc8cqi", + "componentType": "Loop", + "page": "121", + "maxPage": "11", + "depth": 1, + "paginatedLoop": true, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0)", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "nbpers15", + "persplus15", + "DATENAIS", + "TRAGE" + ] + }, + "hierarchy": { + "sequence": { + "id": "joinv857", + "page": "120", + "label": { + "value": "\"VII - \" || \"Expériences éventuelles de situations difficiles de logement\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "LIB_SUJET", + "SDL18", + "SDL17", + "SDL16", + "SDL15", + "SDL14", + "SDL13", + "SDL12", + "SDL11", + "libSDT", + "SDN1", + "SDTAD", + "SDTAD_SIT2", + "SDL2", + "SDL4", + "SDT1", + "SDL_SIT1", + "SDT2", + "SDL_SIT2", + "SDT2_SIT2" + ], + "loopDependencies": [ + "G_PRENOM" + ], + "components": [ + { + "id": "joio33nc", + "componentType": "Subsequence", + "goToPage": "121.1", + "label": { + "value": "\"Situations difficiles de logement dans le passé concernant \" || PRENOM", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\")))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "nbpers15", + "persplus15", + "DATENAIS", + "TRAGE", + "persplus15TR", + "persplus15AGE", + "AGE" + ] + }, + "hierarchy": { + "sequence": { + "id": "joinv857", + "page": "120", + "label": { + "value": "\"VII - \" || \"Expériences éventuelles de situations difficiles de logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "joio33nc", + "page": "121.1", + "label": { + "value": "\"Situations difficiles de logement dans le passé concernant \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "G_PRENOM" + ] + }, + { + "id": "joinz4wo", + "componentType": "CheckboxGroup", + "page": "121.1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Avez-vous connu les situations suivantes, que vous n’avez pas choisies ?\" else PRENOM || \" a-t-\" || LIB_SUJET || \" connu une ou plusieurs des situations suivantes, qu’\"|| LIB_SUJET || \" n’avait pas choisies ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "joinz4wo-jsx8ktt3", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Plusieurs réponses possibles", + "type": "VTL|MD" + } + }, + { + "id": "joinz4wo-ksj79ywf", + "declarationType": "INSTRUCTION", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Cochez les situations que vous avez connues. \" else \"Cochez les situations que \" || PRENOM || \" a connues. \"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\")))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "nbpers15", + "persplus15", + "DATENAIS", + "TRAGE", + "persplus15TR", + "persplus15AGE", + "AGE" + ] + }, + "controls": [ + { + "id": "joinz4wo-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(((nvl(SDL18, false) = true and nvl(SDL17, false) = true) or (nvl(SDL18, false) = true and nvl(SDL16, false) = true) or (nvl(SDL18, false) = true and nvl(SDL15, false) = true) or (nvl(SDL18, false) = true and nvl(SDL14, false) = true) or (nvl(SDL18, false) = true and nvl(SDL13, false) = true) or (nvl(SDL18, false) = true and nvl(SDL12, false) = true) or (nvl(SDL18, false) = true and nvl(SDL11, false) = true) ))", + "type": "VTL" + }, + "errorMessage": { + "value": "La réponse \"aucune de ces situations\" n’en permet pas d’autre. Merci de corriger votre réponse.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SDL18", + "SDL17", + "SDL16", + "SDL15", + "SDL14", + "SDL13", + "SDL12", + "SDL11" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "joinv857", + "page": "120", + "label": { + "value": "\"VII - \" || \"Expériences éventuelles de situations difficiles de logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "joio33nc", + "page": "121.1", + "label": { + "value": "\"Situations difficiles de logement dans le passé concernant \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "LIB_SUJET", + "SDL11", + "SDL12", + "SDL13", + "SDL14", + "SDL15", + "SDL16", + "SDL17", + "SDL18", + "G_PRENOM" + ], + "responses": [ + { + "id": "joinz4wo-QOP-ljvxgvru", + "label": { + "value": "Hébergement contraint chez d’autres personnes", + "type": "VTL|MD" + }, + "response": { + "name": "SDL11" + } + }, + { + "id": "joinz4wo-QOP-ljvxk44t", + "label": { + "value": "Chambre d’hôtel (hors tourisme)", + "type": "VTL|MD" + }, + "response": { + "name": "SDL12" + } + }, + { + "id": "joinz4wo-QOP-ljvxgmyh", + "label": { + "value": "Logement payé par une association ou un organisme d’aide", + "type": "VTL|MD" + }, + "response": { + "name": "SDL13" + } + }, + { + "id": "joinz4wo-QOP-ljvxbn8w", + "label": { + "value": "Séjour en centre d’hébergement (Centre d’hébergement d’urgence, CHRS, centre maternel, centre d’hébergement pour demandeurs d’asile ou réfugiés...Foyers ou hébergements de la DDASS, DDCS, ASE, PJJ...)", + "type": "VTL|MD" + }, + "response": { + "name": "SDL14" + } + }, + { + "id": "joinz4wo-QOP-ljvxplyt", + "label": { + "value": "Séjour dans un logement sans autorisation du propriétaire (squat)", + "type": "VTL|MD" + }, + "response": { + "name": "SDL15" + } + }, + { + "id": "joinz4wo-QOP-ljvxncns", + "label": { + "value": "Séjour dans un lieu non prévu pour l’habitation (rue, véhicule, abri de fortune...)", + "type": "VTL|MD" + }, + "response": { + "name": "SDL16" + } + }, + { + "id": "joinz4wo-QOP-ljvxcc4t", + "label": { + "value": "Logement contraint en habitation mobile (caravane, péniche) hors tourisme", + "type": "VTL|MD" + }, + "response": { + "name": "SDL17" + } + }, + { + "id": "joinz4wo-QOP-ljvxobb5", + "label": { + "value": "Aucune de ces situations", + "type": "VTL|MD" + }, + "response": { + "name": "SDL18" + } + } + ] + }, + { + "id": "kqr0kx1e", + "componentType": "Radio", + "mandatory": false, + "page": "121.2", + "label": { + "value": "Comment la chambre d’hôtel était-elle payée ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((SDL12) and not(isnull(SDL12)))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "nbpers15", + "persplus15", + "DATENAIS", + "TRAGE", + "persplus15TR", + "persplus15AGE", + "AGE", + "SDL12" + ] + }, + "hierarchy": { + "sequence": { + "id": "joinv857", + "page": "120", + "label": { + "value": "\"VII - \" || \"Expériences éventuelles de situations difficiles de logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "joio33nc", + "page": "121.1", + "label": { + "value": "\"Situations difficiles de logement dans le passé concernant \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "SDL2", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Par vos soins\" else \"Par ses soins\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Par une autre personne", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Par une association ou un organisme d’aide", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SDL2" + } + }, + { + "id": "kpb8b0vw", + "componentType": "Radio", + "mandatory": false, + "page": "121.3", + "label": { + "value": "Était-ce un centre d’hébergement pour demandeurs d’asile ou réfugiés ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((SDL14) and not(isnull(SDL14)))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "nbpers15", + "persplus15", + "DATENAIS", + "TRAGE", + "persplus15TR", + "persplus15AGE", + "AGE", + "SDL14" + ] + }, + "hierarchy": { + "sequence": { + "id": "joinv857", + "page": "120", + "label": { + "value": "\"VII - \" || \"Expériences éventuelles de situations difficiles de logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "joio33nc", + "page": "121.1", + "label": { + "value": "\"Situations difficiles de logement dans le passé concernant \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "SDL4", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SDL4" + } + }, + { + "id": "joio5w41", + "componentType": "Radio", + "mandatory": false, + "page": "121.4", + "label": { + "value": "\"Combien de situations de ce type \" || (if (PRENOM=PRENOMREF) then \"avez-vous\" else PRENOM || \" a-t-\" || LIB_SUJET) || \" connues ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "nbpers15", + "persplus15", + "DATENAIS", + "TRAGE", + "persplus15TR", + "persplus15AGE", + "AGE", + "SDL11", + "SDL12", + "SDL13", + "SDL14", + "SDL15", + "SDL16", + "SDL17" + ] + }, + "hierarchy": { + "sequence": { + "id": "joinv857", + "page": "120", + "label": { + "value": "\"VII - \" || \"Expériences éventuelles de situations difficiles de logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "joio33nc", + "page": "121.1", + "label": { + "value": "\"Situations difficiles de logement dans le passé concernant \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "LIB_SUJET", + "SDN1", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Une", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Plusieurs", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SDN1" + } + }, + { + "id": "joioebt6", + "componentType": "Radio", + "mandatory": false, + "page": "121.5", + "label": { + "value": "\"Combien de temps au total \" || (if (PRENOM=PRENOMREF) then \"avez-vous\" else PRENOM || \" a-t-\" || LIB_SUJET) || \" été dans \" || libSDT || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((SDN1=\"1\" or SDN1=\"2\") and not(isnull(SDN1)))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "nbpers15", + "persplus15", + "DATENAIS", + "TRAGE", + "persplus15TR", + "persplus15AGE", + "AGE", + "SDL11", + "SDL12", + "SDL13", + "SDL14", + "SDL15", + "SDL16", + "SDL17", + "SDN1" + ] + }, + "hierarchy": { + "sequence": { + "id": "joinv857", + "page": "120", + "label": { + "value": "\"VII - \" || \"Expériences éventuelles de situations difficiles de logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "joio33nc", + "page": "121.1", + "label": { + "value": "\"Situations difficiles de logement dans le passé concernant \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "LIB_SUJET", + "libSDT", + "SDT1", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Moins d’une semaine", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "D’une semaine à moins de 3 mois", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "De 3 mois à moins d’un an", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "D’un an à moins de 3 ans", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\"3 ans et plus\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SDT1" + } + }, + { + "id": "kudultmi", + "componentType": "Radio", + "mandatory": false, + "page": "121.6", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Quelle est la première situation de ce type que vous avez connue ?\" else \"Quelle est la première situation de ce type que \" || PRENOM || \" a connue ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((not(isnull(filtre_SIT)) and filtre_SIT=\"1\") and (not(isnull(SDN1)) and SDN1 = \"2\"))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "nbpers15", + "persplus15", + "DATENAIS", + "TRAGE", + "persplus15TR", + "persplus15AGE", + "AGE", + "SDL11", + "SDL12", + "SDL13", + "SDL14", + "SDL15", + "SDL16", + "SDL17", + "filtre_SIT", + "SDN1" + ] + }, + "hierarchy": { + "sequence": { + "id": "joinv857", + "page": "120", + "label": { + "value": "\"VII - \" || \"Expériences éventuelles de situations difficiles de logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "joio33nc", + "page": "121.1", + "label": { + "value": "\"Situations difficiles de logement dans le passé concernant \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "SDL_SIT1", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Hébergement contraint chez d’autres personnes", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Chambre d’hôtel (hors tourisme)", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Logement payé par une association ou un organisme d’aide", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Séjour en [centre d’hébergement](. \"\\\"centre d’hébergement d’urgence, CHRS, centre maternel, centre d’hébergement pour demandeurs d’asile ou réfugiés... Foyers ou hébergements de la DDASS, DDCS, ASE, PJJ...\\\"\")", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Séjour dans un logement sans autorisation du propriétaire (squat)", + "type": "VTL|MD" + } + }, + { + "value": "6", + "label": { + "value": "Séjour dans un lieu non prévu pour l’habitation (rue, véhicule, abri de fortune...)", + "type": "VTL|MD" + } + }, + { + "value": "7", + "label": { + "value": "Logement contraint en habitation mobile (caravane, péniche) hors tourisme", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SDL_SIT1" + } + }, + { + "id": "joo0yx5k", + "componentType": "Input", + "mandatory": false, + "page": "121.7", + "maxLength": 4, + "label": { + "value": "\"En quelle année \" || if (isnull(SDN1)) then ( if (PRENOM=PRENOMREF) then \"avez-vous été pour la première fois dans une de ces situations ?\" else PRENOM || \" a-t-\" || LIB_SUJET || \" été pour la première fois dans une de ces situations ?\" ) else (if (SDN1=\"1\") then \"cette situation a-t-elle débuté ?\" else ( if (PRENOM=PRENOMREF) then \"avez-vous été dans cette première situation ?\" else PRENOM || \" a-t-\" || LIB_SUJET || \" été dans cette première situation ?\" ))", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((not(isnull(SDT1))))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "nbpers15", + "persplus15", + "DATENAIS", + "TRAGE", + "persplus15TR", + "persplus15AGE", + "AGE", + "SDL11", + "SDL12", + "SDL13", + "SDL14", + "SDL15", + "SDL16", + "SDL17", + "SDT1" + ] + }, + "controls": [ + { + "id": "joo0yx5k-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(nvl(SDTAD,\"\"),integer) < 1900 or cast(nvl(SDTAD,\"\"),integer) >2024)", + "type": "VTL" + }, + "errorMessage": { + "value": "Merci d’indiquer une année comprise entre 1900 et 2024.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SDTAD" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "joinv857", + "page": "120", + "label": { + "value": "\"VII - \" || \"Expériences éventuelles de situations difficiles de logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "joio33nc", + "page": "121.1", + "label": { + "value": "\"Situations difficiles de logement dans le passé concernant \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "SDN1", + "PRENOM", + "PRENOMREF", + "LIB_SUJET", + "SDTAD", + "G_PRENOM" + ], + "response": { + "name": "SDTAD" + } + }, + { + "id": "joo1m3x2", + "componentType": "Radio", + "mandatory": false, + "page": "121.8", + "label": { + "value": "\"La première fois que \" || (if (PRENOM=PRENOMREF) then \"vous avez été\" else PRENOM || \" a été\") || \" dans cette situation, combien de temps cela a-t-il duré ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "nbpers15", + "persplus15", + "DATENAIS", + "TRAGE", + "persplus15TR", + "persplus15AGE", + "AGE", + "SDL11", + "SDL12", + "SDL13", + "SDL14", + "SDL15", + "SDL16", + "SDL17", + "SDN1" + ] + }, + "hierarchy": { + "sequence": { + "id": "joinv857", + "page": "120", + "label": { + "value": "\"VII - \" || \"Expériences éventuelles de situations difficiles de logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "joio33nc", + "page": "121.1", + "label": { + "value": "\"Situations difficiles de logement dans le passé concernant \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "SDT2", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Moins d’une semaine", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "D’une semaine à moins de 3 mois", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "De 3 mois à moins d’un an", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "D’un an à moins de 3 ans", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\"3 ans et plus\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SDT2" + } + }, + { + "id": "kudvobyc", + "componentType": "Radio", + "mandatory": false, + "page": "121.9", + "label": { + "value": "if (PRENOM=PRENOMREF) then \"Quelle est la dernière situation de ce type que vous avez connue ?\" else \"Quelle est la dernière situation de ce type que \" || PRENOM || \" a connue ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\") and (filtre_SIT =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "nbpers15", + "persplus15", + "DATENAIS", + "TRAGE", + "persplus15TR", + "persplus15AGE", + "AGE", + "SDL11", + "SDL12", + "SDL13", + "SDL14", + "SDL15", + "SDL16", + "SDL17", + "SDN1", + "filtre_SIT" + ] + }, + "hierarchy": { + "sequence": { + "id": "joinv857", + "page": "120", + "label": { + "value": "\"VII - \" || \"Expériences éventuelles de situations difficiles de logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "joio33nc", + "page": "121.1", + "label": { + "value": "\"Situations difficiles de logement dans le passé concernant \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "SDL_SIT2", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Hébergement contraint chez d’autres personnes", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Chambre d’hôtel (hors tourisme)", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Logement payé par une association ou un organisme d’aide", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Séjour en [centre d’hébergement](. \"\\\"centre d’hébergement d’urgence, CHRS, centre maternel, centre d’hébergement pour demandeurs d’asile ou réfugiés... Foyers ou hébergements de la DDASS, DDCS, ASE, PJJ...\\\"\")", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Séjour dans un logement sans autorisation du propriétaire (squat)", + "type": "VTL|MD" + } + }, + { + "value": "6", + "label": { + "value": "Séjour dans un lieu non prévu pour l’habitation (rue, véhicule, abri de fortune...)", + "type": "VTL|MD" + } + }, + { + "value": "7", + "label": { + "value": "Logement contraint en habitation mobile (caravane, péniche) hors tourisme", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SDL_SIT2" + } + }, + { + "id": "kudvxpft", + "componentType": "Input", + "mandatory": false, + "page": "121.10", + "maxLength": 4, + "label": { + "value": "\"En quelle année cette dernière situation a-t-elle débuté pour \" || ( if (PRENOM=PRENOMREF) then \"vous ?\" else PRENOM || \"?\" )", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "nbpers15", + "persplus15", + "DATENAIS", + "TRAGE", + "persplus15TR", + "persplus15AGE", + "AGE", + "SDL11", + "SDL12", + "SDL13", + "SDL14", + "SDL15", + "SDL16", + "SDL17", + "SDN1" + ] + }, + "controls": [ + { + "id": "kudvxpft-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(nvl(SDTAD_SIT2,\"\"),integer) < 1900 or cast(nvl(SDTAD_SIT2,\"\"),integer) >2024)", + "type": "VTL" + }, + "errorMessage": { + "value": "Merci d’indiquer une année comprise entre 1900 et 2024.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SDTAD_SIT2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "joinv857", + "page": "120", + "label": { + "value": "\"VII - \" || \"Expériences éventuelles de situations difficiles de logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "joio33nc", + "page": "121.1", + "label": { + "value": "\"Situations difficiles de logement dans le passé concernant \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "SDTAD_SIT2", + "G_PRENOM" + ], + "response": { + "name": "SDTAD_SIT2" + } + }, + { + "id": "kudwrcyp", + "componentType": "Radio", + "mandatory": false, + "page": "121.11", + "label": { + "value": "\"La dernière fois que \" || (if (PRENOM=PRENOMREF) then \"vous avez été\" else PRENOM || \" a été\") || \" dans cette situation, combien de temps cela a-t-il duré ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "nbpers15", + "persplus15", + "DATENAIS", + "TRAGE", + "persplus15TR", + "persplus15AGE", + "AGE", + "SDL11", + "SDL12", + "SDL13", + "SDL14", + "SDL15", + "SDL16", + "SDL17", + "SDN1" + ] + }, + "hierarchy": { + "sequence": { + "id": "joinv857", + "page": "120", + "label": { + "value": "\"VII - \" || \"Expériences éventuelles de situations difficiles de logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "joio33nc", + "page": "121.1", + "label": { + "value": "\"Situations difficiles de logement dans le passé concernant \" || PRENOM", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "SDT2_SIT2", + "G_PRENOM" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Moins d’une semaine", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "D’une semaine à moins de 3 mois", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "De 3 mois à moins d’un an", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "D’un an à moins de 3 ans", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\"3 ans et plus\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SDT2_SIT2" + } + } + ], + "iterations": { + "value": "count(G_PRENOM)", + "type": "VTL" + } + }, + { + "id": "kv86jli3", + "componentType": "Sequence", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kv86jli3-kv87umqk", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Nous allons maintenant vous poser quelques questions sur les changements de situation survenus dans votre ménage depuis le 1er \" || libMOISENQ || \" \" || cast(ANNEENQmoins4,string) || \".\"", + "type": "VTL|MD" + } + }, + { + "id": "kv86jli3-kv886tad", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"On désigne ici le ménage comme étant l’ensemble des occupants du logement. \" || libSTOC1", + "type": "VTL|MD" + } + }, + { + "id": "kv86jli3-kwgligyr", + "declarationType": "INSTRUCTION", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Appuyer sur \"Continuer\" pour passer à la page suivante.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libMOISENQ", + "ANNEENQmoins4", + "libSTOC1" + ] + }, + { + "id": "joo1spv3", + "componentType": "Subsequence", + "goToPage": "123", + "label": { + "value": "Changement dans la situation du ménage depuis 4 ans", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "joo1spv3", + "page": "123", + "label": { + "value": "Changement dans la situation du ménage depuis 4 ans", + "type": "VTL|MD" + } + } + } + }, + { + "id": "joo1h434", + "componentType": "CheckboxGroup", + "page": "123", + "label": { + "value": "\"Par rapport au 1er \" || libMOISENQ || \" \" || cast(ANNEENQmoins4,string) || \", comment la composition de votre ménage a-t-elle évolué ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "joo1h434-jopta1p5", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Plusieurs réponses possibles", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "controls": [ + { + "id": "joo1h434-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not(((nvl(VMODM7,false) = true and nvl(VMODM6,false) = true) or (nvl(VMODM7,false) = true and nvl(VMODM5,false) = true) or (nvl(VMODM7,false) = true and nvl(VMODM4,false) = true) or (nvl(VMODM7,false) = true and nvl(VMODM3,false) = true) or (nvl(VMODM7,false) = true and nvl(VMODM2,false) = true) or (nvl(VMODM7,false) = true and nvl(VMODM1,false) = true)))", + "type": "VTL" + }, + "errorMessage": { + "value": "La réponse « Aucune modification » n’en permet pas d’autre. Merci de corriger votre réponse.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "VMODM7", + "VMODM6", + "VMODM5", + "VMODM4", + "VMODM3", + "VMODM2", + "VMODM1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "joo1spv3", + "page": "123", + "label": { + "value": "Changement dans la situation du ménage depuis 4 ans", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libMOISENQ", + "ANNEENQmoins4", + "VMODM1", + "VMODM2", + "VMODM3", + "VMODM4", + "VMODM5", + "VMODM6", + "VMODM7" + ], + "responses": [ + { + "id": "joo1h434-QOP-kx6fakgl", + "label": { + "value": "Arrivée d’un ou plusieurs enfants", + "type": "VTL|MD" + }, + "response": { + "name": "VMODM1" + } + }, + { + "id": "joo1h434-QOP-kx6f2koy", + "label": { + "value": "Survenue d’un ou plusieurs décès", + "type": "VTL|MD" + }, + "response": { + "name": "VMODM2" + } + }, + { + "id": "joo1h434-QOP-kx6f0lvo", + "label": { + "value": "Départ d’un ou plusieurs enfants", + "type": "VTL|MD" + }, + "response": { + "name": "VMODM3" + } + }, + { + "id": "joo1h434-QOP-kx6eypbj", + "label": { + "value": "Arrivée d’une ou plusieurs personnes du fait d’une mise en couple", + "type": "VTL|MD" + }, + "response": { + "name": "VMODM4" + } + }, + { + "id": "joo1h434-QOP-kx6ey11w", + "label": { + "value": "Départ d’une ou plusieurs personnes du fait d’une séparation", + "type": "VTL|MD" + }, + "response": { + "name": "VMODM5" + } + }, + { + "id": "joo1h434-QOP-kx6f2xy1", + "label": { + "value": "Autre évolution de la composition du ménage", + "type": "VTL|MD" + }, + "response": { + "name": "VMODM6" + } + }, + { + "id": "joo1h434-QOP-kx6fe1ev", + "label": { + "value": "Aucune modification", + "type": "VTL|MD" + }, + "response": { + "name": "VMODM7" + } + } + ] + }, + { + "id": "joo22fbd", + "componentType": "CheckboxGroup", + "page": "124", + "label": { + "value": "\"Depuis le 1er \" || libMOISENQ || \" \" || cast(ANNEENQmoins4,string) || \", est-ce qu’un ou plusieurs membres de votre ménage, y-compris vous-même, a été confronté à un des changements de situation suivants relatifs à l’emploi ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "joo22fbd-joptatl0", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Plusieurs réponses possibles", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "controls": [ + { + "id": "joo22fbd-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not(((nvl(VMODP14, false) = true and nvl(VMODP13, false) = true) or (nvl(VMODP14, false) = true and nvl(VMODP12, false) = true) or (nvl(VMODP14, false) = true and nvl(VMODP11, false) = true) ))", + "type": "VTL" + }, + "errorMessage": { + "value": "La réponse « Aucune modification » n’en permet pas d’autre. Merci de corriger votre réponse.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "VMODP14", + "VMODP13", + "VMODP12", + "VMODP11" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "joo1spv3", + "page": "123", + "label": { + "value": "Changement dans la situation du ménage depuis 4 ans", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libMOISENQ", + "ANNEENQmoins4", + "VMODP11", + "VMODP12", + "VMODP13", + "VMODP14" + ], + "responses": [ + { + "id": "joo22fbd-QOP-lex5m47r", + "label": { + "value": "Entrée en activité ou reprise d’activité", + "type": "VTL|MD" + }, + "response": { + "name": "VMODP11" + } + }, + { + "id": "joo22fbd-QOP-lex5fzlx", + "label": { + "value": "Perte de son emploi", + "type": "VTL|MD" + }, + "response": { + "name": "VMODP12" + } + }, + { + "id": "joo22fbd-QOP-lex5ok5v", + "label": { + "value": "Passage à la retraite, préretraite ou décision d’arrêter de travailler", + "type": "VTL|MD" + }, + "response": { + "name": "VMODP13" + } + }, + { + "id": "joo22fbd-QOP-lex5grsp", + "label": { + "value": "Aucune modification de ce type", + "type": "VTL|MD" + }, + "response": { + "name": "VMODP14" + } + } + ] + }, + { + "id": "koe0u2zg", + "componentType": "CheckboxGroup", + "page": "125", + "label": { + "value": "\"Depuis le 1er \" || libMOISENQ || \" \" || cast(ANNEENQmoins4,string) || \", est-ce qu’un ou plusieurs membres de votre ménage, y-compris vous-même, a connu un des changements professionnels suivants ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "controls": [ + { + "id": "koe0u2zg-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(((nvl(VMODP23,false) = true and nvl(VMODP22,false) = true) or (nvl(VMODP23,false) = true and nvl(VMODP21,false) = true)))", + "type": "VTL" + }, + "errorMessage": { + "value": "La réponse « Aucune modification » n’en permet pas d’autre. Merci de corriger votre réponse.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "VMODP23", + "VMODP22", + "VMODP21" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "joo1spv3", + "page": "123", + "label": { + "value": "Changement dans la situation du ménage depuis 4 ans", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libMOISENQ", + "ANNEENQmoins4", + "VMODP21", + "VMODP22", + "VMODP23" + ], + "responses": [ + { + "id": "koe0u2zg-QOP-koe0ya2t", + "label": { + "value": "Changement d’entreprise ou d’employeur", + "type": "VTL|MD" + }, + "response": { + "name": "VMODP21" + } + }, + { + "id": "koe0u2zg-QOP-koe12q3u", + "label": { + "value": "Déménagement de l’entreprise", + "type": "VTL|MD" + }, + "response": { + "name": "VMODP22" + } + }, + { + "id": "koe0u2zg-QOP-koe0vlva", + "label": { + "value": "Aucune modification de ce type", + "type": "VTL|MD" + }, + "response": { + "name": "VMODP23" + } + } + ] + }, + { + "id": "jopgtrq1", + "componentType": "Radio", + "mandatory": false, + "page": "126", + "label": { + "value": "\"Depuis le 1er \" || libMOISENQ || \" \" || cast(ANNEENQmoins4,string) || \", un des membres de votre ménage actuel, y compris vous-même, a-t-il vendu un ou plusieurs logements ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "jopgtrq1-kpbd40p7", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Que ce soit une résidence principale, secondaire, un logement vacant ou loué, etc.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "joo1spv3", + "page": "123", + "label": { + "value": "Changement dans la situation du ménage depuis 4 ans", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libMOISENQ", + "ANNEENQmoins4", + "VVENDL" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui, un seul", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Oui, deux logements ou plus", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "VVENDL" + } + }, + { + "id": "jopgvwb0", + "componentType": "Radio", + "mandatory": false, + "page": "127", + "label": { + "value": "Comment aviez-vous fait l’acquisition de ce logement maintenant vendu ?", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "jopgvwb0-jslhsfkf", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "libVFFH", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VVENDL = \"1\" or VVENDL = \"2\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "VVENDL" + ] + }, + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "joo1spv3", + "page": "123", + "label": { + "value": "Changement dans la situation du ménage depuis 4 ans", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libVFFH", + "VFFH" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Par héritage ou donation", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Par achat comptant", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Par achat à crédit", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Par achat en viager", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Par achat en location-accession, en location-vente, en location-attribution...", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "VFFH" + } + }, + { + "id": "jopgzovi", + "componentType": "Radio", + "mandatory": false, + "page": "128", + "label": { + "value": "libVFLA || \" était-il votre résidence principale ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VVENDL = \"1\" or VVENDL = \"2\") and (not(isnull(MAA1AT)) and (MAA1AT = \"1\" or MAA1AT = \"2\"))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "VVENDL", + "MAA1AT", + "MAA2AT", + "MAA2ATC", + "MAA3AT", + "MARRIVC", + "MAA3", + "MAA2AT_Q", + "MAA2A", + "MAA2M", + "MAA2ATC_Q", + "MAA2AC", + "MAA2MC", + "MAA3A", + "MAA3M" + ] + }, + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "joo1spv3", + "page": "123", + "label": { + "value": "Changement dans la situation du ménage depuis 4 ans", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libVFLA", + "VFLA" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "VFLA" + } + }, + { + "id": "koeabibm", + "componentType": "Radio", + "mandatory": false, + "page": "129", + "label": { + "value": "\"Depuis le 1er \" || libMOISENQ || \" \" || cast(ANNEENQmoins4,string) || \", un des membres de votre ménage actuel, y compris vous-même, a-t-il acheté un ou plusieurs logements, comme une résidence principale, secondaire, un logement destiné à être loué, etc. ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "joo1spv3", + "page": "123", + "label": { + "value": "Changement dans la situation du ménage depuis 4 ans", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libMOISENQ", + "ANNEENQmoins4", + "VACHAL" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui, un seul", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Oui, deux logements ou plus", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "VACHAL" + } + }, + { + "id": "joph9za3", + "componentType": "Radio", + "mandatory": false, + "page": "130", + "label": { + "value": "\"Par rapport au prix du \" || libVBILLOG1 || \", comment était le prix du \" || libVBILLOG2 || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((VVENDL =\"1\" or VVENDL = \"2\") and (VACHAL =\"1\" or VACHAL =\"2\"))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "VVENDL", + "VACHAL" + ] + }, + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "joo1spv3", + "page": "123", + "label": { + "value": "Changement dans la situation du ménage depuis 4 ans", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libVBILLOG1", + "libVBILLOG2", + "VBILLOG" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Plus élevé", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Environ égal", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Moins élevé", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "VBILLOG" + } + }, + { + "id": "jophfbfc", + "componentType": "Subsequence", + "goToPage": "131", + "label": { + "value": "Mobilité depuis 4 ans", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "jophfbfc", + "page": "131", + "label": { + "value": "Mobilité depuis 4 ans", + "type": "VTL|MD" + } + } + } + }, + { + "id": "jopkquw3", + "componentType": "Radio", + "mandatory": false, + "page": "131", + "label": { + "value": "\"Où habitiez-vous le 1er \" || libMOISENQ || \" \" || cast(ANNEENQmoins4,string) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kwglkyat-SI", + "declarationType": "STATEMENT", + "position": "BEFORE_QUESTION_TEXT", + "label": { + "value": "\"Nous allons maintenant poser quelques questions sur votre situation au 1er \" || libMOISENQ || \" \" || cast(ANNEENQmoins4,string) || \", et vos déménagements depuis cette date.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\"))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "MAA2AT", + "MAA2AT_Q", + "MAA2A", + "ANNEENQmoins1", + "MAA2M", + "MOISENQ", + "ANNEENQmoins4", + "ANNEENQmoins8", + "ANNEENQmoins12" + ] + }, + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "jophfbfc", + "page": "131", + "label": { + "value": "Mobilité depuis 4 ans", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libMOISENQ", + "ANNEENQmoins4", + "VLR" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Dans le même logement que maintenant", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Dans un autre logement de la même commune", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Dans une autre commune en France métropolitaine", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "En Outre-mer", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "À l’étranger", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "VLR" + } + }, + { + "id": "jopl7p41", + "componentType": "Input", + "mandatory": false, + "page": "132", + "maxLength": 20, + "label": { + "value": "\"Dans quelle commune habitiez-vous le 1er \" || libMOISENQ || \" \" || cast(ANNEENQmoins4,string) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "jopl7p41-kwzauu2j", + "declarationType": "INSTRUCTION", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Saisir les premières lettres de la commune afin de la sélectionner dans la liste proposée", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR = \"3\" and not(isnull(VLR)))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "MAA2AT", + "MAA2AT_Q", + "MAA2A", + "ANNEENQmoins1", + "MAA2M", + "MOISENQ", + "ANNEENQmoins4", + "ANNEENQmoins8", + "ANNEENQmoins12", + "VLR" + ] + }, + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "jophfbfc", + "page": "131", + "label": { + "value": "Mobilité depuis 4 ans", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libMOISENQ", + "ANNEENQmoins4", + "COMMUNEPASSEE" + ], + "response": { + "name": "COMMUNEPASSEE" + } + }, + { + "id": "joplihpv", + "componentType": "Input", + "mandatory": false, + "page": "133", + "maxLength": 20, + "label": { + "value": "\"Dans quel département habitiez-vous le 1er \" || libMOISENQ || \" \" || cast(ANNEENQmoins4,string) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "joplihpv-joplaxge", + "declarationType": "INSTRUCTION", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Saisir le code ou les premières lettres du département afin de le sélectionner dans la liste proposée", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR = \"3\" and not(isnull(VLR))) and (isnull(COMMUNEPASSEE))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "MAA2AT", + "MAA2AT_Q", + "MAA2A", + "ANNEENQmoins1", + "MAA2M", + "MOISENQ", + "ANNEENQmoins4", + "ANNEENQmoins8", + "ANNEENQmoins12", + "VLR", + "COMMUNEPASSEE" + ] + }, + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "jophfbfc", + "page": "131", + "label": { + "value": "Mobilité depuis 4 ans", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libMOISENQ", + "ANNEENQmoins4", + "DEPART" + ], + "response": { + "name": "DEPART" + } + }, + { + "id": "joplkxrd", + "componentType": "Input", + "mandatory": false, + "page": "134", + "maxLength": 30, + "label": { + "value": "Indiquer le nom complet de la commune :", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR = \"3\" and not(isnull(VLR))) and (isnull(COMMUNEPASSEE))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "MAA2AT", + "MAA2AT_Q", + "MAA2A", + "ANNEENQmoins1", + "MAA2M", + "MOISENQ", + "ANNEENQmoins4", + "ANNEENQmoins8", + "ANNEENQmoins12", + "VLR", + "COMMUNEPASSEE" + ] + }, + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "jophfbfc", + "page": "131", + "label": { + "value": "Mobilité depuis 4 ans", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "VCRCOM" + ], + "response": { + "name": "VCRCOM" + } + }, + { + "id": "jopldlvn", + "componentType": "Input", + "mandatory": false, + "page": "135", + "maxLength": 20, + "label": { + "value": "\"Dans quel pays résidiez-vous le 1er \" || libMOISENQ || \" \" || cast(ANNEENQmoins4,string) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "jopldlvn-kwzbrdy1", + "declarationType": "INSTRUCTION", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Saisir les premières lettres du pays afin de le sélectionner dans la liste proposée", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR =\"5\" and not(isnull(VLR)))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "MAA2AT", + "MAA2AT_Q", + "MAA2A", + "ANNEENQmoins1", + "MAA2M", + "MOISENQ", + "ANNEENQmoins4", + "ANNEENQmoins8", + "ANNEENQmoins12", + "VLR" + ] + }, + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "jophfbfc", + "page": "131", + "label": { + "value": "Mobilité depuis 4 ans", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libMOISENQ", + "ANNEENQmoins4", + "VPRA" + ], + "response": { + "name": "VPRA" + } + }, + { + "id": "joplorns", + "componentType": "Radio", + "mandatory": false, + "page": "136", + "label": { + "value": "\"Au 1er \" || libMOISENQ || \" \" || cast(ANNEENQmoins4,string) || \", quelle était votre situation ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "jophfbfc", + "page": "131", + "label": { + "value": "Mobilité depuis 4 ans", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libMOISENQ", + "ANNEENQmoins4", + "VLA1" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Occupant en titre de votre logement (locataire, propriétaire ou usufruitier)", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Vous viviez chez votre conjoint", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Vous viviez chez vos parents, ou chez des particuliers, sans être occupant en titre du logement", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Vous logiez dans une [structure collective](. '(caserne, cité universitaire, foyer d’étudiants ou de jeunes travailleurs, centre d’hébergement, établissement de soins ou de cure...)') (caserne, cité universitaire,…) ou une habitation mobile", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "VLA1" + } + }, + { + "id": "joplzrmo", + "componentType": "Radio", + "mandatory": false, + "page": "137", + "label": { + "value": "\"Au 1er \" || libMOISENQ || \" \" || cast(ANNEENQmoins4,string) || \", comment votre ménage occupait-il ce logement ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((VLA1 = \"1\") and ((VLR = \"2\" or VLR = \"3\") or (MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\")))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "VLA1", + "VLR", + "MAA2AT", + "MAA2AT_Q", + "MAA2A", + "ANNEENQmoins1", + "MAA2M", + "MOISENQ", + "ANNEENQmoins4", + "ANNEENQmoins8", + "ANNEENQmoins12" + ] + }, + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "jophfbfc", + "page": "131", + "label": { + "value": "Mobilité depuis 4 ans", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libMOISENQ", + "ANNEENQmoins4", + "VSO1" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Propriétaire accédant (remboursement d’emprunt)", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Propriétaire non accédant (ne remboursant plus d’emprunt)", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Usufruitier, y compris en viager", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Locataire ou sous-locataire", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Logé gratuitement avec un paiement éventuel de charges", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "VSO1" + } + }, + { + "id": "jopri4xh", + "componentType": "Radio", + "mandatory": false, + "page": "138", + "label": { + "value": "Quel était le régime juridique du loyer ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "VSO1", + "VLR", + "VLA1", + "MAA2AT", + "MAA2AT_Q", + "MAA2A", + "ANNEENQmoins1", + "MAA2M", + "MOISENQ", + "ANNEENQmoins4", + "ANNEENQmoins8", + "ANNEENQmoins12", + "STOC", + "STOC2", + "STOC1" + ] + }, + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "jophfbfc", + "page": "131", + "label": { + "value": "Mobilité depuis 4 ans", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "VSY" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Le loyer relevait de la législation HLM ou du logement social", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Le loyer était déterminé selon la loi de 1948", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Le loyer relevait du secteur libre", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "VSY" + } + }, + { + "id": "joprsm9u", + "componentType": "InputNumber", + "mandatory": false, + "page": "139", + "min": 0, + "max": 1.0E+6, + "decimals": 0, + "label": { + "value": "\"Quel était le montant du loyer mensuel au 1er \" || libMOISENQ || \" \" || cast(ANNEENQmoins4,string) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "joprsm9u-kpbfr1bb", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Loyer hors charges.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "VSO1", + "VLR", + "VLA1", + "MAA2AT", + "MAA2AT_Q", + "MAA2A", + "ANNEENQmoins1", + "MAA2M", + "MOISENQ", + "ANNEENQmoins4", + "ANNEENQmoins8", + "ANNEENQmoins12", + "STOC", + "STOC2", + "STOC1" + ] + }, + "controls": [ + { + "id": "joprsm9u-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(VLOYER)) and (0>VLOYER or 1000000VLOYER)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "joprsm9u-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((instr(cast(nvl(VLOYER,0),string),\".\") <> 0) or (instr(cast(nvl(VLOYER,0),string),\",) <> 0))", + "type": "VTL" + }, + "errorMessage": { + "value": "Merci de ne pas renseigner de chiffres après la virgule.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "VLOYER" + ] + }, + { + "id": "joprsm9u-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(nvl(VLOYER,0)=0)", + "type": "VTL" + }, + "errorMessage": { + "value": "Le montant du loyer n’a pas pu être enregistré, merci de ne pas renseigner d’espaces dans votre réponse.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "VLOYER" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "jophfbfc", + "page": "131", + "label": { + "value": "Mobilité depuis 4 ans", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libMOISENQ", + "ANNEENQmoins4", + "VLOYER" + ], + "unit": "€", + "response": { + "name": "VLOYER" + } + }, + { + "id": "joprlyql", + "componentType": "Radio", + "mandatory": false, + "page": "140", + "label": { + "value": "\"Bénéficiez-vous au 1er \" || libMOISENQ || \" \" || cast(ANNEENQmoins4,string) || \" de l’allocation logement ou de l’aide personnalisée au logement (APL) ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "VSO1", + "VLR", + "VLA1", + "MAA2AT", + "MAA2AT_Q", + "MAA2A", + "ANNEENQmoins1", + "MAA2M", + "MOISENQ", + "ANNEENQmoins4", + "ANNEENQmoins8", + "ANNEENQmoins12", + "STOC", + "STOC2", + "STOC1" + ] + }, + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "jophfbfc", + "page": "131", + "label": { + "value": "Mobilité depuis 4 ans", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libMOISENQ", + "ANNEENQmoins4", + "VAID" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "VAID" + } + }, + { + "id": "joprp441", + "componentType": "InputNumber", + "mandatory": false, + "page": "141", + "min": 1, + "max": 24, + "decimals": 0, + "label": { + "value": "\"Combien de personnes résidaient dans le logement occupé au 1er \" || libMOISENQ || \" \" || cast(ANNEENQmoins4,string) || \", y compris vous-même ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VLA1<>\"4\" or isnull(VLA1))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "VLA1" + ] + }, + "controls": [ + { + "id": "joprp441-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(VIN)) and (1>VIN or 24VIN)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "joprp441-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((instr(cast(nvl(VIN,0),string),\".\") <> 0) or (instr(cast(nvl(VIN,0),string),\",) <> 0))", + "type": "VTL" + }, + "errorMessage": { + "value": "Merci de ne pas renseigner de chiffres après la virgule.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "VIN" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "jophfbfc", + "page": "131", + "label": { + "value": "Mobilité depuis 4 ans", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libMOISENQ", + "ANNEENQmoins4", + "VIN" + ], + "response": { + "name": "VIN" + } + }, + { + "id": "joprv8x6", + "componentType": "Subsequence", + "goToPage": "142", + "label": { + "value": "\"Caractéristiques du logement occupé au 1er \" || libMOISENQ || \" \" || cast(ANNEENQmoins4,string)", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VLR)) and (VLR=\"2\" or VLR=\"3\") and (VLA1<>\"4\" or isnull(VLA1) ))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "VLR", + "VLA1" + ] + }, + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "joprv8x6", + "page": "142", + "label": { + "value": "\"Caractéristiques du logement occupé au 1er \" || libMOISENQ || \" \" || cast(ANNEENQmoins4,string)", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libMOISENQ", + "ANNEENQmoins4" + ] + }, + { + "id": "jopruzlo", + "componentType": "Radio", + "mandatory": false, + "page": "142", + "label": { + "value": "\"À quoi correspondait le logement occupé au 1er \" || libMOISENQ || \" \" || cast(ANNEENQmoins4,string) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VLR)) and (VLR=\"2\" or VLR=\"3\") and (VLA1<>\"4\" or isnull(VLA1) ))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "VLR", + "VLA1" + ] + }, + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "joprv8x6", + "page": "142", + "label": { + "value": "\"Caractéristiques du logement occupé au 1er \" || libMOISENQ || \" \" || cast(ANNEENQmoins4,string)", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libMOISENQ", + "ANNEENQmoins4", + "VTL1" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Maison", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Appartement", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Logement-foyer", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Chambre d’hôtel", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Habitation de fortune (Construction précaire)", + "type": "VTL|MD" + } + }, + { + "value": "6", + "label": { + "value": "Pièce indépendante (ayant sa propre entrée)", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "VTL1" + } + }, + { + "id": "jopsc29x", + "componentType": "InputNumber", + "mandatory": false, + "page": "143", + "min": 1, + "max": 999, + "decimals": 2, + "label": { + "value": "\"Quelle était la surface habitable de ce logement occupé au 1er \" || libMOISENQ || \" \" || cast(ANNEENQmoins4,string) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "jopsc29x-jopshrd0", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Compter la surface habitable y compris les pièces annexes utilisées pour un usage personnel.", + "type": "VTL|MD" + } + }, + { + "id": "jopsc29x-kpbnmqra", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Exclure les pièces annexes louées, sous-louées ou prêtées et les pièces professionnelles.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VLR)) and (VLR=\"2\" or VLR=\"3\") and (VLA1<>\"4\" or isnull(VLA1) ))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "VLR", + "VLA1" + ] + }, + "controls": [ + { + "id": "jopsc29x-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(VSURF)) and (1.00>VSURF or 999.00VSURF)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 2 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "joprv8x6", + "page": "142", + "label": { + "value": "\"Caractéristiques du logement occupé au 1er \" || libMOISENQ || \" \" || cast(ANNEENQmoins4,string)", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libMOISENQ", + "ANNEENQmoins4", + "VSURF" + ], + "unit": "mètres carrés", + "response": { + "name": "VSURF" + } + }, + { + "id": "jops4c0x", + "componentType": "InputNumber", + "mandatory": false, + "page": "144", + "min": 1, + "max": 20, + "decimals": 0, + "label": { + "value": "\"Quel était le nombre de pièces d’habitation de ce logement occupé au 1er \" || libMOISENQ || \" \" || cast(ANNEENQmoins4,string) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "jops4c0x-jops3ast", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Compter la cuisine si elle avait plus de 12 m² et les pièces annexes utilisées pour usage personnel. ​", + "type": "VTL|MD" + } + }, + { + "id": "jops4c0x-kpbnwlcz", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Exclure l’entrée, les couloirs, la salle de bains, les W-C, les vérandas, les pièces annexes louées, sous-louées ou prêtées et les pièces à usage professionnel.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VLR)) and (VLR=\"2\" or VLR=\"3\") and (VLA1<>\"4\" or isnull(VLA1) ))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "VLR", + "VLA1" + ] + }, + "controls": [ + { + "id": "jops4c0x-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(VPI)) and (1>VPI or 20VPI)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "jops4c0x-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((instr(cast(nvl(VPI,0),string),\".\") <> 0) or (instr(cast(nvl(VPI,0),string),\",) <> 0))", + "type": "VTL" + }, + "errorMessage": { + "value": "Merci de ne pas renseigner de chiffres après la virgule.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "VPI" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "joprv8x6", + "page": "142", + "label": { + "value": "\"Caractéristiques du logement occupé au 1er \" || libMOISENQ || \" \" || cast(ANNEENQmoins4,string)", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libMOISENQ", + "ANNEENQmoins4", + "VPI" + ], + "response": { + "name": "VPI" + } + }, + { + "id": "jopsjl1n", + "componentType": "InputNumber", + "mandatory": false, + "page": "145", + "min": 0, + "max": 100, + "decimals": 1, + "label": { + "value": "\"Combien d’années avez-vous vécu dans ce logement occupé au 1er \" || libMOISENQ || \" \" || cast(ANNEENQmoins4,string) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VLR)) and (VLR=\"2\" or VLR=\"3\") and (VLA1<>\"4\" or isnull(VLA1) ))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "VLR", + "VLA1" + ] + }, + "controls": [ + { + "id": "jopsjl1n-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(VANCIEN)) and (0.0>VANCIEN or 100.0VANCIEN)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 1 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "joprv8x6", + "page": "142", + "label": { + "value": "\"Caractéristiques du logement occupé au 1er \" || libMOISENQ || \" \" || cast(ANNEENQmoins4,string)", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libMOISENQ", + "ANNEENQmoins4", + "VANCIEN" + ], + "unit": "années", + "response": { + "name": "VANCIEN" + } + }, + { + "id": "kovfldqd", + "componentType": "Subsequence", + "goToPage": "146", + "label": { + "value": "\"Situation professionnelle au 1er \" || libMOISENQ || \" \" || cast(ANNEENQmoins4,string)", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kovfldqd", + "page": "146", + "label": { + "value": "\"Situation professionnelle au 1er \" || libMOISENQ || \" \" || cast(ANNEENQmoins4,string)", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libMOISENQ", + "ANNEENQmoins4" + ] + }, + { + "id": "jopsiigq", + "componentType": "Radio", + "mandatory": false, + "page": "146", + "label": { + "value": "\"Quelle était votre situation professionnelle au 1er \" || libMOISENQ || \" \" || cast(ANNEENQmoins4,string) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kovfldqd", + "page": "146", + "label": { + "value": "\"Situation professionnelle au 1er \" || libMOISENQ || \" \" || cast(ANNEENQmoins4,string)", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libMOISENQ", + "ANNEENQmoins4", + "VOP" + ], + "options": [ + { + "value": "1", + "label": { + "value": "En emploi", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Au chômage (inscrit(e) ou non à Pôle emploi)", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Retraité(e), préretraité(e)", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "En incapacité de travailler en raison d’un handicap ou d’un problème de santé durable", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "En études", + "type": "VTL|MD" + } + }, + { + "value": "6", + "label": { + "value": "Femme ou homme au foyer", + "type": "VTL|MD" + } + }, + { + "value": "7", + "label": { + "value": "Dans une autre situation", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "VOP" + } + }, + { + "id": "jopsqquo", + "componentType": "Subsequence", + "goToPage": "147", + "label": { + "value": "\"Mobilité depuis le 1er \" || libMOISENQ || \" \" || cast(ANNEENQmoins4,string)", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "MAA2AT", + "MAA2AT_Q", + "MAA2A", + "ANNEENQmoins1", + "MAA2M", + "MOISENQ", + "ANNEENQmoins4", + "ANNEENQmoins8", + "ANNEENQmoins12" + ] + }, + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "jopsqquo", + "page": "147", + "label": { + "value": "\"Mobilité depuis le 1er \" || libMOISENQ || \" \" || cast(ANNEENQmoins4,string)", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libMOISENQ", + "ANNEENQmoins4" + ] + }, + { + "id": "jopsrdb3", + "componentType": "InputNumber", + "mandatory": false, + "page": "147", + "min": 0, + "max": 9, + "decimals": 0, + "label": { + "value": "\"Combien de fois avez-vous déménagé depuis le 1er \" || libMOISENQ || \" \" || cast(ANNEENQmoins4,string) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "MAA2AT", + "MAA2AT_Q", + "MAA2A", + "ANNEENQmoins1", + "MAA2M", + "MOISENQ", + "ANNEENQmoins4", + "ANNEENQmoins8", + "ANNEENQmoins12" + ] + }, + "controls": [ + { + "id": "jopsrdb3-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(VND)) and (0>VND or 9VND)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "jopsrdb3-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((instr(cast(nvl(VND,0),string),\".\") <> 0) or (instr(cast(nvl(VND,0),string),\",) <> 0))", + "type": "VTL" + }, + "errorMessage": { + "value": "Merci de ne pas renseigner de chiffres après la virgule.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "VND" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "jopsqquo", + "page": "147", + "label": { + "value": "\"Mobilité depuis le 1er \" || libMOISENQ || \" \" || cast(ANNEENQmoins4,string)", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libMOISENQ", + "ANNEENQmoins4", + "VND" + ], + "response": { + "name": "VND" + } + }, + { + "id": "joptkb9d", + "componentType": "Radio", + "mandatory": false, + "page": "148", + "label": { + "value": "Juste avant d’habiter dans votre logement actuel, où résidiez-vous ?", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kpbpgn1h-SI", + "declarationType": "STATEMENT", + "position": "BEFORE_QUESTION_TEXT", + "label": { + "value": "Maintenant, nous allons parler du logement que vous occupiez juste avant d’habiter dans votre logement actuel.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1)", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "MAA2AT", + "MAA2AT_Q", + "MAA2A", + "ANNEENQmoins1", + "MAA2M", + "MOISENQ", + "ANNEENQmoins4", + "ANNEENQmoins8", + "ANNEENQmoins12", + "VND" + ] + }, + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "jopsqquo", + "page": "147", + "label": { + "value": "\"Mobilité depuis le 1er \" || libMOISENQ || \" \" || cast(ANNEENQmoins4,string)", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "VLRD" + ], + "options": [ + { + "value": "1", + "label": { + "value": "En France métropolitaine", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Ailleurs", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "VLRD" + } + }, + { + "id": "jopu7wfr", + "componentType": "Radio", + "mandatory": false, + "page": "149", + "label": { + "value": "Avant d’occuper votre logement actuel, quelle était votre situation ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD)))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "MAA2AT", + "MAA2AT_Q", + "MAA2A", + "ANNEENQmoins1", + "MAA2M", + "MOISENQ", + "ANNEENQmoins4", + "ANNEENQmoins8", + "ANNEENQmoins12", + "VND", + "VLRD" + ] + }, + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "jopsqquo", + "page": "147", + "label": { + "value": "\"Mobilité depuis le 1er \" || libMOISENQ || \" \" || cast(ANNEENQmoins4,string)", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "VLAB1" + ], + "options": [ + { + "value": "1", + "label": { + "value": "[Occupant en titre](. 'locataire, propriétaire, usufruitier') de votre logement", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Vous viviez chez votre conjoint", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Vous viviez chez vos parents ou chez des particuliers, sans être occupant en titre du logement", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Vous viviez dans une structure collective (caserne, cité universitaire... ) ou une habitation mobile", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "VLAB1" + } + }, + { + "id": "jopua1hn", + "componentType": "Radio", + "mandatory": false, + "page": "150", + "label": { + "value": "Comment votre ménage occupait-il le précédent logement ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD))) and (VLAB1 = \"1\" and not(isnull(VLAB1)))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "MAA2AT", + "MAA2AT_Q", + "MAA2A", + "ANNEENQmoins1", + "MAA2M", + "MOISENQ", + "ANNEENQmoins4", + "ANNEENQmoins8", + "ANNEENQmoins12", + "VND", + "VLRD", + "VLAB1" + ] + }, + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "jopsqquo", + "page": "147", + "label": { + "value": "\"Mobilité depuis le 1er \" || libMOISENQ || \" \" || cast(ANNEENQmoins4,string)", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "VDD1" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Propriétaire accédant (remboursement d’emprunt)", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Propriétaire non accédant (ne remboursant plus d’emprunt)", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Usufruitier, y compris en viager", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Locataire ou sous-locataire", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Logé gratuitement avec un paiement éventuel de charges", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "VDD1" + } + }, + { + "id": "jopuofnr", + "componentType": "Radio", + "mandatory": false, + "page": "151", + "label": { + "value": "Quel était le régime juridique du loyer ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD))) and (VLAB1 = \"1\" and not(isnull(VLAB1))) and (VDD1=\"4\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "MAA2AT", + "MAA2AT_Q", + "MAA2A", + "ANNEENQmoins1", + "MAA2M", + "MOISENQ", + "ANNEENQmoins4", + "ANNEENQmoins8", + "ANNEENQmoins12", + "VND", + "VLRD", + "VLAB1", + "VDD1" + ] + }, + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "jopsqquo", + "page": "147", + "label": { + "value": "\"Mobilité depuis le 1er \" || libMOISENQ || \" \" || cast(ANNEENQmoins4,string)", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "VDSY" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Le loyer relevait de la législation HLM ou du logement social", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Le loyer était déterminé selon la loi de 1948", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Le loyer relevait du secteur libre", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "VDSY" + } + }, + { + "id": "kovgtboa", + "componentType": "Subsequence", + "goToPage": "152", + "label": { + "value": "Caractéristiques du précédent logement occupé", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VND)) and (cast(VND,integer) > 1)) and ((VLAB1 <>\"4\" or isnull(VLAB1)) and (VLRD=\"1\"))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "VND", + "VLAB1", + "VLRD" + ] + }, + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kovgtboa", + "page": "152", + "label": { + "value": "Caractéristiques du précédent logement occupé", + "type": "VTL|MD" + } + } + } + }, + { + "id": "jopuhzbr", + "componentType": "Radio", + "mandatory": false, + "page": "152", + "label": { + "value": "À quoi correspondait votre précédent logement ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VND)) and (cast(VND,integer) > 1)) and ((VLAB1 <>\"4\" or isnull(VLAB1)) and (VLRD=\"1\"))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "VND", + "VLAB1", + "VLRD" + ] + }, + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kovgtboa", + "page": "152", + "label": { + "value": "Caractéristiques du précédent logement occupé", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "VTLD1" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Maison", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Appartement", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Logement-foyer", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Chambre d’hôtel", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Habitation de fortune (Construction précaire)", + "type": "VTL|MD" + } + }, + { + "value": "6", + "label": { + "value": "Pièce indépendante (ayant sa propre entrée)", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "VTLD1" + } + }, + { + "id": "jopukm75", + "componentType": "InputNumber", + "mandatory": false, + "page": "153", + "min": 1, + "max": 997, + "decimals": 2, + "label": { + "value": "Quelle était la surface de votre précédent logement ?", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "jopukm75-kovh3bgb", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Compter la surface habitable y compris les pièces annexes utilisées pour un usage personnel.", + "type": "VTL|MD" + } + }, + { + "id": "jopukm75-kovh0e18", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Exclure les pièces annexes louées, sous-louées ou prêtées et les pièces professionnelles.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VND)) and (cast(VND,integer) > 1)) and ((VLAB1 <>\"4\" or isnull(VLAB1)) and (VLRD=\"1\"))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "VND", + "VLAB1", + "VLRD" + ] + }, + "controls": [ + { + "id": "jopukm75-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(VSURFD)) and (1.00>VSURFD or 997.00VSURFD)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 2 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kovgtboa", + "page": "152", + "label": { + "value": "Caractéristiques du précédent logement occupé", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "VSURFD" + ], + "unit": "mètres carrés", + "response": { + "name": "VSURFD" + } + }, + { + "id": "joputbjc", + "componentType": "InputNumber", + "mandatory": false, + "page": "154", + "min": 1, + "max": 20, + "decimals": 0, + "label": { + "value": "Quel était le nombre de pièces de votre précédent logement ?", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "joputbjc-jrw9jmbu", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Compter la cuisine si elle avait plus de 12 m² et les pièces annexes utilisées pour usage personnel.", + "type": "VTL|MD" + } + }, + { + "id": "joputbjc-kpbq0xkh", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Exclure l’entrée, les couloirs, la salle de bain, les W-C, les vérandas, les pièces annexes louées, sous-louées ou prêtées et les pièces à usage professionnel.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VND)) and (cast(VND,integer) > 1)) and ((VLAB1 <>\"4\" or isnull(VLAB1)) and (VLRD=\"1\"))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "VND", + "VLAB1", + "VLRD" + ] + }, + "controls": [ + { + "id": "joputbjc-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(VPID)) and (1>VPID or 20VPID)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "joputbjc-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((instr(cast(nvl(VPID,0),string),\".\") <> 0) or (instr(cast(nvl(VPID,0),string),\",) <> 0))", + "type": "VTL" + }, + "errorMessage": { + "value": "Merci de ne pas renseigner de chiffres après la virgule.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "VPID" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kovgtboa", + "page": "152", + "label": { + "value": "Caractéristiques du précédent logement occupé", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "VPID" + ], + "response": { + "name": "VPID" + } + }, + { + "id": "kovjkvfn", + "componentType": "Subsequence", + "goToPage": "155", + "label": { + "value": "Raison du dernier déménagement", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VND)) and (cast(VND,integer) > 0))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "VND" + ] + }, + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kovjkvfn", + "page": "155", + "label": { + "value": "Raison du dernier déménagement", + "type": "VTL|MD" + } + } + } + }, + { + "id": "jopvzl28", + "componentType": "Radio", + "mandatory": false, + "page": "155", + "label": { + "value": "Avez-vous déménagé pour changer de statut d’occupation ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VND)) and (cast(VND,integer) > 0))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "VND" + ] + }, + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kovjkvfn", + "page": "155", + "label": { + "value": "Raison du dernier déménagement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "VRAIS1" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui, pour devenir propriétaire", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Oui, pour devenir locataire", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Non, aucune de ces situations", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "VRAIS1" + } + }, + { + "id": "kovj0a8h", + "componentType": "CheckboxGroup", + "page": "156", + "label": { + "value": "Avez-vous déménagé du fait de l’évolution de votre situation personnelle ?", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kovj0a8h-kovj894p", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Plusieurs réponses possibles", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VND)) and (cast(VND,integer) > 0))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "VND" + ] + }, + "controls": [ + { + "id": "kovj0a8h-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not(((nvl(VRAIS26, false) = true and nvl(VRAIS25, false) = true) or (nvl(VRAIS26, false) = true and nvl(VRAIS24, false) = true) or (nvl(VRAIS26, false) = true and nvl(VRAIS23, false) = true) or (nvl(VRAIS26, false) = true and nvl(VRAIS22, false) = true) or (nvl(VRAIS26, false) = true and nvl(VRAIS21, false) = true) ))", + "type": "VTL" + }, + "errorMessage": { + "value": "La modalité \"Non, aucune de ces situations\" ne permet pas d’en sélectionner d’autres. Merci de bien vouloir corriger votre réponse.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "VRAIS26", + "VRAIS25", + "VRAIS24", + "VRAIS23", + "VRAIS22", + "VRAIS21" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kovjkvfn", + "page": "155", + "label": { + "value": "Raison du dernier déménagement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "VRAIS21", + "VRAIS22", + "VRAIS23", + "VRAIS24", + "VRAIS25", + "VRAIS26", + "VRAIS27" + ], + "responses": [ + { + "id": "kovj0a8h-QOP-lgqs0z70", + "label": { + "value": "Oui, mise en couple ou mariage", + "type": "VTL|MD" + }, + "response": { + "name": "VRAIS21" + } + }, + { + "id": "kovj0a8h-QOP-lgqs316l", + "label": { + "value": "Oui, naissance", + "type": "VTL|MD" + }, + "response": { + "name": "VRAIS22" + } + }, + { + "id": "kovj0a8h-QOP-lgqscpq0", + "label": { + "value": "Oui, séparation, divorce, veuvage", + "type": "VTL|MD" + }, + "response": { + "name": "VRAIS23" + } + }, + { + "id": "kovj0a8h-QOP-lgqs6idu", + "label": { + "value": "Oui, départ de chez vos parents", + "type": "VTL|MD" + }, + "response": { + "name": "VRAIS24" + } + }, + { + "id": "kovj0a8h-QOP-lgqrxc96", + "label": { + "value": "Oui, départ des enfants", + "type": "VTL|MD" + }, + "response": { + "name": "VRAIS25" + } + }, + { + "id": "kovj0a8h-QOP-lgqs60bf", + "label": { + "value": "Oui, en raison d’un problème de santé, d’un handicap ou d’une perte d’autonomie au sein du ménage", + "type": "VTL|MD" + }, + "response": { + "name": "VRAIS26" + } + }, + { + "id": "kovj0a8h-QOP-lgqs27ee", + "label": { + "value": "Non, aucune de ces situations", + "type": "VTL|MD" + }, + "response": { + "name": "VRAIS27" + } + } + ] + }, + { + "id": "kovirkvq", + "componentType": "CheckboxGroup", + "page": "157", + "label": { + "value": "Avez-vous déménagé pour changer vos conditions de logement ?", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kovirkvq-kovj7ehq", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Plusieurs réponses possibles", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VND)) and (cast(VND,integer) > 0))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "VND" + ] + }, + "controls": [ + { + "id": "kovirkvq-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not(((nvl(VRAIS36, false) = true and nvl(VRAIS35, false) = true) or (nvl(VRAIS36, false) = true and nvl(VRAIS34, false) = true) or (nvl(VRAIS36, false) = true and nvl(VRAIS33, false) = true) or (nvl(VRAIS36, false) = true and nvl(VRAIS32, false) = true) or (nvl(VRAIS36, false) = true and nvl(VRAIS31, false) = true) ))", + "type": "VTL" + }, + "errorMessage": { + "value": "La modalité \"Non, aucune de ces situations\" ne permet pas d’en sélectionner d’autres. Merci de bien vouloir corriger votre réponse.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "VRAIS36", + "VRAIS35", + "VRAIS34", + "VRAIS33", + "VRAIS32", + "VRAIS31" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kovjkvfn", + "page": "155", + "label": { + "value": "Raison du dernier déménagement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "VRAIS31", + "VRAIS32", + "VRAIS33", + "VRAIS34", + "VRAIS35", + "VRAIS36" + ], + "responses": [ + { + "id": "kovirkvq-QOP-kovj6smk", + "label": { + "value": "Oui, pour avoir un logement de meilleure qualité", + "type": "VTL|MD" + }, + "response": { + "name": "VRAIS31" + } + }, + { + "id": "kovirkvq-QOP-kovj16ho", + "label": { + "value": "Oui, pour avoir un logement plus grand ou plus petit", + "type": "VTL|MD" + }, + "response": { + "name": "VRAIS32" + } + }, + { + "id": "kovirkvq-QOP-koviym9y", + "label": { + "value": "Oui, pour avoir un logement plus adapté à la perte d’autonomie ou au handicap", + "type": "VTL|MD" + }, + "response": { + "name": "VRAIS33" + } + }, + { + "id": "kovirkvq-QOP-kovjetbt", + "label": { + "value": "Oui, pour changer d’environnement", + "type": "VTL|MD" + }, + "response": { + "name": "VRAIS34" + } + }, + { + "id": "kovirkvq-QOP-kovj1rc6", + "label": { + "value": "Oui, pour avoir un loyer plus bas ou un logement moins cher à entretenir", + "type": "VTL|MD" + }, + "response": { + "name": "VRAIS35" + } + }, + { + "id": "kovirkvq-QOP-kovj8oex", + "label": { + "value": "Non, aucune de ces situations", + "type": "VTL|MD" + }, + "response": { + "name": "VRAIS36" + } + } + ] + }, + { + "id": "kovj5q33", + "componentType": "CheckboxGroup", + "page": "158", + "label": { + "value": "Avez-vous déménagé pour effectuer un rapprochement ?", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kovj5q33-kovjfgo3", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Plusieurs réponses possibles", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VND)) and (cast(VND,integer) > 0))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "VND" + ] + }, + "controls": [ + { + "id": "kovj5q33-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not(((nvl(VRAIS45, false) = true and nvl(VRAIS44, false) = true) or (nvl(VRAIS45, false) = true and nvl(VRAIS43, false) = true) or (nvl(VRAIS45, false) = true and nvl(VRAIS42, false) = true) or (nvl(VRAIS45, false) = true and nvl(VRAIS41, false) = true) ))", + "type": "VTL" + }, + "errorMessage": { + "value": "La modalité \"Non, aucune de ces situations\" ne permet pas d’en sélectionner d’autres. Merci de bien vouloir corriger votre réponse.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "VRAIS45", + "VRAIS44", + "VRAIS43", + "VRAIS42", + "VRAIS41" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kovjkvfn", + "page": "155", + "label": { + "value": "Raison du dernier déménagement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "VRAIS41", + "VRAIS42", + "VRAIS43", + "VRAIS44", + "VRAIS45" + ], + "responses": [ + { + "id": "kovj5q33-QOP-kovj5e5b", + "label": { + "value": "Oui, de votre lieu de travail ou du lieu de travail d’une personne du ménage", + "type": "VTL|MD" + }, + "response": { + "name": "VRAIS41" + } + }, + { + "id": "kovj5q33-QOP-kovj1u7h", + "label": { + "value": "Oui, de service comme l’école, la garde d’enfants, l’hôpital...", + "type": "VTL|MD" + }, + "response": { + "name": "VRAIS42" + } + }, + { + "id": "kovj5q33-QOP-kovj9p1r", + "label": { + "value": "Oui, des commerces, de la gare...", + "type": "VTL|MD" + }, + "response": { + "name": "VRAIS43" + } + }, + { + "id": "kovj5q33-QOP-kovj8tl5", + "label": { + "value": "Oui, de la famille, des amis ou de la région d’origine", + "type": "VTL|MD" + }, + "response": { + "name": "VRAIS44" + } + }, + { + "id": "kovj5q33-QOP-kovj34ma", + "label": { + "value": "Non, aucune de ces situations", + "type": "VTL|MD" + }, + "response": { + "name": "VRAIS45" + } + } + ] + }, + { + "id": "lgmgi33v", + "componentType": "Radio", + "mandatory": false, + "page": "159", + "label": { + "value": "Avez-vous été contraint de déménager ?", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lgmgi33v-lgns2wkv", + "declarationType": "INSTRUCTION", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Indiquez la raison principale.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VND)) and (cast(VND,integer) > 0)) and (nvl(VRAIS27,false) = true and nvl(VRAIS36,false) = true and nvl(VRAIS45,false) = true)", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "VND", + "VRAIS27", + "VRAIS36", + "VRAIS45" + ] + }, + "hierarchy": { + "sequence": { + "id": "kv86jli3", + "page": "122", + "label": { + "value": "\"VIII - \" || \"Situations passées et logements précédents\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kovjkvfn", + "page": "155", + "label": { + "value": "Raison du dernier déménagement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "VRAIS5" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui, vous avez été expulsé (défaut de paiement du loyer, troubles du voisinage...)", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Oui, pour des raisons financières (hors expulsion)", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Oui, le propriétaire a voulu reprendre le logement à la fin du bail", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Oui, à cause d’une réhabilitation ou destruction du logement", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Oui, pour d’autres raisons", + "type": "VTL|MD" + } + }, + { + "value": "6", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "VRAIS5" + } + }, + { + "id": "kqa0lqp4", + "componentType": "Sequence", + "page": "160", + "label": { + "value": "\"IX - \" || \"Utilisation d’Internet, du téléphone et informations de contact\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kqa0lqp4-kw0t9gwz", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Pour conclure, nous allons vous poser les dernières questions portant sur votre utilisation du téléphone et d’Internet. Ces réponses seront utiles pour la suite de nos travaux d’analyse des données de l’enquête. Nous souhaiterions également recueillir vos informations de contact.", + "type": "VTL|MD" + } + }, + { + "id": "kqa0lqp4-kwjf9zen", + "declarationType": "INSTRUCTION", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Appuyer sur \"Continuer\" pour passer à la page suivante.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "kqa0lqp4", + "page": "160", + "label": { + "value": "\"IX - \" || \"Utilisation d’Internet, du téléphone et informations de contact\"", + "type": "VTL|MD" + } + } + } + }, + { + "id": "kp5apvf3", + "componentType": "Radio", + "mandatory": false, + "page": "161", + "label": { + "value": "Vous ou une autre personne de votre ménage, décrochez-vous lorsque votre téléphone fixe sonne ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "controls": [ + { + "id": "kp5apvf3-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(nvl(TELFIXE, \"\") = \"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "Cette information est importante pour établir des données représentatives, il est important que vous y répondiez, merci par avance.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "TELFIXE" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kqa0lqp4", + "page": "160", + "label": { + "value": "\"IX - \" || \"Utilisation d’Internet, du téléphone et informations de contact\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TELFIXE" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui, mais seulement lorsque vous connaissez le numéro qui essaie de vous joindre", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Oui, sans vous soucier du numéro qui essaie de vous joindre", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Non, jamais", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Il ne sonne jamais", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Vous n’avez pas de téléphone fixe", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "TELFIXE" + } + }, + { + "id": "kp5au0iu", + "componentType": "Radio", + "mandatory": false, + "page": "162", + "label": { + "value": "Décrochez-vous lorsque votre téléphone mobile sonne ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "controls": [ + { + "id": "kp5au0iu-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(nvl(TELMOB, \"\") = \"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "Cette information est importante pour établir des données représentatives, il est important que vous y répondiez, merci par avance.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "TELMOB" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kqa0lqp4", + "page": "160", + "label": { + "value": "\"IX - \" || \"Utilisation d’Internet, du téléphone et informations de contact\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TELMOB" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui, mais seulement lorsque vous connaissez le numéro ou le nom de la personne qui essaie de vous joindre", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Oui, sans vous soucier du numéro qui essaie de vous joindre", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Non, jamais", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Il ne sonne jamais", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Vous n’avez pas de téléphone portable", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "TELMOB" + } + }, + { + "id": "kp5bjbzg", + "componentType": "Radio", + "mandatory": false, + "page": "163", + "label": { + "value": "Comment avez-vous utilisé Internet, au cours des trois derniers mois, en moyenne ?", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kp5bjbzg-kp5bt2q8", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Quel que soit le lieu (domicile, travail) et le type de support (ordinateur, smartphone...)", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "controls": [ + { + "id": "kp5bjbzg-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(nvl(UWEB, \"\") = \"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "Cette information est importante pour établir des données représentatives, il est important que vous y répondiez, merci par avance.", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "UWEB" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kqa0lqp4", + "page": "160", + "label": { + "value": "\"IX - \" || \"Utilisation d’Internet, du téléphone et informations de contact\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "UWEB" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Tous les jours ou presque", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Pas tous les jours, mais au moins une fois par semaine", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Moins d’une fois par semaine", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Jamais", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Je n’ai pas accès à Internet", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "UWEB" + } + }, + { + "id": "kqwjjak7", + "componentType": "Subsequence", + "goToPage": "164", + "label": { + "value": "Destinataires des courriers", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "kqa0lqp4", + "page": "160", + "label": { + "value": "\"IX - \" || \"Utilisation d’Internet, du téléphone et informations de contact\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kqwjjak7", + "page": "164", + "label": { + "value": "Destinataires des courriers", + "type": "VTL|MD" + } + } + } + }, + { + "id": "kbamkrlv", + "componentType": "Radio", + "mandatory": false, + "page": "164", + "label": { + "value": "\"Les courriers que nous vous envoyons dans le cadre de cette enquête sont adressés à : \" || libCHGNC || \". Cela vous convient-il ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "kqa0lqp4", + "page": "160", + "label": { + "value": "\"IX - \" || \"Utilisation d’Internet, du téléphone et informations de contact\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kqwjjak7", + "page": "164", + "label": { + "value": "Destinataires des courriers", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libCHGNC", + "CHGNC" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "CHGNC" + } + }, + { + "id": "kbaxq9l0", + "componentType": "Radio", + "mandatory": false, + "page": "165", + "label": { + "value": "\"Civilité du \" || if (not(isnull(NOMVOUS_D2)) and NOMVOUS_D2<>\"\") then \"premier destinataire :\" else \" destinataire :\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kwjirnmi-SI", + "declarationType": "STATEMENT", + "position": "BEFORE_QUESTION_TEXT", + "label": { + "value": "Pouvez-vous indiquer le destinataire des courriers ?", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (CHGNC = \"2\" and not(isnull(CHGNC)))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "CHGNC" + ] + }, + "hierarchy": { + "sequence": { + "id": "kqa0lqp4", + "page": "160", + "label": { + "value": "\"IX - \" || \"Utilisation d’Internet, du téléphone et informations de contact\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kqwjjak7", + "page": "164", + "label": { + "value": "Destinataires des courriers", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "NOMVOUS_D2", + "CIVCOLL" + ], + "options": [ + { + "value": "M.", + "label": { + "value": "M.", + "type": "VTL|MD" + } + }, + { + "value": "Mme", + "label": { + "value": "Mme", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "CIVCOLL" + } + }, + { + "id": "kr0fw3n6", + "componentType": "Input", + "mandatory": false, + "page": "166", + "maxLength": 20, + "label": { + "value": "\"Prénom du \" || if (not(isnull(NOMVOUS_D2)) and NOMVOUS_D2<>\"\") then \"premier destinataire :\" else \"destinataire :\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (CHGNC = \"2\" and not(isnull(CHGNC)))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "CHGNC" + ] + }, + "hierarchy": { + "sequence": { + "id": "kqa0lqp4", + "page": "160", + "label": { + "value": "\"IX - \" || \"Utilisation d’Internet, du téléphone et informations de contact\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kqwjjak7", + "page": "164", + "label": { + "value": "Destinataires des courriers", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "NOMVOUS_D2", + "PRENOMCOLL" + ], + "response": { + "name": "PRENOMCOLL" + } + }, + { + "id": "kr0fn06f", + "componentType": "Input", + "mandatory": false, + "page": "167", + "maxLength": 40, + "label": { + "value": "\"Nom du \" || if (not(isnull(NOMVOUS_D2)) and NOMVOUS_D2<>\"\") then \"premier destinataire :\" else \"destinataire :\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (CHGNC = \"2\" and not(isnull(CHGNC)))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "CHGNC" + ] + }, + "hierarchy": { + "sequence": { + "id": "kqa0lqp4", + "page": "160", + "label": { + "value": "\"IX - \" || \"Utilisation d’Internet, du téléphone et informations de contact\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kqwjjak7", + "page": "164", + "label": { + "value": "Destinataires des courriers", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "NOMVOUS_D2", + "NOMCOLL" + ], + "response": { + "name": "NOMCOLL" + } + }, + { + "id": "kwjivaa1", + "componentType": "Radio", + "mandatory": false, + "page": "168", + "label": { + "value": "Souhaitez-vous ajouter un deuxième destinataire au courrier que nous vous envoyons ?", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (CHGNC = \"2\" and not(isnull(CHGNC))) and ((not(isnull(NOMVOUS_D2)) or NOMVOUS_D2<> \"\") and (not(isnull(NOMCOLL)) or NOMCOLL<> \"\"))", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "CHGNC", + "NOMVOUS_D2", + "NOMCOLL" + ] + }, + "hierarchy": { + "sequence": { + "id": "kqa0lqp4", + "page": "160", + "label": { + "value": "\"IX - \" || \"Utilisation d’Internet, du téléphone et informations de contact\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kqwjjak7", + "page": "164", + "label": { + "value": "Destinataires des courriers", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "CHGNC2" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "CHGNC2" + } + }, + { + "id": "kr0fr82y", + "componentType": "Radio", + "mandatory": false, + "page": "169", + "label": { + "value": "Civilité du deuxième destinataire :", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kwjjic7h-SI", + "declarationType": "STATEMENT", + "position": "BEFORE_QUESTION_TEXT", + "label": { + "value": "Pouvez-vous indiquer le deuxième destinataire des courriers ?", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (CHGNC = \"2\" and not(isnull(CHGNC))) and ((not(isnull(NOMVOUS_D2)) or NOMVOUS_D2<> \"\") and (not(isnull(NOMCOLL)) or NOMCOLL<> \"\")) and (not(isnull(CHGNC2)) and CHGNC2=\"1\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "CHGNC", + "NOMVOUS_D2", + "NOMCOLL", + "CHGNC2" + ] + }, + "hierarchy": { + "sequence": { + "id": "kqa0lqp4", + "page": "160", + "label": { + "value": "\"IX - \" || \"Utilisation d’Internet, du téléphone et informations de contact\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kqwjjak7", + "page": "164", + "label": { + "value": "Destinataires des courriers", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "CIVCOLL2" + ], + "options": [ + { + "value": "M.", + "label": { + "value": "M.", + "type": "VTL|MD" + } + }, + { + "value": "Mme", + "label": { + "value": "Mme", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "CIVCOLL2" + } + }, + { + "id": "kbbzjgn8", + "componentType": "Input", + "mandatory": false, + "page": "170", + "maxLength": 20, + "label": { + "value": "Prénom du deuxième destinataire :", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (CHGNC = \"2\" and not(isnull(CHGNC))) and ((not(isnull(NOMVOUS_D2)) or NOMVOUS_D2<> \"\") and (not(isnull(NOMCOLL)) or NOMCOLL<> \"\")) and (not(isnull(CHGNC2)) and CHGNC2=\"1\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "CHGNC", + "NOMVOUS_D2", + "NOMCOLL", + "CHGNC2" + ] + }, + "hierarchy": { + "sequence": { + "id": "kqa0lqp4", + "page": "160", + "label": { + "value": "\"IX - \" || \"Utilisation d’Internet, du téléphone et informations de contact\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kqwjjak7", + "page": "164", + "label": { + "value": "Destinataires des courriers", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMCOLL2" + ], + "response": { + "name": "PRENOMCOLL2" + } + }, + { + "id": "kbbzhtx3", + "componentType": "Input", + "mandatory": false, + "page": "171", + "maxLength": 40, + "label": { + "value": "Nom du deuxième destinataire :", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (CHGNC = \"2\" and not(isnull(CHGNC))) and ((not(isnull(NOMVOUS_D2)) or NOMVOUS_D2<> \"\") and (not(isnull(NOMCOLL)) or NOMCOLL<> \"\")) and (not(isnull(CHGNC2)) and CHGNC2=\"1\")", + "type": "VTL", + "bindingDependencies": [ + "CADR", + "CHGNC", + "NOMVOUS_D2", + "NOMCOLL", + "CHGNC2" + ] + }, + "hierarchy": { + "sequence": { + "id": "kqa0lqp4", + "page": "160", + "label": { + "value": "\"IX - \" || \"Utilisation d’Internet, du téléphone et informations de contact\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kqwjjak7", + "page": "164", + "label": { + "value": "Destinataires des courriers", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "NOMCOLL2" + ], + "response": { + "name": "NOMCOLL2" + } + }, + { + "id": "kqwjuv1h", + "componentType": "Subsequence", + "goToPage": "172", + "label": { + "value": "Numéro de téléphone", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "kqa0lqp4", + "page": "160", + "label": { + "value": "\"IX - \" || \"Utilisation d’Internet, du téléphone et informations de contact\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kqwjuv1h", + "page": "172", + "label": { + "value": "Numéro de téléphone", + "type": "VTL|MD" + } + } + } + }, + { + "id": "kbay0xfi", + "componentType": "Input", + "mandatory": false, + "page": "172", + "maxLength": 10, + "label": { + "value": "Pourriez-vous indiquer le numéro de téléphone à utiliser pour vous contacter ?", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kbay0xfi-kksdc5ct", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Vos coordonnées seront éventuellement utilisées dans les semaines à venir dans le cadre de cette enquête. Elles ne seront ni conservées, ni transmises à un tiers.", + "type": "VTL|MD" + } + }, + { + "id": "kbay0xfi-kkscy2qd", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Ne pas mettre d’espace, de \"/\", de \"-\" ni de \".\" entre les numéros. Ex. : 0147200001", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "type": "VTL", + "bindingDependencies": [ + "CADR" + ] + }, + "hierarchy": { + "sequence": { + "id": "kqa0lqp4", + "page": "160", + "label": { + "value": "\"IX - \" || \"Utilisation d’Internet, du téléphone et informations de contact\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kqwjuv1h", + "page": "172", + "label": { + "value": "Numéro de téléphone", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "NOTELCOLL" + ], + "response": { + "name": "NOTELCOLL" + } + }, + { + "id": "kp6svrg1", + "componentType": "Sequence", + "page": "173", + "label": { + "value": "\"X - \" || \"Fin du questionnaire\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kp6svrg1-kpo8brbj", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "libFINS1", + "type": "VTL|MD" + } + }, + { + "id": "kp6svrg1-kpo803df", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "libFINS12", + "type": "VTL|MD" + } + }, + { + "id": "kp6svrg1-kpo7wfgt", + "declarationType": "INSTRUCTION", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Merci de cliquer sur -Continuer- pour passer à la page suivante, puis sur -Envoyer- \" || libENVS1", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "true", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kp6svrg1", + "page": "173", + "label": { + "value": "\"X - \" || \"Fin du questionnaire\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "libFINS1", + "libFINS12", + "libENVS1" + ] + } + ], + "variables": [ + { + "variableType": "EXTERNAL", + "name": "NUMTH", + "value": null + }, + { + "variableType": "EXTERNAL", + "name": "ADR", + "value": null + }, + { + "variableType": "EXTERNAL", + "name": "CADRTH", + "value": null + }, + { + "variableType": "EXTERNAL", + "name": "CODEPOST1", + "value": null + }, + { + "variableType": "EXTERNAL", + "name": "LIBCOM", + "value": null + }, + { + "variableType": "EXTERNAL", + "name": "CIV_D1", + "value": null + }, + { + "variableType": "EXTERNAL", + "name": "PREN_D1", + "value": null + }, + { + "variableType": "EXTERNAL", + "name": "NOMVOUS_D1", + "value": null + }, + { + "variableType": "EXTERNAL", + "name": "CIV_D2", + "value": null + }, + { + "variableType": "EXTERNAL", + "name": "PREN_D2", + "value": null + }, + { + "variableType": "EXTERNAL", + "name": "NOMVOUS_D2", + "value": null + }, + { + "variableType": "COLLECTED", + "name": "CADR", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "NUMTH_COLL", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "ADR_COLL", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "CADRTH_COLL", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "CODEPOST1_COLL", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "LIBCOM_COLL", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "INDNVOCC", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "NOMNVOCC1", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "PRENOMNVOCC1", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "NOMNVOCC2", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "PRENOMNVOCC2", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "TELNVOCC", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "MAILNVOCC", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "NBHAB", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "G_PRENOM", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEXE", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "DATENAIS", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "TRAGE", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "LNAIS", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "DEPNAIS", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PAYSNAIS", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NATIO1N1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NATIO1N2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NATIO1N3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NATIO1N4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NATIO2N", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "LIEN", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "COUPLE", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SITUMATRI1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SITUMATRI2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SITUMATRI3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SITUMATRI4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SITUMATRI5", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SITUMATRI6", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "UNLOG", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "DURLOG", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "LOGENQ", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "LOGAUT", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "GARDE", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "DORM", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "LOGCO", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "TYPLOGCO", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SITUA", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "TRAVAIL", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "GRDIPA", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "GRDIPB", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "GRDIPC", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "TELET", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "TELETNJ", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PRACT_NOM", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "HTLC1", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "NIVEAU", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "FOYPAGEES", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "RESAUTO", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "INDCOLL", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "IMI", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "ICOI", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "IAS", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "IEL", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "IAATC", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "IAATCD", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "STOC1", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "STOC2", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "COLOC", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "LBA", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "STOCP", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "STOCA12", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "STOCA3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "STOCA4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "STOCB1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "EPAS1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ERETOUR", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "EPASB", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "EPASC", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ERET11", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ERET12", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ERET13", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ERET14", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ERET15", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ERET16", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ECOVID", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "EPROJ", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "EPROJB", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "EPROJC", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "EPROJD", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "EAMIA", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "EAMID11", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "EAMID12", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "EAMID13", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "EAMID14", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "EAMID15", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "EAMID16", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "EAMID17", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ECOVID2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "EAMIH", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "EAMIK", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "EAMIL", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "MAA2A", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "MAA2AT_Q", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "MAA2M", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "MARRIVC", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "MAA2AC", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "MAA2ATC_Q", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "MAA2MC", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "MAA3", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "MAA3A", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "MAA3M", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "SDEJA", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "KCU1", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "KCU2", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "HUTCOND", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "HUTDEF1", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "HUTDEF2", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "HUTDEF3", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "HUTDEF4", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "HUP", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "HPP", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "HSP", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "HUA", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "HPA", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "HULHUI1", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "HULHUI21", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "HULHUI22", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "HULHUI23", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "HPI1", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "HPI2", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "HSI1", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "HSI2", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "HPH", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "HCHA", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "HST", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "HPEUP", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "HAUT", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "KVE", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "KSV", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "KSV1", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "KBA", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "KSB", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "KJA", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "KSJPI", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "KSJPIT", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "KSMI", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "KSJPC", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "KJC", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "KSJC", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "GVOIT", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "KGA1", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "KGA2", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "KGA3", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "KGA4", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "KGA11", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "KGA12", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "KGA13", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "KGA14", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "KCA", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "KVELO", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "KGRA", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "KSOA", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "KPISC", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "KGRAA", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "KAO1", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "KWC1", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "KWCID", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "KWCIDB", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "KWCID2", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "KBD", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "KSE", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "KSEB", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "KSE2", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "KDLK1", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "KDLK2", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "OLA", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "OLAD", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "OLAR11", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "OLAR12", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "OLAR13", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "OLAR14", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "OLAR1DIF1", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "OLAR1DIF2", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "OLAR1DIFCO1", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "OLAR1DIFCO2", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "OLAR1DIFCO3", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "OLAR21", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "OLAR22", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "OLAR23", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "OLAR24", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "OLAR25", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "OLAR31", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "OLAR32", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "OLAR33", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "OLAR34", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "OLAR35", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "OLAR4", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "OQA", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "OQAD", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "SDL11", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SDL12", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SDL13", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SDL14", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SDL15", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SDL16", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SDL17", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SDL18", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SDL2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SDL4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SDN1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SDT1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SDL_SIT1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SDTAD", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SDT2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SDL_SIT2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SDTAD_SIT2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SDT2_SIT2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "VMODM1", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VMODM2", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VMODM3", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VMODM4", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VMODM5", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VMODM6", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VMODM7", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VMODP11", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VMODP12", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VMODP13", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VMODP14", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VMODP21", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VMODP22", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VMODP23", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VVENDL", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VFFH", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VFLA", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VACHAL", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VBILLOG", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VLR", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "COMMUNEPASSEE", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "DEPART", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VCRCOM", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VPRA", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VLA1", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VSO1", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VSY", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VLOYER", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VAID", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VIN", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VTL1", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VSURF", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VPI", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VANCIEN", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VOP", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VND", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VLRD", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VLAB1", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VDD1", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VDSY", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VTLD1", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VSURFD", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VPID", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VRAIS1", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VRAIS21", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VRAIS22", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VRAIS23", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VRAIS24", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VRAIS25", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VRAIS26", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VRAIS27", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VRAIS31", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VRAIS32", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VRAIS33", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VRAIS34", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VRAIS35", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VRAIS36", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VRAIS41", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VRAIS42", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VRAIS43", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VRAIS44", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VRAIS45", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "VRAIS5", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "TELFIXE", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "TELMOB", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "UWEB", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "CHGNC", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "CIVCOLL", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "PRENOMCOLL", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "NOMCOLL", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "CHGNC2", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "CIVCOLL2", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "PRENOMCOLL2", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "NOMCOLL2", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "COLLECTED", + "name": "NOTELCOLL", + "values": { + "PREVIOUS": null, + "COLLECTED": null, + "FORCED": null, + "EDITED": null, + "INPUTED": null + } + }, + { + "variableType": "CALCULATED", + "name": "LIB_FEM", + "expression": { + "value": "if (isnull(SEXE)) then \"\" else (if (SEXE = \"2\") then \"e\" else \"\")", + "type": "VTL" + }, + "bindingDependencies": [ + "SEXE" + ], + "shapeFrom": "G_PRENOM", + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "AGE", + "expression": { + "value": "if (FUTURANNIVERSAIRE) then cast((cast(AGEMILLESIME,integer) - 1),integer) else cast(AGEMILLESIME,integer)", + "type": "VTL" + }, + "bindingDependencies": [ + "FUTURANNIVERSAIRE", + "AGEMILLESIME", + "DATENAIS" + ], + "shapeFrom": "G_PRENOM", + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "LIB_PARENT", + "expression": { + "value": "if (isnull(SEXE)) then \"Votre parent, votre beau-parent\" else (if (SEXE = \"2\") then \"Votre mère, votre belle-mère\" else (if (SEXE = \"1\") then \"Votre père, votre beau-père\" else \"Votre parent, votre beau-parent\"))", + "type": "VTL" + }, + "bindingDependencies": [ + "SEXE" + ], + "shapeFrom": "G_PRENOM", + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "LIB_ENFANT", + "expression": { + "value": "if (isnull(SEXE)) then \"Votre enfant, votre bel-enfant\" else (if (SEXE = \"2\") then \"Votre fille, votre belle-fille\" else (if (SEXE = \"1\") then \"Votre fils, votre beau-fils\" else \"Votre enfant, votre bel-enfant\"))", + "type": "VTL" + }, + "bindingDependencies": [ + "SEXE" + ], + "shapeFrom": "G_PRENOM", + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "LIB_GDPARENT", + "expression": { + "value": "if (isnull(SEXE)) then \"Votre grand-parent, votre beau-grand-parent\" else (if (SEXE = \"2\") then \"Votre grand-mère, votre belle-grand-mère\" else (if (SEXE = \"1\") then \"Votre grand-père, votre beau-grand-père\" else \"Votre grand-parent, votre beau-grand-parent\"))", + "type": "VTL" + }, + "bindingDependencies": [ + "SEXE" + ], + "shapeFrom": "G_PRENOM", + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "LIB_PTENFANT", + "expression": { + "value": "if (isnull(SEXE)) then \"Votre petit-enfant, votre beau-petit-enfant\" else (if (SEXE = \"2\") then \"Votre petite-fille, votre belle-petite-fille\" else (if (SEXE = \"1\") then \"Votre petit-fils, votre beau-petit-fils\" else \"Votre petit-enfant, votre beau-petit-enfant\"))", + "type": "VTL" + }, + "bindingDependencies": [ + "SEXE" + ], + "shapeFrom": "G_PRENOM", + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "LIB_VEUF", + "expression": { + "value": "if (isnull(SEXE)) then \"Veuf, conjoint(e) décédé(e)\" else (if (SEXE = \"2\") then \"Veuve, conjoint(e) décédé(e)\" else \"Veuf, conjoint(e) décédé(e)\")", + "type": "VTL" + }, + "bindingDependencies": [ + "SEXE" + ], + "shapeFrom": "G_PRENOM", + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "LIB_SUJET", + "expression": { + "value": "if (isnull(SEXE)) then \"il\" else (if (SEXE = \"2\") then \"elle\" else \"il\")", + "type": "VTL" + }, + "bindingDependencies": [ + "SEXE" + ], + "shapeFrom": "G_PRENOM", + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "LIB_PRONOM", + "expression": { + "value": "if (isnull(SEXE)) then \"lui\" else (if (SEXE = \"2\") then \"elle\" else \"lui\")", + "type": "VTL" + }, + "bindingDependencies": [ + "SEXE" + ], + "shapeFrom": "G_PRENOM", + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "LIB_FEM2", + "expression": { + "value": "if (isnull(SEXE)) then \"er\" else (if (SEXE =\"2\") then \"ère\" else \"er\")", + "type": "VTL" + }, + "bindingDependencies": [ + "SEXE" + ], + "shapeFrom": "G_PRENOM", + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "persmaj", + "expression": { + "value": "if ((not(isnull(persplus18AGE)) and persplus18AGE=\"1\") or (not(isnull(persplus18TR)) and persplus18TR=\"1\")) then 1 else 0", + "type": "VTL" + }, + "bindingDependencies": [ + "persplus18AGE", + "persplus18TR", + "DATENAIS", + "TRAGE" + ], + "shapeFrom": "G_PRENOM", + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "persconj", + "expression": { + "value": "if (nvl(LIEN,\"\")=\"\") then 0 else (if (LIEN=\"1\") then 1 else 0)", + "type": "VTL" + }, + "bindingDependencies": [ + "LIEN" + ], + "shapeFrom": "G_PRENOM", + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "persparent", + "expression": { + "value": "if (nvl(LIEN,\"\")=\"\") then 0 else (if (LIEN=\"2\") then 1 else 0)", + "type": "VTL" + }, + "bindingDependencies": [ + "LIEN" + ], + "shapeFrom": "G_PRENOM", + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "STOCA", + "expression": { + "value": "if (isnull(STOCC)) then \"9\" else (if (isnull(STOCA12) and isnull(STOCA3) and isnull(STOCA4)) then \"9\" else (if ((STOCA12=\"1\" and not(isnull(STOCA12))) or (STOCA3=\"1\" and not(isnull(STOCA3))) or (STOCA4=\"1\" and not(isnull(STOCA4)))) then \"1\" else \"2\"))", + "type": "VTL" + }, + "bindingDependencies": [ + "STOCC", + "STOCA12", + "STOCA3", + "STOCA4", + "STOC2", + "STOC1" + ], + "shapeFrom": "G_PRENOM", + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "HebEnfant", + "expression": { + "value": "if ((persplus25TR=\"1\" or persplus25AGE=\"1\") and (STOCA=\"2\" and not(isnull(STOCA))) and (isnull(STOCB1) or STOCB1<>\"1\") and ((LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\") ) then 1 else 0", + "type": "VTL" + }, + "bindingDependencies": [ + "persplus25TR", + "persplus25AGE", + "STOCA", + "STOCB1", + "LIEN", + "LOGENQ", + "LOGAUT", + "DURLOG", + "TRAGE", + "DATENAIS", + "STOCA12", + "STOCA3", + "STOCA4", + "STOC2", + "STOC1" + ], + "shapeFrom": "G_PRENOM", + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "persplus25TR", + "expression": { + "value": "if (isnull(TRAGE) or TRAGE = \"1\" or TRAGE = \"2\" or TRAGE = \"4\") then \"0\" else \"1\"", + "type": "VTL" + }, + "bindingDependencies": [ + "TRAGE" + ], + "shapeFrom": "G_PRENOM", + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "HEB", + "expression": { + "value": "if (PRENOM<>PRENOMREF and (cast(persmaj,integer)=1) and (not(isnull(STOCA)) and STOCA=\"2\") and (STOCB1<>\"1\" or isnull(STOCB1)) and (nvl(LIEN,\"\")=\"\" or (LIEN<>\"1\" and LIEN<>\"3\" and LIEN<>\"5\")) and (isnull(SITUA) or SITUA<>\"5\") and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\")) then 1 else 0", + "type": "VTL" + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "persmaj", + "STOCA", + "STOCB1", + "LIEN", + "SITUA", + "LOGENQ", + "LOGAUT", + "DURLOG", + "G_PRENOM", + "STOCA12", + "STOCA3", + "STOCA4", + "DATENAIS", + "TRAGE", + "STOC2", + "STOC1" + ], + "shapeFrom": "G_PRENOM", + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "libSDT", + "expression": { + "value": "if (isnull(SDN1)) then \"ces situations\" else if (SDN1=\"1\") then \"cette situation\" else \"ces situations\"", + "type": "VTL" + }, + "bindingDependencies": [ + "SDN1" + ], + "shapeFrom": "G_PRENOM", + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "PRENOM", + "expression": { + "value": "if (isnull(G_PRENOM)) then PRENOMVIDE else G_PRENOM", + "type": "VTL" + }, + "bindingDependencies": [ + "G_PRENOM", + "PRENOMVIDE" + ], + "shapeFrom": "G_PRENOM", + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "persXRP", + "expression": { + "value": "if (isnull(DATENAIS)) then 0 else (if (not(isnull(PRENOM)) and PRENOM=\"PRÉNOM\") then 0 else (if (not(isnull(PRENOM)) and PRENOM=PRENOMREF and ( isnull(SITUA) or ((SITUA<>\"3\") and (SITUA<>\"6\")) ) and (not(isnull(DATENAIS)) and cast(AGE,integer)>60 ) ) then 1 else (if (LIEN=\"1\" and not(isnull(LIEN)) and ( isnull(SITUA) or ((SITUA<>\"3\") and (SITUA<>\"6\")) ) and (not(isnull(DATENAIS)) and cast(AGE,integer)>60 ) ) then 1 else 0)))", + "type": "VTL" + }, + "bindingDependencies": [ + "DATENAIS", + "PRENOM", + "PRENOMREF", + "SITUA", + "AGE", + "LIEN", + "G_PRENOM" + ], + "shapeFrom": "G_PRENOM", + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "FUTURANNIVERSAIRE", + "expression": { + "value": "(cast((MOISENQ || JOURENQ),integer) < cast(substr(cast(DATENAIS,string),6,2) || substr(cast(DATENAIS,string),9,2),integer))", + "type": "VTL" + }, + "bindingDependencies": [ + "MOISENQ", + "JOURENQ", + "DATENAIS" + ], + "shapeFrom": "G_PRENOM", + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "AGEMILLESIME", + "expression": { + "value": "(cast(ANNEENQ,integer) - cast(substr(cast(DATENAIS,string),1,4),integer))", + "type": "VTL" + }, + "bindingDependencies": [ + "ANNEENQ", + "DATENAIS" + ], + "shapeFrom": "G_PRENOM", + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "EMPLOI", + "expression": { + "value": "if (isnull(SITUA)) then \"0\" else (if (SITUA =\"1\") then \"1\" else (if (isnull(TRAVAIL)) then \"0\" else (if (TRAVAIL = \"1\") then \"1\" else \"0\")))", + "type": "VTL" + }, + "bindingDependencies": [ + "SITUA", + "TRAVAIL" + ], + "shapeFrom": "G_PRENOM", + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "persplus25AGE", + "expression": { + "value": "if (nvl(DATENAIS,\"\")=\"\" or cast(AGE,integer) < 25) then \"0\" else \"1\"", + "type": "VTL" + }, + "bindingDependencies": [ + "DATENAIS", + "AGE" + ], + "shapeFrom": "G_PRENOM", + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "persplus18TR", + "expression": { + "value": "if (isnull(TRAGE) or TRAGE = \"1\" or TRAGE = \"4\") then \"0\" else \"1\"", + "type": "VTL" + }, + "bindingDependencies": [ + "TRAGE" + ], + "shapeFrom": "G_PRENOM", + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "persplus18AGE", + "expression": { + "value": "if (nvl(DATENAIS,\"\")=\"\" or (cast(AGE,integer) < 18)) then \"0\" else \"1\"", + "type": "VTL" + }, + "bindingDependencies": [ + "DATENAIS", + "AGE" + ], + "shapeFrom": "G_PRENOM", + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "persplus15AGE", + "expression": { + "value": "if (isnull(DATENAIS) or (cast(AGE,integer) < 15)) then \"0\" else \"1\"", + "type": "VTL" + }, + "bindingDependencies": [ + "DATENAIS", + "AGE" + ], + "shapeFrom": "G_PRENOM", + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "STOCC", + "expression": { + "value": "if (isnull(STOC)) then \"0\" else STOC", + "type": "VTL" + }, + "bindingDependencies": [ + "STOC", + "STOC2", + "STOC1" + ], + "shapeFrom": "G_PRENOM", + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "filtre_SIT", + "expression": { + "value": "if ((nvl(SDL11,false)=false and nvl(SDL12,false)=false and nvl(SDL13,false)=false and nvl(SDL14,false)=false and nvl(SDL15,false)=false and nvl(SDL16,false)=false) or (nvl(SDL12,false)=false and nvl(SDL13,false)=false and nvl(SDL14,false)=false and nvl(SDL15,false)=false and nvl(SDL16,false)=false and nvl(SDL17,false)=false) or (nvl(SDL11,false)=false and nvl(SDL13,false)=false and nvl(SDL14,false)=false and nvl(SDL15,false)=false and nvl(SDL16,false)=false and nvl(SDL17,false)=false) or (nvl(SDL11,false)=false and nvl(SDL12,false)=false and nvl(SDL14,false)=false and nvl(SDL15,false)=false and nvl(SDL16,false)=false and nvl(SDL17,false)=false) or (nvl(SDL11,false)=false and nvl(SDL12,false)=false and nvl(SDL13,false)=false and nvl(SDL15,false)=false and nvl(SDL16,false)=false and nvl(SDL17,false)=false) or (nvl(SDL11,false)=false and nvl(SDL12,false)=false and nvl(SDL13,false)=false and nvl(SDL14,false)=false and nvl(SDL16,false)=false and nvl(SDL17,false)=false) or (nvl(SDL11,false)=false and nvl(SDL12,false)=false and nvl(SDL13,false)=false and nvl(SDL14,false)=false and nvl(SDL15,false)=false and nvl(SDL17,false)=false)) then \"0\" else \"1\"", + "type": "VTL" + }, + "bindingDependencies": [ + "SDL11", + "SDL12", + "SDL13", + "SDL14", + "SDL15", + "SDL16", + "SDL17" + ], + "shapeFrom": "G_PRENOM", + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "perstelet", + "expression": { + "value": "if (isnull(TELET) or TELET=\"2\") then 0 else 1", + "type": "VTL" + }, + "bindingDependencies": [ + "TELET" + ], + "shapeFrom": "G_PRENOM", + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "persACTIF_REF", + "expression": { + "value": "if ((PRENOM=PRENOMREF) and ((not(isnull(SITUA)) and SITUA=\"1\") or (not(isnull(TRAVAIL)) and TRAVAIL=\"1\"))) then 1 else 0", + "type": "VTL" + }, + "bindingDependencies": [ + "PRENOM", + "PRENOMREF", + "SITUA", + "TRAVAIL", + "G_PRENOM" + ], + "shapeFrom": "G_PRENOM", + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "persACTIF_REFCJ", + "expression": { + "value": "if (not(isnull(LIEN)) and LIEN=\"1\" and ((not(isnull(SITUA)) and SITUA=\"1\") or (not(isnull(TRAVAIL)) and TRAVAIL=\"1\"))) then 1 else 0", + "type": "VTL" + }, + "bindingDependencies": [ + "LIEN", + "SITUA", + "TRAVAIL" + ], + "shapeFrom": "G_PRENOM", + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "INDSEXECJ1", + "expression": { + "value": "if (nvl(LIEN,\"\")=\"1\") then (if (nvl(SEXE,\"\")=\"1\") then 1 else 0) else 0", + "type": "VTL" + }, + "bindingDependencies": [ + "LIEN", + "SEXE" + ], + "shapeFrom": "G_PRENOM", + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "INDSEXECJ2", + "expression": { + "value": "if (nvl(LIEN,\"\")=\"1\") then (if (nvl(SEXE,\"\")=\"2\") then 1 else 0) else 0", + "type": "VTL" + }, + "bindingDependencies": [ + "LIEN", + "SEXE" + ], + "shapeFrom": "G_PRENOM", + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "persenf", + "expression": { + "value": "if (nvl(LIEN,\"\")=\"\") then 0 else (if (LIEN=\"3\") then 1 else 0)", + "type": "VTL" + }, + "bindingDependencies": [ + "LIEN" + ], + "shapeFrom": "G_PRENOM", + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "avecenfant", + "expression": { + "value": "if (nvl(LIEN,\"\")=\"\") then 0 else (if (LIEN=\"3\" or LIEN=\"5\") then 1 else 0)", + "type": "VTL" + }, + "bindingDependencies": [ + "LIEN" + ], + "shapeFrom": "G_PRENOM", + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "persamiscoloc", + "expression": { + "value": "if (nvl(LIEN,\"\")=\"\") then 0 else (if (LIEN=\"7\") then 1 else 0)", + "type": "VTL" + }, + "bindingDependencies": [ + "LIEN" + ], + "shapeFrom": "G_PRENOM", + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "persplus15TR", + "expression": { + "value": "if (isnull(TRAGE) or TRAGE = \"4\") then \"0\" else \"1\"", + "type": "VTL" + }, + "bindingDependencies": [ + "TRAGE" + ], + "shapeFrom": "G_PRENOM", + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "persplus15", + "expression": { + "value": "if ((not(isnull(persplus15AGE)) and persplus15AGE=\"1\") or (not(isnull(persplus15TR)) and persplus15TR=\"1\")) then 1 else 0", + "type": "VTL" + }, + "bindingDependencies": [ + "persplus15AGE", + "persplus15TR", + "DATENAIS", + "TRAGE" + ], + "shapeFrom": "G_PRENOM", + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "ADRESSE", + "expression": { + "value": "(if (isnull(NUMTH)) then \"\" else NUMTH) || \" \" || (if (isnull(ADR)) then \"\" else ADR) || \" \" || (if (isnull(CADRTH)) then \"\" else CADRTH) || \" \" || (if (isnull(CODEPOST1)) then \"\" else CODEPOST1) || \" \" || (if (isnull(LIBCOM)) then \"\" else LIBCOM)", + "type": "VTL" + }, + "bindingDependencies": [ + "NUMTH", + "ADR", + "CADRTH", + "CODEPOST1", + "LIBCOM" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "ADRCOLLC", + "expression": { + "value": "if (isnull(CADR) or CADR=\"1\" or CADR=\"3\" or CADR=\"4\") then ADRESSE else (if (isnull(NUMTH_COLL)) then \"\" else NUMTH_COLL) || \" \" || (if (isnull(ADR_COLL)) then \"\" else ADR_COLL) || \" \" || (if (isnull(CADRTH_COLL)) then \"\" else CADRTH_COLL) || \" \" || (if (isnull(CODEPOST1_COLL)) then \"\" else CODEPOST1_COLL) || \" \" || (if (isnull(LIBCOM_COLL)) then \"\" else LIBCOM_COLL)", + "type": "VTL" + }, + "bindingDependencies": [ + "CADR", + "ADRESSE", + "NUMTH_COLL", + "ADR_COLL", + "CADRTH_COLL", + "CODEPOST1_COLL", + "LIBCOM_COLL", + "NUMTH", + "ADR", + "CADRTH", + "CODEPOST1", + "LIBCOM" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "NOMOCC1", + "expression": { + "value": "(if (isnull(CIV_D1)) then \"\" else CIV_D1 || \" \") || ( if (isnull(PREN_D1)) then \"\" else PREN_D1 || \" \") || (if (isnull(NOMVOUS_D1)) then \"\" else NOMVOUS_D1)", + "type": "VTL" + }, + "bindingDependencies": [ + "CIV_D1", + "PREN_D1", + "NOMVOUS_D1" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "NOMCOLLC", + "expression": { + "value": "if (CHGNC = \"1\" or isnull(CHGNC)) then NOMOCC1 || \", \" || NOMOCC2 else (CIVCOLL || \" \" || PRENOMCOLL || \" \" || NOMCOLL || ( if (not(isnull(NOMCOLL2)) and NOMCOLL2<>\"\" ) then \"\" else \", \" || CIVCOLL2 || \" \" || PRENOMCOLL2 || \" \" || NOMCOLL2) )", + "type": "VTL" + }, + "bindingDependencies": [ + "CHGNC", + "NOMOCC1", + "NOMOCC2", + "CIVCOLL", + "PRENOMCOLL", + "NOMCOLL", + "NOMCOLL2", + "CIVCOLL2", + "PRENOMCOLL2", + "CIV_D1", + "PREN_D1", + "NOMVOUS_D1", + "CIV_D2", + "PREN_D2", + "NOMVOUS_D2" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "NHAB", + "expression": { + "value": "if (nvl(NBHAB,0)=0) then 1 else cast(NBHAB,integer)", + "type": "VTL" + }, + "bindingDependencies": [ + "NBHAB" + ], + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "MAA2AT", + "expression": { + "value": "(if (not(isnull(MAA2AT_Q))) then MAA2AT_Q else (if (isnull(MAA2A)) then \"\" else (if ( ( cast(MAA2A,integer) > cast(ANNEENQmoins1,integer) ) or ( (cast(MAA2A,integer) = cast(ANNEENQmoins1,integer) ) and (cast(MAA2M,integer) > cast(MOISENQ,integer)) and not(isnull(MAA2M)) ) or ( (cast(MAA2A,integer) = cast(ANNEENQmoins1,integer)) and isnull(MAA2M) and (cast(MOISENQ,integer) <=6) )) then \"1\" else (if ( ( cast(MAA2A,integer) > cast(ANNEENQmoins4,integer) ) or ( (cast(MAA2A,integer) = cast(ANNEENQmoins4,integer)) and (cast(MAA2M,integer) > cast(MOISENQ,integer)) and not(isnull(MAA2M)) ) or ( (cast(MAA2A,integer) = cast(ANNEENQmoins4,integer)) and isnull(MAA2M) and (cast(MOISENQ,integer)<=6) )) then \"2\" else (if ( cast(MAA2A,integer) > cast(ANNEENQmoins8,integer) ) then \"3\" else (if ( cast(MAA2A,integer) > cast(ANNEENQmoins12,integer)) then \"4\" else (if (not(isnull(MAA2A))) then \"5\" else \"\")))))))", + "type": "VTL" + }, + "bindingDependencies": [ + "MAA2AT_Q", + "MAA2A", + "ANNEENQmoins1", + "MAA2M", + "MOISENQ", + "ANNEENQmoins4", + "ANNEENQmoins8", + "ANNEENQmoins12" + ], + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "MAA2ATC", + "expression": { + "value": "if ( not(isnull(MARRIVC)) and MARRIVC= \"1\") then MAA2AT else (if (not(isnull(MAA2ATC_Q))) then MAA2ATC_Q else (if (isnull(MAA2AC)) then \"\" else (if ( ( cast(MAA2AC,integer) > cast(ANNEENQmoins1,integer)) or ( (cast(MAA2AC,integer) = cast(ANNEENQmoins1,integer)) and (cast(MAA2MC,integer) > cast(MOISENQ,integer)) and not(isnull(MAA2MC)) ) or ( (cast(MAA2AC,integer) =cast(ANNEENQmoins1,integer)) and isnull(MAA2MC) and (cast(MOISENQ,integer)<=6) )) then \"1\" else (if ( ( cast(MAA2AC,integer) > cast(ANNEENQmoins4,integer) ) or ( (cast(MAA2AC,integer) = cast(ANNEENQmoins4,integer)) and (cast(MAA2MC,integer) > cast(MOISENQ,integer)) and not(isnull(MAA2MC)) ) or ( (cast(MAA2AC,integer) = cast(ANNEENQmoins4,integer)) and isnull(MAA2MC) and (cast(MOISENQ,integer)<=6) )) then \"2\" else (if ( cast(MAA2AC,integer) > cast(ANNEENQmoins8,integer) ) then \"3\" else (if ( cast(MAA2AC,integer) > cast(ANNEENQmoins12,integer) ) then \"4\" else (if (not(isnull(MAA2AC))) then \"5\" else \"\")))))))", + "type": "VTL" + }, + "bindingDependencies": [ + "MARRIVC", + "MAA2AT", + "MAA2ATC_Q", + "MAA2AC", + "ANNEENQmoins1", + "MAA2MC", + "MOISENQ", + "ANNEENQmoins4", + "ANNEENQmoins8", + "ANNEENQmoins12", + "MAA2AT_Q", + "MAA2A", + "MAA2M" + ], + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "MAA3AT", + "expression": { + "value": "if (isnull(MAA3A)) then \"\" else (if ( (cast(MAA3A,integer) > cast(ANNEENQmoins1,integer)) or ( (cast(MAA3A,integer) = cast(ANNEENQmoins1,integer)) and (cast(MAA3M,integer) > cast(MOISENQ,integer)) and not(isnull(MAA3M)) ) or ( (cast(MAA3A,integer) = cast(ANNEENQmoins1,integer)) and isnull(MAA3M) and (cast(MOISENQ,integer)<=6) )) then \"1\" else (if ( (cast(MAA3A,integer) > cast(ANNEENQmoins4,integer)) or ( (cast(MAA3A,integer) = cast(ANNEENQmoins4,integer)) and (cast(MAA3M,integer) > cast(MOISENQ,integer)) and not(isnull(MAA3M)) ) or ( (cast(MAA3A,integer) = cast(ANNEENQmoins4,integer)) and isnull(MAA3M) and (cast(MOISENQ,integer)<=6) )) then \"2\" else (if ( cast(MAA3A,integer) > cast(ANNEENQmoins8,integer) ) then \"3\" else (if ( cast(MAA3A,integer) > cast(ANNEENQmoins12,integer)) then \"4\" else (if (not(isnull(MAA3A))) then \"5\" else \"\")))))", + "type": "VTL" + }, + "bindingDependencies": [ + "MAA3A", + "ANNEENQmoins1", + "MAA3M", + "MOISENQ", + "ANNEENQmoins4", + "ANNEENQmoins8", + "ANNEENQmoins12" + ], + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "MAA1AT", + "expression": { + "value": "if (not(isnull(MAA2AT)) and isnull(MAA2ATC) and isnull(MAA3AT) ) then MAA2AT else (if (not(isnull(MAA2AT)) and not(isnull(MAA2ATC)) and isnull(MAA3AT) ) then (if ((cast(MAA2AT,integer)cast(MAA2AT,integer)) then \"l'arrivée de votre conjoint(e)\" else (if (not(isnull(MAA2A))) then \"votre arrivée en \" || cast(MAA2A,string) else \"votre arrivée\"))", + "type": "VTL" + }, + "bindingDependencies": [ + "MAA2A", + "MARRIVC", + "MAA2AC", + "MAA2MC", + "MAA2M", + "MAA2AT", + "MAA2ATC", + "MAA2AT_Q", + "MAA2ATC_Q" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "libHSP", + "expression": { + "value": "if (isnull(HPP)) then \"vos pièces\" else ( if (cast(HPP,integer) = 1) then \"votre pièce\" else \"vos pièces\")", + "type": "VTL" + }, + "bindingDependencies": [ + "HPP" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "libHSI1", + "expression": { + "value": "if (isnull(HPI1) and isnull(HPA)) then \"ces pièces annexes réservées\" else (if (isnull(HPI1) and not(isnull(HULHUI22)) and (HULHUI22)) then \"ces pièces annexes réservées\" else (if ((cast(HPI1,integer) = 1) or (cast(HPA,integer) = 1)) then \"cette pièce annexe réservée\" else (if (cast(HPI1,integer)>0) then \"ces \" || cast(HPI1,string) || \" pièces annexes réservées\" else \"ces pièces annexes réservées\")))", + "type": "VTL" + }, + "bindingDependencies": [ + "HPI1", + "HPA", + "HULHUI22" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "libHPHa", + "expression": { + "value": "if (isnull(HUA)) then \"\" else if (HUA=\"1\") then \"pièce annexe, \" else \"\"", + "type": "VTL" + }, + "bindingDependencies": [ + "HUA" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "libHPHp", + "expression": { + "value": "if (isnull(HUP)) then \"\" else (if (HUP=\"1\") then \"pièce exclusivement professionnelle, \" else \"\")", + "type": "VTL" + }, + "bindingDependencies": [ + "HUP" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "libHPHc", + "expression": { + "value": "if (isnull(KCU1)) then \"\" else if (KCU1=\"1\") then \"cuisine, \" else \"\"", + "type": "VTL" + }, + "bindingDependencies": [ + "KCU1" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "libHST", + "expression": { + "value": "if (isnull(HPP) and isnull(HPA)) then \" \" else (if (not(isnull(HPP)) and not(isnull(HPA))) then \", en dehors \" || libHSTp || \" et \" || libHSTa else (if (not(isnull(HPP))) then \", en dehors \" || libHSTp else ( if (not(isnull(HPA))) then \", en dehors \" || libHSTa else \" \")))", + "type": "VTL" + }, + "bindingDependencies": [ + "HPP", + "HPA", + "libHSTp", + "libHSTa" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "libHSTmoy", + "expression": { + "value": "round( (cast(HST,integer) / cast(HPH,integer)) )", + "type": "VTL" + }, + "bindingDependencies": [ + "HST", + "HPH" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "libHSTmoy2", + "expression": { + "value": "round( (cast(HST,integer) / (cast(HPH,integer) +1)) )", + "type": "VTL" + }, + "bindingDependencies": [ + "HST", + "HPH" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "libKBA", + "expression": { + "value": "if (isnull(libHTLC)) then \"\" else (if (cast(libHTLC,string)=\"collectif\") then \", des terrasses\" else \"\")", + "type": "VTL" + }, + "bindingDependencies": [ + "libHTLC", + "HTLC1", + "INDCOLL" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "libKJA", + "expression": { + "value": "if (isnull(HTLC1)) then \"Avez-vous\" else (if (HTLC1=\"2\") then \"Dans votre résidence, avez-vous\" else \"Avez-vous\")", + "type": "VTL" + }, + "bindingDependencies": [ + "HTLC1" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "libHTLC2", + "expression": { + "value": "if (isnull(HTLC1) and isnull(HTLC1) and isnull(INDCOLL)) then \"votre logement\" else (if ((HTLC1=\"1\" and not(isnull(HTLC1))) or (HTLC1=\"5\" and not(isnull(HTLC1))) or (INDCOLL=\"2\" and not(isnull(INDCOLL))) ) then \"la propriété\" else \"l'immeuble\")", + "type": "VTL" + }, + "bindingDependencies": [ + "HTLC1", + "INDCOLL" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "libKVELO", + "expression": { + "value": "if (isnull(ICOI)) then \"l'immeuble\" else (if (ICOI=\"1\") then \"la copropriété\" else \"l'immeuble\")", + "type": "VTL" + }, + "bindingDependencies": [ + "ICOI" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "libKAO", + "expression": { + "value": "if (isnull(HUA)) then \"\" else if (HUA=\"1\" and isnull(HULHUI1) and isnull(HULHUI22) and isnull(HULHUI23) ) then \"\" else if (HUA=\"1\" and (HULHUI1 =\"2\" or HULHUI1 =\"3\")) then \"Sans oublier la pièce annexe\" else if (HUA=\"1\" and (nvl(HULHUI22,false)=true or nvl(HULHUI23,false)=true)) then \"Sans oublier les pièces annexes.\" else \"\"", + "type": "VTL" + }, + "bindingDependencies": [ + "HUA", + "HULHUI1", + "HULHUI22", + "HULHUI23" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "STOC", + "expression": { + "value": "if (isnull(STOC2)) then STOC1 else (if (STOC2 = \"1\") then \"1\" else (if (STOC2 = \"2\") then \"2\" else STOC1))", + "type": "VTL" + }, + "bindingDependencies": [ + "STOC2", + "STOC1" + ], + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "libHSI2", + "expression": { + "value": "if (isnull(HPI2) and isnull(HPA)) then \"ces pièces annexes réservées\" else (if (isnull(HPI2) and not(isnull(HULHUI23))) then \"ces pièces annexes réservées\" else (if ((cast(HPI2,integer) = 1) or (cast(HPA,integer) = 1)) then \"cette pièce annexe réservée\" else (if (cast(HPI2,integer)>0) then \"ces \" || cast(HPI2,string) || \" pièces annexes réservées\" else \"ces pièces annexes réservées\")))", + "type": "VTL" + }, + "bindingDependencies": [ + "HPI2", + "HPA", + "HULHUI23" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "liHPHc2", + "expression": { + "value": "if (isnull(KCU1)) then \"\" else if (KCU1=\"2\" or KCU1=\"3\") then \"Compter comme une pièce votre salon si la cuisine est ouverte (cuisine américaine).\" else \"\"", + "type": "VTL" + }, + "bindingDependencies": [ + "KCU1" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "libHSTa", + "expression": { + "value": "if (isnull(HPA)) then \"\" else (if (cast(HPA,integer)=1) then \"de la pièce annexe\" else (if (cast(HPA,integer)>1) then \"des pièces annexes\" else \"\"))", + "type": "VTL" + }, + "bindingDependencies": [ + "HPA" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "libHSTp", + "expression": { + "value": "if (isnull(HPP)) then \"\" else (if (cast(HPP,integer)=1) then \"de la pièce professionnelle\" else (if (cast(HPP,integer)>1) then \"des pièces professionnelles\" else \"\"))", + "type": "VTL" + }, + "bindingDependencies": [ + "HPP" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "libHSTc", + "expression": { + "value": "if (isnull(KCU1)) then \"\" else (if (KCU1=\"1\") then \"(et une cuisine)\" else \"\")", + "type": "VTL" + }, + "bindingDependencies": [ + "KCU1" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "libHTLC", + "expression": { + "value": "if (isnull(HTLC1)) then \"\" else (if (HTLC1=\"1\" or HTLC1=\"5\" or (INDCOLL=\"2\" and not(isnull(INDCOLL))) ) then \"individuel\" else ( if (HTLC1=\"2\" or HTLC1=\"3\" or HTLC1=\"4\" or (INDCOLL=\"1\" and not(isnull(INDCOLL))) ) then \"collectif\" else \"\"))", + "type": "VTL" + }, + "bindingDependencies": [ + "HTLC1", + "INDCOLL" + ], + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "libKSMI", + "expression": { + "value": "if (isnull(KVE)) then \" et de la véranda\" else if (KVE<>\"2\") then \" et de la véranda\" else \"\"", + "type": "VTL" + }, + "bindingDependencies": [ + "KVE" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "libKSJPI", + "expression": { + "value": "if (isnull(HUP)) then \"\" else if (HUP=\"1\") then \"(sans usage exclusivement professionnel) \" else \"\"", + "type": "VTL" + }, + "bindingDependencies": [ + "HUP" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "libSTOC1", + "expression": { + "value": "if (isnull(NBHAB)) then \"Un ménage peut être composé d'une seule personne.\" else (if (cast(NBHAB,integer) < 2) then \"Un ménage peut être composé d'une seule personne.\" else \"\")", + "type": "VTL" + }, + "bindingDependencies": [ + "NBHAB" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "libMOISENQ", + "expression": { + "value": "if (isnull(MOISENQ)) then \"\" else (if (MOISENQ=\"01\") then \"janvier\" else (if (MOISENQ=\"02\") then \"février\" else (if (MOISENQ=\"03\") then \"mars\" else (if (MOISENQ=\"04\") then \"avril\" else (if (MOISENQ=\"05\") then \"mai\" else (if (MOISENQ=\"06\") then \"juin\" else (if (MOISENQ=\"07\") then \"juillet\" else (if (MOISENQ=\"08\") then \"août\" else (if (MOISENQ=\"09\") then \"septembre\" else (if (MOISENQ=\"10\") then \"octobre\" else (if (MOISENQ=\"11\") then \"novembre\" else (if (MOISENQ=\"12\") then \"décembre\" else \"\" ))))))))))))", + "type": "VTL" + }, + "bindingDependencies": [ + "MOISENQ" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "ANNEENQmoins4", + "expression": { + "value": "(cast(ANNEENQ,integer)) - 4", + "type": "VTL" + }, + "bindingDependencies": [ + "ANNEENQ" + ], + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "iDEPENDANCE", + "expression": { + "value": "if ((not(isnull(KVE)) and KVE=\"1\") or (not(isnull(KBA)) and KBA=\"1\") or (not(isnull(KJA)) and KJA=\"1\") or (not(isnull(KJC)) and KJC=\"1\") or (nvl(KGA1,false)=true) or (nvl(KGA2,false)=true) or (nvl(KGA3,false)=true) or (not(isnull(KCA)) and KCA=\"1\") or (not(isnull(KVELO)) and KVELO=\"1\") or (not(isnull(KGRA)) and KGRA=\"1\") or (not(isnull(KSOA)) and KSOA=\"1\") or (not(isnull(KGRAA)) and KGRAA=\"1\") or (not(isnull(KPISC)) and KPISC=\"1\")) then \"1\" else \"0\"", + "type": "VTL" + }, + "bindingDependencies": [ + "KVE", + "KBA", + "KJA", + "KJC", + "KGA1", + "KGA2", + "KGA3", + "KCA", + "KVELO", + "KGRA", + "KSOA", + "KGRAA", + "KPISC" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "libIAATC", + "expression": { + "value": "if (isnull(HTLC1)) then \"du logement\" else (if (HTLC1=\"1\" or HTLC1=\"5\" or (INDCOLL=\"2\" and not(isnull(INDCOLL)))) then \"de la maison\" else ( if (HTLC1=\"2\" or HTLC1=\"3\" or HTLC1=\"4\" or (INDCOLL=\"1\" and not(isnull(INDCOLL)))) then \"de l'immeuble\" else \"du logement\"))", + "type": "VTL" + }, + "bindingDependencies": [ + "HTLC1", + "INDCOLL" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "libVFLA", + "expression": { + "value": "if (isnull(VVENDL)) then \"L'un de ces logements maintenant vendus\" else ( if (VVENDL = \"1\") then \"Ce logement maintenant vendu\" else \"L'un de ces logements maintenant vendus\")", + "type": "VTL" + }, + "bindingDependencies": [ + "VVENDL" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "libVFFH", + "expression": { + "value": "if (isnull(VVENDL)) then \"\" else if (VVENDL =\"2\") then \"Considérer le logement vendu pour le prix le plus élevé.\" else \"\"", + "type": "VTL" + }, + "bindingDependencies": [ + "VVENDL" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "libVBILLOG1", + "expression": { + "value": "if (isnull(VVENDL)) then \"logement vendu\" else (if (VVENDL=\"2\") then \"total des logements vendus\" else \"logement vendu\")", + "type": "VTL" + }, + "bindingDependencies": [ + "VVENDL" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "libVBILLOG2", + "expression": { + "value": "if (isnull(VACHAL)) then \"logement acheté\" else (if (VACHAL=\"2\") then \"total des logements achetés\" else \"logement acheté\")", + "type": "VTL" + }, + "bindingDependencies": [ + "VACHAL" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "PRENOMREF", + "expression": { + "value": "first_value(G_PRENOM over())", + "type": "VTL" + }, + "bindingDependencies": [ + "G_PRENOM" + ], + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "INDconj", + "expression": { + "value": "if (isnull(nbpersconj)) then \"0\" else (if (cast(nbpersconj,integer)>0) then \"1\" else \"0\")", + "type": "VTL" + }, + "bindingDependencies": [ + "nbpersconj", + "LIEN" + ], + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "libENVS1", + "expression": { + "value": "if (isnull(CADR)) then \"pour transmettre votre questionnaire à l'Insee.\" else ( if (CADR=\"3\" or CADR=\"4\") then \"pour transmettre cette information à l'Insee afin que vous ne soyez pas relancés.\" else \"pour transmettre votre questionnaire à l'Insee.\")", + "type": "VTL" + }, + "bindingDependencies": [ + "CADR" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "libFINS1", + "expression": { + "value": "if (isnull(CADR)) then \"Vous êtes arrivés à la fin de ce questionnaire.\" else (if (CADR=\"3\" or CADR=\"4\") then \"Nous vous remercions de votre participation, mais l’enquête se termine ici, puisque vous n’habitez pas dans le logement enquêté.\" else \"Vous êtes arrivés à la fin de ce questionnaire. Nous vous remercions de votre participation.\")", + "type": "VTL" + }, + "bindingDependencies": [ + "CADR" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "libFINS12", + "expression": { + "value": "if (isnull(CADR)) then \"Vous serez contactés à nouveau dans quelques semaines pour participer à l’enquête, consacrée aux coûts du logement.\" else if (CADR=\"3\" or CADR=\"4\") then \"\" else \"Vous serez contactés à nouveau dans quelques semaines pour participer à la deuxième partie de l’enquête, consacrée aux coûts du logement.\"", + "type": "VTL" + }, + "bindingDependencies": [ + "CADR" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "HC", + "expression": { + "value": "if (isnull(CADR) or CADR= \"1\" or CADR= \"2\") then \"0\" else \"1\"", + "type": "VTL" + }, + "bindingDependencies": [ + "CADR" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "nbpersmaj", + "expression": { + "value": "sum(cast(persmaj,integer))", + "type": "VTL" + }, + "bindingDependencies": [ + "persmaj", + "DATENAIS", + "TRAGE" + ], + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "nbpersconj", + "expression": { + "value": "sum(cast(persconj,integer))", + "type": "VTL" + }, + "bindingDependencies": [ + "persconj", + "LIEN" + ], + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "nbpersparent", + "expression": { + "value": "sum(cast(persparent,integer))", + "type": "VTL" + }, + "bindingDependencies": [ + "persparent", + "LIEN" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "libINTROPRENOM", + "expression": { + "value": "if (isnull(NBHAB) or (cast(NBHAB,integer)<2)) then \"Nous allons vous interroger sur votre état civil, votre situation familiale et professionnelle avant de passer à la description de votre logement.\" else \"En commençant par vous, indiquez les prénoms des habitants du logement.\"", + "type": "VTL" + }, + "bindingDependencies": [ + "NBHAB" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "libINTROPRENOM2", + "expression": { + "value": "if (isnull(NBHAB) or (cast(NBHAB,integer)<2)) then \"\" else \"Si des personnes portent le même prénom, ajoutez un chiffre pour les distinguer.\"", + "type": "VTL" + }, + "bindingDependencies": [ + "NBHAB" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "nb_HebEnfant", + "expression": { + "value": "sum(cast(HebEnfant,integer))", + "type": "VTL" + }, + "bindingDependencies": [ + "HebEnfant", + "STOCB1", + "LIEN", + "LOGENQ", + "LOGAUT", + "DURLOG", + "TRAGE", + "DATENAIS", + "STOCA12", + "STOCA3", + "STOCA4", + "STOC2", + "STOC1" + ], + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "nb_HEB", + "expression": { + "value": "sum(cast(HEB,integer))", + "type": "VTL" + }, + "bindingDependencies": [ + "HEB", + "STOCB1", + "LIEN", + "SITUA", + "LOGENQ", + "LOGAUT", + "DURLOG", + "G_PRENOM", + "STOCA12", + "STOCA3", + "STOCA4", + "DATENAIS", + "TRAGE", + "STOC2", + "STOC1" + ], + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "nbpersXRP", + "expression": { + "value": "sum(cast(persXRP,integer))", + "type": "VTL" + }, + "bindingDependencies": [ + "persXRP", + "DATENAIS", + "SITUA", + "LIEN", + "G_PRENOM" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "filtre_XRP", + "expression": { + "value": "if (isnull(nbpersXRP)) then \"0\" else (if (cast(nbpersXRP,integer)>=1) then \"1\" else \"0\")", + "type": "VTL" + }, + "bindingDependencies": [ + "nbpersXRP", + "DATENAIS", + "SITUA", + "LIEN", + "G_PRENOM" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "libCHGNC", + "expression": { + "value": "if (isnull(NOMVOUS_D2) or NOMVOUS_D2=\"\") then NOMOCC1 else NOMOCC1 || \" et \" || NOMOCC2", + "type": "VTL" + }, + "bindingDependencies": [ + "NOMVOUS_D2", + "NOMOCC1", + "NOMOCC2", + "CIV_D1", + "PREN_D1", + "NOMVOUS_D1", + "CIV_D2", + "PREN_D2" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "nbperstelet", + "expression": { + "value": "sum(cast(perstelet,integer))", + "type": "VTL" + }, + "bindingDependencies": [ + "perstelet", + "TELET" + ], + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "PRENOMVIDE", + "expression": { + "value": "\"PRÉNOM\"", + "type": "VTL" + }, + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "ANNEENQmoins1", + "expression": { + "value": "(cast(ANNEENQ,integer)) - 1", + "type": "VTL" + }, + "bindingDependencies": [ + "ANNEENQ" + ], + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "ANNEENQmoins8", + "expression": { + "value": "(cast(ANNEENQ,integer)) - 8", + "type": "VTL" + }, + "bindingDependencies": [ + "ANNEENQ" + ], + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "ANNEENQmoins12", + "expression": { + "value": "(cast(ANNEENQ,integer)) - 12", + "type": "VTL" + }, + "bindingDependencies": [ + "ANNEENQ" + ], + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "SEXEREF", + "expression": { + "value": "first_value(SEXE over())", + "type": "VTL" + }, + "bindingDependencies": [ + "SEXE" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "filtre_autrepers", + "expression": { + "value": "if (isnull(INDconj) or INDconj=\"0\") then ( if (cast(nbpersmaj,integer) > 1) then \"1\" else \"0\" ) else ( if (cast(nbpersmaj,integer) > 2) then \"1\" else \"0\" )", + "type": "VTL" + }, + "bindingDependencies": [ + "INDconj", + "nbpersmaj", + "LIEN", + "DATENAIS", + "TRAGE" + ], + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "NOMOCC2", + "expression": { + "value": "(if (isnull(CIV_D2)) then \"\" else CIV_D2 || \" \") || ( if (isnull(PREN_D2)) then \"\" else PREN_D2 || \" \") || (if (isnull(NOMVOUS_D2)) then \"\" else NOMVOUS_D2)", + "type": "VTL" + }, + "bindingDependencies": [ + "CIV_D2", + "PREN_D2", + "NOMVOUS_D2" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "nbACTIF_REFCJ", + "expression": { + "value": "sum(cast(persACTIF_REFCJ,integer))", + "type": "VTL" + }, + "bindingDependencies": [ + "persACTIF_REFCJ", + "LIEN", + "SITUA", + "TRAVAIL" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "ACTIF_REFCJ", + "expression": { + "value": "if (not(isnull(nbACTIF_REFCJ)) and cast(nbACTIF_REFCJ,integer)>0) then \"1\" else \"0\"", + "type": "VTL" + }, + "bindingDependencies": [ + "nbACTIF_REFCJ", + "LIEN", + "SITUA", + "TRAVAIL" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "nbACTIF_REF", + "expression": { + "value": "sum(cast(persACTIF_REF,integer))", + "type": "VTL" + }, + "bindingDependencies": [ + "persACTIF_REF", + "SITUA", + "TRAVAIL", + "G_PRENOM" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "ACTIF_REF", + "expression": { + "value": "if (not(isnull(nbACTIF_REF)) and cast(nbACTIF_REF,integer)>0) then \"1\" else \"0\"", + "type": "VTL" + }, + "bindingDependencies": [ + "nbACTIF_REF", + "SITUA", + "TRAVAIL", + "G_PRENOM" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "intro_STOC", + "expression": { + "value": "if (isnull(NBHAB)) then \"le statut d'occupation de votre ménage\" else (if (cast(NBHAB,integer)=1) then \"votre statut d'occupation\" else (if (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>1) then \"le statut d'occupation de votre ménage, les statuts d'occupation individuels des occupants du logement\" else \"le statut d'occupation de votre ménage\" ) )", + "type": "VTL" + }, + "bindingDependencies": [ + "NBHAB", + "nbpersmaj", + "DATENAIS", + "TRAGE" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "filtre_HebEnfant", + "expression": { + "value": "if (not(isnull(nb_HebEnfant)) and cast(nb_HebEnfant,integer)>0 ) then \"1\" else \"0\"", + "type": "VTL" + }, + "bindingDependencies": [ + "nb_HebEnfant", + "STOCB1", + "LIEN", + "LOGENQ", + "LOGAUT", + "DURLOG", + "TRAGE", + "DATENAIS", + "STOCA12", + "STOCA3", + "STOCA4", + "STOC2", + "STOC1" + ], + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "filtre_HEB", + "expression": { + "value": "if (not(isnull(nb_HEB)) and cast(nb_HEB,integer)>0 ) then \"1\" else \"0\"", + "type": "VTL" + }, + "bindingDependencies": [ + "nb_HEB", + "STOCB1", + "LIEN", + "SITUA", + "LOGENQ", + "LOGAUT", + "DURLOG", + "G_PRENOM", + "STOCA12", + "STOCA3", + "STOCA4", + "DATENAIS", + "TRAGE", + "STOC2", + "STOC1" + ], + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "SEXECJ1", + "expression": { + "value": "sum(cast(INDSEXECJ1,integer))", + "type": "VTL" + }, + "bindingDependencies": [ + "INDSEXECJ1", + "LIEN", + "SEXE" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "SEXECJ2", + "expression": { + "value": "sum(cast(INDSEXECJ2,integer))", + "type": "VTL" + }, + "bindingDependencies": [ + "INDSEXECJ2", + "LIEN", + "SEXE" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "SEXECJ_E", + "expression": { + "value": "if (cast(SEXECJ2,integer)>0) then \"e\" else (if (cast(SEXECJ1,integer)>0) then \"\" else \"(e)\")", + "type": "VTL" + }, + "bindingDependencies": [ + "SEXECJ2", + "SEXECJ1", + "LIEN", + "SEXE" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "SEXECJ_IEL", + "expression": { + "value": "if (cast(SEXECJ2,integer)>0) then \"elle\" else (if (cast(SEXECJ1,integer)>0) then \"il\" else \"il/elle\")", + "type": "VTL" + }, + "bindingDependencies": [ + "SEXECJ2", + "SEXECJ1", + "LIEN", + "SEXE" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "INDENF", + "expression": { + "value": "if (isnull(nbpersenf)) then \"0\" else (if (cast(nbpersenf,integer)>0) then \"1\" else \"0\")", + "type": "VTL" + }, + "bindingDependencies": [ + "nbpersenf", + "LIEN" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "nbpersenf", + "expression": { + "value": "sum(cast(persenf,integer))", + "type": "VTL" + }, + "bindingDependencies": [ + "persenf", + "LIEN" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "JOURENQ", + "expression": { + "value": "cast(current_date(),string,\"DD\")", + "type": "VTL" + }, + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "libSDEJA", + "expression": { + "value": "if (isnull(INDconj)) then \"\" else (if(INDconj=\"1\") then \", vous ou votre conjoint,\" else \"\")", + "type": "VTL" + }, + "bindingDependencies": [ + "INDconj", + "LIEN" + ], + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "nbenfant", + "expression": { + "value": "sum(cast(avecenfant,integer))", + "type": "VTL" + }, + "bindingDependencies": [ + "avecenfant", + "LIEN" + ], + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "nbpersamiscoloc", + "expression": { + "value": "sum(cast(persamiscoloc,integer))", + "type": "VTL" + }, + "bindingDependencies": [ + "persamiscoloc", + "LIEN" + ], + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "nbpers15", + "expression": { + "value": "sum(cast(persplus15,integer))", + "type": "VTL" + }, + "bindingDependencies": [ + "persplus15", + "DATENAIS", + "TRAGE" + ], + "inFilter": "true" + } + ], + "cleaning": { + "CADR": { + "NUMTH_COLL": "(CADR = \"2\")", + "ADR_COLL": "(CADR = \"2\")", + "CADRTH_COLL": "(CADR = \"2\")", + "CODEPOST1_COLL": "(CADR = \"2\")", + "LIBCOM_COLL": "(CADR = \"2\")", + "INDNVOCC": "(CADR = \"3\")", + "NOMNVOCC1": "(CADR = \"3\") and (INDNVOCC = \"1\")", + "PRENOMNVOCC1": "(CADR = \"3\") and (INDNVOCC = \"1\")", + "NOMNVOCC2": "(CADR = \"3\") and (INDNVOCC = \"1\")", + "PRENOMNVOCC2": "(CADR = \"3\") and (INDNVOCC = \"1\")", + "TELNVOCC": "(CADR = \"3\") and (INDNVOCC = \"1\")", + "MAILNVOCC": "(CADR = \"3\") and (INDNVOCC = \"1\")", + "NBHAB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "G_PRENOM": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "SEXE": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "DATENAIS": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "TRAGE": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (nvl(DATENAIS,\"\")=\"\")", + "LNAIS": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "DEPNAIS": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (LNAIS =\"1\" and (persplus18TR=\"1\" or persplus18AGE=\"1\"))", + "PAYSNAIS": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (LNAIS = \"2\")", + "NATIO2N": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (NATIO1N3 = true)", + "LIEN": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (PRENOM <> PRENOMREF)", + "COUPLE": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((not(isnull(LIEN)) and LIEN<>\"1\") or (PRENOM=PRENOMREF)) and ((persplus18TR=\"1\" or persplus18AGE=\"1\"))", + "UNLOG": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "DURLOG": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (UNLOG = \"2\")", + "LOGENQ": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (UNLOG = \"2\")", + "LOGAUT": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (UNLOG = \"2\")", + "GARDE": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (UNLOG = \"2\") and (DURLOG = \"2\" and LOGENQ = \"2\" and LOGAUT = \"2\")", + "DORM": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (UNLOG = \"2\") and (DURLOG = \"2\" and LOGENQ = \"2\" and LOGAUT = \"2\") and (GARDE = \"1\")", + "LOGCO": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (UNLOG = \"2\") and (LOGAUT = \"3\" or LOGAUT = \"4\" or LOGAUT = \"6\")", + "TYPLOGCO": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (UNLOG = \"2\") and (LOGAUT = \"3\" or LOGAUT = \"4\" or LOGAUT = \"6\") and (LOGCO = \"1\")", + "SITUA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "TRAVAIL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (not(isnull(SITUA)) and (SITUA = \"2\" or SITUA = \"3\" or SITUA = \"4\" or SITUA = \"5\" or SITUA = \"6\" or SITUA = \"7\"))", + "GRDIPA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "GRDIPB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (GRDIPA = \"1\" and not(isnull(GRDIPA)))", + "GRDIPC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(GRDIPA)) and GRDIPA = \"8\"))", + "TELET": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(EMPLOI)) and EMPLOI = \"1\"))", + "TELETNJ": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(EMPLOI)) and EMPLOI = \"1\")) and (TELET=\"1\")", + "PRACT_NOM": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer) > 1)", + "HTLC1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "NIVEAU": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (nvl(HTLC1, \"\") = \"1\" or nvl(HTLC1 , \"\") = \"2\" or nvl(HTLC1, \"\") = \"3\")", + "FOYPAGEES": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((not(isnull(HTLC1)) and HTLC1 = \"3\"))", + "RESAUTO": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((not(isnull(HTLC1)) and HTLC1 = \"3\")) and (FOYPAGEES=\"1\" and not(isnull(FOYPAGEES)))", + "INDCOLL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((not(isnull(HTLC1)) and HTLC1 = \"6\"))", + "IMI": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HTLC1 = \"1\" or INDCOLL = \"2\")", + "ICOI": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HTLC1 = \"1\" or INDCOLL = \"2\")", + "IAS": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HTLC1 = \"2\" or INDCOLL = \"1\")", + "IEL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HTLC1 = \"2\" or INDCOLL = \"1\")", + "IAATC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "IAATCD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((not(isnull(IAATC)) and IAATC = \"6\"))", + "STOC1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "STOC2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (STOC1 = \"3\" and cast(NBHAB,integer) > 1)", + "COLOC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (nvl(STOC1 ,\"\") = \"4\" and cast(nbpersamiscoloc,integer) >= 1)", + "LBA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (nvl(STOC1 ,\"\") = \"4\")", + "STOCP": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((not(isnull(STOC)) and (STOC=\"1\" or STOC=\"2\")))", + "STOCA12": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(STOC1)) and (STOC=\"1\" or STOC=\"2\")))", + "STOCA3": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (not(isnull(STOC1)) and STOC=\"3\")", + "STOCA4": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(STOC1)) and STOC=\"4\" and nvl(LBA,\"\")=\"1\"))", + "STOCB1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((STOCA=\"2\" and not(isnull(STOCA))) and ((LIEN<>\"1\" and LIEN<>\"3\") or isnull(LIEN)))", + "EPAS1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\")))", + "ERETOUR": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\")", + "EPASB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "EPASC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "ECOVID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\"))) and (not(nvl(EPASC,\"\")=\"5\"))", + "EPROJ": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\"))", + "EPROJB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ = \"1\" and not(isnull(EPROJ)))", + "EPROJC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ=\"2\" or EPROJ=\"3\")", + "EPROJD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJB=\"3\" or EPROJC=\"3\")", + "EAMIA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "ECOVID2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false)) and (not(nvl(EAMIA,\"\")=\"5\"))", + "EAMIH": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIK": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "MAA2A": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "MAA2AT_Q": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (isnull(MAA2A))", + "MAA2M": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2A)) and (cast(MAA2A,integer) >= cast(ANNEENQmoins4,integer)))", + "MARRIVC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (INDconj = \"1\")", + "MAA2AC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (INDconj = \"1\") and (MARRIVC = \"2\" and not(isnull(MARRIVC )))", + "MAA2ATC_Q": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (INDconj = \"1\") and (MARRIVC = \"2\" and not(isnull(MARRIVC ))) and (isnull(MAA2AC))", + "MAA2MC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (INDconj = \"1\") and (MARRIVC = \"2\" and not(isnull(MARRIVC ))) and (not(isnull(MAA2AC)) and (cast(MAA2AC,integer) >= cast(ANNEENQmoins4,integer)))", + "MAA3": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (filtre_autrepers=\"1\")", + "MAA3A": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (filtre_autrepers=\"1\") and (not(isnull(MAA3)) and MAA3=\"1\")", + "MAA3M": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (filtre_autrepers=\"1\") and (not(isnull(MAA3)) and MAA3=\"1\") and (not(isnull(MAA3A)) and (cast(MAA3A,integer) >= cast(ANNEENQmoins4,integer)))", + "SDEJA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (nvl(STOC,\"\") =\"1\" or nvl(STOC,\"\")= \"2\")", + "KCU1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "KCU2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KCU1=\"1\" and not(isnull(KCU1)))", + "HUTCOND": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbperstelet)) and (cast(nbperstelet,integer) >0))", + "HUP": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "HPP": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUP=\"1\" and not(isnull(HUP)))", + "HSP": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUP=\"1\" and not(isnull(HUP))) and (cast(HPP,integer) >0 and HUP =\"1\")", + "HUA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "HPA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUA = \"1\" and not(isnull(HUA)))", + "HULHUI1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUA = \"1\" and not(isnull(HUA))) and (cast(HPA,integer) > 0) and (cast(HPA,integer) = 1)", + "HPI1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUA = \"1\" and not(isnull(HUA))) and (cast(HPA,integer) > 0) and ((not(isnull(HPA))) and (cast(HPA,integer) >1)) and ((HULHUI22) and (HULHUI21 or HULHUI23))", + "HPI2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUA = \"1\" and not(isnull(HUA))) and (cast(HPA,integer) > 0) and ((not(isnull(HPA))) and (cast(HPA,integer) >1)) and ((HULHUI23) and (HULHUI21 or HULHUI22))", + "HSI1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUA = \"1\" and not(isnull(HUA))) and (cast(HPA,integer) > 0) and ((HULHUI1=\"2\" or (HULHUI22)))", + "HSI2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUA = \"1\" and not(isnull(HUA))) and (cast(HPA,integer) > 0) and ((HULHUI1=\"3\" or (HULHUI23)))", + "HPH": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "HCHA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(HPH,integer) > 1)", + "HST": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "HPEUP": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "HAUT": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "KVE": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "KSV": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KVE =\"1\" and not(isnull(KVE)))", + "KSV1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KVE =\"1\" and not(isnull(KVE))) and ((cast(KSV,integer)>=1) and (cast(HST,integer)>=1))", + "KBA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "KSB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KBA=\"1\" and not(isnull(KBA)))", + "KJA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "KSJPI": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KJA=\"1\" and libHTLC=\"individuel\")", + "KSJPIT": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KJA=\"1\" and libHTLC=\"individuel\") and (isnull(KSJPI))", + "KSMI": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KJA=\"1\" and libHTLC=\"individuel\")", + "KSJPC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (libHTLC=\"collectif\" and KJA=\"1\")", + "KJC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((libHTLC =\"collectif\") or (ICOI=\"1\"))", + "KSJC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((libHTLC =\"collectif\") or (ICOI=\"1\")) and (KJC=\"1\" and not(isnull(KJC)))", + "GVOIT": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "KCA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "KVELO": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((libHTLC =\"collectif\") or (ICOI=\"1\"))", + "KGRA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "KSOA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KCA=\"1\")", + "KPISC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HTLC1=\"1\")", + "KGRAA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HTLC1=\"1\")", + "KAO1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "KWC1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "KWCID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KWC1=\"1\" and not(isnull(KWC1)))", + "KWCIDB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KWC1=\"1\" and not(isnull(KWC1))) and (nvl(KWCID,0)=1)", + "KWCID2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KWC1=\"1\" and not(isnull(KWC1))) and (nvl(KWCID,0)>1)", + "KBD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KAO1<>\"3\" or isnull(KAO1))", + "KSE": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KAO1<>\"3\" or isnull(KAO1)) and (KBD=\"1\")", + "KSEB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KAO1<>\"3\" or isnull(KAO1)) and (KBD=\"1\") and (nvl(KSE,0)=1)", + "KSE2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KAO1<>\"3\" or isnull(KAO1)) and (KBD=\"1\") and (nvl(KSE,0)>1)", + "KDLK1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KAO1<>\"3\" or isnull(KAO1)) and (KBD=\"2\")", + "KDLK2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KAO1<>\"3\" or isnull(KAO1)) and (KBD=\"2\") and (KDLK1=\"2\")", + "OLA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "OLAD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "OLAR4": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbenfant)) and (cast(nbenfant,integer)>0))", + "OQA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "OQAD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "SDL2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((SDL12) and not(isnull(SDL12)))", + "SDL4": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((SDL14) and not(isnull(SDL14)))", + "SDN1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17))", + "SDT1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((SDN1=\"1\" or SDN1=\"2\") and not(isnull(SDN1)))", + "SDL_SIT1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((not(isnull(filtre_SIT)) and filtre_SIT=\"1\") and (not(isnull(SDN1)) and SDN1 = \"2\"))", + "SDTAD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((not(isnull(SDT1))))", + "SDT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")", + "SDL_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\") and (filtre_SIT =\"1\")", + "SDTAD_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")", + "SDT2_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")", + "VVENDL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "VFFH": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VVENDL = \"1\" or VVENDL = \"2\")", + "VFLA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VVENDL = \"1\" or VVENDL = \"2\") and (not(isnull(MAA1AT)) and (MAA1AT = \"1\" or MAA1AT = \"2\"))", + "VACHAL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "VBILLOG": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((VVENDL =\"1\" or VVENDL = \"2\") and (VACHAL =\"1\" or VACHAL =\"2\"))", + "VLR": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\"))", + "COMMUNEPASSEE": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR = \"3\" and not(isnull(VLR)))", + "DEPART": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR = \"3\" and not(isnull(VLR))) and (isnull(COMMUNEPASSEE))", + "VCRCOM": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR = \"3\" and not(isnull(VLR))) and (isnull(COMMUNEPASSEE))", + "VPRA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR =\"5\" and not(isnull(VLR)))", + "VLA1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "VSO1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((VLA1 = \"1\") and ((VLR = \"2\" or VLR = \"3\") or (MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\")))", + "VSY": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VLOYER": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VAID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VIN": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VLA1<>\"4\" or isnull(VLA1))", + "VTL1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VLR)) and (VLR=\"2\" or VLR=\"3\") and (VLA1<>\"4\" or isnull(VLA1) ))", + "VSURF": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VLR)) and (VLR=\"2\" or VLR=\"3\") and (VLA1<>\"4\" or isnull(VLA1) ))", + "VPI": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VLR)) and (VLR=\"2\" or VLR=\"3\") and (VLA1<>\"4\" or isnull(VLA1) ))", + "VANCIEN": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VLR)) and (VLR=\"2\" or VLR=\"3\") and (VLA1<>\"4\" or isnull(VLA1) ))", + "VOP": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "VND": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\")", + "VLRD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1)", + "VLAB1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD)))", + "VDD1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD))) and (VLAB1 = \"1\" and not(isnull(VLAB1)))", + "VDSY": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD))) and (VLAB1 = \"1\" and not(isnull(VLAB1))) and (VDD1=\"4\")", + "VTLD1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VND)) and (cast(VND,integer) > 1)) and ((VLAB1 <>\"4\" or isnull(VLAB1)) and (VLRD=\"1\"))", + "VSURFD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VND)) and (cast(VND,integer) > 1)) and ((VLAB1 <>\"4\" or isnull(VLAB1)) and (VLRD=\"1\"))", + "VPID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VND)) and (cast(VND,integer) > 1)) and ((VLAB1 <>\"4\" or isnull(VLAB1)) and (VLRD=\"1\"))", + "VRAIS1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VND)) and (cast(VND,integer) > 0))", + "VRAIS5": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VND)) and (cast(VND,integer) > 0)) and (nvl(VRAIS27,false) = true and nvl(VRAIS36,false) = true and nvl(VRAIS45,false) = true)", + "TELFIXE": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "TELMOB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "UWEB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "CHGNC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "CIVCOLL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (CHGNC = \"2\" and not(isnull(CHGNC)))", + "PRENOMCOLL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (CHGNC = \"2\" and not(isnull(CHGNC)))", + "NOMCOLL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (CHGNC = \"2\" and not(isnull(CHGNC)))", + "CHGNC2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (CHGNC = \"2\" and not(isnull(CHGNC))) and ((not(isnull(NOMVOUS_D2)) or NOMVOUS_D2<> \"\") and (not(isnull(NOMCOLL)) or NOMCOLL<> \"\"))", + "CIVCOLL2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (CHGNC = \"2\" and not(isnull(CHGNC))) and ((not(isnull(NOMVOUS_D2)) or NOMVOUS_D2<> \"\") and (not(isnull(NOMCOLL)) or NOMCOLL<> \"\")) and (not(isnull(CHGNC2)) and CHGNC2=\"1\")", + "PRENOMCOLL2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (CHGNC = \"2\" and not(isnull(CHGNC))) and ((not(isnull(NOMVOUS_D2)) or NOMVOUS_D2<> \"\") and (not(isnull(NOMCOLL)) or NOMCOLL<> \"\")) and (not(isnull(CHGNC2)) and CHGNC2=\"1\")", + "NOMCOLL2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (CHGNC = \"2\" and not(isnull(CHGNC))) and ((not(isnull(NOMVOUS_D2)) or NOMVOUS_D2<> \"\") and (not(isnull(NOMCOLL)) or NOMCOLL<> \"\")) and (not(isnull(CHGNC2)) and CHGNC2=\"1\")", + "NOTELCOLL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "HUTDEF1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbperstelet)) and (cast(nbperstelet,integer) >0))", + "HUTDEF2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbperstelet)) and (cast(nbperstelet,integer) >0))", + "HUTDEF3": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbperstelet)) and (cast(nbperstelet,integer) >0))", + "HUTDEF4": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbperstelet)) and (cast(nbperstelet,integer) >0))", + "OLAR11": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "OLAR12": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "OLAR13": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "OLAR14": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "OLAR1DIF1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((nvl(libHTLC,\"\")<>\"collectif\") and (nvl(ICOI,\"\")<>\"1\"))", + "OLAR1DIF2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((nvl(libHTLC,\"\")<>\"collectif\") and (nvl(ICOI,\"\")<>\"1\"))", + "OLAR1DIFCO1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((libHTLC=\"collectif\") or (ICOI=\"1\"))", + "OLAR1DIFCO2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((libHTLC=\"collectif\") or (ICOI=\"1\"))", + "OLAR1DIFCO3": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((libHTLC=\"collectif\") or (ICOI=\"1\"))", + "OLAR21": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "OLAR22": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "OLAR23": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "OLAR24": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "OLAR25": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "OLAR31": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "OLAR32": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "OLAR33": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "OLAR34": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))", + "OLAR35": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR))" + }, + "INDNVOCC": { + "NOMNVOCC1": "(CADR = \"3\") and (INDNVOCC = \"1\")", + "PRENOMNVOCC1": "(CADR = \"3\") and (INDNVOCC = \"1\")", + "NOMNVOCC2": "(CADR = \"3\") and (INDNVOCC = \"1\")", + "PRENOMNVOCC2": "(CADR = \"3\") and (INDNVOCC = \"1\")", + "TELNVOCC": "(CADR = \"3\") and (INDNVOCC = \"1\")", + "MAILNVOCC": "(CADR = \"3\") and (INDNVOCC = \"1\")" + }, + "DATENAIS": { + "TRAGE": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (nvl(DATENAIS,\"\")=\"\")", + "DEPNAIS": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (LNAIS =\"1\" and (persplus18TR=\"1\" or persplus18AGE=\"1\"))", + "COUPLE": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((not(isnull(LIEN)) and LIEN<>\"1\") or (PRENOM=PRENOMREF)) and ((persplus18TR=\"1\" or persplus18AGE=\"1\"))", + "SITUA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "TRAVAIL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (not(isnull(SITUA)) and (SITUA = \"2\" or SITUA = \"3\" or SITUA = \"4\" or SITUA = \"5\" or SITUA = \"6\" or SITUA = \"7\"))", + "GRDIPA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "GRDIPB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (GRDIPA = \"1\" and not(isnull(GRDIPA)))", + "GRDIPC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(GRDIPA)) and GRDIPA = \"8\"))", + "TELET": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(EMPLOI)) and EMPLOI = \"1\"))", + "TELETNJ": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(EMPLOI)) and EMPLOI = \"1\")) and (TELET=\"1\")", + "PRACT_NOM": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer) > 1)", + "STOCA12": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(STOC1)) and (STOC=\"1\" or STOC=\"2\")))", + "STOCA3": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (not(isnull(STOC1)) and STOC=\"3\")", + "STOCA4": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(STOC1)) and STOC=\"4\" and nvl(LBA,\"\")=\"1\"))", + "STOCB1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((STOCA=\"2\" and not(isnull(STOCA))) and ((LIEN<>\"1\" and LIEN<>\"3\") or isnull(LIEN)))", + "EPAS1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\")))", + "ERETOUR": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\")", + "EPASB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "EPASC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "ECOVID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\"))) and (not(nvl(EPASC,\"\")=\"5\"))", + "EPROJ": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\"))", + "EPROJB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ = \"1\" and not(isnull(EPROJ)))", + "EPROJC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ=\"2\" or EPROJ=\"3\")", + "EPROJD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJB=\"3\" or EPROJC=\"3\")", + "EAMIA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "ECOVID2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false)) and (not(nvl(EAMIA,\"\")=\"5\"))", + "EAMIH": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIK": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "MAA3": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (filtre_autrepers=\"1\")", + "MAA3A": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (filtre_autrepers=\"1\") and (not(isnull(MAA3)) and MAA3=\"1\")", + "MAA3M": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (filtre_autrepers=\"1\") and (not(isnull(MAA3)) and MAA3=\"1\") and (not(isnull(MAA3A)) and (cast(MAA3A,integer) >= cast(ANNEENQmoins4,integer)))", + "SDL2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((SDL12) and not(isnull(SDL12)))", + "SDL4": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((SDL14) and not(isnull(SDL14)))", + "SDN1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17))", + "SDT1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((SDN1=\"1\" or SDN1=\"2\") and not(isnull(SDN1)))", + "SDL_SIT1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((not(isnull(filtre_SIT)) and filtre_SIT=\"1\") and (not(isnull(SDN1)) and SDN1 = \"2\"))", + "SDTAD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((not(isnull(SDT1))))", + "SDT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")", + "SDL_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\") and (filtre_SIT =\"1\")", + "SDTAD_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")", + "SDT2_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")" + }, + "LNAIS": { + "DEPNAIS": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (LNAIS =\"1\" and (persplus18TR=\"1\" or persplus18AGE=\"1\"))", + "PAYSNAIS": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (LNAIS = \"2\")" + }, + "persplus18TR": { + "DEPNAIS": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (LNAIS =\"1\" and (persplus18TR=\"1\" or persplus18AGE=\"1\"))", + "COUPLE": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((not(isnull(LIEN)) and LIEN<>\"1\") or (PRENOM=PRENOMREF)) and ((persplus18TR=\"1\" or persplus18AGE=\"1\"))", + "SITUA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "TRAVAIL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (not(isnull(SITUA)) and (SITUA = \"2\" or SITUA = \"3\" or SITUA = \"4\" or SITUA = \"5\" or SITUA = \"6\" or SITUA = \"7\"))", + "GRDIPA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "GRDIPB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (GRDIPA = \"1\" and not(isnull(GRDIPA)))", + "GRDIPC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(GRDIPA)) and GRDIPA = \"8\"))", + "TELET": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(EMPLOI)) and EMPLOI = \"1\"))", + "TELETNJ": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(EMPLOI)) and EMPLOI = \"1\")) and (TELET=\"1\")", + "STOCA12": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(STOC1)) and (STOC=\"1\" or STOC=\"2\")))", + "STOCA3": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (not(isnull(STOC1)) and STOC=\"3\")", + "STOCA4": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(STOC1)) and STOC=\"4\" and nvl(LBA,\"\")=\"1\"))", + "STOCB1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((STOCA=\"2\" and not(isnull(STOCA))) and ((LIEN<>\"1\" and LIEN<>\"3\") or isnull(LIEN)))", + "EAMIA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "ECOVID2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false)) and (not(nvl(EAMIA,\"\")=\"5\"))", + "EAMIH": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIK": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))" + }, + "TRAGE": { + "DEPNAIS": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (LNAIS =\"1\" and (persplus18TR=\"1\" or persplus18AGE=\"1\"))", + "COUPLE": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((not(isnull(LIEN)) and LIEN<>\"1\") or (PRENOM=PRENOMREF)) and ((persplus18TR=\"1\" or persplus18AGE=\"1\"))", + "SITUA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "TRAVAIL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (not(isnull(SITUA)) and (SITUA = \"2\" or SITUA = \"3\" or SITUA = \"4\" or SITUA = \"5\" or SITUA = \"6\" or SITUA = \"7\"))", + "GRDIPA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "GRDIPB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (GRDIPA = \"1\" and not(isnull(GRDIPA)))", + "GRDIPC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(GRDIPA)) and GRDIPA = \"8\"))", + "TELET": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(EMPLOI)) and EMPLOI = \"1\"))", + "TELETNJ": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(EMPLOI)) and EMPLOI = \"1\")) and (TELET=\"1\")", + "PRACT_NOM": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer) > 1)", + "STOCA12": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(STOC1)) and (STOC=\"1\" or STOC=\"2\")))", + "STOCA3": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (not(isnull(STOC1)) and STOC=\"3\")", + "STOCA4": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(STOC1)) and STOC=\"4\" and nvl(LBA,\"\")=\"1\"))", + "STOCB1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((STOCA=\"2\" and not(isnull(STOCA))) and ((LIEN<>\"1\" and LIEN<>\"3\") or isnull(LIEN)))", + "EPAS1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\")))", + "ERETOUR": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\")", + "EPASB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "EPASC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "ECOVID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\"))) and (not(nvl(EPASC,\"\")=\"5\"))", + "EPROJ": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\"))", + "EPROJB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ = \"1\" and not(isnull(EPROJ)))", + "EPROJC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ=\"2\" or EPROJ=\"3\")", + "EPROJD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJB=\"3\" or EPROJC=\"3\")", + "EAMIA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "ECOVID2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false)) and (not(nvl(EAMIA,\"\")=\"5\"))", + "EAMIH": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIK": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "MAA3": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (filtre_autrepers=\"1\")", + "MAA3A": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (filtre_autrepers=\"1\") and (not(isnull(MAA3)) and MAA3=\"1\")", + "MAA3M": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (filtre_autrepers=\"1\") and (not(isnull(MAA3)) and MAA3=\"1\") and (not(isnull(MAA3A)) and (cast(MAA3A,integer) >= cast(ANNEENQmoins4,integer)))", + "SDL2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((SDL12) and not(isnull(SDL12)))", + "SDL4": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((SDL14) and not(isnull(SDL14)))", + "SDN1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17))", + "SDT1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((SDN1=\"1\" or SDN1=\"2\") and not(isnull(SDN1)))", + "SDL_SIT1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((not(isnull(filtre_SIT)) and filtre_SIT=\"1\") and (not(isnull(SDN1)) and SDN1 = \"2\"))", + "SDTAD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((not(isnull(SDT1))))", + "SDT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")", + "SDL_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\") and (filtre_SIT =\"1\")", + "SDTAD_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")", + "SDT2_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")" + }, + "persplus18AGE": { + "DEPNAIS": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (LNAIS =\"1\" and (persplus18TR=\"1\" or persplus18AGE=\"1\"))", + "COUPLE": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((not(isnull(LIEN)) and LIEN<>\"1\") or (PRENOM=PRENOMREF)) and ((persplus18TR=\"1\" or persplus18AGE=\"1\"))", + "SITUA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "TRAVAIL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (not(isnull(SITUA)) and (SITUA = \"2\" or SITUA = \"3\" or SITUA = \"4\" or SITUA = \"5\" or SITUA = \"6\" or SITUA = \"7\"))", + "GRDIPA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "GRDIPB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (GRDIPA = \"1\" and not(isnull(GRDIPA)))", + "GRDIPC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(GRDIPA)) and GRDIPA = \"8\"))", + "TELET": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(EMPLOI)) and EMPLOI = \"1\"))", + "TELETNJ": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(EMPLOI)) and EMPLOI = \"1\")) and (TELET=\"1\")", + "STOCA12": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(STOC1)) and (STOC=\"1\" or STOC=\"2\")))", + "STOCA3": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (not(isnull(STOC1)) and STOC=\"3\")", + "STOCA4": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(STOC1)) and STOC=\"4\" and nvl(LBA,\"\")=\"1\"))", + "STOCB1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((STOCA=\"2\" and not(isnull(STOCA))) and ((LIEN<>\"1\" and LIEN<>\"3\") or isnull(LIEN)))", + "EAMIA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "ECOVID2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false)) and (not(nvl(EAMIA,\"\")=\"5\"))", + "EAMIH": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIK": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))" + }, + "AGE": { + "DEPNAIS": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (LNAIS =\"1\" and (persplus18TR=\"1\" or persplus18AGE=\"1\"))", + "COUPLE": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((not(isnull(LIEN)) and LIEN<>\"1\") or (PRENOM=PRENOMREF)) and ((persplus18TR=\"1\" or persplus18AGE=\"1\"))", + "SITUA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "TRAVAIL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (not(isnull(SITUA)) and (SITUA = \"2\" or SITUA = \"3\" or SITUA = \"4\" or SITUA = \"5\" or SITUA = \"6\" or SITUA = \"7\"))", + "GRDIPA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "GRDIPB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (GRDIPA = \"1\" and not(isnull(GRDIPA)))", + "GRDIPC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(GRDIPA)) and GRDIPA = \"8\"))", + "TELET": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(EMPLOI)) and EMPLOI = \"1\"))", + "TELETNJ": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(EMPLOI)) and EMPLOI = \"1\")) and (TELET=\"1\")", + "STOCA12": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(STOC1)) and (STOC=\"1\" or STOC=\"2\")))", + "STOCA3": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (not(isnull(STOC1)) and STOC=\"3\")", + "STOCA4": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(STOC1)) and STOC=\"4\" and nvl(LBA,\"\")=\"1\"))", + "STOCB1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((STOCA=\"2\" and not(isnull(STOCA))) and ((LIEN<>\"1\" and LIEN<>\"3\") or isnull(LIEN)))", + "EPAS1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\")))", + "ERETOUR": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\")", + "EPASB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "EPASC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "ECOVID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\"))) and (not(nvl(EPASC,\"\")=\"5\"))", + "EPROJ": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\"))", + "EPROJB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ = \"1\" and not(isnull(EPROJ)))", + "EPROJC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ=\"2\" or EPROJ=\"3\")", + "EPROJD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJB=\"3\" or EPROJC=\"3\")", + "EAMIA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "ECOVID2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false)) and (not(nvl(EAMIA,\"\")=\"5\"))", + "EAMIH": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIK": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "SDL2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((SDL12) and not(isnull(SDL12)))", + "SDL4": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((SDL14) and not(isnull(SDL14)))", + "SDN1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17))", + "SDT1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((SDN1=\"1\" or SDN1=\"2\") and not(isnull(SDN1)))", + "SDL_SIT1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((not(isnull(filtre_SIT)) and filtre_SIT=\"1\") and (not(isnull(SDN1)) and SDN1 = \"2\"))", + "SDTAD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((not(isnull(SDT1))))", + "SDT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")", + "SDL_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\") and (filtre_SIT =\"1\")", + "SDTAD_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")", + "SDT2_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")" + }, + "NATIO1N3": { + "NATIO2N": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (NATIO1N3 = true)" + }, + "PRENOM": { + "LIEN": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (PRENOM <> PRENOMREF)", + "COUPLE": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((not(isnull(LIEN)) and LIEN<>\"1\") or (PRENOM=PRENOMREF)) and ((persplus18TR=\"1\" or persplus18AGE=\"1\"))", + "EAMIA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "ECOVID2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false)) and (not(nvl(EAMIA,\"\")=\"5\"))", + "EAMIH": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIK": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))" + }, + "G_PRENOM": { + "LIEN": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (PRENOM <> PRENOMREF)", + "COUPLE": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((not(isnull(LIEN)) and LIEN<>\"1\") or (PRENOM=PRENOMREF)) and ((persplus18TR=\"1\" or persplus18AGE=\"1\"))", + "EAMIA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "ECOVID2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false)) and (not(nvl(EAMIA,\"\")=\"5\"))", + "EAMIH": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIK": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))" + }, + "PRENOMVIDE": { + "LIEN": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (PRENOM <> PRENOMREF)", + "COUPLE": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((not(isnull(LIEN)) and LIEN<>\"1\") or (PRENOM=PRENOMREF)) and ((persplus18TR=\"1\" or persplus18AGE=\"1\"))", + "EAMIA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "ECOVID2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false)) and (not(nvl(EAMIA,\"\")=\"5\"))", + "EAMIH": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIK": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))" + }, + "PRENOMREF": { + "LIEN": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (PRENOM <> PRENOMREF)", + "COUPLE": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((not(isnull(LIEN)) and LIEN<>\"1\") or (PRENOM=PRENOMREF)) and ((persplus18TR=\"1\" or persplus18AGE=\"1\"))", + "EAMIA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "ECOVID2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false)) and (not(nvl(EAMIA,\"\")=\"5\"))", + "EAMIH": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIK": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))" + }, + "LIEN": { + "COUPLE": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((not(isnull(LIEN)) and LIEN<>\"1\") or (PRENOM=PRENOMREF)) and ((persplus18TR=\"1\" or persplus18AGE=\"1\"))", + "COLOC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (nvl(STOC1 ,\"\") = \"4\" and cast(nbpersamiscoloc,integer) >= 1)", + "STOCA12": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(STOC1)) and (STOC=\"1\" or STOC=\"2\")))", + "STOCA3": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (not(isnull(STOC1)) and STOC=\"3\")", + "STOCA4": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(STOC1)) and STOC=\"4\" and nvl(LBA,\"\")=\"1\"))", + "STOCB1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((STOCA=\"2\" and not(isnull(STOCA))) and ((LIEN<>\"1\" and LIEN<>\"3\") or isnull(LIEN)))", + "EPAS1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\")))", + "ERETOUR": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\")", + "EPASB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "EPASC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "ECOVID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\"))) and (not(nvl(EPASC,\"\")=\"5\"))", + "EPROJ": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\"))", + "EPROJB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ = \"1\" and not(isnull(EPROJ)))", + "EPROJC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ=\"2\" or EPROJ=\"3\")", + "EPROJD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJB=\"3\" or EPROJC=\"3\")", + "EAMIA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "ECOVID2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false)) and (not(nvl(EAMIA,\"\")=\"5\"))", + "EAMIH": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIK": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "MARRIVC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (INDconj = \"1\")", + "MAA2AC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (INDconj = \"1\") and (MARRIVC = \"2\" and not(isnull(MARRIVC )))", + "MAA2ATC_Q": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (INDconj = \"1\") and (MARRIVC = \"2\" and not(isnull(MARRIVC ))) and (isnull(MAA2AC))", + "MAA2MC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (INDconj = \"1\") and (MARRIVC = \"2\" and not(isnull(MARRIVC ))) and (not(isnull(MAA2AC)) and (cast(MAA2AC,integer) >= cast(ANNEENQmoins4,integer)))", + "MAA3": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (filtre_autrepers=\"1\")", + "MAA3A": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (filtre_autrepers=\"1\") and (not(isnull(MAA3)) and MAA3=\"1\")", + "MAA3M": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (filtre_autrepers=\"1\") and (not(isnull(MAA3)) and MAA3=\"1\") and (not(isnull(MAA3A)) and (cast(MAA3A,integer) >= cast(ANNEENQmoins4,integer)))", + "OLAR4": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbenfant)) and (cast(nbenfant,integer)>0))" + }, + "UNLOG": { + "DURLOG": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (UNLOG = \"2\")", + "LOGENQ": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (UNLOG = \"2\")", + "LOGAUT": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (UNLOG = \"2\")", + "GARDE": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (UNLOG = \"2\") and (DURLOG = \"2\" and LOGENQ = \"2\" and LOGAUT = \"2\")", + "DORM": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (UNLOG = \"2\") and (DURLOG = \"2\" and LOGENQ = \"2\" and LOGAUT = \"2\") and (GARDE = \"1\")", + "LOGCO": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (UNLOG = \"2\") and (LOGAUT = \"3\" or LOGAUT = \"4\" or LOGAUT = \"6\")", + "TYPLOGCO": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (UNLOG = \"2\") and (LOGAUT = \"3\" or LOGAUT = \"4\" or LOGAUT = \"6\") and (LOGCO = \"1\")" + }, + "DURLOG": { + "GARDE": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (UNLOG = \"2\") and (DURLOG = \"2\" and LOGENQ = \"2\" and LOGAUT = \"2\")", + "DORM": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (UNLOG = \"2\") and (DURLOG = \"2\" and LOGENQ = \"2\" and LOGAUT = \"2\") and (GARDE = \"1\")", + "EPAS1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\")))", + "ERETOUR": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\")", + "EPASB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "EPASC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "ECOVID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\"))) and (not(nvl(EPASC,\"\")=\"5\"))", + "EPROJ": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\"))", + "EPROJB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ = \"1\" and not(isnull(EPROJ)))", + "EPROJC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ=\"2\" or EPROJ=\"3\")", + "EPROJD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJB=\"3\" or EPROJC=\"3\")", + "EAMIA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "ECOVID2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false)) and (not(nvl(EAMIA,\"\")=\"5\"))", + "EAMIH": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIK": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))" + }, + "LOGENQ": { + "GARDE": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (UNLOG = \"2\") and (DURLOG = \"2\" and LOGENQ = \"2\" and LOGAUT = \"2\")", + "DORM": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (UNLOG = \"2\") and (DURLOG = \"2\" and LOGENQ = \"2\" and LOGAUT = \"2\") and (GARDE = \"1\")", + "EPAS1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\")))", + "ERETOUR": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\")", + "EPASB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "EPASC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "ECOVID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\"))) and (not(nvl(EPASC,\"\")=\"5\"))", + "EPROJ": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\"))", + "EPROJB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ = \"1\" and not(isnull(EPROJ)))", + "EPROJC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ=\"2\" or EPROJ=\"3\")", + "EPROJD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJB=\"3\" or EPROJC=\"3\")", + "EAMIA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "ECOVID2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false)) and (not(nvl(EAMIA,\"\")=\"5\"))", + "EAMIH": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIK": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))" + }, + "LOGAUT": { + "GARDE": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (UNLOG = \"2\") and (DURLOG = \"2\" and LOGENQ = \"2\" and LOGAUT = \"2\")", + "DORM": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (UNLOG = \"2\") and (DURLOG = \"2\" and LOGENQ = \"2\" and LOGAUT = \"2\") and (GARDE = \"1\")", + "LOGCO": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (UNLOG = \"2\") and (LOGAUT = \"3\" or LOGAUT = \"4\" or LOGAUT = \"6\")", + "TYPLOGCO": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (UNLOG = \"2\") and (LOGAUT = \"3\" or LOGAUT = \"4\" or LOGAUT = \"6\") and (LOGCO = \"1\")", + "EPAS1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\")))", + "ERETOUR": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\")", + "EPASB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "EPASC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "ECOVID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\"))) and (not(nvl(EPASC,\"\")=\"5\"))", + "EPROJ": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\"))", + "EPROJB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ = \"1\" and not(isnull(EPROJ)))", + "EPROJC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ=\"2\" or EPROJ=\"3\")", + "EPROJD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJB=\"3\" or EPROJC=\"3\")", + "EAMIA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "ECOVID2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false)) and (not(nvl(EAMIA,\"\")=\"5\"))", + "EAMIH": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIK": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))" + }, + "GARDE": { + "DORM": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (UNLOG = \"2\") and (DURLOG = \"2\" and LOGENQ = \"2\" and LOGAUT = \"2\") and (GARDE = \"1\")" + }, + "LOGCO": { + "TYPLOGCO": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (UNLOG = \"2\") and (LOGAUT = \"3\" or LOGAUT = \"4\" or LOGAUT = \"6\") and (LOGCO = \"1\")" + }, + "nbpersmaj": { + "SITUA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "TRAVAIL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (not(isnull(SITUA)) and (SITUA = \"2\" or SITUA = \"3\" or SITUA = \"4\" or SITUA = \"5\" or SITUA = \"6\" or SITUA = \"7\"))", + "GRDIPA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "GRDIPB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (GRDIPA = \"1\" and not(isnull(GRDIPA)))", + "GRDIPC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(GRDIPA)) and GRDIPA = \"8\"))", + "TELET": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(EMPLOI)) and EMPLOI = \"1\"))", + "TELETNJ": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(EMPLOI)) and EMPLOI = \"1\")) and (TELET=\"1\")", + "STOCA12": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(STOC1)) and (STOC=\"1\" or STOC=\"2\")))", + "STOCA3": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (not(isnull(STOC1)) and STOC=\"3\")", + "STOCA4": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(STOC1)) and STOC=\"4\" and nvl(LBA,\"\")=\"1\"))", + "STOCB1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((STOCA=\"2\" and not(isnull(STOCA))) and ((LIEN<>\"1\" and LIEN<>\"3\") or isnull(LIEN)))", + "EPAS1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\")))", + "ERETOUR": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\")", + "EPASB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "EPASC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "ECOVID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\"))) and (not(nvl(EPASC,\"\")=\"5\"))", + "EPROJ": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\"))", + "EPROJB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ = \"1\" and not(isnull(EPROJ)))", + "EPROJC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ=\"2\" or EPROJ=\"3\")", + "EPROJD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJB=\"3\" or EPROJC=\"3\")", + "EAMIA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "ECOVID2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false)) and (not(nvl(EAMIA,\"\")=\"5\"))", + "EAMIH": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIK": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "MAA3": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (filtre_autrepers=\"1\")", + "MAA3A": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (filtre_autrepers=\"1\") and (not(isnull(MAA3)) and MAA3=\"1\")", + "MAA3M": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (filtre_autrepers=\"1\") and (not(isnull(MAA3)) and MAA3=\"1\") and (not(isnull(MAA3A)) and (cast(MAA3A,integer) >= cast(ANNEENQmoins4,integer)))" + }, + "persmaj": { + "SITUA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "TRAVAIL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (not(isnull(SITUA)) and (SITUA = \"2\" or SITUA = \"3\" or SITUA = \"4\" or SITUA = \"5\" or SITUA = \"6\" or SITUA = \"7\"))", + "GRDIPA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "GRDIPB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (GRDIPA = \"1\" and not(isnull(GRDIPA)))", + "GRDIPC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(GRDIPA)) and GRDIPA = \"8\"))", + "TELET": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(EMPLOI)) and EMPLOI = \"1\"))", + "TELETNJ": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(EMPLOI)) and EMPLOI = \"1\")) and (TELET=\"1\")" + }, + "SITUA": { + "TRAVAIL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (not(isnull(SITUA)) and (SITUA = \"2\" or SITUA = \"3\" or SITUA = \"4\" or SITUA = \"5\" or SITUA = \"6\" or SITUA = \"7\"))", + "TELET": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(EMPLOI)) and EMPLOI = \"1\"))", + "TELETNJ": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(EMPLOI)) and EMPLOI = \"1\")) and (TELET=\"1\")", + "EAMIA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "ECOVID2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false)) and (not(nvl(EAMIA,\"\")=\"5\"))", + "EAMIH": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIK": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))" + }, + "GRDIPA": { + "GRDIPB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (GRDIPA = \"1\" and not(isnull(GRDIPA)))", + "GRDIPC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(GRDIPA)) and GRDIPA = \"8\"))" + }, + "EMPLOI": { + "TELET": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(EMPLOI)) and EMPLOI = \"1\"))", + "TELETNJ": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(EMPLOI)) and EMPLOI = \"1\")) and (TELET=\"1\")" + }, + "TRAVAIL": { + "TELET": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(EMPLOI)) and EMPLOI = \"1\"))", + "TELETNJ": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(EMPLOI)) and EMPLOI = \"1\")) and (TELET=\"1\")" + }, + "TELET": { + "TELETNJ": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbpersmaj)) and cast(nbpersmaj,integer)>0) and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(EMPLOI)) and EMPLOI = \"1\")) and (TELET=\"1\")", + "HUTCOND": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbperstelet)) and (cast(nbperstelet,integer) >0))", + "HUTDEF1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbperstelet)) and (cast(nbperstelet,integer) >0))", + "HUTDEF2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbperstelet)) and (cast(nbperstelet,integer) >0))", + "HUTDEF3": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbperstelet)) and (cast(nbperstelet,integer) >0))", + "HUTDEF4": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbperstelet)) and (cast(nbperstelet,integer) >0))" + }, + "nbpers15": { + "PRACT_NOM": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer) > 1)", + "SDL2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((SDL12) and not(isnull(SDL12)))", + "SDL4": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((SDL14) and not(isnull(SDL14)))", + "SDN1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17))", + "SDT1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((SDN1=\"1\" or SDN1=\"2\") and not(isnull(SDN1)))", + "SDL_SIT1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((not(isnull(filtre_SIT)) and filtre_SIT=\"1\") and (not(isnull(SDN1)) and SDN1 = \"2\"))", + "SDTAD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((not(isnull(SDT1))))", + "SDT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")", + "SDL_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\") and (filtre_SIT =\"1\")", + "SDTAD_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")", + "SDT2_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")" + }, + "persplus15": { + "PRACT_NOM": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer) > 1)", + "SDL2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((SDL12) and not(isnull(SDL12)))", + "SDL4": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((SDL14) and not(isnull(SDL14)))", + "SDN1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17))", + "SDT1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((SDN1=\"1\" or SDN1=\"2\") and not(isnull(SDN1)))", + "SDL_SIT1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((not(isnull(filtre_SIT)) and filtre_SIT=\"1\") and (not(isnull(SDN1)) and SDN1 = \"2\"))", + "SDTAD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((not(isnull(SDT1))))", + "SDT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")", + "SDL_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\") and (filtre_SIT =\"1\")", + "SDTAD_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")", + "SDT2_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")" + }, + "HTLC1": { + "NIVEAU": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (nvl(HTLC1, \"\") = \"1\" or nvl(HTLC1 , \"\") = \"2\" or nvl(HTLC1, \"\") = \"3\")", + "FOYPAGEES": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((not(isnull(HTLC1)) and HTLC1 = \"3\"))", + "RESAUTO": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((not(isnull(HTLC1)) and HTLC1 = \"3\")) and (FOYPAGEES=\"1\" and not(isnull(FOYPAGEES)))", + "INDCOLL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((not(isnull(HTLC1)) and HTLC1 = \"6\"))", + "IMI": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HTLC1 = \"1\" or INDCOLL = \"2\")", + "ICOI": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HTLC1 = \"1\" or INDCOLL = \"2\")", + "IAS": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HTLC1 = \"2\" or INDCOLL = \"1\")", + "IEL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HTLC1 = \"2\" or INDCOLL = \"1\")", + "KSJPI": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KJA=\"1\" and libHTLC=\"individuel\")", + "KSJPIT": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KJA=\"1\" and libHTLC=\"individuel\") and (isnull(KSJPI))", + "KSMI": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KJA=\"1\" and libHTLC=\"individuel\")", + "KSJPC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (libHTLC=\"collectif\" and KJA=\"1\")", + "KJC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((libHTLC =\"collectif\") or (ICOI=\"1\"))", + "KSJC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((libHTLC =\"collectif\") or (ICOI=\"1\")) and (KJC=\"1\" and not(isnull(KJC)))", + "KVELO": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((libHTLC =\"collectif\") or (ICOI=\"1\"))", + "KPISC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HTLC1=\"1\")", + "KGRAA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HTLC1=\"1\")", + "OLAR1DIF1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((nvl(libHTLC,\"\")<>\"collectif\") and (nvl(ICOI,\"\")<>\"1\"))", + "OLAR1DIF2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((nvl(libHTLC,\"\")<>\"collectif\") and (nvl(ICOI,\"\")<>\"1\"))", + "OLAR1DIFCO1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((libHTLC=\"collectif\") or (ICOI=\"1\"))", + "OLAR1DIFCO2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((libHTLC=\"collectif\") or (ICOI=\"1\"))", + "OLAR1DIFCO3": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((libHTLC=\"collectif\") or (ICOI=\"1\"))" + }, + "FOYPAGEES": { + "RESAUTO": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((not(isnull(HTLC1)) and HTLC1 = \"3\")) and (FOYPAGEES=\"1\" and not(isnull(FOYPAGEES)))" + }, + "INDCOLL": { + "IMI": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HTLC1 = \"1\" or INDCOLL = \"2\")", + "ICOI": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HTLC1 = \"1\" or INDCOLL = \"2\")", + "IAS": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HTLC1 = \"2\" or INDCOLL = \"1\")", + "IEL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HTLC1 = \"2\" or INDCOLL = \"1\")", + "KSJPI": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KJA=\"1\" and libHTLC=\"individuel\")", + "KSJPIT": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KJA=\"1\" and libHTLC=\"individuel\") and (isnull(KSJPI))", + "KSMI": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KJA=\"1\" and libHTLC=\"individuel\")", + "KSJPC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (libHTLC=\"collectif\" and KJA=\"1\")", + "KJC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((libHTLC =\"collectif\") or (ICOI=\"1\"))", + "KSJC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((libHTLC =\"collectif\") or (ICOI=\"1\")) and (KJC=\"1\" and not(isnull(KJC)))", + "KVELO": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((libHTLC =\"collectif\") or (ICOI=\"1\"))", + "OLAR1DIF1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((nvl(libHTLC,\"\")<>\"collectif\") and (nvl(ICOI,\"\")<>\"1\"))", + "OLAR1DIF2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((nvl(libHTLC,\"\")<>\"collectif\") and (nvl(ICOI,\"\")<>\"1\"))", + "OLAR1DIFCO1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((libHTLC=\"collectif\") or (ICOI=\"1\"))", + "OLAR1DIFCO2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((libHTLC=\"collectif\") or (ICOI=\"1\"))", + "OLAR1DIFCO3": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((libHTLC=\"collectif\") or (ICOI=\"1\"))" + }, + "IAATC": { + "IAATCD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((not(isnull(IAATC)) and IAATC = \"6\"))" + }, + "STOC1": { + "STOC2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (STOC1 = \"3\" and cast(NBHAB,integer) > 1)", + "COLOC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (nvl(STOC1 ,\"\") = \"4\" and cast(nbpersamiscoloc,integer) >= 1)", + "LBA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (nvl(STOC1 ,\"\") = \"4\")", + "STOCP": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((not(isnull(STOC)) and (STOC=\"1\" or STOC=\"2\")))", + "STOCA12": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(STOC1)) and (STOC=\"1\" or STOC=\"2\")))", + "STOCA3": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (not(isnull(STOC1)) and STOC=\"3\")", + "STOCA4": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(STOC1)) and STOC=\"4\" and nvl(LBA,\"\")=\"1\"))", + "STOCB1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((STOCA=\"2\" and not(isnull(STOCA))) and ((LIEN<>\"1\" and LIEN<>\"3\") or isnull(LIEN)))", + "EPAS1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\")))", + "ERETOUR": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\")", + "EPASB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "EPASC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "ECOVID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\"))) and (not(nvl(EPASC,\"\")=\"5\"))", + "EPROJ": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\"))", + "EPROJB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ = \"1\" and not(isnull(EPROJ)))", + "EPROJC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ=\"2\" or EPROJ=\"3\")", + "EPROJD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJB=\"3\" or EPROJC=\"3\")", + "EAMIA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "ECOVID2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false)) and (not(nvl(EAMIA,\"\")=\"5\"))", + "EAMIH": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIK": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "SDEJA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (nvl(STOC,\"\") =\"1\" or nvl(STOC,\"\")= \"2\")", + "VSY": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VLOYER": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VAID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))" + }, + "NBHAB": { + "STOC2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (STOC1 = \"3\" and cast(NBHAB,integer) > 1)" + }, + "nbpersamiscoloc": { + "COLOC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (nvl(STOC1 ,\"\") = \"4\" and cast(nbpersamiscoloc,integer) >= 1)" + }, + "persamiscoloc": { + "COLOC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (nvl(STOC1 ,\"\") = \"4\" and cast(nbpersamiscoloc,integer) >= 1)" + }, + "STOC": { + "STOCP": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((not(isnull(STOC)) and (STOC=\"1\" or STOC=\"2\")))", + "STOCA12": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(STOC1)) and (STOC=\"1\" or STOC=\"2\")))", + "STOCA3": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (not(isnull(STOC1)) and STOC=\"3\")", + "STOCA4": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(STOC1)) and STOC=\"4\" and nvl(LBA,\"\")=\"1\"))", + "SDEJA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (nvl(STOC,\"\") =\"1\" or nvl(STOC,\"\")= \"2\")", + "VSY": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VLOYER": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VAID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))" + }, + "STOC2": { + "STOCP": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((not(isnull(STOC)) and (STOC=\"1\" or STOC=\"2\")))", + "STOCA12": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(STOC1)) and (STOC=\"1\" or STOC=\"2\")))", + "STOCA3": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (not(isnull(STOC1)) and STOC=\"3\")", + "STOCA4": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(STOC1)) and STOC=\"4\" and nvl(LBA,\"\")=\"1\"))", + "STOCB1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((STOCA=\"2\" and not(isnull(STOCA))) and ((LIEN<>\"1\" and LIEN<>\"3\") or isnull(LIEN)))", + "EPAS1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\")))", + "ERETOUR": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\")", + "EPASB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "EPASC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "ECOVID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\"))) and (not(nvl(EPASC,\"\")=\"5\"))", + "EPROJ": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\"))", + "EPROJB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ = \"1\" and not(isnull(EPROJ)))", + "EPROJC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ=\"2\" or EPROJ=\"3\")", + "EPROJD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJB=\"3\" or EPROJC=\"3\")", + "EAMIA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "ECOVID2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false)) and (not(nvl(EAMIA,\"\")=\"5\"))", + "EAMIH": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIK": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "SDEJA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (nvl(STOC,\"\") =\"1\" or nvl(STOC,\"\")= \"2\")", + "VSY": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VLOYER": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VAID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))" + }, + "filtre_autrepers": { + "STOCA12": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(STOC1)) and (STOC=\"1\" or STOC=\"2\")))", + "STOCA3": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (not(isnull(STOC1)) and STOC=\"3\")", + "STOCA4": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(STOC1)) and STOC=\"4\" and nvl(LBA,\"\")=\"1\"))", + "STOCB1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((STOCA=\"2\" and not(isnull(STOCA))) and ((LIEN<>\"1\" and LIEN<>\"3\") or isnull(LIEN)))", + "EPAS1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\")))", + "ERETOUR": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\")", + "EPASB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "EPASC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "ECOVID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\"))) and (not(nvl(EPASC,\"\")=\"5\"))", + "EPROJ": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\"))", + "EPROJB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ = \"1\" and not(isnull(EPROJ)))", + "EPROJC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ=\"2\" or EPROJ=\"3\")", + "EPROJD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJB=\"3\" or EPROJC=\"3\")", + "EAMIA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "ECOVID2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false)) and (not(nvl(EAMIA,\"\")=\"5\"))", + "EAMIH": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIK": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "MAA3": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (filtre_autrepers=\"1\")", + "MAA3A": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (filtre_autrepers=\"1\") and (not(isnull(MAA3)) and MAA3=\"1\")", + "MAA3M": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (filtre_autrepers=\"1\") and (not(isnull(MAA3)) and MAA3=\"1\") and (not(isnull(MAA3A)) and (cast(MAA3A,integer) >= cast(ANNEENQmoins4,integer)))" + }, + "INDconj": { + "STOCA12": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(STOC1)) and (STOC=\"1\" or STOC=\"2\")))", + "STOCA3": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (not(isnull(STOC1)) and STOC=\"3\")", + "STOCA4": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(STOC1)) and STOC=\"4\" and nvl(LBA,\"\")=\"1\"))", + "STOCB1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((STOCA=\"2\" and not(isnull(STOCA))) and ((LIEN<>\"1\" and LIEN<>\"3\") or isnull(LIEN)))", + "EPAS1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\")))", + "ERETOUR": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\")", + "EPASB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "EPASC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "ECOVID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\"))) and (not(nvl(EPASC,\"\")=\"5\"))", + "EPROJ": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\"))", + "EPROJB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ = \"1\" and not(isnull(EPROJ)))", + "EPROJC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ=\"2\" or EPROJ=\"3\")", + "EPROJD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJB=\"3\" or EPROJC=\"3\")", + "EAMIA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "ECOVID2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false)) and (not(nvl(EAMIA,\"\")=\"5\"))", + "EAMIH": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIK": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "MARRIVC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (INDconj = \"1\")", + "MAA2AC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (INDconj = \"1\") and (MARRIVC = \"2\" and not(isnull(MARRIVC )))", + "MAA2ATC_Q": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (INDconj = \"1\") and (MARRIVC = \"2\" and not(isnull(MARRIVC ))) and (isnull(MAA2AC))", + "MAA2MC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (INDconj = \"1\") and (MARRIVC = \"2\" and not(isnull(MARRIVC ))) and (not(isnull(MAA2AC)) and (cast(MAA2AC,integer) >= cast(ANNEENQmoins4,integer)))", + "MAA3": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (filtre_autrepers=\"1\")", + "MAA3A": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (filtre_autrepers=\"1\") and (not(isnull(MAA3)) and MAA3=\"1\")", + "MAA3M": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (filtre_autrepers=\"1\") and (not(isnull(MAA3)) and MAA3=\"1\") and (not(isnull(MAA3A)) and (cast(MAA3A,integer) >= cast(ANNEENQmoins4,integer)))" + }, + "LBA": { + "STOCA4": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((not(isnull(STOC1)) and STOC=\"4\" and nvl(LBA,\"\")=\"1\"))" + }, + "STOCA": { + "STOCB1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((STOCA=\"2\" and not(isnull(STOCA))) and ((LIEN<>\"1\" and LIEN<>\"3\") or isnull(LIEN)))", + "EPAS1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\")))", + "ERETOUR": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\")", + "EPASB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "EPASC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "ECOVID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\"))) and (not(nvl(EPASC,\"\")=\"5\"))", + "EPROJ": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\"))", + "EPROJB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ = \"1\" and not(isnull(EPROJ)))", + "EPROJC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ=\"2\" or EPROJ=\"3\")", + "EPROJD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJB=\"3\" or EPROJC=\"3\")", + "EAMIA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "ECOVID2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false)) and (not(nvl(EAMIA,\"\")=\"5\"))", + "EAMIH": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIK": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))" + }, + "STOCC": { + "STOCB1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((STOCA=\"2\" and not(isnull(STOCA))) and ((LIEN<>\"1\" and LIEN<>\"3\") or isnull(LIEN)))", + "EPAS1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\")))", + "ERETOUR": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\")", + "EPASB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "EPASC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "ECOVID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\"))) and (not(nvl(EPASC,\"\")=\"5\"))", + "EPROJ": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\"))", + "EPROJB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ = \"1\" and not(isnull(EPROJ)))", + "EPROJC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ=\"2\" or EPROJ=\"3\")", + "EPROJD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJB=\"3\" or EPROJC=\"3\")", + "EAMIA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "ECOVID2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false)) and (not(nvl(EAMIA,\"\")=\"5\"))", + "EAMIH": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIK": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))" + }, + "STOCA12": { + "STOCB1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((STOCA=\"2\" and not(isnull(STOCA))) and ((LIEN<>\"1\" and LIEN<>\"3\") or isnull(LIEN)))", + "EPAS1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\")))", + "ERETOUR": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\")", + "EPASB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "EPASC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "ECOVID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\"))) and (not(nvl(EPASC,\"\")=\"5\"))", + "EPROJ": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\"))", + "EPROJB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ = \"1\" and not(isnull(EPROJ)))", + "EPROJC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ=\"2\" or EPROJ=\"3\")", + "EPROJD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJB=\"3\" or EPROJC=\"3\")", + "EAMIA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "ECOVID2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false)) and (not(nvl(EAMIA,\"\")=\"5\"))", + "EAMIH": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIK": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))" + }, + "STOCA3": { + "STOCB1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((STOCA=\"2\" and not(isnull(STOCA))) and ((LIEN<>\"1\" and LIEN<>\"3\") or isnull(LIEN)))", + "EPAS1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\")))", + "ERETOUR": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\")", + "EPASB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "EPASC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "ECOVID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\"))) and (not(nvl(EPASC,\"\")=\"5\"))", + "EPROJ": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\"))", + "EPROJB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ = \"1\" and not(isnull(EPROJ)))", + "EPROJC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ=\"2\" or EPROJ=\"3\")", + "EPROJD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJB=\"3\" or EPROJC=\"3\")", + "EAMIA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "ECOVID2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false)) and (not(nvl(EAMIA,\"\")=\"5\"))", + "EAMIH": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIK": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))" + }, + "STOCA4": { + "STOCB1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\") and (not((persplus18TR=\"0\" and persplus18AGE=\"0\"))) and ((STOCA=\"2\" and not(isnull(STOCA))) and ((LIEN<>\"1\" and LIEN<>\"3\") or isnull(LIEN)))", + "EPAS1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\")))", + "ERETOUR": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\")", + "EPASB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "EPASC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "ECOVID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\"))) and (not(nvl(EPASC,\"\")=\"5\"))", + "EPROJ": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\"))", + "EPROJB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ = \"1\" and not(isnull(EPROJ)))", + "EPROJC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ=\"2\" or EPROJ=\"3\")", + "EPROJD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJB=\"3\" or EPROJC=\"3\")", + "EAMIA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "ECOVID2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false)) and (not(nvl(EAMIA,\"\")=\"5\"))", + "EAMIH": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIK": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))" + }, + "filtre_HebEnfant": { + "EPAS1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\")))", + "ERETOUR": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\")", + "EPASB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "EPASC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "ECOVID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\"))) and (not(nvl(EPASC,\"\")=\"5\"))", + "EPROJ": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\"))", + "EPROJB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ = \"1\" and not(isnull(EPROJ)))", + "EPROJC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ=\"2\" or EPROJ=\"3\")", + "EPROJD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJB=\"3\" or EPROJC=\"3\")" + }, + "nb_HebEnfant": { + "EPAS1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\")))", + "ERETOUR": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\")", + "EPASB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "EPASC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "ECOVID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\"))) and (not(nvl(EPASC,\"\")=\"5\"))", + "EPROJ": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\"))", + "EPROJB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ = \"1\" and not(isnull(EPROJ)))", + "EPROJC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ=\"2\" or EPROJ=\"3\")", + "EPROJD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJB=\"3\" or EPROJC=\"3\")" + }, + "STOCB1": { + "EPAS1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\")))", + "ERETOUR": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\")", + "EPASB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "EPASC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "ECOVID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\"))) and (not(nvl(EPASC,\"\")=\"5\"))", + "EPROJ": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\"))", + "EPROJB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ = \"1\" and not(isnull(EPROJ)))", + "EPROJC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ=\"2\" or EPROJ=\"3\")", + "EPROJD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJB=\"3\" or EPROJC=\"3\")", + "EAMIA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "ECOVID2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false)) and (not(nvl(EAMIA,\"\")=\"5\"))", + "EAMIH": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIK": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))" + }, + "persplus25TR": { + "EPAS1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\")))", + "ERETOUR": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\")", + "EPASB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "EPASC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "ECOVID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\"))) and (not(nvl(EPASC,\"\")=\"5\"))", + "EPROJ": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\"))", + "EPROJB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ = \"1\" and not(isnull(EPROJ)))", + "EPROJC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ=\"2\" or EPROJ=\"3\")", + "EPROJD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJB=\"3\" or EPROJC=\"3\")" + }, + "persplus25AGE": { + "EPAS1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\")))", + "ERETOUR": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\")", + "EPASB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "EPASC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "ECOVID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\"))) and (not(nvl(EPASC,\"\")=\"5\"))", + "EPROJ": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\"))", + "EPROJB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ = \"1\" and not(isnull(EPROJ)))", + "EPROJC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ=\"2\" or EPROJ=\"3\")", + "EPROJD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJB=\"3\" or EPROJC=\"3\")" + }, + "EPAS1": { + "ERETOUR": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\")", + "EPASB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "EPASC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "ECOVID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\"))) and (not(nvl(EPASC,\"\")=\"5\"))", + "EPROJ": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\"))", + "EPROJB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ = \"1\" and not(isnull(EPROJ)))", + "EPROJC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ=\"2\" or EPROJ=\"3\")", + "EPROJD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJB=\"3\" or EPROJC=\"3\")" + }, + "ERETOUR": { + "EPASB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "EPASC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\")))", + "ECOVID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\"))) and (not(nvl(EPASC,\"\")=\"5\"))" + }, + "EPASC": { + "ECOVID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and (EPAS1=\"1\") and ((isnull(ERETOUR) or (ERETOUR<>\"1\"))) and (not(nvl(EPASC,\"\")=\"5\"))" + }, + "EPROJ": { + "EPROJB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ = \"1\" and not(isnull(EPROJ)))", + "EPROJC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJ=\"2\" or EPROJ=\"3\")" + }, + "EPROJB": { + "EPROJD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJB=\"3\" or EPROJC=\"3\")" + }, + "EPROJC": { + "EPROJD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HebEnfant=\"1\") and (not((isnull(STOCA) or STOCA=\"1\") or (isnull(LIEN) or LIEN=\"1\" or LIEN=\"2\" or LIEN=\"4\" or LIEN=\"6\" or LIEN=\"7\" or LIEN=\"8\") or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus25TR=\"0\" and persplus25AGE=\"0\"))) and ((EPAS1=\"2\" or EPAS1=\"3\")) and (EPROJB=\"3\" or EPROJC=\"3\")" + }, + "filtre_HEB": { + "EAMIA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "ECOVID2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false)) and (not(nvl(EAMIA,\"\")=\"5\"))", + "EAMIH": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIK": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))" + }, + "nb_HEB": { + "EAMIA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\")))", + "ECOVID2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false)) and (not(nvl(EAMIA,\"\")=\"5\"))", + "EAMIH": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIK": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))" + }, + "EAMID11": { + "ECOVID2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false)) and (not(nvl(EAMIA,\"\")=\"5\"))", + "EAMIH": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIK": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))", + "EAMIL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false))" + }, + "EAMIA": { + "ECOVID2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(STOC1)) and (STOC1=\"1\" or STOC1=\"2\" or STOC1=\"3\" or STOC1=\"4\") and filtre_autrepers=\"1\" and filtre_HEB=\"1\") and (not((PRENOM=PRENOMREF) or (isnull(STOCA) or STOCA=\"1\") or (STOCB1=\"1\" and not(isnull(STOCB1)) ) or ((LIEN=\"1\" or LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) or (SITUA=\"5\" and not(isnull(SITUA)) ) or (LOGENQ=\"5\" and not(isnull(LOGENQ)) ) or (LOGAUT=\"1\" and not(isnull(LOGAUT)) ) or (DURLOG=\"3\" and not(isnull(DURLOG)) ) or (persplus18TR=\"0\" and persplus18AGE=\"0\"))) and (isnull(EAMID11) or (EAMID11 = false)) and (not(nvl(EAMIA,\"\")=\"5\"))" + }, + "MAA2A": { + "MAA2AT_Q": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (isnull(MAA2A))", + "MAA2M": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2A)) and (cast(MAA2A,integer) >= cast(ANNEENQmoins4,integer)))", + "VFLA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VVENDL = \"1\" or VVENDL = \"2\") and (not(isnull(MAA1AT)) and (MAA1AT = \"1\" or MAA1AT = \"2\"))", + "VLR": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\"))", + "COMMUNEPASSEE": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR = \"3\" and not(isnull(VLR)))", + "DEPART": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR = \"3\" and not(isnull(VLR))) and (isnull(COMMUNEPASSEE))", + "VCRCOM": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR = \"3\" and not(isnull(VLR))) and (isnull(COMMUNEPASSEE))", + "VPRA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR =\"5\" and not(isnull(VLR)))", + "VSO1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((VLA1 = \"1\") and ((VLR = \"2\" or VLR = \"3\") or (MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\")))", + "VSY": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VLOYER": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VAID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VND": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\")", + "VLRD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1)", + "VLAB1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD)))", + "VDD1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD))) and (VLAB1 = \"1\" and not(isnull(VLAB1)))", + "VDSY": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD))) and (VLAB1 = \"1\" and not(isnull(VLAB1))) and (VDD1=\"4\")" + }, + "ANNEENQmoins4": { + "MAA2M": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2A)) and (cast(MAA2A,integer) >= cast(ANNEENQmoins4,integer)))", + "MAA2MC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (INDconj = \"1\") and (MARRIVC = \"2\" and not(isnull(MARRIVC ))) and (not(isnull(MAA2AC)) and (cast(MAA2AC,integer) >= cast(ANNEENQmoins4,integer)))", + "MAA3M": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (filtre_autrepers=\"1\") and (not(isnull(MAA3)) and MAA3=\"1\") and (not(isnull(MAA3A)) and (cast(MAA3A,integer) >= cast(ANNEENQmoins4,integer)))", + "VLR": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\"))", + "COMMUNEPASSEE": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR = \"3\" and not(isnull(VLR)))", + "DEPART": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR = \"3\" and not(isnull(VLR))) and (isnull(COMMUNEPASSEE))", + "VCRCOM": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR = \"3\" and not(isnull(VLR))) and (isnull(COMMUNEPASSEE))", + "VPRA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR =\"5\" and not(isnull(VLR)))", + "VSO1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((VLA1 = \"1\") and ((VLR = \"2\" or VLR = \"3\") or (MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\")))", + "VSY": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VLOYER": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VAID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VND": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\")", + "VLRD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1)", + "VLAB1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD)))", + "VDD1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD))) and (VLAB1 = \"1\" and not(isnull(VLAB1)))", + "VDSY": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD))) and (VLAB1 = \"1\" and not(isnull(VLAB1))) and (VDD1=\"4\")" + }, + "ANNEENQ": { + "MAA2M": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2A)) and (cast(MAA2A,integer) >= cast(ANNEENQmoins4,integer)))", + "MAA2MC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (INDconj = \"1\") and (MARRIVC = \"2\" and not(isnull(MARRIVC ))) and (not(isnull(MAA2AC)) and (cast(MAA2AC,integer) >= cast(ANNEENQmoins4,integer)))", + "MAA3M": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (filtre_autrepers=\"1\") and (not(isnull(MAA3)) and MAA3=\"1\") and (not(isnull(MAA3A)) and (cast(MAA3A,integer) >= cast(ANNEENQmoins4,integer)))" + }, + "nbpersconj": { + "MARRIVC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (INDconj = \"1\")", + "MAA2AC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (INDconj = \"1\") and (MARRIVC = \"2\" and not(isnull(MARRIVC )))", + "MAA2ATC_Q": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (INDconj = \"1\") and (MARRIVC = \"2\" and not(isnull(MARRIVC ))) and (isnull(MAA2AC))", + "MAA2MC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (INDconj = \"1\") and (MARRIVC = \"2\" and not(isnull(MARRIVC ))) and (not(isnull(MAA2AC)) and (cast(MAA2AC,integer) >= cast(ANNEENQmoins4,integer)))" + }, + "MARRIVC": { + "MAA2AC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (INDconj = \"1\") and (MARRIVC = \"2\" and not(isnull(MARRIVC )))", + "MAA2ATC_Q": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (INDconj = \"1\") and (MARRIVC = \"2\" and not(isnull(MARRIVC ))) and (isnull(MAA2AC))", + "MAA2MC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (INDconj = \"1\") and (MARRIVC = \"2\" and not(isnull(MARRIVC ))) and (not(isnull(MAA2AC)) and (cast(MAA2AC,integer) >= cast(ANNEENQmoins4,integer)))", + "VFLA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VVENDL = \"1\" or VVENDL = \"2\") and (not(isnull(MAA1AT)) and (MAA1AT = \"1\" or MAA1AT = \"2\"))" + }, + "MAA2AC": { + "MAA2ATC_Q": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (INDconj = \"1\") and (MARRIVC = \"2\" and not(isnull(MARRIVC ))) and (isnull(MAA2AC))", + "MAA2MC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (INDconj = \"1\") and (MARRIVC = \"2\" and not(isnull(MARRIVC ))) and (not(isnull(MAA2AC)) and (cast(MAA2AC,integer) >= cast(ANNEENQmoins4,integer)))", + "VFLA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VVENDL = \"1\" or VVENDL = \"2\") and (not(isnull(MAA1AT)) and (MAA1AT = \"1\" or MAA1AT = \"2\"))" + }, + "MAA3": { + "MAA3A": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (filtre_autrepers=\"1\") and (not(isnull(MAA3)) and MAA3=\"1\")", + "MAA3M": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (filtre_autrepers=\"1\") and (not(isnull(MAA3)) and MAA3=\"1\") and (not(isnull(MAA3A)) and (cast(MAA3A,integer) >= cast(ANNEENQmoins4,integer)))", + "VFLA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VVENDL = \"1\" or VVENDL = \"2\") and (not(isnull(MAA1AT)) and (MAA1AT = \"1\" or MAA1AT = \"2\"))" + }, + "MAA3A": { + "MAA3M": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (filtre_autrepers=\"1\") and (not(isnull(MAA3)) and MAA3=\"1\") and (not(isnull(MAA3A)) and (cast(MAA3A,integer) >= cast(ANNEENQmoins4,integer)))", + "VFLA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VVENDL = \"1\" or VVENDL = \"2\") and (not(isnull(MAA1AT)) and (MAA1AT = \"1\" or MAA1AT = \"2\"))" + }, + "KCU1": { + "KCU2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KCU1=\"1\" and not(isnull(KCU1)))" + }, + "nbperstelet": { + "HUTCOND": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbperstelet)) and (cast(nbperstelet,integer) >0))", + "HUTDEF1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbperstelet)) and (cast(nbperstelet,integer) >0))", + "HUTDEF2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbperstelet)) and (cast(nbperstelet,integer) >0))", + "HUTDEF3": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbperstelet)) and (cast(nbperstelet,integer) >0))", + "HUTDEF4": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbperstelet)) and (cast(nbperstelet,integer) >0))" + }, + "perstelet": { + "HUTCOND": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbperstelet)) and (cast(nbperstelet,integer) >0))", + "HUTDEF1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbperstelet)) and (cast(nbperstelet,integer) >0))", + "HUTDEF2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbperstelet)) and (cast(nbperstelet,integer) >0))", + "HUTDEF3": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbperstelet)) and (cast(nbperstelet,integer) >0))", + "HUTDEF4": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbperstelet)) and (cast(nbperstelet,integer) >0))" + }, + "HUP": { + "HPP": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUP=\"1\" and not(isnull(HUP)))", + "HSP": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUP=\"1\" and not(isnull(HUP))) and (cast(HPP,integer) >0 and HUP =\"1\")" + }, + "HPP": { + "HSP": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUP=\"1\" and not(isnull(HUP))) and (cast(HPP,integer) >0 and HUP =\"1\")" + }, + "HUA": { + "HPA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUA = \"1\" and not(isnull(HUA)))", + "HULHUI1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUA = \"1\" and not(isnull(HUA))) and (cast(HPA,integer) > 0) and (cast(HPA,integer) = 1)", + "HPI1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUA = \"1\" and not(isnull(HUA))) and (cast(HPA,integer) > 0) and ((not(isnull(HPA))) and (cast(HPA,integer) >1)) and ((HULHUI22) and (HULHUI21 or HULHUI23))", + "HPI2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUA = \"1\" and not(isnull(HUA))) and (cast(HPA,integer) > 0) and ((not(isnull(HPA))) and (cast(HPA,integer) >1)) and ((HULHUI23) and (HULHUI21 or HULHUI22))", + "HSI1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUA = \"1\" and not(isnull(HUA))) and (cast(HPA,integer) > 0) and ((HULHUI1=\"2\" or (HULHUI22)))", + "HSI2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUA = \"1\" and not(isnull(HUA))) and (cast(HPA,integer) > 0) and ((HULHUI1=\"3\" or (HULHUI23)))" + }, + "HPA": { + "HULHUI1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUA = \"1\" and not(isnull(HUA))) and (cast(HPA,integer) > 0) and (cast(HPA,integer) = 1)", + "HPI1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUA = \"1\" and not(isnull(HUA))) and (cast(HPA,integer) > 0) and ((not(isnull(HPA))) and (cast(HPA,integer) >1)) and ((HULHUI22) and (HULHUI21 or HULHUI23))", + "HPI2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUA = \"1\" and not(isnull(HUA))) and (cast(HPA,integer) > 0) and ((not(isnull(HPA))) and (cast(HPA,integer) >1)) and ((HULHUI23) and (HULHUI21 or HULHUI22))", + "HSI1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUA = \"1\" and not(isnull(HUA))) and (cast(HPA,integer) > 0) and ((HULHUI1=\"2\" or (HULHUI22)))", + "HSI2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUA = \"1\" and not(isnull(HUA))) and (cast(HPA,integer) > 0) and ((HULHUI1=\"3\" or (HULHUI23)))" + }, + "HULHUI22": { + "HPI1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUA = \"1\" and not(isnull(HUA))) and (cast(HPA,integer) > 0) and ((not(isnull(HPA))) and (cast(HPA,integer) >1)) and ((HULHUI22) and (HULHUI21 or HULHUI23))", + "HPI2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUA = \"1\" and not(isnull(HUA))) and (cast(HPA,integer) > 0) and ((not(isnull(HPA))) and (cast(HPA,integer) >1)) and ((HULHUI23) and (HULHUI21 or HULHUI22))", + "HSI1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUA = \"1\" and not(isnull(HUA))) and (cast(HPA,integer) > 0) and ((HULHUI1=\"2\" or (HULHUI22)))" + }, + "HULHUI21": { + "HPI1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUA = \"1\" and not(isnull(HUA))) and (cast(HPA,integer) > 0) and ((not(isnull(HPA))) and (cast(HPA,integer) >1)) and ((HULHUI22) and (HULHUI21 or HULHUI23))", + "HPI2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUA = \"1\" and not(isnull(HUA))) and (cast(HPA,integer) > 0) and ((not(isnull(HPA))) and (cast(HPA,integer) >1)) and ((HULHUI23) and (HULHUI21 or HULHUI22))" + }, + "HULHUI23": { + "HPI1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUA = \"1\" and not(isnull(HUA))) and (cast(HPA,integer) > 0) and ((not(isnull(HPA))) and (cast(HPA,integer) >1)) and ((HULHUI22) and (HULHUI21 or HULHUI23))", + "HPI2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUA = \"1\" and not(isnull(HUA))) and (cast(HPA,integer) > 0) and ((not(isnull(HPA))) and (cast(HPA,integer) >1)) and ((HULHUI23) and (HULHUI21 or HULHUI22))", + "HSI2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUA = \"1\" and not(isnull(HUA))) and (cast(HPA,integer) > 0) and ((HULHUI1=\"3\" or (HULHUI23)))" + }, + "HULHUI1": { + "HSI1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUA = \"1\" and not(isnull(HUA))) and (cast(HPA,integer) > 0) and ((HULHUI1=\"2\" or (HULHUI22)))", + "HSI2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (HUA = \"1\" and not(isnull(HUA))) and (cast(HPA,integer) > 0) and ((HULHUI1=\"3\" or (HULHUI23)))" + }, + "HPH": { + "HCHA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(HPH,integer) > 1)" + }, + "KVE": { + "KSV": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KVE =\"1\" and not(isnull(KVE)))", + "KSV1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KVE =\"1\" and not(isnull(KVE))) and ((cast(KSV,integer)>=1) and (cast(HST,integer)>=1))" + }, + "KSV": { + "KSV1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KVE =\"1\" and not(isnull(KVE))) and ((cast(KSV,integer)>=1) and (cast(HST,integer)>=1))" + }, + "HST": { + "KSV1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KVE =\"1\" and not(isnull(KVE))) and ((cast(KSV,integer)>=1) and (cast(HST,integer)>=1))" + }, + "KBA": { + "KSB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KBA=\"1\" and not(isnull(KBA)))" + }, + "KJA": { + "KSJPI": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KJA=\"1\" and libHTLC=\"individuel\")", + "KSJPIT": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KJA=\"1\" and libHTLC=\"individuel\") and (isnull(KSJPI))", + "KSMI": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KJA=\"1\" and libHTLC=\"individuel\")", + "KSJPC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (libHTLC=\"collectif\" and KJA=\"1\")" + }, + "libHTLC": { + "KSJPI": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KJA=\"1\" and libHTLC=\"individuel\")", + "KSJPIT": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KJA=\"1\" and libHTLC=\"individuel\") and (isnull(KSJPI))", + "KSMI": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KJA=\"1\" and libHTLC=\"individuel\")", + "KSJPC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (libHTLC=\"collectif\" and KJA=\"1\")", + "KJC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((libHTLC =\"collectif\") or (ICOI=\"1\"))", + "KSJC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((libHTLC =\"collectif\") or (ICOI=\"1\")) and (KJC=\"1\" and not(isnull(KJC)))", + "KVELO": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((libHTLC =\"collectif\") or (ICOI=\"1\"))", + "OLAR1DIF1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((nvl(libHTLC,\"\")<>\"collectif\") and (nvl(ICOI,\"\")<>\"1\"))", + "OLAR1DIF2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((nvl(libHTLC,\"\")<>\"collectif\") and (nvl(ICOI,\"\")<>\"1\"))", + "OLAR1DIFCO1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((libHTLC=\"collectif\") or (ICOI=\"1\"))", + "OLAR1DIFCO2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((libHTLC=\"collectif\") or (ICOI=\"1\"))", + "OLAR1DIFCO3": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((libHTLC=\"collectif\") or (ICOI=\"1\"))" + }, + "KSJPI": { + "KSJPIT": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KJA=\"1\" and libHTLC=\"individuel\") and (isnull(KSJPI))" + }, + "ICOI": { + "KJC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((libHTLC =\"collectif\") or (ICOI=\"1\"))", + "KSJC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((libHTLC =\"collectif\") or (ICOI=\"1\")) and (KJC=\"1\" and not(isnull(KJC)))", + "KVELO": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((libHTLC =\"collectif\") or (ICOI=\"1\"))", + "OLAR1DIF1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((nvl(libHTLC,\"\")<>\"collectif\") and (nvl(ICOI,\"\")<>\"1\"))", + "OLAR1DIF2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((nvl(libHTLC,\"\")<>\"collectif\") and (nvl(ICOI,\"\")<>\"1\"))", + "OLAR1DIFCO1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((libHTLC=\"collectif\") or (ICOI=\"1\"))", + "OLAR1DIFCO2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((libHTLC=\"collectif\") or (ICOI=\"1\"))", + "OLAR1DIFCO3": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((libHTLC=\"collectif\") or (ICOI=\"1\"))" + }, + "KJC": { + "KSJC": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((libHTLC =\"collectif\") or (ICOI=\"1\")) and (KJC=\"1\" and not(isnull(KJC)))" + }, + "KCA": { + "KSOA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KCA=\"1\")" + }, + "KWC1": { + "KWCID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KWC1=\"1\" and not(isnull(KWC1)))", + "KWCIDB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KWC1=\"1\" and not(isnull(KWC1))) and (nvl(KWCID,0)=1)", + "KWCID2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KWC1=\"1\" and not(isnull(KWC1))) and (nvl(KWCID,0)>1)" + }, + "KWCID": { + "KWCIDB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KWC1=\"1\" and not(isnull(KWC1))) and (nvl(KWCID,0)=1)", + "KWCID2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KWC1=\"1\" and not(isnull(KWC1))) and (nvl(KWCID,0)>1)" + }, + "KAO1": { + "KBD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KAO1<>\"3\" or isnull(KAO1))", + "KSE": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KAO1<>\"3\" or isnull(KAO1)) and (KBD=\"1\")", + "KSEB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KAO1<>\"3\" or isnull(KAO1)) and (KBD=\"1\") and (nvl(KSE,0)=1)", + "KSE2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KAO1<>\"3\" or isnull(KAO1)) and (KBD=\"1\") and (nvl(KSE,0)>1)", + "KDLK1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KAO1<>\"3\" or isnull(KAO1)) and (KBD=\"2\")", + "KDLK2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KAO1<>\"3\" or isnull(KAO1)) and (KBD=\"2\") and (KDLK1=\"2\")" + }, + "KBD": { + "KSE": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KAO1<>\"3\" or isnull(KAO1)) and (KBD=\"1\")", + "KSEB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KAO1<>\"3\" or isnull(KAO1)) and (KBD=\"1\") and (nvl(KSE,0)=1)", + "KSE2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KAO1<>\"3\" or isnull(KAO1)) and (KBD=\"1\") and (nvl(KSE,0)>1)", + "KDLK1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KAO1<>\"3\" or isnull(KAO1)) and (KBD=\"2\")", + "KDLK2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KAO1<>\"3\" or isnull(KAO1)) and (KBD=\"2\") and (KDLK1=\"2\")" + }, + "KSE": { + "KSEB": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KAO1<>\"3\" or isnull(KAO1)) and (KBD=\"1\") and (nvl(KSE,0)=1)", + "KSE2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KAO1<>\"3\" or isnull(KAO1)) and (KBD=\"1\") and (nvl(KSE,0)>1)" + }, + "KDLK1": { + "KDLK2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (KAO1<>\"3\" or isnull(KAO1)) and (KBD=\"2\") and (KDLK1=\"2\")" + }, + "nbenfant": { + "OLAR4": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbenfant)) and (cast(nbenfant,integer)>0))" + }, + "avecenfant": { + "OLAR4": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(nbenfant)) and (cast(nbenfant,integer)>0))" + }, + "persplus15TR": { + "SDL2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((SDL12) and not(isnull(SDL12)))", + "SDL4": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((SDL14) and not(isnull(SDL14)))", + "SDN1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17))", + "SDT1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((SDN1=\"1\" or SDN1=\"2\") and not(isnull(SDN1)))", + "SDL_SIT1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((not(isnull(filtre_SIT)) and filtre_SIT=\"1\") and (not(isnull(SDN1)) and SDN1 = \"2\"))", + "SDTAD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((not(isnull(SDT1))))", + "SDT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")", + "SDL_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\") and (filtre_SIT =\"1\")", + "SDTAD_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")", + "SDT2_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")" + }, + "persplus15AGE": { + "SDL2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((SDL12) and not(isnull(SDL12)))", + "SDL4": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((SDL14) and not(isnull(SDL14)))", + "SDN1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17))", + "SDT1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((SDN1=\"1\" or SDN1=\"2\") and not(isnull(SDN1)))", + "SDL_SIT1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((not(isnull(filtre_SIT)) and filtre_SIT=\"1\") and (not(isnull(SDN1)) and SDN1 = \"2\"))", + "SDTAD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((not(isnull(SDT1))))", + "SDT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")", + "SDL_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\") and (filtre_SIT =\"1\")", + "SDTAD_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")", + "SDT2_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")" + }, + "SDL12": { + "SDL2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((SDL12) and not(isnull(SDL12)))", + "SDN1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17))", + "SDT1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((SDN1=\"1\" or SDN1=\"2\") and not(isnull(SDN1)))", + "SDL_SIT1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((not(isnull(filtre_SIT)) and filtre_SIT=\"1\") and (not(isnull(SDN1)) and SDN1 = \"2\"))", + "SDTAD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((not(isnull(SDT1))))", + "SDT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")", + "SDL_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\") and (filtre_SIT =\"1\")", + "SDTAD_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")", + "SDT2_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")" + }, + "SDL14": { + "SDL4": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((SDL14) and not(isnull(SDL14)))", + "SDN1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17))", + "SDT1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((SDN1=\"1\" or SDN1=\"2\") and not(isnull(SDN1)))", + "SDL_SIT1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((not(isnull(filtre_SIT)) and filtre_SIT=\"1\") and (not(isnull(SDN1)) and SDN1 = \"2\"))", + "SDTAD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((not(isnull(SDT1))))", + "SDT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")", + "SDL_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\") and (filtre_SIT =\"1\")", + "SDTAD_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")", + "SDT2_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")" + }, + "SDL11": { + "SDN1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17))", + "SDT1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((SDN1=\"1\" or SDN1=\"2\") and not(isnull(SDN1)))", + "SDL_SIT1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((not(isnull(filtre_SIT)) and filtre_SIT=\"1\") and (not(isnull(SDN1)) and SDN1 = \"2\"))", + "SDTAD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((not(isnull(SDT1))))", + "SDT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")", + "SDL_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\") and (filtre_SIT =\"1\")", + "SDTAD_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")", + "SDT2_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")" + }, + "SDL13": { + "SDN1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17))", + "SDT1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((SDN1=\"1\" or SDN1=\"2\") and not(isnull(SDN1)))", + "SDL_SIT1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((not(isnull(filtre_SIT)) and filtre_SIT=\"1\") and (not(isnull(SDN1)) and SDN1 = \"2\"))", + "SDTAD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((not(isnull(SDT1))))", + "SDT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")", + "SDL_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\") and (filtre_SIT =\"1\")", + "SDTAD_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")", + "SDT2_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")" + }, + "SDL15": { + "SDN1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17))", + "SDT1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((SDN1=\"1\" or SDN1=\"2\") and not(isnull(SDN1)))", + "SDL_SIT1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((not(isnull(filtre_SIT)) and filtre_SIT=\"1\") and (not(isnull(SDN1)) and SDN1 = \"2\"))", + "SDTAD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((not(isnull(SDT1))))", + "SDT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")", + "SDL_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\") and (filtre_SIT =\"1\")", + "SDTAD_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")", + "SDT2_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")" + }, + "SDL16": { + "SDN1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17))", + "SDT1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((SDN1=\"1\" or SDN1=\"2\") and not(isnull(SDN1)))", + "SDL_SIT1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((not(isnull(filtre_SIT)) and filtre_SIT=\"1\") and (not(isnull(SDN1)) and SDN1 = \"2\"))", + "SDTAD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((not(isnull(SDT1))))", + "SDT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")", + "SDL_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\") and (filtre_SIT =\"1\")", + "SDTAD_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")", + "SDT2_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")" + }, + "SDL17": { + "SDN1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17))", + "SDT1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((SDN1=\"1\" or SDN1=\"2\") and not(isnull(SDN1)))", + "SDL_SIT1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((not(isnull(filtre_SIT)) and filtre_SIT=\"1\") and (not(isnull(SDN1)) and SDN1 = \"2\"))", + "SDTAD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((not(isnull(SDT1))))", + "SDT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")", + "SDL_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\") and (filtre_SIT =\"1\")", + "SDTAD_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")", + "SDT2_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")" + }, + "SDN1": { + "SDT1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((SDN1=\"1\" or SDN1=\"2\") and not(isnull(SDN1)))", + "SDL_SIT1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((not(isnull(filtre_SIT)) and filtre_SIT=\"1\") and (not(isnull(SDN1)) and SDN1 = \"2\"))", + "SDT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")", + "SDL_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\") and (filtre_SIT =\"1\")", + "SDTAD_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")", + "SDT2_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\")" + }, + "filtre_SIT": { + "SDL_SIT1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((not(isnull(filtre_SIT)) and filtre_SIT=\"1\") and (not(isnull(SDN1)) and SDN1 = \"2\"))", + "SDL_SIT2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and (SDN1 = \"2\") and (filtre_SIT =\"1\")" + }, + "SDT1": { + "SDTAD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (cast(nvl(nbpers15,0),integer)>0) and (not((persplus15TR=\"0\" and persplus15AGE =\"0\"))) and ((not(isnull(SDL11)) and SDL11) or (not(isnull(SDL12)) and SDL12) or (not(isnull(SDL13)) and SDL13) or (not(isnull(SDL14)) and SDL14) or (not(isnull(SDL15)) and SDL15) or (not(isnull(SDL16)) and SDL16) or (not(isnull(SDL17)) and SDL17)) and ((not(isnull(SDT1))))" + }, + "VVENDL": { + "VFFH": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VVENDL = \"1\" or VVENDL = \"2\")", + "VFLA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VVENDL = \"1\" or VVENDL = \"2\") and (not(isnull(MAA1AT)) and (MAA1AT = \"1\" or MAA1AT = \"2\"))", + "VBILLOG": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((VVENDL =\"1\" or VVENDL = \"2\") and (VACHAL =\"1\" or VACHAL =\"2\"))" + }, + "MAA1AT": { + "VFLA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VVENDL = \"1\" or VVENDL = \"2\") and (not(isnull(MAA1AT)) and (MAA1AT = \"1\" or MAA1AT = \"2\"))" + }, + "MAA2AT": { + "VFLA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VVENDL = \"1\" or VVENDL = \"2\") and (not(isnull(MAA1AT)) and (MAA1AT = \"1\" or MAA1AT = \"2\"))", + "VLR": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\"))", + "COMMUNEPASSEE": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR = \"3\" and not(isnull(VLR)))", + "DEPART": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR = \"3\" and not(isnull(VLR))) and (isnull(COMMUNEPASSEE))", + "VCRCOM": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR = \"3\" and not(isnull(VLR))) and (isnull(COMMUNEPASSEE))", + "VPRA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR =\"5\" and not(isnull(VLR)))", + "VSO1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((VLA1 = \"1\") and ((VLR = \"2\" or VLR = \"3\") or (MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\")))", + "VSY": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VLOYER": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VAID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VND": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\")", + "VLRD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1)", + "VLAB1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD)))", + "VDD1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD))) and (VLAB1 = \"1\" and not(isnull(VLAB1)))", + "VDSY": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD))) and (VLAB1 = \"1\" and not(isnull(VLAB1))) and (VDD1=\"4\")" + }, + "MAA2ATC": { + "VFLA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VVENDL = \"1\" or VVENDL = \"2\") and (not(isnull(MAA1AT)) and (MAA1AT = \"1\" or MAA1AT = \"2\"))" + }, + "MAA3AT": { + "VFLA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VVENDL = \"1\" or VVENDL = \"2\") and (not(isnull(MAA1AT)) and (MAA1AT = \"1\" or MAA1AT = \"2\"))" + }, + "MAA2AT_Q": { + "VFLA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VVENDL = \"1\" or VVENDL = \"2\") and (not(isnull(MAA1AT)) and (MAA1AT = \"1\" or MAA1AT = \"2\"))", + "VLR": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\"))", + "COMMUNEPASSEE": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR = \"3\" and not(isnull(VLR)))", + "DEPART": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR = \"3\" and not(isnull(VLR))) and (isnull(COMMUNEPASSEE))", + "VCRCOM": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR = \"3\" and not(isnull(VLR))) and (isnull(COMMUNEPASSEE))", + "VPRA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR =\"5\" and not(isnull(VLR)))", + "VSO1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((VLA1 = \"1\") and ((VLR = \"2\" or VLR = \"3\") or (MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\")))", + "VSY": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VLOYER": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VAID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VND": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\")", + "VLRD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1)", + "VLAB1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD)))", + "VDD1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD))) and (VLAB1 = \"1\" and not(isnull(VLAB1)))", + "VDSY": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD))) and (VLAB1 = \"1\" and not(isnull(VLAB1))) and (VDD1=\"4\")" + }, + "MAA2M": { + "VFLA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VVENDL = \"1\" or VVENDL = \"2\") and (not(isnull(MAA1AT)) and (MAA1AT = \"1\" or MAA1AT = \"2\"))", + "VLR": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\"))", + "COMMUNEPASSEE": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR = \"3\" and not(isnull(VLR)))", + "DEPART": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR = \"3\" and not(isnull(VLR))) and (isnull(COMMUNEPASSEE))", + "VCRCOM": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR = \"3\" and not(isnull(VLR))) and (isnull(COMMUNEPASSEE))", + "VPRA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR =\"5\" and not(isnull(VLR)))", + "VSO1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((VLA1 = \"1\") and ((VLR = \"2\" or VLR = \"3\") or (MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\")))", + "VSY": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VLOYER": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VAID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VND": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\")", + "VLRD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1)", + "VLAB1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD)))", + "VDD1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD))) and (VLAB1 = \"1\" and not(isnull(VLAB1)))", + "VDSY": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD))) and (VLAB1 = \"1\" and not(isnull(VLAB1))) and (VDD1=\"4\")" + }, + "MAA2ATC_Q": { + "VFLA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VVENDL = \"1\" or VVENDL = \"2\") and (not(isnull(MAA1AT)) and (MAA1AT = \"1\" or MAA1AT = \"2\"))" + }, + "MAA2MC": { + "VFLA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VVENDL = \"1\" or VVENDL = \"2\") and (not(isnull(MAA1AT)) and (MAA1AT = \"1\" or MAA1AT = \"2\"))" + }, + "MAA3M": { + "VFLA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VVENDL = \"1\" or VVENDL = \"2\") and (not(isnull(MAA1AT)) and (MAA1AT = \"1\" or MAA1AT = \"2\"))" + }, + "VACHAL": { + "VBILLOG": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((VVENDL =\"1\" or VVENDL = \"2\") and (VACHAL =\"1\" or VACHAL =\"2\"))" + }, + "ANNEENQmoins1": { + "VLR": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\"))", + "COMMUNEPASSEE": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR = \"3\" and not(isnull(VLR)))", + "DEPART": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR = \"3\" and not(isnull(VLR))) and (isnull(COMMUNEPASSEE))", + "VCRCOM": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR = \"3\" and not(isnull(VLR))) and (isnull(COMMUNEPASSEE))", + "VPRA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR =\"5\" and not(isnull(VLR)))", + "VSO1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((VLA1 = \"1\") and ((VLR = \"2\" or VLR = \"3\") or (MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\")))", + "VSY": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VLOYER": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VAID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VND": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\")", + "VLRD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1)", + "VLAB1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD)))", + "VDD1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD))) and (VLAB1 = \"1\" and not(isnull(VLAB1)))", + "VDSY": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD))) and (VLAB1 = \"1\" and not(isnull(VLAB1))) and (VDD1=\"4\")" + }, + "MOISENQ": { + "VLR": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\"))", + "COMMUNEPASSEE": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR = \"3\" and not(isnull(VLR)))", + "DEPART": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR = \"3\" and not(isnull(VLR))) and (isnull(COMMUNEPASSEE))", + "VCRCOM": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR = \"3\" and not(isnull(VLR))) and (isnull(COMMUNEPASSEE))", + "VPRA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR =\"5\" and not(isnull(VLR)))", + "VSO1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((VLA1 = \"1\") and ((VLR = \"2\" or VLR = \"3\") or (MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\")))", + "VSY": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VLOYER": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VAID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VND": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\")", + "VLRD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1)", + "VLAB1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD)))", + "VDD1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD))) and (VLAB1 = \"1\" and not(isnull(VLAB1)))", + "VDSY": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD))) and (VLAB1 = \"1\" and not(isnull(VLAB1))) and (VDD1=\"4\")" + }, + "ANNEENQmoins8": { + "VLR": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\"))", + "COMMUNEPASSEE": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR = \"3\" and not(isnull(VLR)))", + "DEPART": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR = \"3\" and not(isnull(VLR))) and (isnull(COMMUNEPASSEE))", + "VCRCOM": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR = \"3\" and not(isnull(VLR))) and (isnull(COMMUNEPASSEE))", + "VPRA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR =\"5\" and not(isnull(VLR)))", + "VSO1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((VLA1 = \"1\") and ((VLR = \"2\" or VLR = \"3\") or (MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\")))", + "VSY": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VLOYER": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VAID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VND": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\")", + "VLRD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1)", + "VLAB1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD)))", + "VDD1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD))) and (VLAB1 = \"1\" and not(isnull(VLAB1)))", + "VDSY": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD))) and (VLAB1 = \"1\" and not(isnull(VLAB1))) and (VDD1=\"4\")" + }, + "ANNEENQmoins12": { + "VLR": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\"))", + "COMMUNEPASSEE": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR = \"3\" and not(isnull(VLR)))", + "DEPART": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR = \"3\" and not(isnull(VLR))) and (isnull(COMMUNEPASSEE))", + "VCRCOM": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR = \"3\" and not(isnull(VLR))) and (isnull(COMMUNEPASSEE))", + "VPRA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR =\"5\" and not(isnull(VLR)))", + "VSO1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((VLA1 = \"1\") and ((VLR = \"2\" or VLR = \"3\") or (MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\")))", + "VSY": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VLOYER": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VAID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VND": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\")", + "VLRD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1)", + "VLAB1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD)))", + "VDD1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD))) and (VLAB1 = \"1\" and not(isnull(VLAB1)))", + "VDSY": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD))) and (VLAB1 = \"1\" and not(isnull(VLAB1))) and (VDD1=\"4\")" + }, + "VLR": { + "COMMUNEPASSEE": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR = \"3\" and not(isnull(VLR)))", + "DEPART": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR = \"3\" and not(isnull(VLR))) and (isnull(COMMUNEPASSEE))", + "VCRCOM": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR = \"3\" and not(isnull(VLR))) and (isnull(COMMUNEPASSEE))", + "VPRA": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR =\"5\" and not(isnull(VLR)))", + "VSO1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((VLA1 = \"1\") and ((VLR = \"2\" or VLR = \"3\") or (MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\")))", + "VSY": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VLOYER": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VAID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VTL1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VLR)) and (VLR=\"2\" or VLR=\"3\") and (VLA1<>\"4\" or isnull(VLA1) ))", + "VSURF": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VLR)) and (VLR=\"2\" or VLR=\"3\") and (VLA1<>\"4\" or isnull(VLA1) ))", + "VPI": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VLR)) and (VLR=\"2\" or VLR=\"3\") and (VLA1<>\"4\" or isnull(VLA1) ))", + "VANCIEN": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VLR)) and (VLR=\"2\" or VLR=\"3\") and (VLA1<>\"4\" or isnull(VLA1) ))" + }, + "COMMUNEPASSEE": { + "DEPART": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR = \"3\" and not(isnull(VLR))) and (isnull(COMMUNEPASSEE))", + "VCRCOM": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(MAA2AT)) and (MAA2AT = \"1\" or MAA2AT =\"2\")) and (VLR = \"3\" and not(isnull(VLR))) and (isnull(COMMUNEPASSEE))" + }, + "VLA1": { + "VSO1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and ((VLA1 = \"1\") and ((VLR = \"2\" or VLR = \"3\") or (MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\")))", + "VSY": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VLOYER": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VAID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VIN": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VLA1<>\"4\" or isnull(VLA1))", + "VTL1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VLR)) and (VLR=\"2\" or VLR=\"3\") and (VLA1<>\"4\" or isnull(VLA1) ))", + "VSURF": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VLR)) and (VLR=\"2\" or VLR=\"3\") and (VLA1<>\"4\" or isnull(VLA1) ))", + "VPI": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VLR)) and (VLR=\"2\" or VLR=\"3\") and (VLA1<>\"4\" or isnull(VLA1) ))", + "VANCIEN": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VLR)) and (VLR=\"2\" or VLR=\"3\") and (VLA1<>\"4\" or isnull(VLA1) ))" + }, + "VSO1": { + "VSY": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VLOYER": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))", + "VAID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (VSO1=\"4\" and (((VLR = \"2\" or VLR = \"3\") and VLA1 = \"1\") or ((MAA2AT=\"3\" or MAA2AT=\"4\" or MAA2AT=\"5\" or VLR = \"1\") and STOC <> \"4\")))" + }, + "VND": { + "VLRD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1)", + "VLAB1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD)))", + "VDD1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD))) and (VLAB1 = \"1\" and not(isnull(VLAB1)))", + "VDSY": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD))) and (VLAB1 = \"1\" and not(isnull(VLAB1))) and (VDD1=\"4\")", + "VTLD1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VND)) and (cast(VND,integer) > 1)) and ((VLAB1 <>\"4\" or isnull(VLAB1)) and (VLRD=\"1\"))", + "VSURFD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VND)) and (cast(VND,integer) > 1)) and ((VLAB1 <>\"4\" or isnull(VLAB1)) and (VLRD=\"1\"))", + "VPID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VND)) and (cast(VND,integer) > 1)) and ((VLAB1 <>\"4\" or isnull(VLAB1)) and (VLRD=\"1\"))", + "VRAIS1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VND)) and (cast(VND,integer) > 0))", + "VRAIS5": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VND)) and (cast(VND,integer) > 0)) and (nvl(VRAIS27,false) = true and nvl(VRAIS36,false) = true and nvl(VRAIS45,false) = true)" + }, + "VLRD": { + "VLAB1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD)))", + "VDD1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD))) and (VLAB1 = \"1\" and not(isnull(VLAB1)))", + "VDSY": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD))) and (VLAB1 = \"1\" and not(isnull(VLAB1))) and (VDD1=\"4\")", + "VTLD1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VND)) and (cast(VND,integer) > 1)) and ((VLAB1 <>\"4\" or isnull(VLAB1)) and (VLRD=\"1\"))", + "VSURFD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VND)) and (cast(VND,integer) > 1)) and ((VLAB1 <>\"4\" or isnull(VLAB1)) and (VLRD=\"1\"))", + "VPID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VND)) and (cast(VND,integer) > 1)) and ((VLAB1 <>\"4\" or isnull(VLAB1)) and (VLRD=\"1\"))" + }, + "VLAB1": { + "VDD1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD))) and (VLAB1 = \"1\" and not(isnull(VLAB1)))", + "VDSY": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD))) and (VLAB1 = \"1\" and not(isnull(VLAB1))) and (VDD1=\"4\")", + "VTLD1": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VND)) and (cast(VND,integer) > 1)) and ((VLAB1 <>\"4\" or isnull(VLAB1)) and (VLRD=\"1\"))", + "VSURFD": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VND)) and (cast(VND,integer) > 1)) and ((VLAB1 <>\"4\" or isnull(VLAB1)) and (VLRD=\"1\"))", + "VPID": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VND)) and (cast(VND,integer) > 1)) and ((VLAB1 <>\"4\" or isnull(VLAB1)) and (VLRD=\"1\"))" + }, + "VDD1": { + "VDSY": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (MAA2AT=\"1\" or MAA2AT=\"2\") and (cast(VND,integer) > 1) and (VLRD = \"1\" and not(isnull(VLRD))) and (VLAB1 = \"1\" and not(isnull(VLAB1))) and (VDD1=\"4\")" + }, + "VRAIS27": { + "VRAIS5": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VND)) and (cast(VND,integer) > 0)) and (nvl(VRAIS27,false) = true and nvl(VRAIS36,false) = true and nvl(VRAIS45,false) = true)" + }, + "VRAIS36": { + "VRAIS5": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VND)) and (cast(VND,integer) > 0)) and (nvl(VRAIS27,false) = true and nvl(VRAIS36,false) = true and nvl(VRAIS45,false) = true)" + }, + "VRAIS45": { + "VRAIS5": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (not(isnull(VND)) and (cast(VND,integer) > 0)) and (nvl(VRAIS27,false) = true and nvl(VRAIS36,false) = true and nvl(VRAIS45,false) = true)" + }, + "CHGNC": { + "CIVCOLL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (CHGNC = \"2\" and not(isnull(CHGNC)))", + "PRENOMCOLL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (CHGNC = \"2\" and not(isnull(CHGNC)))", + "NOMCOLL": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (CHGNC = \"2\" and not(isnull(CHGNC)))", + "CHGNC2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (CHGNC = \"2\" and not(isnull(CHGNC))) and ((not(isnull(NOMVOUS_D2)) or NOMVOUS_D2<> \"\") and (not(isnull(NOMCOLL)) or NOMCOLL<> \"\"))", + "CIVCOLL2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (CHGNC = \"2\" and not(isnull(CHGNC))) and ((not(isnull(NOMVOUS_D2)) or NOMVOUS_D2<> \"\") and (not(isnull(NOMCOLL)) or NOMCOLL<> \"\")) and (not(isnull(CHGNC2)) and CHGNC2=\"1\")", + "PRENOMCOLL2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (CHGNC = \"2\" and not(isnull(CHGNC))) and ((not(isnull(NOMVOUS_D2)) or NOMVOUS_D2<> \"\") and (not(isnull(NOMCOLL)) or NOMCOLL<> \"\")) and (not(isnull(CHGNC2)) and CHGNC2=\"1\")", + "NOMCOLL2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (CHGNC = \"2\" and not(isnull(CHGNC))) and ((not(isnull(NOMVOUS_D2)) or NOMVOUS_D2<> \"\") and (not(isnull(NOMCOLL)) or NOMCOLL<> \"\")) and (not(isnull(CHGNC2)) and CHGNC2=\"1\")" + }, + "NOMVOUS_D2": { + "CHGNC2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (CHGNC = \"2\" and not(isnull(CHGNC))) and ((not(isnull(NOMVOUS_D2)) or NOMVOUS_D2<> \"\") and (not(isnull(NOMCOLL)) or NOMCOLL<> \"\"))", + "CIVCOLL2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (CHGNC = \"2\" and not(isnull(CHGNC))) and ((not(isnull(NOMVOUS_D2)) or NOMVOUS_D2<> \"\") and (not(isnull(NOMCOLL)) or NOMCOLL<> \"\")) and (not(isnull(CHGNC2)) and CHGNC2=\"1\")", + "PRENOMCOLL2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (CHGNC = \"2\" and not(isnull(CHGNC))) and ((not(isnull(NOMVOUS_D2)) or NOMVOUS_D2<> \"\") and (not(isnull(NOMCOLL)) or NOMCOLL<> \"\")) and (not(isnull(CHGNC2)) and CHGNC2=\"1\")", + "NOMCOLL2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (CHGNC = \"2\" and not(isnull(CHGNC))) and ((not(isnull(NOMVOUS_D2)) or NOMVOUS_D2<> \"\") and (not(isnull(NOMCOLL)) or NOMCOLL<> \"\")) and (not(isnull(CHGNC2)) and CHGNC2=\"1\")" + }, + "NOMCOLL": { + "CHGNC2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (CHGNC = \"2\" and not(isnull(CHGNC))) and ((not(isnull(NOMVOUS_D2)) or NOMVOUS_D2<> \"\") and (not(isnull(NOMCOLL)) or NOMCOLL<> \"\"))", + "CIVCOLL2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (CHGNC = \"2\" and not(isnull(CHGNC))) and ((not(isnull(NOMVOUS_D2)) or NOMVOUS_D2<> \"\") and (not(isnull(NOMCOLL)) or NOMCOLL<> \"\")) and (not(isnull(CHGNC2)) and CHGNC2=\"1\")", + "PRENOMCOLL2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (CHGNC = \"2\" and not(isnull(CHGNC))) and ((not(isnull(NOMVOUS_D2)) or NOMVOUS_D2<> \"\") and (not(isnull(NOMCOLL)) or NOMCOLL<> \"\")) and (not(isnull(CHGNC2)) and CHGNC2=\"1\")", + "NOMCOLL2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (CHGNC = \"2\" and not(isnull(CHGNC))) and ((not(isnull(NOMVOUS_D2)) or NOMVOUS_D2<> \"\") and (not(isnull(NOMCOLL)) or NOMCOLL<> \"\")) and (not(isnull(CHGNC2)) and CHGNC2=\"1\")" + }, + "CHGNC2": { + "CIVCOLL2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (CHGNC = \"2\" and not(isnull(CHGNC))) and ((not(isnull(NOMVOUS_D2)) or NOMVOUS_D2<> \"\") and (not(isnull(NOMCOLL)) or NOMCOLL<> \"\")) and (not(isnull(CHGNC2)) and CHGNC2=\"1\")", + "PRENOMCOLL2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (CHGNC = \"2\" and not(isnull(CHGNC))) and ((not(isnull(NOMVOUS_D2)) or NOMVOUS_D2<> \"\") and (not(isnull(NOMCOLL)) or NOMCOLL<> \"\")) and (not(isnull(CHGNC2)) and CHGNC2=\"1\")", + "NOMCOLL2": "(CADR = \"1\" or CADR = \"2\" or isnull(CADR)) and (CHGNC = \"2\" and not(isnull(CHGNC))) and ((not(isnull(NOMVOUS_D2)) or NOMVOUS_D2<> \"\") and (not(isnull(NOMCOLL)) or NOMCOLL<> \"\")) and (not(isnull(CHGNC2)) and CHGNC2=\"1\")" + } + }, + "resizing": { + "NBHAB": { + "size": "cast(NHAB,integer)", + "variables": [ + "G_PRENOM", + "SEXE", + "DATENAIS", + "TRAGE", + "LNAIS", + "DEPNAIS", + "PAYSNAIS", + "NATIO1N1", + "NATIO1N2", + "NATIO1N3", + "NATIO1N4", + "NATIO2N", + "LIEN", + "COUPLE", + "SITUMATRI1", + "SITUMATRI2", + "SITUMATRI3", + "SITUMATRI4", + "SITUMATRI5", + "SITUMATRI6", + "UNLOG", + "DURLOG", + "LOGENQ", + "LOGAUT", + "GARDE", + "DORM", + "LOGCO", + "TYPLOGCO", + "SITUA", + "TRAVAIL", + "GRDIPA", + "GRDIPB", + "GRDIPC", + "TELET", + "TELETNJ", + "STOCA12", + "STOCA3", + "STOCA4", + "STOCB1", + "EPAS1", + "ERETOUR", + "EPASB", + "EPASC", + "ERET11", + "ERET12", + "ERET13", + "ERET14", + "ERET15", + "ERET16", + "ECOVID", + "EPROJ", + "EPROJB", + "EPROJC", + "EPROJD", + "EAMIA", + "EAMID11", + "EAMID12", + "EAMID13", + "EAMID14", + "EAMID15", + "EAMID16", + "EAMID17", + "ECOVID2", + "EAMIH", + "EAMIK", + "EAMIL", + "SDL11", + "SDL12", + "SDL13", + "SDL14", + "SDL15", + "SDL16", + "SDL17", + "SDL18", + "SDL2", + "SDL4", + "SDN1", + "SDT1", + "SDL_SIT1", + "SDTAD", + "SDT2", + "SDL_SIT2", + "SDTAD_SIT2", + "SDT2_SIT2" + ] + } + } +} \ No newline at end of file diff --git a/eno-core/src/test/resources/functional/lunatic/pagination/lunatic-lnycjn6n.json b/eno-core/src/test/resources/functional/lunatic/pagination/lunatic-lnycjn6n.json new file mode 100644 index 000000000..b3f47e0c2 --- /dev/null +++ b/eno-core/src/test/resources/functional/lunatic/pagination/lunatic-lnycjn6n.json @@ -0,0 +1,58772 @@ +{ + "id": "lnycjn6n", + "modele": "ENQFAMI24", + "enoCoreVersion": "2.4.10", + "lunaticModelVersion": "2.3.4", + "generatingDate": "23-11-2023 15:07:33", + "missing": false, + "pagination": "question", + "maxPage": "3", + "label": { + "value": "VraiQuest - Enquête Familles 2024 V6 Livraison", + "type": "VTL|MD" + }, + "components": [ + { + "id": "l4idqt1t", + "componentType": "Loop", + "page": "1", + "depth": 1, + "paginatedLoop": false, + "conditionFilter": { + "value": "true", + "type": "VTL" + }, + "bindingDependencies": [ + "RPNBQUEST", + "RPPRENOM", + "RPANAISENQ", + "VAL_ANNAISS" + ], + "loopDependencies": [ + "RPNBQUEST" + ], + "lines": { + "min": { + "value": "RPNBQUEST", + "type": "VTL" + }, + "max": { + "value": "RPNBQUEST", + "type": "VTL" + } + }, + "components": [ + { + "id": "l473bp2x", + "componentType": "Sequence", + "page": "1", + "label": { + "value": "\"I - \" || \"Les personnes concernées par l’enquête\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "true", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "l473bp2x", + "page": "1", + "label": { + "value": "\"I - \" || \"Les personnes concernées par l’enquête\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "RPNBQUEST" + ] + }, + { + "id": "l473latk", + "componentType": "Radio", + "mandatory": false, + "page": "1", + "label": { + "value": "\"Avant de commencer le questionnaire, nous vous demandons de bien vouloir confirmer l’information suivante : l’année de naissance de \" || RPPRENOM || \" est-elle bien \" || cast(RPANAISENQ,string) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "true", + "type": "VTL" + }, + "controls": [ + { + "id": "l473latk-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(VAL_ANNAISS) or VAL_ANNAISS=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "VAL_ANNAISS" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "l473bp2x", + "page": "1", + "label": { + "value": "\"I - \" || \"Les personnes concernées par l’enquête\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "RPPRENOM", + "RPANAISENQ", + "VAL_ANNAISS", + "RPNBQUEST" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "VAL_ANNAISS" + } + } + ] + }, + { + "id": "ljmw8vex", + "componentType": "Loop", + "page": "2", + "maxPage": "492", + "depth": 1, + "paginatedLoop": true, + "conditionFilter": { + "value": "true", + "type": "VTL" + }, + "bindingDependencies": [ + "PRENOMREP", + "DATNAIS_X", + "COUPLE", + "RAISON_VIE_CJT", + "PRENOM_C", + "DATNAIS_C", + "SEXE_CH", + "LIEUNAIS_CH", + "DNAI_CH", + "PNAI_CH", + "TRAV_CH", + "PROF_C2H", + "LIBSEXCJH", + "STATUT_CH", + "SAL_FP_CH", + "SAL_ENT_CH", + "SEXE_CF", + "LIEUNAIS_CF", + "DNAI_CF", + "PNAI_CF", + "TRAV_CF", + "PROF_C2F", + "LIBSEXCJF", + "STATUT_CF", + "SAL_FP_CF", + "SAL_ENT_CF", + "TYPE_QUEST", + "ANNEE_U", + "ANAIS", + "PACS", + "ANNEE_PACS", + "MARI", + "ANNEE_MARI", + "SEPARE", + "ANNEE_S", + "ANNEE_D", + "ENFAV_C", + "NBENFAV_C", + "NBENFAV_VENU_C1", + "NBENFAV_VENU_C", + "VECU_C", + "ENF21_AUTPAR_C1", + "ENF21_AUTPAR_C2", + "ENF21_AUTPAR_C3", + "ENF21_AUTPAR_C4", + "AUT_UNION", + "NB_AUT_UNION", + "PRENOM_U1", + "SEXE_U1H", + "SEXE_U1F", + "ANNEE_U1", + "PACS_U1", + "ANNEE_PACS_U1", + "MARI_U1", + "ANNEE_MARI_U1", + "SEPARE_U1", + "ANNEE_S_U1", + "ANNEE_D_U1", + "ENFAV_C_U1", + "NBENFAV_C_U1", + "NBENFAV_C1_VENU_U1", + "NBENFAV_C_VENU_U1", + "AUT_U2", + "PRENOM_U2", + "SEXE_U2H", + "SEXE_U2F", + "ANNEE_U2", + "PACS_U2", + "ANNEE_PACS_U2", + "MARI_U2", + "ANNEE_MARI_U2", + "SEPARE_U2", + "ANNEE_S_U2", + "ANNEE_D_U2", + "ENFAV_C_U2", + "NBENFAV_C_U2", + "NBENFAV_C1_VENU_U2", + "NBENFAV_C_VENU_U2", + "ENF", + "NBENF", + "NBENF_ADOP1", + "NBENF_ADOP", + "LANGUE1_ENF", + "LANGUE2_ENF", + "NBENFLOG", + "CBENFLOG", + "NBENFAIL", + "CBENFAIL", + "PRENOM_ENFLOG1", + "SEXE_ENFLOG1", + "ANAI_ENFLOG1", + "NEFRANCE_ENFLOG1", + "PARENT_VIT_ENFLOG1", + "PARENT_FR_ENFLOG1", + "PARENT_DEP_ENFLOG1", + "PARENT_COM_ENFLOG1", + "PARENT_PAY_ENFLOG1", + "PARENT_FREQ_ENFLOG1", + "PARENT_DORT_ENFLOG1", + "PARENT_VECU_ENFLOG1", + "SEP_AUT_PAR_ENFLOG1", + "RESID_ENFLOG1", + "SANTE_ENFLOG11", + "SANTE_ENFLOG12", + "SANTE_ENFLOG13", + "SANTE_ENFLOG14", + "PRENOM_ENFLOG2", + "SEXE_ENFLOG2", + "ANAI_ENFLOG2", + "NEFRANCE_ENFLOG2", + "PARENT_VIT_ENFLOG2", + "PARENT_FR_ENFLOG2", + "PARENT_DEP_ENFLOG2", + "PARENT_COM_ENFLOG2", + "PARENT_PAY_ENFLOG2", + "PARENT_FREQ_ENFLOG2", + "PARENT_DORT_ENFLOG2", + "PARENT_VECU_ENFLOG2", + "SEP_AUT_PAR_ENFLOG2", + "RESID_ENFLOG2", + "SANTE_ENFLOG21", + "SANTE_ENFLOG22", + "SANTE_ENFLOG23", + "SANTE_ENFLOG24", + "PRENOM_ENFLOG3", + "SEXE_ENFLOG3", + "ANAI_ENFLOG3", + "NEFRANCE_ENFLOG3", + "PARENT_VIT_ENFLOG3", + "PARENT_FR_ENFLOG3", + "PARENT_DEP_ENFLOG3", + "PARENT_COM_ENFLOG3", + "PARENT_PAY_ENFLOG3", + "PARENT_FREQ_ENFLOG3", + "PARENT_DORT_ENFLOG3", + "PARENT_VECU_ENFLOG3", + "SEP_AUT_PAR_ENFLOG3", + "RESID_ENFLOG3", + "SANTE_ENFLOG31", + "SANTE_ENFLOG32", + "SANTE_ENFLOG33", + "SANTE_ENFLOG34", + "PRENOM_ENFLOG4", + "SEXE_ENFLOG4", + "ANAI_ENFLOG4", + "NEFRANCE_ENFLOG4", + "PARENT_VIT_ENFLOG4", + "PARENT_FR_ENFLOG4", + "PARENT_DEP_ENFLOG4", + "PARENT_COM_ENFLOG4", + "PARENT_PAY_ENFLOG4", + "PARENT_FREQ_ENFLOG4", + "PARENT_DORT_ENFLOG4", + "PARENT_VECU_ENFLOG4", + "SEP_AUT_PAR_ENFLOG4", + "RESID_ENFLOG4", + "SANTE_ENFLOG41", + "SANTE_ENFLOG42", + "SANTE_ENFLOG43", + "SANTE_ENFLOG44", + "PRENOM_ENFLOG5", + "SEXE_ENFLOG5", + "ANAI_ENFLOG5", + "NEFRANCE_ENFLOG5", + "PARENT_VIT_ENFLOG5", + "PARENT_FR_ENFLOG5", + "PARENT_DEP_ENFLOG5", + "PARENT_COM_ENFLOG5", + "PARENT_PAY_ENFLOG5", + "PARENT_FREQ_ENFLOG5", + "PARENT_DORT_ENFLOG5", + "PARENT_VECU_ENFLOG5", + "SEP_AUT_PAR_ENFLOG5", + "RESID_ENFLOG5", + "SANTE_ENFLOG51", + "SANTE_ENFLOG52", + "SANTE_ENFLOG53", + "SANTE_ENFLOG54", + "PRENOM_ENFLOG6", + "SEXE_ENFLOG6", + "ANAI_ENFLOG6", + "NEFRANCE_ENFLOG6", + "PARENT_VIT_ENFLOG6", + "PARENT_FR_ENFLOG6", + "PARENT_DEP_ENFLOG6", + "PARENT_COM_ENFLOG6", + "PARENT_PAY_ENFLOG6", + "PARENT_FREQ_ENFLOG6", + "PARENT_DORT_ENFLOG6", + "PARENT_VECU_ENFLOG6", + "SEP_AUT_PAR_ENFLOG6", + "RESID_ENFLOG6", + "SANTE_ENFLOG61", + "SANTE_ENFLOG62", + "SANTE_ENFLOG63", + "SANTE_ENFLOG64", + "PRENOM_ENFLOG7", + "SEXE_ENFLOG7", + "ANAI_ENFLOG7", + "NEFRANCE_ENFLOG7", + "PARENT_VIT_ENFLOG7", + "PARENT_FR_ENFLOG7", + "PARENT_DEP_ENFLOG7", + "PARENT_COM_ENFLOG7", + "PARENT_PAY_ENFLOG7", + "PARENT_FREQ_ENFLOG7", + "PARENT_DORT_ENFLOG7", + "PARENT_VECU_ENFLOG7", + "SEP_AUT_PAR_ENFLOG7", + "RESID_ENFLOG7", + "SANTE_ENFLOG71", + "SANTE_ENFLOG72", + "SANTE_ENFLOG73", + "SANTE_ENFLOG74", + "PRENOM_ENFLOG8", + "SEXE_ENFLOG8", + "ANAI_ENFLOG8", + "NEFRANCE_ENFLOG8", + "PARENT_VIT_ENFLOG8", + "PARENT_FR_ENFLOG8", + "PARENT_DEP_ENFLOG8", + "PARENT_COM_ENFLOG8", + "PARENT_PAY_ENFLOG8", + "PARENT_FREQ_ENFLOG8", + "PARENT_DORT_ENFLOG8", + "PARENT_VECU_ENFLOG8", + "SEP_AUT_PAR_ENFLOG8", + "RESID_ENFLOG8", + "SANTE_ENFLOG81", + "SANTE_ENFLOG82", + "SANTE_ENFLOG83", + "SANTE_ENFLOG84", + "PRENOM_ENFAIL1", + "SEXE_ENFAIL1", + "ANAI_ENFAIL1", + "NEFRANCE_ENFAIL1", + "PARENT_VIT_ENFAIL1", + "PARENT_VECU_ENFAIL1", + "DC_ENFAIL1", + "AG_DC_ENFAIL1", + "AG_ENFAIL1", + "AG_DEPART_ENFAIL1", + "PARENT_FREQ_ENFAIL1", + "FR_ENFAIL1", + "DEP_ENFAIL1", + "COM_ENFAIL1", + "PAY_ENFAIL1", + "LOG_ENFAIL1", + "AUT_PAR_ENFAIL1", + "DORT_ENFAIL1", + "SEP_AUT_PAR_ENFAIL1", + "RESID_ENFAIL1", + "SANTE_ENFAIL11", + "SANTE_ENFAIL12", + "SANTE_ENFAIL13", + "PRENOM_ENFAIL2", + "SEXE_ENFAIL2", + "ANAI_ENFAIL2", + "NEFRANCE_ENFAIL2", + "PARENT_VIT_ENFAIL2", + "PARENT_VECU_ENFAIL2", + "DC_ENFAIL2", + "AG_DC_ENFAIL2", + "AG_ENFAIL2", + "AG_DEPART_ENFAIL2", + "PARENT_FREQ_ENFAIL2", + "FR_ENFAIL2", + "DEP_ENFAIL2", + "COM_ENFAIL2", + "PAY_ENFAIL2", + "LOG_ENFAIL2", + "AUT_PAR_ENFAIL2", + "DORT_ENFAIL2", + "SEP_AUT_PAR_ENFAIL2", + "RESID_ENFAIL2", + "SANTE_ENFAIL21", + "SANTE_ENFAIL22", + "SANTE_ENFAIL23", + "PRENOM_ENFAIL3", + "SEXE_ENFAIL3", + "ANAI_ENFAIL3", + "NEFRANCE_ENFAIL3", + "PARENT_VIT_ENFAIL3", + "PARENT_VECU_ENFAIL3", + "DC_ENFAIL3", + "AG_DC_ENFAIL3", + "AG_ENFAIL3", + "AG_DEPART_ENFAIL3", + "PARENT_FREQ_ENFAIL3", + "FR_ENFAIL3", + "DEP_ENFAIL3", + "COM_ENFAIL3", + "PAY_ENFAIL3", + "LOG_ENFAIL3", + "AUT_PAR_ENFAIL3", + "DORT_ENFAIL3", + "SEP_AUT_PAR_ENFAIL3", + "RESID_ENFAIL3", + "SANTE_ENFAIL31", + "SANTE_ENFAIL32", + "SANTE_ENFAIL33", + "PRENOM_ENFAIL4", + "SEXE_ENFAIL4", + "ANAI_ENFAIL4", + "NEFRANCE_ENFAIL4", + "PARENT_VIT_ENFAIL4", + "PARENT_VECU_ENFAIL4", + "DC_ENFAIL4", + "AG_DC_ENFAIL4", + "AG_ENFAIL4", + "AG_DEPART_ENFAIL4", + "PARENT_FREQ_ENFAIL4", + "FR_ENFAIL4", + "DEP_ENFAIL4", + "COM_ENFAIL4", + "PAY_ENFAIL4", + "LOG_ENFAIL4", + "AUT_PAR_ENFAIL4", + "DORT_ENFAIL4", + "SEP_AUT_PAR_ENFAIL4", + "RESID_ENFAIL4", + "SANTE_ENFAIL41", + "SANTE_ENFAIL42", + "SANTE_ENFAIL43", + "PRENOM_ENFAIL5", + "SEXE_ENFAIL5", + "ANAI_ENFAIL5", + "NEFRANCE_ENFAIL5", + "PARENT_VIT_ENFAIL5", + "PARENT_VECU_ENFAIL5", + "DC_ENFAIL5", + "AG_DC_ENFAIL5", + "AG_ENFAIL5", + "AG_DEPART_ENFAIL5", + "PARENT_FREQ_ENFAIL5", + "FR_ENFAIL5", + "DEP_ENFAIL5", + "COM_ENFAIL5", + "PAY_ENFAIL5", + "LOG_ENFAIL5", + "AUT_PAR_ENFAIL5", + "DORT_ENFAIL5", + "SEP_AUT_PAR_ENFAIL5", + "RESID_ENFAIL5", + "SANTE_ENFAIL51", + "SANTE_ENFAIL52", + "SANTE_ENFAIL53", + "PRENOM_ENFAIL6", + "SEXE_ENFAIL6", + "ANAI_ENFAIL6", + "NEFRANCE_ENFAIL6", + "PARENT_VIT_ENFAIL6", + "PARENT_VECU_ENFAIL6", + "DC_ENFAIL6", + "AG_DC_ENFAIL6", + "AG_ENFAIL6", + "AG_DEPART_ENFAIL6", + "PARENT_FREQ_ENFAIL6", + "FR_ENFAIL6", + "DEP_ENFAIL6", + "COM_ENFAIL6", + "PAY_ENFAIL6", + "LOG_ENFAIL6", + "AUT_PAR_ENFAIL6", + "DORT_ENFAIL6", + "SEP_AUT_PAR_ENFAIL6", + "RESID_ENFAIL6", + "SANTE_ENFAIL61", + "SANTE_ENFAIL62", + "SANTE_ENFAIL63", + "PRENOM_ENFAIL7", + "SEXE_ENFAIL7", + "ANAI_ENFAIL7", + "NEFRANCE_ENFAIL7", + "PARENT_VIT_ENFAIL7", + "PARENT_VECU_ENFAIL7", + "DC_ENFAIL7", + "AG_DC_ENFAIL7", + "AG_ENFAIL7", + "AG_DEPART_ENFAIL7", + "PARENT_FREQ_ENFAIL7", + "FR_ENFAIL7", + "DEP_ENFAIL7", + "COM_ENFAIL7", + "PAY_ENFAIL7", + "LOG_ENFAIL7", + "AUT_PAR_ENFAIL7", + "DORT_ENFAIL7", + "SEP_AUT_PAR_ENFAIL7", + "RESID_ENFAIL7", + "SANTE_ENFAIL71", + "SANTE_ENFAIL72", + "SANTE_ENFAIL73", + "PRENOM_ENFAIL8", + "SEXE_ENFAIL8", + "ANAI_ENFAIL8", + "NEFRANCE_ENFAIL8", + "PARENT_VIT_ENFAIL8", + "PARENT_VECU_ENFAIL8", + "DC_ENFAIL8", + "AG_DC_ENFAIL8", + "AG_ENFAIL8", + "AG_DEPART_ENFAIL8", + "PARENT_FREQ_ENFAIL8", + "FR_ENFAIL8", + "DEP_ENFAIL8", + "COM_ENFAIL8", + "PAY_ENFAIL8", + "LOG_ENFAIL8", + "AUT_PAR_ENFAIL8", + "DORT_ENFAIL8", + "SEP_AUT_PAR_ENFAIL8", + "RESID_ENFAIL8", + "SANTE_ENFAIL81", + "SANTE_ENFAIL82", + "SANTE_ENFAIL83", + "PETIT_ENF", + "NB_PETIT_ENF", + "AG_PETIT_ENF", + "FREQ_VU_PETIT_ENF1", + "FREQ_VU_PETIT_ENF2", + "FREQ_VU_PETIT_ENF3", + "FREQ_VU_PETIT_ENF4", + "FREQ_CONT_PETIT_ENF1", + "FREQ_CONT_PETIT_ENF2", + "FREQ_CONT_PETIT_ENF3", + "FREQ_CONT_PETIT_ENF4", + "AIDE_APPORT1", + "AIDE_APPORT2", + "AIDE_APPORT3", + "AIDE_APPORT4", + "AIDE_APPORT5", + "QUI_AID_APP_11", + "QUI_AID_APP_12", + "QUI_AID_APP_13", + "QUI_AID_APP_14", + "QUI_AID_APP_21", + "QUI_AID_APP_22", + "QUI_AID_APP_23", + "QUI_AID_APP_24", + "QUI_AID_APP_31", + "QUI_AID_APP_32", + "QUI_AID_APP_33", + "QUI_AID_APP_34", + "QUI_AID_APP_41", + "QUI_AID_APP_42", + "QUI_AID_APP_43", + "QUI_AID_APP_44", + "AIDE_RECUE1", + "AIDE_RECUE2", + "AIDE_RECUE3", + "AIDE_RECUE4", + "QUI_AID_REC_11", + "QUI_AID_REC_12", + "QUI_AID_REC_13", + "QUI_AID_REC_14", + "QUI_AID_REC_21", + "QUI_AID_REC_22", + "QUI_AID_REC_23", + "QUI_AID_REC_24", + "QUI_AID_REC_31", + "QUI_AID_REC_32", + "QUI_AID_REC_33", + "QUI_AID_REC_34", + "LANGUE1_ENTOU", + "LANGUE2_ENTOU", + "PRENOM_PAR1", + "ANAI_PAR1", + "SEXE_PAR1", + "LIBSUJETPAR1", + "LIBSEXPAR1", + "NATIO_PAR1", + "TRAV_PAR1", + "PROF_PAR1_2", + "STATUT_PAR1", + "SAL_FP_PAR1", + "SAL_ENT_PAR1", + "LANGUE1_PAR1", + "LANGUE2_PAR1", + "VIV_PAR1", + "ANNEE_DC_PAR1", + "LOG_PAR1", + "FR_PAR1", + "DEP_PAR1", + "COM_PAR1", + "PAY_PAR1", + "ETAB_PAR1", + "FREQ_VU_PAR1", + "FREQ_CONT_PAR1", + "PROX_EGO_PAR1", + "PROX_FRAT_PAR1", + "EXIST_PAR2", + "PRENOM_PAR2", + "ANAI_PAR2", + "SEXE_PAR2", + "LIBSUJETPAR2", + "LIBSEXPAR2", + "NATIO_PAR2", + "TRAV_PAR2", + "PROF_PAR2_2", + "STATUT_PAR2", + "SAL_FP_PAR2", + "SAL_ENT_PAR2", + "LANGUE1_PAR2", + "LANGUE2_PAR2", + "VIV_PAR2", + "ANNEE_DC_PAR2", + "LOG_PAR2A1", + "LOG_PAR2A2", + "LOG_PAR2A3", + "LOG_PAR2B", + "FR_PAR2", + "DEP_PAR2", + "COM_PAR2", + "PAY_PAR2", + "ETAB_PAR2", + "FREQ_VU_PAR2", + "FREQ_CONT_PAR2", + "PROX_EGO_PAR2", + "PROX_FRAT_PAR2", + "NB_FRERES", + "NB_FRERES_VIV1", + "NB_FRERES_VIV", + "NB_SOEURS", + "NB_SOEURS_VIV1", + "NB_SOEURS_VIV", + "AG_DEP_PARENT", + "AGE", + "VECU_JEUNESSE1", + "VECU_JEUNESSE2", + "VECU_JEUNESSE3", + "VECU_JEUNESSE4", + "VECU_JEUNESSE5", + "VECU_JEUNESSE6", + "VECU_JEUNESSE7", + "VECU_PLACE", + "TYP_PLACE1", + "TYP_PLACE2", + "TYP_PLACE3", + "TYP_PLACE4", + "HEBERG", + "FINETU", + "ANNEE_FINETU", + "DEJATRAV", + "ANNEE_EMPLOI1", + "TRAVACT", + "ANNEE_FINEMP", + "INTER_TRAV1", + "INTER_TRAV2", + "INTER_TRAV3", + "PRENOM_PROX", + "AVIS_DIFF1", + "AVIS_DIFF8", + "AVIS_DIFF2", + "AVIS_DIFF3", + "AVIS_DIFF4", + "AVIS_DIFF5", + "AVIS_DIFF6", + "AVIS_DIFF7", + "PRECIS_VIECJT", + "PROF_CH1", + "PROF_CH2", + "PROF_CF1", + "PROF_CF2", + "PROF_PAR1H", + "PROF_PAR1F", + "PROF_PAR2H", + "PROF_PAR2F", + "PRENOM_FIN", + "AVIS_FILTRE", + "AVIS_FILTRE_P", + "AVIS_RMQ", + "AVIS_RAISON1", + "AVIS_RAISON2", + "AVIS_RAISON3", + "AVIS_RAISON4", + "AVIS_RAISON5", + "AVIS_RAISON6", + "AVIS_AR", + "AVIS_NOTICE", + "AVIS_RAIS_NOTICE", + "AVIS_SITE_NET", + "AVIS_RAIS_SITE", + "AVIS_MAIL", + "AVIS_SUPPORT1", + "AVIS_SUPPORT2", + "AVIS_SUPPORT3", + "AVIS_TEL", + "AVIS_QUEST", + "AVIS_AUTR_DIFF", + "AVIS_ORDRE", + "AVIS_ASSIST", + "AVIS_RMQ_FIN", + "AVIS_AUTR_RMQ" + ], + "loopDependencies": [ + "VAL_ANNAISS" + ], + "components": [ + { + "id": "kwq9l9z1", + "componentType": "Sequence", + "page": "2.1", + "label": { + "value": "\"II - \" || \"Informations concernant \" || PRENOMREP", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kwq9l9z1-l2sstox3", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Vous allez remplir le questionnaire de l’enquête Familles de \"|| nvl(PRENOMREP,\"cette personne\") || \".\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "true", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kwq9l9z1", + "page": "2.1", + "label": { + "value": "\"II - \" || \"Informations concernant \" || PRENOMREP", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "VAL_ANNAISS" + ] + }, + { + "id": "kwq9wijq", + "componentType": "Datepicker", + "mandatory": false, + "page": "2.2", + "min": "1900-01-01", + "max": "2006-01-01", + "label": { + "value": "\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", quelle est votre date de naissance ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(nvl(VAL_ANNAISS,\"\") = \"2\")", + "type": "VTL", + "bindingDependencies": [ + "VAL_ANNAISS" + ] + }, + "controls": [ + { + "id": "kwq9wijq-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(DATNAIS_X)) and (cast(DATNAIS_X, date, \"YYYY-MM-DD\")>cast(\"2006-01-01\", date, \"YYYY-MM-DD\") or cast(DATNAIS_X, date, \"YYYY-MM-DD\")\"4\" and not(isnull(COUPLE)))", + "type": "VTL", + "bindingDependencies": [ + "COUPLE" + ] + }, + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "COUPLE", + "VAL_ANNAISS" + ] + }, + { + "id": "l34grb6h", + "componentType": "Input", + "mandatory": false, + "page": "2.7", + "maxLength": 249, + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", quel est le prénom de votre \" || if (COUPLE=\"1\" or COUPLE =\"2\") then \"conjoint(e) actuel(le) ?\" else \"dernier(ère) conjoint(e) ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE)))", + "type": "VTL", + "bindingDependencies": [ + "COUPLE" + ] + }, + "controls": [ + { + "id": "l34grb6h-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PRENOM_C) or PRENOM_C=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer le prénom attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PRENOM_C" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "COUPLE", + "PRENOM_C", + "VAL_ANNAISS" + ], + "response": { + "name": "PRENOM_C" + } + }, + { + "id": "l154t9l0", + "componentType": "Subsequence", + "page": "2.8", + "goToPage": "2.8", + "label": { + "value": "\"Votre \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" conjoint(e) actuel(le) \" else \" dernier(ère) conjoint(e) \") || nvl(PRENOM_C,\"\")", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l154t9l0-l155z8f9", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Votre \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" conjoint(e) actuel(le) \" else \" dernier(ère) conjoint(e) \") || nvl(PRENOM_C,\"\")", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE)))", + "type": "VTL", + "bindingDependencies": [ + "COUPLE" + ] + }, + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l154t9l0", + "page": "2.8", + "label": { + "value": "\"Votre \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" conjoint(e) actuel(le) \" else \" dernier(ère) conjoint(e) \") || nvl(PRENOM_C,\"\")", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "COUPLE", + "PRENOM_C", + "VAL_ANNAISS" + ] + }, + { + "id": "kwqa0ism", + "componentType": "Datepicker", + "mandatory": false, + "page": "2.9", + "min": "1900-01-01", + "max": "2011-01-01", + "label": { + "value": "\"Quelle est la date de naissance de \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") then \"votre conjoint(e) actuel(le) \" else \"votre dernier(ère) conjoint(e) \") else PRENOM_C) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE)))", + "type": "VTL", + "bindingDependencies": [ + "COUPLE" + ] + }, + "controls": [ + { + "id": "kwqa0ism-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(DATNAIS_C)) and (cast(DATNAIS_C, date, \"YYYY-MM-DD\")>cast(\"2011-01-01\", date, \"YYYY-MM-DD\") or cast(DATNAIS_C, date, \"YYYY-MM-DD\")\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "TYPE_QUEST" + ] + }, + "controls": [ + { + "id": "kwqabjga-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEXE_CH) or SEXE_CH=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEXE_CH" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l154t9l0", + "page": "2.8", + "label": { + "value": "\"Votre \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" conjoint(e) actuel(le) \" else \" dernier(ère) conjoint(e) \") || nvl(PRENOM_C,\"\")", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_C", + "COUPLE", + "SEXE_CH", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Une femme", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Un homme", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEXE_CH" + } + }, + { + "id": "l4o59ei7", + "componentType": "Radio", + "mandatory": false, + "page": "2.11", + "label": { + "value": "\"\" || (if nvl(PRENOM_C,\"\") <> \"\" then PRENOM_C else (if ((COUPLE =\"1\" or COUPLE=\"2\") and (SEXE_CH=\"2\" or isnull(SEXE_CH))) then \"Votre conjoint \" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and SEXE_CH=\"1\") then \"Votre conjointe \" else (if (COUPLE=\"3\" and (SEXE_CH =\"2\" or isnull(SEXE_CH))) then \"Votre dernier conjoint \" else \"Votre dernière conjointe \")))) || \" est-\" || (if (SEXE_CH=\"2\" or isnull(SEXE_CH)) then \"il né en France ?\" else \"elle née en France ?\")", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4o59ei7-l4pa18h0", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Prenez en compte les frontières actuelles.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "TYPE_QUEST", + "PRENOM_C", + "RPPRENOMCONJ", + "RPANAISCONJ", + "ANNAISCJ", + "DATNAIS_C" + ] + }, + "controls": [ + { + "id": "l4o59ei7-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(LIEUNAIS_CH) or LIEUNAIS_CH=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "LIEUNAIS_CH" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l154t9l0", + "page": "2.8", + "label": { + "value": "\"Votre \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" conjoint(e) actuel(le) \" else \" dernier(ère) conjoint(e) \") || nvl(PRENOM_C,\"\")", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_C", + "COUPLE", + "SEXE_CH", + "LIEUNAIS_CH", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "LIEUNAIS_CH" + } + }, + { + "id": "l0quikkt", + "componentType": "Input", + "mandatory": false, + "page": "2.12", + "maxLength": 20, + "label": { + "value": "\"Quel est le département de naissance de \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") and (SEXE_CH=\"2\" or isnull(SEXE_CH)) then \"votre conjoint \" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and SEXE_CH=\"1\") then \"votre conjointe \" else (if (COUPLE=\"3\" and (SEXE_CH =\"2\" or isnull(SEXE_CH))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else PRENOM_C) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l0quikkt-l4o5rn9i", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CH =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "TYPE_QUEST", + "PRENOM_C", + "RPPRENOMCONJ", + "RPANAISCONJ", + "ANNAISCJ", + "DATNAIS_C", + "LIEUNAIS_CH" + ] + }, + "controls": [ + { + "id": "l0quikkt-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(DNAI_CH) or DNAI_CH=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "DNAI_CH" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l154t9l0", + "page": "2.8", + "label": { + "value": "\"Votre \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" conjoint(e) actuel(le) \" else \" dernier(ère) conjoint(e) \") || nvl(PRENOM_C,\"\")", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_C", + "COUPLE", + "SEXE_CH", + "DNAI_CH", + "VAL_ANNAISS" + ], + "response": { + "name": "DNAI_CH" + } + }, + { + "id": "l4o57595", + "componentType": "Input", + "mandatory": false, + "page": "2.13", + "maxLength": 20, + "label": { + "value": "\"Quel est le pays de naissance de \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") and (SEXE_CH=\"2\" or isnull(SEXE_CH)) then \"votre conjoint \" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and SEXE_CH=\"1\") then \"votre conjointe \" else (if (COUPLE=\"3\" and (SEXE_CH =\"2\" or isnull(SEXE_CH))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else PRENOM_C) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4o57595-l4o5lb2p", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CH =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "TYPE_QUEST", + "PRENOM_C", + "RPPRENOMCONJ", + "RPANAISCONJ", + "ANNAISCJ", + "DATNAIS_C", + "LIEUNAIS_CH" + ] + }, + "controls": [ + { + "id": "l4o57595-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PNAI_CH) or PNAI_CH=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PNAI_CH" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l154t9l0", + "page": "2.8", + "label": { + "value": "\"Votre \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" conjoint(e) actuel(le) \" else \" dernier(ère) conjoint(e) \") || nvl(PRENOM_C,\"\")", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_C", + "COUPLE", + "SEXE_CH", + "PNAI_CH", + "VAL_ANNAISS" + ], + "response": { + "name": "PNAI_CH" + } + }, + { + "id": "l7ywou64", + "componentType": "Radio", + "mandatory": false, + "page": "2.14", + "label": { + "value": "\"\" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") and (SEXE_CH=\"2\" or isnull(SEXE_CH)) then \"Votre conjoint \" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and SEXE_CH=\"1\") then \"Votre conjointe \" else (if (COUPLE=\"3\" and (SEXE_CH =\"2\" or isnull(SEXE_CH))) then \"Votre dernier conjoint \" else \"Votre dernière conjointe \"))) else PRENOM_C) || \" a-t-\" || (if (SEXE_CH=\"2\" or isnull(SEXE_CH)) then \"il \" else \"elle \") || \"déjà travaillé ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "TYPE_QUEST", + "PRENOM_C", + "RPPRENOMCONJ", + "RPANAISCONJ", + "ANNAISCJ", + "DATNAIS_C" + ] + }, + "controls": [ + { + "id": "l7ywou64-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(TRAV_CH) or TRAV_CH=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "TRAV_CH" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l154t9l0", + "page": "2.8", + "label": { + "value": "\"Votre \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" conjoint(e) actuel(le) \" else \" dernier(ère) conjoint(e) \") || nvl(PRENOM_C,\"\")", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_C", + "COUPLE", + "SEXE_CH", + "TRAV_CH", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "TRAV_CH" + } + }, + { + "id": "l0qudtd2", + "componentType": "Input", + "mandatory": false, + "page": "2.15", + "maxLength": 20, + "label": { + "value": "\"Quelle est la profession actuelle ou la dernière profession de \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") then \"votre conjoint\" else \"votre dernier conjoint\") else PRENOM_C) || \" s’il ne travaille pas ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l0qudtd2-l4o5bu87", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le libellé de profession recherché et sélectionnez le dans la liste.\" \"Si vous ne le trouvez pas, passez à la question suivante.\"", + "type": "VTL|MD" + } + }, + { + "id": "l0qudtd2-l7ykp7bx", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez bien la dernière profession connue.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (SEXE_CH = \"2\" or isnull(SEXE_CH))", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "TYPE_QUEST", + "PRENOM_C", + "RPPRENOMCONJ", + "RPANAISCONJ", + "ANNAISCJ", + "DATNAIS_C", + "TRAV_CH", + "SEXE_CH" + ] + }, + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l154t9l0", + "page": "2.8", + "label": { + "value": "\"Votre \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" conjoint(e) actuel(le) \" else \" dernier(ère) conjoint(e) \") || nvl(PRENOM_C,\"\")", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_C", + "COUPLE", + "PROF_CH1", + "VAL_ANNAISS" + ], + "response": { + "name": "PROF_CH1" + } + }, + { + "id": "lldp4562", + "componentType": "Input", + "mandatory": false, + "page": "2.16", + "maxLength": 20, + "label": { + "value": "\"Quelle est la profession actuelle ou la dernière profession de \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") then \"votre conjointe\" else \"votre dernière conjointe\") else PRENOM_C) || \" si elle ne travaille pas ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lldp4562-lldoqdme", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le libellé de profession recherché et sélectionnez le dans la liste.\" \"Si vous ne le trouvez pas, passez à la question suivante.\"", + "type": "VTL|MD" + } + }, + { + "id": "lldp4562-lldoyoi4", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez bien la dernière profession connue.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (SEXE_CH =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "TYPE_QUEST", + "PRENOM_C", + "RPPRENOMCONJ", + "RPANAISCONJ", + "ANNAISCJ", + "DATNAIS_C", + "TRAV_CH", + "SEXE_CH" + ] + }, + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l154t9l0", + "page": "2.8", + "label": { + "value": "\"Votre \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" conjoint(e) actuel(le) \" else \" dernier(ère) conjoint(e) \") || nvl(PRENOM_C,\"\")", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_C", + "COUPLE", + "PROF_CH2", + "VAL_ANNAISS" + ], + "response": { + "name": "PROF_CH2" + } + }, + { + "id": "l43zea6v", + "componentType": "Input", + "mandatory": false, + "page": "2.17", + "maxLength": 249, + "label": { + "value": "\"Vous n’avez pas trouvé le libellé de profession recherché dans la liste. Veuillez saisir le libellé de profession le plus précis et complet possible.\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (isnull(PROF_CH1) and isnull(PROF_CH2))", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "TYPE_QUEST", + "PRENOM_C", + "RPPRENOMCONJ", + "RPANAISCONJ", + "ANNAISCJ", + "DATNAIS_C", + "TRAV_CH", + "PROF_CH1", + "PROF_CH2" + ] + }, + "controls": [ + { + "id": "l43zea6v-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PROF_C2H) or PROF_C2H=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre réponse.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PROF_C2H" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l154t9l0", + "page": "2.8", + "label": { + "value": "\"Votre \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" conjoint(e) actuel(le) \" else \" dernier(ère) conjoint(e) \") || nvl(PRENOM_C,\"\")", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PROF_C2H", + "VAL_ANNAISS" + ], + "response": { + "name": "PROF_C2H" + } + }, + { + "id": "l0quphwx", + "componentType": "Radio", + "mandatory": false, + "page": "2.18", + "label": { + "value": "\"Quel est le statut professionnel (actuel ou dernier) de \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") and (SEXE_CH=\"2\" or isnull(SEXE_CH)) then \"votre conjoint \" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and SEXE_CH=\"1\") then \"votre conjointe \" else (if (COUPLE=\"3\" and (SEXE_CH =\"2\" or isnull(SEXE_CH))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else PRENOM_C) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH))", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "TYPE_QUEST", + "PRENOM_C", + "RPPRENOMCONJ", + "RPANAISCONJ", + "ANNAISCJ", + "DATNAIS_C", + "TRAV_CH" + ] + }, + "controls": [ + { + "id": "l0quphwx-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(STATUT_CH=\"\" or isnull(STATUT_CH))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "STATUT_CH" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l154t9l0", + "page": "2.8", + "label": { + "value": "\"Votre \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" conjoint(e) actuel(le) \" else \" dernier(ère) conjoint(e) \") || nvl(PRENOM_C,\"\")", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_C", + "COUPLE", + "SEXE_CH", + "LIBSEXCJH", + "STATUT_CH", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"A son compte (y compris gérant\" || LIBSEXCJH || \" de société salarié\" || LIBSEXCJH || \")\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Salarié\" || LIBSEXCJH || \" de la fonction publique (Etat, territoriale, hospitalière)\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Salarié\" || LIBSEXCJH || \" d’une entreprise (y compris d’une association ou de la sécurité sociale)\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\"Salarié\" || LIBSEXCJH || \" d’un particulier\"", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\"Aide familial\" || LIBSEXCJH || \" non rémunéré\" || LIBSEXCJH", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "STATUT_CH" + } + }, + { + "id": "llgt315z", + "componentType": "Radio", + "mandatory": false, + "page": "2.19", + "label": { + "value": "\"Dans son emploi, \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") and (SEXE_CH=\"2\" or isnull(SEXE_CH)) then \"votre conjoint \" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and SEXE_CH=\"1\") then \"votre conjointe \" else (if (COUPLE=\"3\" and (SEXE_CH =\"2\" or isnull(SEXE_CH))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else PRENOM_C) || \" est ou était ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (STATUT_CH =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "TYPE_QUEST", + "PRENOM_C", + "RPPRENOMCONJ", + "RPANAISCONJ", + "ANNAISCJ", + "DATNAIS_C", + "TRAV_CH", + "STATUT_CH" + ] + }, + "controls": [ + { + "id": "llgt315z-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SAL_FP_CH) or SAL_FP_CH=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SAL_FP_CH" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l154t9l0", + "page": "2.8", + "label": { + "value": "\"Votre \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" conjoint(e) actuel(le) \" else \" dernier(ère) conjoint(e) \") || nvl(PRENOM_C,\"\")", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_C", + "COUPLE", + "SEXE_CH", + "LIBSEXCJH", + "SAL_FP_CH", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Manœuvre, ouvri\" || if (SEXE_CH=\"2\" or isnull(SEXE_CH)) then \"er\" else \"ère\" || \" spécialisé\" || LIBSEXCJH", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Ouvri\" || if (SEXE_CH=\"2\" or isnull(SEXE_CH)) then \"er\" else \"ère\" || \" qualifié\" || LIBSEXCJH", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Technici\" || if (SEXE_CH=\"1\" or isnull(SEXE_CH)) then \"en\" else \"enne\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\"Agent\" || LIBSEXCJH || \" de catégorie C de la fonction publique\"", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\"Agent\" || LIBSEXCJH || \" de catégorie B de la fonction publique\"", + "type": "VTL|MD" + } + }, + { + "value": "6", + "label": { + "value": "\"Agent\" || LIBSEXCJH || \" de catégorie A de la fonction publique\"", + "type": "VTL|MD" + } + }, + { + "value": "7", + "label": { + "value": "\"Dans une autre situation, je ne sais pas\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SAL_FP_CH" + } + }, + { + "id": "llgt75zv", + "componentType": "Radio", + "mandatory": false, + "page": "2.20", + "label": { + "value": "\"Dans son emploi, \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") and (SEXE_CH=\"2\" or isnull(SEXE_CH)) then \"votre conjoint \" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and SEXE_CH=\"1\") then \"votre conjointe \" else (if (COUPLE=\"3\" and (SEXE_CH =\"2\" or isnull(SEXE_CH))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else PRENOM_C) || \" est ou était ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (STATUT_CH =\"3\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "TYPE_QUEST", + "PRENOM_C", + "RPPRENOMCONJ", + "RPANAISCONJ", + "ANNAISCJ", + "DATNAIS_C", + "TRAV_CH", + "STATUT_CH" + ] + }, + "controls": [ + { + "id": "llgt75zv-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SAL_ENT_CH) or SAL_ENT_CH=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SAL_ENT_CH" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l154t9l0", + "page": "2.8", + "label": { + "value": "\"Votre \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" conjoint(e) actuel(le) \" else \" dernier(ère) conjoint(e) \") || nvl(PRENOM_C,\"\")", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_C", + "COUPLE", + "SEXE_CH", + "LIBSEXCJH", + "SAL_ENT_CH", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Manœuvre, ouvri\" || if (SEXE_CH=\"2\" or isnull(SEXE_CH)) then \"er\" else \"ère\" || \" spécialisé\" || LIBSEXCJH", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Ouvri\" || if (SEXE_CH=\"2\" or isnull(SEXE_CH)) then \"er\" else \"ère\" || \" qualifié\" || LIBSEXCJH || \", technici\" || if (SEXE_CH=\"2\" or isnull(SEXE_CH)) then \"en\" else \"enne\" || \" d’atelier\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Employé\" || LIBSEXCJH || \" de bureau, de commerce, de services\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\"Agent de maîtrise (y compris administrative ou commerciale)\"", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\"Technici\" || if (SEXE_CH=\"2\" or isnull(SEXE_CH)) then \"en\" else \"enne\"", + "type": "VTL|MD" + } + }, + { + "value": "6", + "label": { + "value": "\"Ingénieur\" || LIBSEXCJH || \", cadre d’entreprise\"", + "type": "VTL|MD" + } + }, + { + "value": "7", + "label": { + "value": "\"Dans une autre situation, je ne sais pas\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SAL_ENT_CH" + } + }, + { + "id": "llde3pgg", + "componentType": "Radio", + "mandatory": false, + "page": "2.21", + "label": { + "value": "\"\" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") then \"Votre conjoint(e) est-il/elle ?\" else \"Votre dernier(ère) conjoint(e) est-il/elle ? \") else (PRENOM_C || \" est-il/elle ?\"))", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "TYPE_QUEST" + ] + }, + "controls": [ + { + "id": "llde3pgg-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEXE_CF) or SEXE_CF=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEXE_CF" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l154t9l0", + "page": "2.8", + "label": { + "value": "\"Votre \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" conjoint(e) actuel(le) \" else \" dernier(ère) conjoint(e) \") || nvl(PRENOM_C,\"\")", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_C", + "COUPLE", + "SEXE_CF", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Un homme", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Une femme", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEXE_CF" + } + }, + { + "id": "lldpi629", + "componentType": "Radio", + "mandatory": false, + "page": "2.22", + "label": { + "value": "\"\" || (if nvl(PRENOM_C,\"\") <> \"\" then PRENOM_C else (if ((COUPLE =\"1\" or COUPLE=\"2\") and (SEXE_CF=\"1\" or isnull(SEXE_CF))) then \"Votre conjoint \" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and SEXE_CF=\"2\") then \"Votre conjointe \" else (if (COUPLE=\"3\" and (SEXE_CF =\"1\" or isnull(SEXE_CF))) then \"Votre dernier conjoint \" else \"Votre dernière conjointe \")))) || \" est-\" || (if (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"il né en France ?\" else \"elle née en France ?\")", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lldpi629-lldp0f22", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Prenez en compte les frontières actuelles.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "TYPE_QUEST", + "PRENOM_C", + "RPPRENOMCONJ", + "RPANAISCONJ", + "ANNAISCJ", + "DATNAIS_C" + ] + }, + "controls": [ + { + "id": "lldpi629-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(LIEUNAIS_CF) or LIEUNAIS_CF=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "LIEUNAIS_CF" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l154t9l0", + "page": "2.8", + "label": { + "value": "\"Votre \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" conjoint(e) actuel(le) \" else \" dernier(ère) conjoint(e) \") || nvl(PRENOM_C,\"\")", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_C", + "COUPLE", + "SEXE_CF", + "LIEUNAIS_CF", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "LIEUNAIS_CF" + } + }, + { + "id": "lldp8203", + "componentType": "Input", + "mandatory": false, + "page": "2.23", + "maxLength": 20, + "label": { + "value": "\"Quel est le département de naissance de \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") and (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"votre conjoint \" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and SEXE_CF=\"2\") then \"votre conjointe \" else (if (COUPLE=\"3\" and (SEXE_CF =\"1\" or isnull(SEXE_CF))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else PRENOM_C) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lldp8203-lldpcfe1", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CF =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "TYPE_QUEST", + "PRENOM_C", + "RPPRENOMCONJ", + "RPANAISCONJ", + "ANNAISCJ", + "DATNAIS_C", + "LIEUNAIS_CF" + ] + }, + "controls": [ + { + "id": "lldp8203-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(DNAI_CF) or DNAI_CF=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "DNAI_CF" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l154t9l0", + "page": "2.8", + "label": { + "value": "\"Votre \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" conjoint(e) actuel(le) \" else \" dernier(ère) conjoint(e) \") || nvl(PRENOM_C,\"\")", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_C", + "COUPLE", + "SEXE_CF", + "DNAI_CF", + "VAL_ANNAISS" + ], + "response": { + "name": "DNAI_CF" + } + }, + { + "id": "lldpejfa", + "componentType": "Input", + "mandatory": false, + "page": "2.24", + "maxLength": 20, + "label": { + "value": "\"Quel est le pays de naissance de \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") and (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"votre conjoint \" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and SEXE_CF=\"2\") then \"votre conjointe \" else (if (COUPLE=\"3\" and (SEXE_CF =\"1\" or isnull(SEXE_CF))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else PRENOM_C) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lldpejfa-lldp3of6", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CF =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "TYPE_QUEST", + "PRENOM_C", + "RPPRENOMCONJ", + "RPANAISCONJ", + "ANNAISCJ", + "DATNAIS_C", + "LIEUNAIS_CF" + ] + }, + "controls": [ + { + "id": "lldpejfa-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PNAI_CF) or PNAI_CF=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PNAI_CF" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l154t9l0", + "page": "2.8", + "label": { + "value": "\"Votre \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" conjoint(e) actuel(le) \" else \" dernier(ère) conjoint(e) \") || nvl(PRENOM_C,\"\")", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_C", + "COUPLE", + "SEXE_CF", + "PNAI_CF", + "VAL_ANNAISS" + ], + "response": { + "name": "PNAI_CF" + } + }, + { + "id": "lldqco3p", + "componentType": "Radio", + "mandatory": false, + "page": "2.25", + "label": { + "value": "\"\" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") and (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"Votre conjoint \" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and SEXE_CF=\"2\") then \"Votre conjointe \" else (if (COUPLE=\"3\" and (SEXE_CF =\"1\" or isnull(SEXE_CF))) then \"Votre dernier conjoint \" else \"Votre dernière conjointe \"))) else PRENOM_C) || \" a-t-\" || (if (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"il \" else \"elle \") || \"déjà travaillé ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "TYPE_QUEST", + "PRENOM_C", + "RPPRENOMCONJ", + "RPANAISCONJ", + "ANNAISCJ", + "DATNAIS_C" + ] + }, + "controls": [ + { + "id": "lldqco3p-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(TRAV_CF) or TRAV_CF=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "TRAV_CF" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l154t9l0", + "page": "2.8", + "label": { + "value": "\"Votre \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" conjoint(e) actuel(le) \" else \" dernier(ère) conjoint(e) \") || nvl(PRENOM_C,\"\")", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_C", + "COUPLE", + "SEXE_CF", + "TRAV_CF", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "TRAV_CF" + } + }, + { + "id": "l4quaxvt", + "componentType": "Input", + "mandatory": false, + "page": "2.26", + "maxLength": 20, + "label": { + "value": "\"Quelle est la profession actuelle ou la dernière profession de \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") then \"votre conjoint\" else \"votre dernier conjoint\") else PRENOM_C) || \" s’il ne travaille pas ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4quaxvt-l4qu3r4l", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le libellé de profession recherché et sélectionnez le dans la liste.\" \"Si vous ne le trouvez pas, passez à la question suivante.\"", + "type": "VTL|MD" + } + }, + { + "id": "l4quaxvt-l7yku2q0", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez bien la dernière profession connue.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (SEXE_CF = \"1\" or isnull(SEXE_CF))", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "TYPE_QUEST", + "PRENOM_C", + "RPPRENOMCONJ", + "RPANAISCONJ", + "ANNAISCJ", + "DATNAIS_C", + "TRAV_CF", + "SEXE_CF" + ] + }, + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l154t9l0", + "page": "2.8", + "label": { + "value": "\"Votre \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" conjoint(e) actuel(le) \" else \" dernier(ère) conjoint(e) \") || nvl(PRENOM_C,\"\")", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_C", + "COUPLE", + "PROF_CF1", + "VAL_ANNAISS" + ], + "response": { + "name": "PROF_CF1" + } + }, + { + "id": "lldpqtrp", + "componentType": "Input", + "mandatory": false, + "page": "2.27", + "maxLength": 20, + "label": { + "value": "\"Quelle est la profession actuelle ou la dernière profession de \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") then \"votre conjointe\" else \"votre dernière conjointe\") else PRENOM_C) || \" si elle ne travaille pas ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lldpqtrp-lldp9mst", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le libellé de profession recherché et sélectionnez le dans la liste.\" \"Si vous ne le trouvez pas, passez à la question suivante.\"", + "type": "VTL|MD" + } + }, + { + "id": "lldpqtrp-lldpdl3w", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez bien la dernière profession connue.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (SEXE_CF = \"2\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "TYPE_QUEST", + "PRENOM_C", + "RPPRENOMCONJ", + "RPANAISCONJ", + "ANNAISCJ", + "DATNAIS_C", + "TRAV_CF", + "SEXE_CF" + ] + }, + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l154t9l0", + "page": "2.8", + "label": { + "value": "\"Votre \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" conjoint(e) actuel(le) \" else \" dernier(ère) conjoint(e) \") || nvl(PRENOM_C,\"\")", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_C", + "COUPLE", + "PROF_CF2", + "VAL_ANNAISS" + ], + "response": { + "name": "PROF_CF2" + } + }, + { + "id": "lldqd2sd", + "componentType": "Input", + "mandatory": false, + "page": "2.28", + "maxLength": 249, + "label": { + "value": "\"Vous n’avez pas trouvé le libellé de profession recherché dans la liste. Veuillez saisir le libellé de profession le plus précis et complet possible.\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (isnull(PROF_CF1) and isnull(PROF_CF2))", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "TYPE_QUEST", + "PRENOM_C", + "RPPRENOMCONJ", + "RPANAISCONJ", + "ANNAISCJ", + "DATNAIS_C", + "TRAV_CF", + "PROF_CF1", + "PROF_CF2" + ] + }, + "controls": [ + { + "id": "lldqd2sd-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PROF_C2F) or PROF_C2F=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre réponse.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PROF_C2F" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l154t9l0", + "page": "2.8", + "label": { + "value": "\"Votre \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" conjoint(e) actuel(le) \" else \" dernier(ère) conjoint(e) \") || nvl(PRENOM_C,\"\")", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PROF_C2F", + "VAL_ANNAISS" + ], + "response": { + "name": "PROF_C2F" + } + }, + { + "id": "llmhdvun", + "componentType": "Radio", + "mandatory": false, + "page": "2.29", + "label": { + "value": "\"Quel est le statut professionnel (actuel ou dernier) de \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") and (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"votre conjoint \" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and SEXE_CF=\"2\") then \"votre conjointe \" else (if (COUPLE=\"3\" and (SEXE_CF =\"1\" or isnull(SEXE_CF))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else PRENOM_C) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF))", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "TYPE_QUEST", + "PRENOM_C", + "RPPRENOMCONJ", + "RPANAISCONJ", + "ANNAISCJ", + "DATNAIS_C", + "TRAV_CF" + ] + }, + "controls": [ + { + "id": "llmhdvun-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(STATUT_CF) or STATUT_CF=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "STATUT_CF" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l154t9l0", + "page": "2.8", + "label": { + "value": "\"Votre \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" conjoint(e) actuel(le) \" else \" dernier(ère) conjoint(e) \") || nvl(PRENOM_C,\"\")", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_C", + "COUPLE", + "SEXE_CF", + "LIBSEXCJF", + "STATUT_CF", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"A son compte (y compris gérant\" || LIBSEXCJF || \" de société salarié\" || LIBSEXCJF || \")\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Salarié\" || LIBSEXCJF || \" de la fonction publique (Etat, territoriale, hospitalière)\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Salarié\" || LIBSEXCJF || \" d’une entreprise (y compris d’une association ou de la sécurité sociale)\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\"Salarié\" || LIBSEXCJF || \" d’un particulier\"", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\"Aide familial\" || LIBSEXCJF || \" non rémunéré\" || LIBSEXCJF", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "STATUT_CF" + } + }, + { + "id": "llmhi6fd", + "componentType": "Radio", + "mandatory": false, + "page": "2.30", + "label": { + "value": "\"Dans son emploi, \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") and (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"votre conjoint \" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and SEXE_CF=\"2\") then \"votre conjointe \" else (if (COUPLE=\"3\" and (SEXE_CF =\"1\" or isnull(SEXE_CF))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else PRENOM_C) || \" est ou était ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (STATUT_CF =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "TYPE_QUEST", + "PRENOM_C", + "RPPRENOMCONJ", + "RPANAISCONJ", + "ANNAISCJ", + "DATNAIS_C", + "TRAV_CF", + "STATUT_CF" + ] + }, + "controls": [ + { + "id": "llmhi6fd-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SAL_FP_CF) or SAL_FP_CF=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SAL_FP_CF" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l154t9l0", + "page": "2.8", + "label": { + "value": "\"Votre \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" conjoint(e) actuel(le) \" else \" dernier(ère) conjoint(e) \") || nvl(PRENOM_C,\"\")", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_C", + "COUPLE", + "SEXE_CF", + "LIBSEXCJF", + "SAL_FP_CF", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Manœuvre, ouvri\" || if (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"er\" else \"ère\" || \" spécialisé\" || LIBSEXCJF", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Ouvri\" || if (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"er\" else \"ère\" || \" qualifié\" || LIBSEXCJF", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Technici\" || if (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"en\" else \"enne\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\"Agent\" || LIBSEXCJF || \" de catégorie C de la fonction publique\"", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\"Agent\" || LIBSEXCJF || \" de catégorie B de la fonction publique\"", + "type": "VTL|MD" + } + }, + { + "value": "6", + "label": { + "value": "\"Agent\" || LIBSEXCJF || \" de catégorie A de la fonction publique\"", + "type": "VTL|MD" + } + }, + { + "value": "7", + "label": { + "value": "\"Dans une autre situation, je ne sais pas\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SAL_FP_CF" + } + }, + { + "id": "llnh2qpm", + "componentType": "Radio", + "mandatory": false, + "page": "2.31", + "label": { + "value": "\"Dans son emploi, \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") and (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"votre conjoint \" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and SEXE_CF=\"2\") then \"votre conjointe \" else (if (COUPLE=\"3\" and (SEXE_CF =\"1\" or isnull(SEXE_CF))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else PRENOM_C) || \" est ou était ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (STATUT_CF =\"3\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "TYPE_QUEST", + "PRENOM_C", + "RPPRENOMCONJ", + "RPANAISCONJ", + "ANNAISCJ", + "DATNAIS_C", + "TRAV_CF", + "STATUT_CF" + ] + }, + "controls": [ + { + "id": "llnh2qpm-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SAL_ENT_CF) or SAL_ENT_CF=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SAL_ENT_CF" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l154t9l0", + "page": "2.8", + "label": { + "value": "\"Votre \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" conjoint(e) actuel(le) \" else \" dernier(ère) conjoint(e) \") || nvl(PRENOM_C,\"\")", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_C", + "COUPLE", + "SEXE_CF", + "LIBSEXCJF", + "SAL_ENT_CF", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Manœuvre, ouvri\" || if (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"er\" else \"ère\" || \" spécialisé\" || LIBSEXCJF", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Ouvri\" || if (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"er\" else \"ère\" || \" qualifié\" || LIBSEXCJF || \", technici\" || if (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"en\" else \"enne\" || \" d’atelier\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Employé\" || LIBSEXCJF || \" de bureau, de commerce, de services\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\"Agent de maîtrise (y compris administrative ou commerciale)\"", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\"Technici\" || if (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"en\" else \"enne\"", + "type": "VTL|MD" + } + }, + { + "value": "6", + "label": { + "value": "\"Ingénieur\" || LIBSEXCJF || \", cadre d’entreprise\"", + "type": "VTL|MD" + } + }, + { + "value": "7", + "label": { + "value": "\"Dans une autre situation, je ne sais pas\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SAL_ENT_CF" + } + }, + { + "id": "l27f5twb", + "componentType": "Subsequence", + "page": "2.32", + "goToPage": "2.32", + "label": { + "value": "Les étapes de votre vie en couple", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l27f5twb-l27ezxol", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", nous allons maintenant décrire les étapes de votre \" || if (COUPLE=\"1\" or COUPLE =\"2\") then \" vie en couple actuelle.\" else \" dernière période de vie en couple.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE)))", + "type": "VTL", + "bindingDependencies": [ + "COUPLE" + ] + }, + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l27f5twb", + "page": "2.32", + "label": { + "value": "Les étapes de votre vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "COUPLE", + "VAL_ANNAISS" + ] + }, + { + "id": "l27dlmvl", + "componentType": "Input", + "mandatory": false, + "page": "2.33", + "maxLength": 4, + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", en quelle année vous êtes-vous mis\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" en couple avec \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") and ((SEXE_CH=\"2\" and isnull(SEXE_CF)) or (SEXE_CF=\"1\" and isnull(SEXE_CH)) or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \"votre conjoint \" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and ((SEXE_CF =\"2\" and isnull(SEXE_CH)) or (SEXE_CH = \"1\" and isnull(SEXE_CF)))) then \"votre conjointe \" else (if (COUPLE=\"3\") and ((SEXE_CH=\"2\" and isnull(SEXE_CF)) or (SEXE_CF=\"1\" and isnull(SEXE_CH)) or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else PRENOM_C) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE)))", + "type": "VTL", + "bindingDependencies": [ + "COUPLE" + ] + }, + "controls": [ + { + "id": "l27dlmvl-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ANNEE_U) or ANNEE_U=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’année attendue.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_U" + ] + }, + { + "id": "l27dlmvl-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_U)) and not(isnull(ANAIS)) and cast(ANNEE_U,integer) < cast(ANAIS,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de mise en couple ne peut pas être antérieure à votre année de naissance.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_U", + "ANAIS" + ] + }, + { + "id": "l27dlmvl-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_U)) and not(isnull(ANAIS)) and (cast(ANAIS,integer) + 15 > cast(ANNEE_U,integer)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Il semble y avoir peu d’écart entre votre année de naissance et celle de votre mise en couple, est-ce que vous confirmez ?\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_U", + "ANAIS" + ] + }, + { + "id": "l27dlmvl-CI-3", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(ANNEE_U,integer) < 1920 or cast(ANNEE_U,integer) > 2024)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de mise en couple est comprise entre 1920 et 2024.\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_U" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l27f5twb", + "page": "2.32", + "label": { + "value": "Les étapes de votre vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "TYPE_QUEST", + "PRENOM_C", + "COUPLE", + "SEXE_CH", + "SEXE_CF", + "ANNEE_U", + "VAL_ANNAISS" + ], + "response": { + "name": "ANNEE_U" + } + }, + { + "id": "kwqa4zjf", + "componentType": "Radio", + "mandatory": false, + "page": "2.34", + "label": { + "value": "\"Vous \" || (if (COUPLE=\"3\") then \"étiez\" else \"êtes\") || \"-vous pacsé\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" avec \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") and ((SEXE_CH=\"2\" and isnull(SEXE_CF)) or (SEXE_CF=\"1\" and isnull(SEXE_CH)) or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \"votre conjoint \" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and ((SEXE_CF =\"2\" and isnull(SEXE_CH)) or (SEXE_CH = \"1\" and isnull(SEXE_CF)))) then \"votre conjointe \" else (if (COUPLE=\"3\") and ((SEXE_CH=\"2\" and isnull(SEXE_CF)) or (SEXE_CF=\"1\" and isnull(SEXE_CH)) or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else PRENOM_C) || \" ? \"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kwqa4zjf-l157fqi8", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"(même si vous vous êtes marié\" || (if ((nvl(SEXE_CF,\"\")=\"\") and (nvl(SEXE_CH,\"\")=\"\")) then \"s)\" else (if (SEXE_CF =\"2\" and isnull(SEXE_CH)) then \"es)\" else \"s)\"))", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE)))", + "type": "VTL", + "bindingDependencies": [ + "COUPLE" + ] + }, + "controls": [ + { + "id": "kwqa4zjf-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PACS) or PACS=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PACS" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l27f5twb", + "page": "2.32", + "label": { + "value": "Les étapes de votre vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "SEXE_CF", + "SEXE_CH", + "COUPLE", + "TYPE_QUEST", + "PRENOM_C", + "PACS", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PACS" + } + }, + { + "id": "l0qu7e2g", + "componentType": "Input", + "mandatory": false, + "page": "2.35", + "maxLength": 4, + "label": { + "value": "\"En quelle année vous \" || (if (COUPLE=\"3\") then \"étiez\" else \"êtes\") || \"-vous pacsé\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" avec \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") and ((SEXE_CH=\"2\" and isnull(SEXE_CF)) or (SEXE_CF=\"1\" and isnull(SEXE_CH)) or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \"votre conjoint \" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and ((SEXE_CF =\"2\" and isnull(SEXE_CH)) or (SEXE_CH = \"1\" and isnull(SEXE_CF)))) then \"votre conjointe \" else (if (COUPLE=\"3\") and ((SEXE_CH=\"2\" and isnull(SEXE_CF)) or (SEXE_CF=\"1\" and isnull(SEXE_CH))or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else PRENOM_C) || \" ? \"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (PACS =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "PACS" + ] + }, + "controls": [ + { + "id": "l0qu7e2g-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ANNEE_PACS) or ANNEE_PACS=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’année attendue.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_PACS" + ] + }, + { + "id": "l0qu7e2g-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_PACS)) and not(isnull(ANNEE_U)) and cast(ANNEE_PACS,integer) < cast(ANNEE_U,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année du pacs ne peut pas être antérieure à l’année de mise en couple.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_PACS", + "ANNEE_U" + ] + }, + { + "id": "l0qu7e2g-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_PACS)) and not(isnull(ANAIS)) and cast(ANNEE_PACS,integer) < cast(ANAIS,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année du pacs ne peut pas être antérieure à votre année de naissance.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_PACS", + "ANAIS" + ] + }, + { + "id": "l0qu7e2g-CI-3", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_PACS)) and not(isnull(ANAIS)) and (cast(ANAIS,integer) + 15 > cast(ANNEE_PACS,integer)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Il semble y avoir peu d’écart entre votre année de naissance et celle de votre pacs, est-ce que vous confirmez ?\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_PACS", + "ANAIS" + ] + }, + { + "id": "l0qu7e2g-CI-4", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(ANNEE_PACS,integer) < 1999 or cast(ANNEE_PACS,integer) > 2024)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année du pacs est comprise entre 1999 et 2024.\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_PACS" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l27f5twb", + "page": "2.32", + "label": { + "value": "Les étapes de votre vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "COUPLE", + "TYPE_QUEST", + "PRENOM_C", + "SEXE_CH", + "SEXE_CF", + "ANNEE_PACS", + "VAL_ANNAISS" + ], + "response": { + "name": "ANNEE_PACS" + } + }, + { + "id": "l0qujqzn", + "componentType": "Radio", + "mandatory": false, + "page": "2.36", + "label": { + "value": "\"Vous \" || (if (COUPLE=\"3\") then \"étiez\" else \"êtes\") || \"-vous marié\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" avec \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") and ((SEXE_CH=\"2\" and isnull(SEXE_CF)) or (SEXE_CF=\"1\" and isnull(SEXE_CH)) or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \"votre conjoint \" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and ((SEXE_CF =\"2\" and isnull(SEXE_CH)) or (SEXE_CH = \"1\" and isnull(SEXE_CF)))) then \"votre conjointe \" else (if (COUPLE=\"3\") and ((SEXE_CH=\"2\" and isnull(SEXE_CF)) or (SEXE_CF=\"1\" and isnull(SEXE_CH)) or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else PRENOM_C) || \" ? \"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE)))", + "type": "VTL", + "bindingDependencies": [ + "COUPLE" + ] + }, + "controls": [ + { + "id": "l0qujqzn-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(MARI) or MARI=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "MARI" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l27f5twb", + "page": "2.32", + "label": { + "value": "Les étapes de votre vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "COUPLE", + "TYPE_QUEST", + "PRENOM_C", + "SEXE_CH", + "SEXE_CF", + "MARI", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "MARI" + } + }, + { + "id": "l0qul94p", + "componentType": "Input", + "mandatory": false, + "page": "2.37", + "maxLength": 4, + "label": { + "value": "\"En quelle année vous \" || (if (COUPLE=\"3\") then \"étiez\" else \"êtes\") || \"-vous marié\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" avec \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") and ((SEXE_CH=\"2\" and isnull(SEXE_CF)) or (SEXE_CF=\"1\" and isnull(SEXE_CH))or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \"votre conjoint \" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and ((SEXE_CF =\"2\" and isnull(SEXE_CH)) or (SEXE_CH = \"1\" and isnull(SEXE_CF)))) then \"votre conjointe \" else (if (COUPLE=\"3\") and ((SEXE_CH=\"2\" and isnull(SEXE_CF)) or (SEXE_CF=\"1\" and isnull(SEXE_CH))or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else PRENOM_C) || \" ? \"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (MARI =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "MARI" + ] + }, + "controls": [ + { + "id": "l0qul94p-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ANNEE_MARI) or ANNEE_MARI =\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’année attendue.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_MARI" + ] + }, + { + "id": "l0qul94p-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_MARI)) and not(isnull(ANNEE_U)) and cast(ANNEE_MARI,integer) < cast(ANNEE_U,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année du mariage ne peut pas être antérieure à l’année de mise en couple.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_MARI", + "ANNEE_U" + ] + }, + { + "id": "l0qul94p-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_MARI)) and not(isnull(ANNEE_PACS)) and ANNEE_MARI < ANNEE_PACS)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année du mariage ne peut pas être antérieure à l’année du pacs.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_MARI", + "ANNEE_PACS" + ] + }, + { + "id": "l0qul94p-CI-3", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_MARI)) and not(isnull(ANAIS)) and cast(ANNEE_MARI,integer) < cast(ANAIS,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année du mariage ne peut pas être antérieure à votre année de naissance.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_MARI", + "ANAIS" + ] + }, + { + "id": "l0qul94p-CI-4", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_MARI)) and not(isnull(ANAIS)) and (cast(ANAIS,integer) + 15 > cast(ANNEE_MARI,integer)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Il semble y avoir peu d’écart entre votre date de naissance et celle de votre mariage, est-ce que vous confirmez ?\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_MARI", + "ANAIS" + ] + }, + { + "id": "l0qul94p-CI-5", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(ANNEE_MARI,integer) < 1920 or cast(ANNEE_MARI,integer) > 2024)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année du mariage est comprise entre 1920 et 2024.\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_MARI" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l27f5twb", + "page": "2.32", + "label": { + "value": "Les étapes de votre vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "COUPLE", + "TYPE_QUEST", + "PRENOM_C", + "SEXE_CH", + "SEXE_CF", + "ANNEE_MARI", + "VAL_ANNAISS" + ], + "response": { + "name": "ANNEE_MARI" + } + }, + { + "id": "l5kszr2f", + "componentType": "Radio", + "mandatory": false, + "page": "2.38", + "label": { + "value": "\"Si vous n’êtes plus en couple, est-ce parce que \"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (COUPLE =\"3\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE" + ] + }, + "controls": [ + { + "id": "l5kszr2f-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEPARE) or SEPARE=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEPARE" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l27f5twb", + "page": "2.32", + "label": { + "value": "Les étapes de votre vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TYPE_QUEST", + "PRENOM_C", + "SEXE_CH", + "SEXE_CF", + "SEPARE", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"vous vous êtes séparé\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" de \" || (if (isnull(PRENOM_C)) then (if (SEXE_CH=\"2\" and isnull(SEXE_CF)) or (SEXE_CF=\"1\" and isnull(SEXE_CH)) or (isnull(SEXE_CH) and isnull(SEXE_CF)) then \"votre dernier conjoint \" else \"votre dernière conjointe \") else PRENOM_C) || \" ? \"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"\" || (if(isnull(PRENOM_C)) then (if ((SEXE_CH=\"2\" or isnull(SEXE_CH)) and (SEXE_CF=\"1\" or isnull(SEXE_CF)) or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \"votre dernier conjoint\" else \"votre dernière conjointe\") else PRENOM_C) || \" est décédé\" || (if (((nvl(SEXE_CF,\"\")=\"\") and (nvl(SEXE_CH,\"\")=\"\")) or (SEXE_CF =\"1\" and isnull(SEXE_CH)) or (SEXE_CH = \"2\" and isnull(SEXE_CF))) then \" ?\" else \"e ?\")", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEPARE" + } + }, + { + "id": "l27dzhpw", + "componentType": "Input", + "mandatory": false, + "page": "2.39", + "maxLength": 4, + "label": { + "value": "\"En quelle année vous êtes-vous séparé\" ||(if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" de \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (SEXE_CH=\"2\" and isnull(SEXE_CF)) or (SEXE_CF=\"1\" and isnull(SEXE_CH)) or (isnull(SEXE_CH) and isnull(SEXE_CF)) then \"votre dernier conjoint \" else \"votre dernière conjointe \") else PRENOM_C) || \" ? \"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (COUPLE =\"3\") and (SEPARE =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "SEPARE" + ] + }, + "controls": [ + { + "id": "l27dzhpw-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ANNEE_S) or ANNEE_S=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’année attendue.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_S" + ] + }, + { + "id": "l27dzhpw-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_S)) and not(isnull(ANNEE_U)) and cast(ANNEE_S,integer) < cast(ANNEE_U,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de la séparation ne peut pas être antérieure à l’année de mise en couple.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_S", + "ANNEE_U" + ] + }, + { + "id": "l27dzhpw-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_S)) and not(isnull(ANAIS)) and cast(ANNEE_S,integer) < cast(ANAIS,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de la séparation ne peut pas être antérieure à votre année de naissance.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_S", + "ANAIS" + ] + }, + { + "id": "l27dzhpw-CI-3", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(ANNEE_S,integer) < 1920 or cast(ANNEE_S,integer) > 2024)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de la séparation est comprise entre 1920 et 2024.\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_S" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l27f5twb", + "page": "2.32", + "label": { + "value": "Les étapes de votre vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TYPE_QUEST", + "PRENOM_C", + "SEXE_CH", + "SEXE_CF", + "ANNEE_S", + "VAL_ANNAISS" + ], + "response": { + "name": "ANNEE_S" + } + }, + { + "id": "l155mqhc", + "componentType": "Input", + "mandatory": false, + "page": "2.40", + "maxLength": 4, + "label": { + "value": "\"En quelle année \" || (if(nvl(PRENOM_C,\"\")=\"\") then (if ((SEXE_CH=\"2\" or isnull(SEXE_CH)) and (SEXE_CF=\"1\" or isnull(SEXE_CF)) or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \"votre dernier conjoint \" else \"votre dernière conjointe \") else PRENOM_C) || \" est-\" || (if (((nvl(SEXE_CF,\"\")=\"\") and (nvl(SEXE_CH,\"\")=\"\")) or (SEXE_CF =\"1\" and isnull(SEXE_CH)) or (SEXE_CH = \"2\" and isnull(SEXE_CF))or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \"il\" else \"elle\") || \" décédé\" || (if (((nvl(SEXE_CF,\"\")=\"\") and (nvl(SEXE_CH,\"\")=\"\")) or (SEXE_CF =\"1\" and isnull(SEXE_CH)) or (SEXE_CH = \"2\" and isnull(SEXE_CF))or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \" ?\" else \"e ?\")", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (COUPLE =\"3\") and (SEPARE =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "SEPARE" + ] + }, + "controls": [ + { + "id": "l155mqhc-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ANNEE_D) or ANNEE_D=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’année attendue.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_D" + ] + }, + { + "id": "l155mqhc-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_D)) and not(isnull(ANNEE_U)) and cast(ANNEE_D,integer) < cast(ANNEE_U,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année du décès de votre conjoint(e) ne peut pas être antérieure à l’année de mise en couple.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_D", + "ANNEE_U" + ] + }, + { + "id": "l155mqhc-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_D)) and not(isnull(ANAIS)) and cast(ANNEE_D,integer) < cast(ANAIS,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année du décès de votre conjoint(e) ne peut pas être antérieure à votre année de naissance.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_D", + "ANAIS" + ] + }, + { + "id": "l155mqhc-CI-3", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(ANNEE_D,integer) < 1920 or cast(ANNEE_D,integer) > 2024)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année du décès de votre conjoint(e) est comprise entre 1920 et 2024.\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_D" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l27f5twb", + "page": "2.32", + "label": { + "value": "Les étapes de votre vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_C", + "SEXE_CH", + "SEXE_CF", + "ANNEE_D", + "VAL_ANNAISS" + ], + "response": { + "name": "ANNEE_D" + } + }, + { + "id": "ljmotpyk", + "componentType": "Subsequence", + "goToPage": "2.41", + "label": { + "value": "Les enfants de votre couple", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE)))", + "type": "VTL", + "bindingDependencies": [ + "COUPLE" + ] + }, + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmotpyk", + "page": "2.41", + "label": { + "value": "Les enfants de votre couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "VAL_ANNAISS" + ] + }, + { + "id": "l43u9qqf", + "componentType": "Radio", + "mandatory": false, + "page": "2.41", + "label": { + "value": "\"Avant d’être en couple avec vous, \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") and ((SEXE_CH=\"2\" or isnull(SEXE_CH)) and (SEXE_CF=\"1\" or isnull(SEXE_CF))or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \"votre conjoint \" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and ((SEXE_CF =\"2\" and isnull(SEXE_CH)) or (SEXE_CH = \"1\" and isnull(SEXE_CF)))) then \"votre conjointe \" else (if (COUPLE=\"3\" and ((SEXE_CH=\"2\" or isnull(SEXE_CH)) and (SEXE_CF=\"1\" or isnull(SEXE_CF))or (isnull(SEXE_CH) and isnull(SEXE_CF)))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else PRENOM_C) || \" avait-\" || (if (((nvl(SEXE_CF,\"\")=\"\") and (nvl(SEXE_CH,\"\")=\"\")) or (SEXE_CF =\"1\" and isnull(SEXE_CH)) or (SEXE_CH = \"2\" and isnull(SEXE_CF))or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \"il déjà des enfants ?\" else \"elle déjà des enfants ?\")", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE)))", + "type": "VTL", + "bindingDependencies": [ + "COUPLE" + ] + }, + "controls": [ + { + "id": "l43u9qqf-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ENFAV_C) or ENFAV_C=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ENFAV_C" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmotpyk", + "page": "2.41", + "label": { + "value": "Les enfants de votre couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_C", + "COUPLE", + "SEXE_CH", + "SEXE_CF", + "ENFAV_C", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "ENFAV_C" + } + }, + { + "id": "l43u4x96", + "componentType": "InputNumber", + "mandatory": false, + "page": "2.42", + "min": 1, + "max": 20, + "decimals": 0, + "label": { + "value": "\"Combien d’enfants avait-\" || (if (((nvl(SEXE_CF,\"\")=\"\") and (nvl(SEXE_CH,\"\")=\"\")) or (SEXE_CF =\"1\" and isnull(SEXE_CH)) or (SEXE_CH = \"2\" and isnull(SEXE_CF))) then \"il ?\" else \"elle ?\")", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (ENFAV_C=\"1\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "ENFAV_C" + ] + }, + "controls": [ + { + "id": "l43u4x96-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(NBENFAV_C)) and (1>NBENFAV_C or 20NBENFAV_C)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "l43u4x96-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NBENFAV_C) or NBENFAV_C=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre réponse.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NBENFAV_C" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmotpyk", + "page": "2.41", + "label": { + "value": "Les enfants de votre couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "SEXE_CF", + "SEXE_CH", + "NBENFAV_C", + "VAL_ANNAISS" + ], + "response": { + "name": "NBENFAV_C" + } + }, + { + "id": "l5jnmvs2", + "componentType": "Radio", + "mandatory": false, + "page": "2.43", + "label": { + "value": "\"Cet enfant vit-il ou a-t-il vécu avec vous ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (ENFAV_C=\"1\") and (NBENFAV_C=1)", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "ENFAV_C", + "NBENFAV_C" + ] + }, + "controls": [ + { + "id": "l5jnmvs2-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NBENFAV_VENU_C1) or NBENFAV_VENU_C1 =\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NBENFAV_VENU_C1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmotpyk", + "page": "2.41", + "label": { + "value": "Les enfants de votre couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "NBENFAV_VENU_C1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "NBENFAV_VENU_C1" + } + }, + { + "id": "l43why6c", + "componentType": "InputNumber", + "mandatory": false, + "page": "2.44", + "min": 0, + "max": 20, + "decimals": 0, + "label": { + "value": "\"Combien vivent ou ont vécu avec vous ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l43why6c-liiz5sj3", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Si aucun, notez 0.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (ENFAV_C=\"1\") and (NBENFAV_C >1 or isnull(NBENFAV_C))", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "ENFAV_C", + "NBENFAV_C" + ] + }, + "controls": [ + { + "id": "l43why6c-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(NBENFAV_VENU_C)) and (0>NBENFAV_VENU_C or 20NBENFAV_VENU_C)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "l43why6c-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NBENFAV_VENU_C) or NBENFAV_VENU_C=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre réponse.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NBENFAV_VENU_C" + ] + }, + { + "id": "l43why6c-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(nvl(NBENFAV_VENU_C,0) > nvl(NBENFAV_C,0))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre d’enfants venus vivre avec vous ne peut pas être supérieur au nombre total d’enfants.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NBENFAV_VENU_C", + "NBENFAV_C" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmotpyk", + "page": "2.41", + "label": { + "value": "Les enfants de votre couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "NBENFAV_VENU_C", + "VAL_ANNAISS" + ], + "response": { + "name": "NBENFAV_VENU_C" + } + }, + { + "id": "l8lz0355", + "componentType": "Radio", + "mandatory": false, + "page": "2.45", + "label": { + "value": "\"Avez-vous déjà vécu avec \" || (if (nvl(PRENOM_C,\"\")=\"\") then (((if ((SEXE_CH=\"2\" or isnull(SEXE_CH)) and (SEXE_CF=\"1\" or isnull(SEXE_CF)) or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \"votre dernier conjoint\" else \"votre dernière conjointe\"))) else PRENOM_C) || \", dans le même logement ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (COUPLE =\"3\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE" + ] + }, + "controls": [ + { + "id": "l8lz0355-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(VECU_C) or VECU_C=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "VECU_C" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmotpyk", + "page": "2.41", + "label": { + "value": "Les enfants de votre couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_C", + "SEXE_CH", + "SEXE_CF", + "VECU_C", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "VECU_C" + } + }, + { + "id": "l43xg8do", + "componentType": "CheckboxGroup", + "page": "2.46", + "label": { + "value": "\"\" || (if (nvl(PRENOM_C,\"\")=\"\") then (((if ((SEXE_CH=\"2\" or isnull(SEXE_CH)) and (SEXE_CF=\"1\" or isnull(SEXE_CF)) or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \"Votre conjoint\" else \"Votre conjointe\"))) else PRENOM_C) || \" a-t-\" || (if ((SEXE_CH=\"2\" or isnull(SEXE_CH)) and (SEXE_CF=\"1\" or isnull(SEXE_CF))or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \"il\" else \"elle\") || \" des enfants de moins de 21 ans qui vivent avec leur autre parent ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l43xg8do-l484uyl9", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles s’il y a plusieurs enfants.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and ((COUPLE=\"1\" or COUPLE=\"2\") and ENFAV_C=\"1\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "ENFAV_C" + ] + }, + "controls": [ + { + "id": "l43xg8do-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(ENF21_AUTPAR_C1, false) = false and nvl(ENF21_AUTPAR_C2, false) = false and nvl(ENF21_AUTPAR_C3, false) = false and nvl(ENF21_AUTPAR_C4, false) = false))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix\".", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ENF21_AUTPAR_C1", + "ENF21_AUTPAR_C2", + "ENF21_AUTPAR_C3", + "ENF21_AUTPAR_C4" + ] + }, + { + "id": "l43xg8do-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not((nvl(ENF21_AUTPAR_C1, false) and nvl(ENF21_AUTPAR_C2, false)) or (nvl(ENF21_AUTPAR_C1, false) and nvl(ENF21_AUTPAR_C3, false)) or (nvl(ENF21_AUTPAR_C1, false) and nvl(ENF21_AUTPAR_C4, false)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Vous ne pouvez pas cocher Non et une autre réponse.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ENF21_AUTPAR_C1", + "ENF21_AUTPAR_C2", + "ENF21_AUTPAR_C3", + "ENF21_AUTPAR_C4" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmotpyk", + "page": "2.41", + "label": { + "value": "Les enfants de votre couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_C", + "SEXE_CH", + "SEXE_CF", + "ENF21_AUTPAR_C1", + "ENF21_AUTPAR_C2", + "ENF21_AUTPAR_C3", + "ENF21_AUTPAR_C4", + "VAL_ANNAISS" + ], + "responses": [ + { + "id": "l43xg8do-QOP-lnbudt2m", + "label": { + "value": "\"Non, aucun\"", + "type": "VTL|MD" + }, + "response": { + "name": "ENF21_AUTPAR_C1" + } + }, + { + "id": "l43xg8do-QOP-lnbuglr5", + "label": { + "value": "\"Oui, tout le temps\"", + "type": "VTL|MD" + }, + "response": { + "name": "ENF21_AUTPAR_C2" + } + }, + { + "id": "l43xg8do-QOP-lnbuhhca", + "label": { + "value": "\"Oui, au moins la moitié du temps\"", + "type": "VTL|MD" + }, + "response": { + "name": "ENF21_AUTPAR_C3" + } + }, + { + "id": "l43xg8do-QOP-lnbuk0ua", + "label": { + "value": "\"Oui, moins de la moitié du temps\"", + "type": "VTL|MD" + }, + "response": { + "name": "ENF21_AUTPAR_C4" + } + } + ] + }, + { + "id": "l15131wu", + "componentType": "Radio", + "mandatory": false, + "page": "2.47", + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", avez-vous eu d’autres périodes de vie en couple auparavant, pendant au moins six mois sous le même toit, avec ou sans mariage ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE)))", + "type": "VTL", + "bindingDependencies": [ + "COUPLE" + ] + }, + "controls": [ + { + "id": "l15131wu-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(AUT_UNION) or AUT_UNION=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AUT_UNION" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmotpyk", + "page": "2.41", + "label": { + "value": "Les enfants de votre couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "AUT_UNION", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "AUT_UNION" + } + }, + { + "id": "l43x1amr", + "componentType": "InputNumber", + "mandatory": false, + "page": "2.48", + "min": 1, + "max": 20, + "decimals": 0, + "label": { + "value": "\"Combien de périodes de vie en couple auparavant, pendant au moins six mois sous le même toit, avec ou sans mariage ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (AUT_UNION = \"1\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "AUT_UNION" + ] + }, + "controls": [ + { + "id": "l43x1amr-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(NB_AUT_UNION)) and (1>NB_AUT_UNION or 20NB_AUT_UNION)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "l43x1amr-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NB_AUT_UNION) or NB_AUT_UNION=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre réponse.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NB_AUT_UNION" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqaaqd3", + "page": "2.6", + "label": { + "value": "\"III - \" || \"VOTRE \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n’êtes plus en couple \")", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmotpyk", + "page": "2.41", + "label": { + "value": "Les enfants de votre couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "NB_AUT_UNION", + "VAL_ANNAISS" + ], + "response": { + "name": "NB_AUT_UNION" + } + }, + { + "id": "lldr8qge", + "componentType": "Sequence", + "page": "2.49", + "label": { + "value": "\"IV - \" || \"VOS PRECEDENTES PERIODES DE VIE EN COUPLE\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lldr8qge-lldrbrp9", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Nous allons maintenant décrire vos précédentes périodes de vie en couple.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\"))", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "AUT_UNION" + ] + }, + "hierarchy": { + "sequence": { + "id": "lldr8qge", + "page": "2.49", + "label": { + "value": "\"IV - \" || \"VOS PRECEDENTES PERIODES DE VIE EN COUPLE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "VAL_ANNAISS" + ] + }, + { + "id": "l15553ya", + "componentType": "Subsequence", + "page": "2.50", + "goToPage": "2.50", + "label": { + "value": "Votre première période de vie en couple", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l15553ya-l34i4s3k", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", nous allons maintenant décrire les étapes de votre première période de vie en couple (pendant au moins six mois sous le même toit, avec ou sans mariage).\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "AUT_UNION" + ] + }, + "hierarchy": { + "sequence": { + "id": "lldr8qge", + "page": "2.49", + "label": { + "value": "\"IV - \" || \"VOS PRECEDENTES PERIODES DE VIE EN COUPLE\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l15553ya", + "page": "2.50", + "label": { + "value": "Votre première période de vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "VAL_ANNAISS" + ] + }, + { + "id": "kwqa53jx", + "componentType": "Input", + "mandatory": false, + "page": "2.51", + "maxLength": 249, + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", quel est le prénom de votre premier(ère) conjoint(e) ? \"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "AUT_UNION" + ] + }, + "controls": [ + { + "id": "kwqa53jx-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PRENOM_U1) or PRENOM_U1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer le prénom attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PRENOM_U1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lldr8qge", + "page": "2.49", + "label": { + "value": "\"IV - \" || \"VOS PRECEDENTES PERIODES DE VIE EN COUPLE\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l15553ya", + "page": "2.50", + "label": { + "value": "Votre première période de vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "PRENOM_U1", + "VAL_ANNAISS" + ], + "response": { + "name": "PRENOM_U1" + } + }, + { + "id": "l4p8skko", + "componentType": "Radio", + "mandatory": false, + "page": "2.52", + "label": { + "value": "\"\" || (if (nvl(PRENOM_U1,\"\")=\"\") then (\"Votre premier(ère) conjoint(e) est-il/elle ? \") else (PRENOM_U1 || \" est-il/elle ?\"))", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\") and (TYPE_QUEST =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "AUT_UNION", + "TYPE_QUEST" + ] + }, + "controls": [ + { + "id": "l4p8skko-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEXE_U1H) or SEXE_U1H=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEXE_U1H" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lldr8qge", + "page": "2.49", + "label": { + "value": "\"IV - \" || \"VOS PRECEDENTES PERIODES DE VIE EN COUPLE\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l15553ya", + "page": "2.50", + "label": { + "value": "Votre première période de vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_U1", + "SEXE_U1H", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Une femme", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Un homme", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEXE_U1H" + } + }, + { + "id": "lldenssh", + "componentType": "Radio", + "mandatory": false, + "page": "2.53", + "label": { + "value": "\"\" || (if (nvl(PRENOM_U1,\"\")=\"\") then (\"Votre premier(ère) conjoint(e) est-il/elle ? \") else (PRENOM_U1 || \" est-il/elle ?\"))", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\") and (TYPE_QUEST =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "AUT_UNION", + "TYPE_QUEST" + ] + }, + "controls": [ + { + "id": "lldenssh-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEXE_U1F) or SEXE_U1F=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEXE_U1F" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lldr8qge", + "page": "2.49", + "label": { + "value": "\"IV - \" || \"VOS PRECEDENTES PERIODES DE VIE EN COUPLE\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l15553ya", + "page": "2.50", + "label": { + "value": "Votre première période de vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_U1", + "SEXE_U1F", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Un homme", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Une femme", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEXE_U1F" + } + }, + { + "id": "l34fzu5m", + "componentType": "Input", + "mandatory": false, + "page": "2.54", + "maxLength": 4, + "label": { + "value": "\"En quelle année vous étiez-vous mis\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" en couple avec \" || (if(nvl(PRENOM_U1,\"\")=\"\") then (if ((SEXE_U1H=\"2\" or isnull(SEXE_U1H)) and (SEXE_U1F=\"1\" or isnull(SEXE_U1F)) or (isnull(SEXE_U1H) and isnull(SEXE_U1F))) then \"votre premier conjoint \" else \"votre première conjointe \") else PRENOM_U1) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "AUT_UNION" + ] + }, + "controls": [ + { + "id": "l34fzu5m-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ANNEE_U1) or ANNEE_U1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’année attendue.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_U1" + ] + }, + { + "id": "l34fzu5m-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_U1)) and not(isnull(ANNEE_U)) and cast(ANNEE_U1,integer) > cast(ANNEE_U,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de première mise en couple ne peut pas être postérieure à l’année de mise en couple.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_U1", + "ANNEE_U" + ] + }, + { + "id": "l34fzu5m-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_U1)) and not(isnull(ANAIS)) and cast(ANNEE_U1,integer) < cast(ANAIS,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de première mise en couple ne peut pas être antérieure à votre année de naissance.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_U1", + "ANAIS" + ] + }, + { + "id": "l34fzu5m-CI-3", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_U1)) and not(isnull(ANAIS)) and (cast(ANAIS,integer) + 15 > cast(ANNEE_U1,integer)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Il semble y avoir peu d’écart entre votre année de naissance et celle de votre première mise en couple, est-ce que vous confirmez ?\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_U1", + "ANAIS" + ] + }, + { + "id": "l34fzu5m-CI-4", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(ANNEE_U1,integer) < 1920 or cast(ANNEE_U1,integer) > 2023)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de première mise en couple est comprise entre 1920 et 2023.\" \r\n\r\n", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_U1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lldr8qge", + "page": "2.49", + "label": { + "value": "\"IV - \" || \"VOS PRECEDENTES PERIODES DE VIE EN COUPLE\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l15553ya", + "page": "2.50", + "label": { + "value": "Votre première période de vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TYPE_QUEST", + "PRENOM_U1", + "SEXE_U1H", + "SEXE_U1F", + "ANNEE_U1", + "VAL_ANNAISS" + ], + "response": { + "name": "ANNEE_U1" + } + }, + { + "id": "l27dlnmq", + "componentType": "Radio", + "mandatory": false, + "page": "2.55", + "label": { + "value": "\"Vous étiez-vous pacsé\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" avec \" || (if(nvl(PRENOM_U1,\"\")=\"\") then (if ((SEXE_U1H=\"2\" or isnull(SEXE_U1H)) and (SEXE_U1F=\"1\" or isnull(SEXE_U1F)) or (isnull(SEXE_U1H) and isnull(SEXE_U1F))) then \"votre premier conjoint \" else \"votre première conjointe \") else PRENOM_U1) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l27dlnmq-l27e0i68", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"(même si vous vous êtes marié\" || (if ((nvl(SEXE_U1F,\"\")=\"\") and (nvl(SEXE_U1H,\"\")=\"\")) then \"s)\" else (if (SEXE_U1F =\"2\" and isnull(SEXE_U1H)) then \"es)\" else \"s)\"))", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "AUT_UNION" + ] + }, + "controls": [ + { + "id": "l27dlnmq-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PACS_U1) or PACS_U1 =\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PACS_U1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lldr8qge", + "page": "2.49", + "label": { + "value": "\"IV - \" || \"VOS PRECEDENTES PERIODES DE VIE EN COUPLE\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l15553ya", + "page": "2.50", + "label": { + "value": "Votre première période de vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "SEXE_U1F", + "SEXE_U1H", + "TYPE_QUEST", + "PRENOM_U1", + "PACS_U1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PACS_U1" + } + }, + { + "id": "l27dns8a", + "componentType": "Input", + "mandatory": false, + "page": "2.56", + "maxLength": 4, + "label": { + "value": "\"En quelle année vous étiez-vous pacsé\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" avec \" || (if(nvl(PRENOM_U1,\"\")=\"\") then (if ((SEXE_U1H=\"2\" or isnull(SEXE_U1H)) and (SEXE_U1F=\"1\" or isnull(SEXE_U1F)) or (isnull(SEXE_U1H) and isnull(SEXE_U1F))) then \"votre premier conjoint \" else \"votre première conjointe \") else PRENOM_U1) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\") and (PACS_U1 =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "AUT_UNION", + "PACS_U1" + ] + }, + "controls": [ + { + "id": "l27dns8a-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ANNEE_PACS_U1) or ANNEE_PACS_U1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’année attendue.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_PACS_U1" + ] + }, + { + "id": "l27dns8a-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_U1)) and not(isnull(ANNEE_PACS_U1)) and cast(ANNEE_PACS_U1,integer) < cast(ANNEE_U1,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année du premier pacs ne peut pas être antérieure à l’année de première mise en couple.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_U1", + "ANNEE_PACS_U1" + ] + }, + { + "id": "l27dns8a-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_PACS_U1)) and not(isnull(ANAIS)) and cast(ANNEE_PACS_U1,integer) < cast(ANAIS,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année du premier pacs ne peut pas être antérieure à votre année de naissance.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_PACS_U1", + "ANAIS" + ] + }, + { + "id": "l27dns8a-CI-3", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_PACS_U1)) and not(isnull(ANAIS)) and (cast(ANAIS,integer) + 15 > cast(ANNEE_PACS_U1,integer)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Il semble y avoir peu d’écart entre votre année de naissance et celle de votre premier pacs, est-ce que vous confirmez ?\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_PACS_U1", + "ANAIS" + ] + }, + { + "id": "l27dns8a-CI-4", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_PACS)) and not(isnull(ANNEE_PACS_U1)) and cast(ANNEE_PACS_U1,integer) >= cast(ANNEE_PACS,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année du premier pacs ne peut pas être postérieure à l’année du pacs.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_PACS", + "ANNEE_PACS_U1" + ] + }, + { + "id": "l27dns8a-CI-5", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(ANNEE_PACS_U1,integer) < 1999 or cast(ANNEE_PACS_U1,integer) > 2023)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année du premier pacs est comprise entre 1999 et 2023.\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_PACS_U1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lldr8qge", + "page": "2.49", + "label": { + "value": "\"IV - \" || \"VOS PRECEDENTES PERIODES DE VIE EN COUPLE\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l15553ya", + "page": "2.50", + "label": { + "value": "Votre première période de vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TYPE_QUEST", + "PRENOM_U1", + "SEXE_U1H", + "SEXE_U1F", + "ANNEE_PACS_U1", + "VAL_ANNAISS" + ], + "response": { + "name": "ANNEE_PACS_U1" + } + }, + { + "id": "l27duust", + "componentType": "Radio", + "mandatory": false, + "page": "2.57", + "label": { + "value": "\"Vous étiez-vous marié\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" avec \" || (if(nvl(PRENOM_U1,\"\")=\"\") then (if ((SEXE_U1H=\"2\" or isnull(SEXE_U1H)) and (SEXE_U1F=\"1\" or isnull(SEXE_U1F)) or (isnull(SEXE_U1H) and isnull(SEXE_U1F))) then \"votre premier conjoint \" else \"votre première conjointe \") else PRENOM_U1) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "AUT_UNION" + ] + }, + "controls": [ + { + "id": "l27duust-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(MARI_U1) or MARI_U1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "MARI_U1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lldr8qge", + "page": "2.49", + "label": { + "value": "\"IV - \" || \"VOS PRECEDENTES PERIODES DE VIE EN COUPLE\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l15553ya", + "page": "2.50", + "label": { + "value": "Votre première période de vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TYPE_QUEST", + "PRENOM_U1", + "SEXE_U1H", + "SEXE_U1F", + "MARI_U1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "MARI_U1" + } + }, + { + "id": "l27e50tv", + "componentType": "Input", + "mandatory": false, + "page": "2.58", + "maxLength": 4, + "label": { + "value": "\"En quelle année vous étiez-vous marié\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" avec \" || (if(nvl(PRENOM_U1,\"\")=\"\") then (if ((SEXE_U1H=\"2\" or isnull(SEXE_U1H)) and (SEXE_U1F=\"1\" or isnull(SEXE_U1F)) or (isnull(SEXE_U1H) and isnull(SEXE_U1F))) then \"votre premier conjoint \" else \"votre première conjointe \") else PRENOM_U1) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\") and (MARI_U1 =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "AUT_UNION", + "MARI_U1" + ] + }, + "controls": [ + { + "id": "l27e50tv-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ANNEE_MARI_U1) or ANNEE_MARI_U1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’année attendue.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_MARI_U1" + ] + }, + { + "id": "l27e50tv-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_MARI_U1)) and not(isnull(ANNEE_U1)) and cast(ANNEE_MARI_U1,integer) < cast(ANNEE_U1,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année du premier mariage ne peut pas être antérieure à l’année de première mise en couple.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_MARI_U1", + "ANNEE_U1" + ] + }, + { + "id": "l27e50tv-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_MARI_U1)) and not(isnull(ANNEE_PACS_U1)) and cast(ANNEE_MARI_U1,integer) < cast(ANNEE_PACS_U1,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année du premier mariage ne peut pas être antérieure à l’année du premier pacs.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_MARI_U1", + "ANNEE_PACS_U1" + ] + }, + { + "id": "l27e50tv-CI-3", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_MARI_U1)) and not(isnull(ANAIS)) and cast(ANNEE_MARI_U1,integer) < cast(ANAIS,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année du premier mariage ne peut pas être antérieure à votre année de naissance.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_MARI_U1", + "ANAIS" + ] + }, + { + "id": "l27e50tv-CI-4", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_MARI_U1)) not(isnull(ANAIS)) and (cast((ANAIS,integer) + 15 > cast(ANNEE_MARI_U1,integer)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Il semble y avoir peu d’écart entre votre année de naissance et celle de votre premier mariage, est-ce que vous confirmez ?\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_MARI_U1", + "ANAIS" + ] + }, + { + "id": "l27e50tv-CI-5", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_MARI_U1)) and not(isnull(ANNEE_MARI)) and cast(ANNEE_MARI_U1,integer) >= cast(ANNEE_MARI,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année du premier mariage ne peut pas être postérieure à l’année du mariage.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_MARI_U1", + "ANNEE_MARI" + ] + }, + { + "id": "l27e50tv-CI-6", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(ANNEE_MARI_U1,integer) < 1920 or cast(ANNEE_MARI_U1,integer) > 2023)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année du premier mariage est comprise entre 1920 et 2023.\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_MARI_U1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lldr8qge", + "page": "2.49", + "label": { + "value": "\"IV - \" || \"VOS PRECEDENTES PERIODES DE VIE EN COUPLE\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l15553ya", + "page": "2.50", + "label": { + "value": "Votre première période de vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TYPE_QUEST", + "PRENOM_U1", + "SEXE_U1H", + "SEXE_U1F", + "ANNEE_MARI_U1", + "VAL_ANNAISS" + ], + "response": { + "name": "ANNEE_MARI_U1" + } + }, + { + "id": "l5ktf1wn", + "componentType": "Radio", + "mandatory": false, + "page": "2.59", + "label": { + "value": "\"Cette période de vie en couple s’est-elle achevée parce que \"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "AUT_UNION" + ] + }, + "controls": [ + { + "id": "l5ktf1wn-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEPARE_U1) or SEPARE_U1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEPARE_U1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lldr8qge", + "page": "2.49", + "label": { + "value": "\"IV - \" || \"VOS PRECEDENTES PERIODES DE VIE EN COUPLE\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l15553ya", + "page": "2.50", + "label": { + "value": "Votre première période de vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TYPE_QUEST", + "PRENOM_U1", + "SEXE_U1H", + "SEXE_U1F", + "SEPARE_U1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"vous vous êtes séparé\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" de \" || (if (isnull(PRENOM_U1)) then (if (SEXE_U1H=\"2\" and isnull(SEXE_U1F)) or (SEXE_U1F=\"1\" and isnull(SEXE_U1H)) or (isnull(SEXE_U1H) and isnull(SEXE_U1F)) then \"votre premier conjoint \" else \"votre première conjointe \") else PRENOM_U1) || \" ? \"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"\" || (if(isnull(PRENOM_U1)) then (if ((SEXE_U1H=\"2\" or isnull(SEXE_U1H)) and (SEXE_U1F=\"1\" or isnull(SEXE_U1F)) or (isnull(SEXE_U1H) and isnull(SEXE_U1F))) then \"votre premier conjoint\" else \"votre première conjointe\") else PRENOM_U1) || \" est décédé\" || (if (((nvl(SEXE_U1F,\"\")=\"\") and (nvl(SEXE_U1H,\"\")=\"\")) or (SEXE_U1F =\"1\" and isnull(SEXE_U1H)) or (SEXE_U1H = \"2\" and isnull(SEXE_U1F))) then \" ?\" else \"e ?\")", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEPARE_U1" + } + }, + { + "id": "l27dzhzv", + "componentType": "Input", + "mandatory": false, + "page": "2.60", + "maxLength": 4, + "label": { + "value": "\"En quelle année vous êtes-vous séparé\" ||(if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" de \" || (if (nvl(PRENOM_U1,\"\")=\"\") then (if (SEXE_U1H=\"2\" and isnull(SEXE_U1F)) or (SEXE_U1F=\"1\" and isnull(SEXE_U1H)) or (isnull(SEXE_U1H) and isnull(SEXE_U1F)) then \"votre premier conjoint \" else \"votre première conjointe \") else PRENOM_U1) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\") and (SEPARE_U1 =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "AUT_UNION", + "SEPARE_U1" + ] + }, + "controls": [ + { + "id": "l27dzhzv-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ANNEE_S_U1) or ANNEE_S_U1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’année attendue.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_S_U1" + ] + }, + { + "id": "l27dzhzv-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_S_U1)) and not(isnull(ANNEE_U1)) and cast(ANNEE_S_U1,integer) < cast(ANNEE_U1,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de la première séparation ne peut pas être antérieure à l’année de première mise en couple.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_S_U1", + "ANNEE_U1" + ] + }, + { + "id": "l27dzhzv-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_S_U1)) and not(isnull(ANAIS)) and cast(ANNEE_S_U1,integer) < cast(ANAIS,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de votre première séparation ne peut pas être antérieure à votre année de naissance.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_S_U1", + "ANAIS" + ] + }, + { + "id": "l27dzhzv-CI-3", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(ANNEE_S_U1,integer) < 1920 or cast(ANNEE_S_U1,integer) > 2023)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de première séparation est comprise entre 1920 et 2023.\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_S_U1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lldr8qge", + "page": "2.49", + "label": { + "value": "\"IV - \" || \"VOS PRECEDENTES PERIODES DE VIE EN COUPLE\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l15553ya", + "page": "2.50", + "label": { + "value": "Votre première période de vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TYPE_QUEST", + "PRENOM_U1", + "SEXE_U1H", + "SEXE_U1F", + "ANNEE_S_U1", + "VAL_ANNAISS" + ], + "response": { + "name": "ANNEE_S_U1" + } + }, + { + "id": "l27e0qyq", + "componentType": "Input", + "mandatory": false, + "page": "2.61", + "maxLength": 4, + "label": { + "value": "\"En quelle année \" || (if(nvl(PRENOM_U1,\"\")=\"\") then (if ((SEXE_U1H=\"2\" or isnull(SEXE_U1H)) and (SEXE_U1F=\"1\" or isnull(SEXE_U1F)) or (isnull(SEXE_U1H) and isnull(SEXE_U1F))) then \"votre premier conjoint \" else \"votre première conjointe \") else PRENOM_U1) || \" est-\" || (if (((nvl(SEXE_U1F,\"\")=\"\") and (nvl(SEXE_U1H,\"\")=\"\")) or (SEXE_U1F =\"1\" and isnull(SEXE_U1H)) or (SEXE_U1H = \"2\" and isnull(SEXE_U1F)) or (isnull(SEXE_U1H) and isnull(SEXE_U1F))) then \"il décédé ?\" else \"elle décédée ?\")", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\") and (SEPARE_U1 =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "AUT_UNION", + "SEPARE_U1" + ] + }, + "controls": [ + { + "id": "l27e0qyq-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ANNEE_D_U1) or ANNEE_D_U1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’année attendue.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_D_U1" + ] + }, + { + "id": "l27e0qyq-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_D_U1)) and not(isnull(ANNEE_U1)) and cast(ANNEE_D_U1,integer) < cast(ANNEE_U1,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année du décès de votre premier(ère) conjoint(e) ne peut pas être antérieure à l’année de votre première mise en couple.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_D_U1", + "ANNEE_U1" + ] + }, + { + "id": "l27e0qyq-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_D_U1)) and not(isnull(ANAIS)) and ANNEE_D_U1 < ANAIS)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année du décès de votre premier(ère) conjoint(e) ne peut pas être antérieure à votre année de naissance.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_D_U1", + "ANAIS" + ] + }, + { + "id": "l27e0qyq-CI-3", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(ANNEE_D_U1,integer) < 1920 or cast(ANNEE_D_U1,integer) > 2024)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de décès de votre premier(ère) conjoint(e) est comprise entre 1920 et 2024.\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_D_U1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lldr8qge", + "page": "2.49", + "label": { + "value": "\"IV - \" || \"VOS PRECEDENTES PERIODES DE VIE EN COUPLE\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l15553ya", + "page": "2.50", + "label": { + "value": "Votre première période de vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_U1", + "SEXE_U1H", + "SEXE_U1F", + "ANNEE_D_U1", + "VAL_ANNAISS" + ], + "response": { + "name": "ANNEE_D_U1" + } + }, + { + "id": "l4cjg2rp", + "componentType": "Radio", + "mandatory": false, + "page": "2.62", + "label": { + "value": "\"Avant d’être en couple avec vous, \" || (if(nvl(PRENOM_U1,\"\")=\"\") then (if ((SEXE_U1H=\"2\" or isnull(SEXE_U1H)) and (SEXE_U1F=\"1\" or isnull(SEXE_U1F)) or (isnull(SEXE_U1H) and isnull(SEXE_U1F))) then \"votre premier conjoint\" else \"votre première conjointe\") else PRENOM_U1) || \" avait-\" || (if (((nvl(SEXE_U1F,\"\")=\"\") and (nvl(SEXE_U1H,\"\")=\"\")) or (SEXE_U1F =\"1\" and isnull(SEXE_U1H)) or (SEXE_U1H = \"2\" and isnull(SEXE_U1F)) or (isnull(SEXE_U1H) and isnull(SEXE_U1F))) then \"il\" else \"elle\") || \" déjà des enfants ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "AUT_UNION" + ] + }, + "controls": [ + { + "id": "l4cjg2rp-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ENFAV_C_U1) or ENFAV_C_U1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ENFAV_C_U1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lldr8qge", + "page": "2.49", + "label": { + "value": "\"IV - \" || \"VOS PRECEDENTES PERIODES DE VIE EN COUPLE\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l15553ya", + "page": "2.50", + "label": { + "value": "Votre première période de vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_U1", + "SEXE_U1H", + "SEXE_U1F", + "ENFAV_C_U1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "ENFAV_C_U1" + } + }, + { + "id": "l4cja8pm", + "componentType": "InputNumber", + "mandatory": false, + "page": "2.63", + "min": 1, + "max": 20, + "decimals": 0, + "label": { + "value": "\"Combien d’enfants avait-\" || (if (((nvl(SEXE_U1F,\"\")=\"\") and (nvl(SEXE_U1H,\"\")=\"\")) or (SEXE_U1F =\"1\" and isnull(SEXE_U1H)) or (SEXE_U1H = \"2\" and isnull(SEXE_U1F))) then \"il ?\" else \"elle ?\")", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\") and (ENFAV_C_U1 =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "AUT_UNION", + "ENFAV_C_U1" + ] + }, + "controls": [ + { + "id": "l4cja8pm-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(NBENFAV_C_U1)) and (1>NBENFAV_C_U1 or 20NBENFAV_C_U1)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "l4cja8pm-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NBENFAV_C_U1) or NBENFAV_C_U1 =\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre réponse.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NBENFAV_C_U1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lldr8qge", + "page": "2.49", + "label": { + "value": "\"IV - \" || \"VOS PRECEDENTES PERIODES DE VIE EN COUPLE\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l15553ya", + "page": "2.50", + "label": { + "value": "Votre première période de vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "SEXE_U1F", + "SEXE_U1H", + "NBENFAV_C_U1", + "VAL_ANNAISS" + ], + "response": { + "name": "NBENFAV_C_U1" + } + }, + { + "id": "l5ilbb89", + "componentType": "Radio", + "mandatory": false, + "page": "2.64", + "label": { + "value": "\"Cet enfant a-t-il vécu avec vous ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\") and (ENFAV_C_U1 =\"1\") and (NBENFAV_C_U1=1)", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "AUT_UNION", + "ENFAV_C_U1", + "NBENFAV_C_U1" + ] + }, + "controls": [ + { + "id": "l5ilbb89-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NBENFAV_C1_VENU_U1) or NBENFAV_C1_VENU_U1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NBENFAV_C1_VENU_U1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lldr8qge", + "page": "2.49", + "label": { + "value": "\"IV - \" || \"VOS PRECEDENTES PERIODES DE VIE EN COUPLE\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l15553ya", + "page": "2.50", + "label": { + "value": "Votre première période de vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "NBENFAV_C1_VENU_U1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "NBENFAV_C1_VENU_U1" + } + }, + { + "id": "l4o5x7yq", + "componentType": "InputNumber", + "mandatory": false, + "page": "2.65", + "min": 0, + "max": 20, + "decimals": 0, + "label": { + "value": "\"Combien ont vécu avec vous ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4o5x7yq-liiz9el9", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Si aucun, notez 0.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\") and (ENFAV_C_U1 =\"1\") and (NBENFAV_C_U1 > 1 or isnull(NBENFAV_C_U1))", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "AUT_UNION", + "ENFAV_C_U1", + "NBENFAV_C_U1" + ] + }, + "controls": [ + { + "id": "l4o5x7yq-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(NBENFAV_C_VENU_U1)) and (0>NBENFAV_C_VENU_U1 or 20NBENFAV_C_VENU_U1)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "l4o5x7yq-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NBENFAV_C_VENU_U1) or NBENFAV_C_VENU_U1 =\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre réponse.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NBENFAV_C_VENU_U1" + ] + }, + { + "id": "l4o5x7yq-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(nvl(NBENFAV_C_VENU_U1,0) > nvl(NBENFAV_C_U1,0))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre d’enfants venus vivre avec vous ne peut pas être supérieur au nombre total d’enfants.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NBENFAV_C_VENU_U1", + "NBENFAV_C_U1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lldr8qge", + "page": "2.49", + "label": { + "value": "\"IV - \" || \"VOS PRECEDENTES PERIODES DE VIE EN COUPLE\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l15553ya", + "page": "2.50", + "label": { + "value": "Votre première période de vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "NBENFAV_C_VENU_U1", + "VAL_ANNAISS" + ], + "response": { + "name": "NBENFAV_C_VENU_U1" + } + }, + { + "id": "l9iksl95", + "componentType": "Subsequence", + "page": "2.66", + "goToPage": "2.66", + "label": { + "value": "Votre autre période de vie en couple", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l9iksl95-l9ikp94t", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", nous allons maintenant décrire, si vous le souhaitez, les étapes d’une autre période de vie en couple (pendant au moins six mois sous le même toit, avec ou sans mariage).\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION))", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "AUT_UNION", + "NB_AUT_UNION" + ] + }, + "hierarchy": { + "sequence": { + "id": "lldr8qge", + "page": "2.49", + "label": { + "value": "\"IV - \" || \"VOS PRECEDENTES PERIODES DE VIE EN COUPLE\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l9iksl95", + "page": "2.66", + "label": { + "value": "Votre autre période de vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "VAL_ANNAISS" + ] + }, + { + "id": "l9il0i0h", + "componentType": "Radio", + "mandatory": false, + "page": "2.67", + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", souhaitez-vous décrire une autre période de vie en couple qui est importante pour vous ? \"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION))", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "AUT_UNION", + "NB_AUT_UNION" + ] + }, + "controls": [ + { + "id": "l9il0i0h-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(AUT_U2) or AUT_U2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AUT_U2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lldr8qge", + "page": "2.49", + "label": { + "value": "\"IV - \" || \"VOS PRECEDENTES PERIODES DE VIE EN COUPLE\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l9iksl95", + "page": "2.66", + "label": { + "value": "Votre autre période de vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "AUT_U2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "AUT_U2" + } + }, + { + "id": "l9ilcol6", + "componentType": "Input", + "mandatory": false, + "page": "2.68", + "maxLength": 249, + "label": { + "value": "\"Quel est le prénom de votre autre conjoint(e) ? \"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "AUT_UNION", + "NB_AUT_UNION", + "AUT_U2" + ] + }, + "controls": [ + { + "id": "l9ilcol6-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PRENOM_U2) or PRENOM_U2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer le prénom attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PRENOM_U2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lldr8qge", + "page": "2.49", + "label": { + "value": "\"IV - \" || \"VOS PRECEDENTES PERIODES DE VIE EN COUPLE\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l9iksl95", + "page": "2.66", + "label": { + "value": "Votre autre période de vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_U2", + "VAL_ANNAISS" + ], + "response": { + "name": "PRENOM_U2" + } + }, + { + "id": "l9ikne2h", + "componentType": "Radio", + "mandatory": false, + "page": "2.69", + "label": { + "value": "\"\" || (if (nvl(PRENOM_U2,\"\")=\"\") then (\"Votre autre conjoint(e) est-il/elle ? \") else (PRENOM_U2 || \" est-il/elle ?\"))", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (TYPE_QUEST =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "AUT_UNION", + "NB_AUT_UNION", + "AUT_U2", + "TYPE_QUEST" + ] + }, + "controls": [ + { + "id": "l9ikne2h-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEXE_U2H) or SEXE_U2H=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEXE_U2H" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lldr8qge", + "page": "2.49", + "label": { + "value": "\"IV - \" || \"VOS PRECEDENTES PERIODES DE VIE EN COUPLE\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l9iksl95", + "page": "2.66", + "label": { + "value": "Votre autre période de vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_U2", + "SEXE_U2H", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Une femme", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Un homme", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEXE_U2H" + } + }, + { + "id": "lldetngg", + "componentType": "Radio", + "mandatory": false, + "page": "2.70", + "label": { + "value": "\"\" || (if (nvl(PRENOM_U2,\"\")=\"\") then (\"Votre autre conjoint(e) est-il/elle ? \") else (PRENOM_U2 || \" est-il/elle ?\"))", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (TYPE_QUEST =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "AUT_UNION", + "NB_AUT_UNION", + "AUT_U2", + "TYPE_QUEST" + ] + }, + "controls": [ + { + "id": "lldetngg-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEXE_U2F) or SEXE_U2F=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEXE_U2F" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lldr8qge", + "page": "2.49", + "label": { + "value": "\"IV - \" || \"VOS PRECEDENTES PERIODES DE VIE EN COUPLE\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l9iksl95", + "page": "2.66", + "label": { + "value": "Votre autre période de vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_U2", + "SEXE_U2F", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Un homme", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Une femme", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEXE_U2F" + } + }, + { + "id": "l9ikn3ea", + "componentType": "Input", + "mandatory": false, + "page": "2.71", + "maxLength": 4, + "label": { + "value": "\"En quelle année vous étiez-vous mis\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" en couple avec \" || (if(nvl(PRENOM_U2,\"\")=\"\") then (if ((SEXE_U2H=\"2\" or isnull(SEXE_U2H)) and (SEXE_U2F=\"1\" or isnull(SEXE_U2F)) or (isnull(SEXE_U2H) and isnull(SEXE_U2F))) then \"votre autre conjoint \" else \"votre autre conjointe \") else PRENOM_U2) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "AUT_UNION", + "NB_AUT_UNION", + "AUT_U2" + ] + }, + "controls": [ + { + "id": "l9ikn3ea-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_U2)) and not(isnull(ANNEE_U)) and cast(ANNEE_U,integer) < cast(ANNEE_U2,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de mise en couple de cette autre union ne peut pas être postérieure à l’année de mise en couple.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_U2", + "ANNEE_U" + ] + }, + { + "id": "l9ikn3ea-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ANNEE_U2) or ANNEE_U2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’année attendue.\"\r\n", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_U2" + ] + }, + { + "id": "l9ikn3ea-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_U2)) and not(isnull(ANAIS)) and cast(ANNEE_U2,integer) < cast(ANAIS,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de mise en couple de cette autre union ne peut pas être antérieure à votre année de naissance.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_U2", + "ANAIS" + ] + }, + { + "id": "l9ikn3ea-CI-3", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_U2)) and not(isnull(ANAIS)) and (cast(ANAIS,integer) + 15 > cast(ANNEE_U2,integer)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Il semble y avoir peu d’écart entre votre date de naissance et celle de la mise en couple de cette autre union, est-ce que vous confirmez ?\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_U2", + "ANAIS" + ] + }, + { + "id": "l9ikn3ea-CI-4", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(ANNEE_U2,integer) < 1920 or cast(ANNEE_U2,integer) > 2023)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de mise en couple de cette autre union est comprise entre 1920 et 2023.\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_U2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lldr8qge", + "page": "2.49", + "label": { + "value": "\"IV - \" || \"VOS PRECEDENTES PERIODES DE VIE EN COUPLE\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l9iksl95", + "page": "2.66", + "label": { + "value": "Votre autre période de vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TYPE_QUEST", + "PRENOM_U2", + "SEXE_U2H", + "SEXE_U2F", + "ANNEE_U2", + "VAL_ANNAISS" + ], + "response": { + "name": "ANNEE_U2" + } + }, + { + "id": "l9il24ft", + "componentType": "Radio", + "mandatory": false, + "page": "2.72", + "label": { + "value": "\"Vous étiez-vous pacsé\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" avec \" || (if(nvl(PRENOM_U2,\"\")=\"\") then (if ((SEXE_U2H=\"2\" or isnull(SEXE_U2H)) and (SEXE_U2F=\"1\" or isnull(SEXE_U2F)) or (isnull(SEXE_U2H) and isnull(SEXE_U2F))) then \"votre autre conjoint \" else \"votre autre conjointe \") else PRENOM_U2) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l9il24ft-l9ikt4wn", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"(même si vous vous êtes marié\" || (if ((nvl(SEXE_U2F,\"\")=\"\") and (nvl(SEXE_U2H,\"\")=\"\")) then \"s)\" else (if (SEXE_U2F =\"2\" and isnull(SEXE_U2H)) then \"es)\" else \"s)\"))", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "AUT_UNION", + "NB_AUT_UNION", + "AUT_U2" + ] + }, + "controls": [ + { + "id": "l9il24ft-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PACS_U2) or PACS_U2 =\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PACS_U2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lldr8qge", + "page": "2.49", + "label": { + "value": "\"IV - \" || \"VOS PRECEDENTES PERIODES DE VIE EN COUPLE\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l9iksl95", + "page": "2.66", + "label": { + "value": "Votre autre période de vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "SEXE_U2F", + "SEXE_U2H", + "TYPE_QUEST", + "PRENOM_U2", + "PACS_U2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PACS_U2" + } + }, + { + "id": "l9ikxoxa", + "componentType": "Input", + "mandatory": false, + "page": "2.73", + "maxLength": 4, + "label": { + "value": "\"En quelle année vous étiez-vous pacsé\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" avec \" || (if(nvl(PRENOM_U2,\"\")=\"\") then (if ((SEXE_U2H=\"2\" or isnull(SEXE_U2H)) and (SEXE_U2F=\"1\" or isnull(SEXE_U2F)) or (isnull(SEXE_U2H) and isnull(SEXE_U2F))) then \"votre autre conjoint \" else \"votre autre conjointe \") else PRENOM_U2) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (PACS_U2 =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "AUT_UNION", + "NB_AUT_UNION", + "AUT_U2", + "PACS_U2" + ] + }, + "controls": [ + { + "id": "l9ikxoxa-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ANNEE_PACS_U2) or ANNEE_PACS_U2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’année attendue.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_PACS_U2" + ] + }, + { + "id": "l9ikxoxa-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_U2)) and not(isnull(ANNEE_PACS_U2)) and cast(ANNEE_PACS_U2,integer) < cast(ANNEE_U2,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année du pacs ne peut pas être antérieure à l’année de mise en couple.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_U2", + "ANNEE_PACS_U2" + ] + }, + { + "id": "l9ikxoxa-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_PACS_U2)) and not(isnull(ANAIS)) and cast(ANNEE_PACS_U2,integer) < cast(ANAIS,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année du pacs de cette autre union ne peut pas être antérieure à votre année de naissance.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_PACS_U2", + "ANAIS" + ] + }, + { + "id": "l9ikxoxa-CI-3", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_PACS_U2)) and not(isnull(ANAIS)) and (cast(ANAIS,integer) + 15 > cast(ANNEE_PACS_U2,integer)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Il semble y avoir peu d’écart entre votre année de naissance et celle du pacs de cette autre union, est-ce que vous confirmez ?\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_PACS_U2", + "ANAIS" + ] + }, + { + "id": "l9ikxoxa-CI-4", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((not(isnull(ANNEE_PACS)) and not(isnull(ANNEE_PACS_U2)) and cast(ANNEE_PACS_U2,integer) >= cast(ANNEE_PACS,integer)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année du pacs de cette autre union ne peut pas être postérieure à l’année du pacs.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_PACS", + "ANNEE_PACS_U2" + ] + }, + { + "id": "l9ikxoxa-CI-5", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(ANNEE_PACS_U2,integer) < 1920 or cast(ANNEE_PACS_U2,integer) > 2023)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année du pacs de cette autre union est comprise entre 1920 et 2023.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_PACS_U2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lldr8qge", + "page": "2.49", + "label": { + "value": "\"IV - \" || \"VOS PRECEDENTES PERIODES DE VIE EN COUPLE\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l9iksl95", + "page": "2.66", + "label": { + "value": "Votre autre période de vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TYPE_QUEST", + "PRENOM_U2", + "SEXE_U2H", + "SEXE_U2F", + "ANNEE_PACS_U2", + "VAL_ANNAISS" + ], + "response": { + "name": "ANNEE_PACS_U2" + } + }, + { + "id": "l9ikvx4n", + "componentType": "Radio", + "mandatory": false, + "page": "2.74", + "label": { + "value": "\"Vous étiez-vous marié\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" avec \" || (if(nvl(PRENOM_U2,\"\")=\"\") then (if ((SEXE_U2H=\"2\" or isnull(SEXE_U2H)) and (SEXE_U2F=\"1\" or isnull(SEXE_U2F)) or (isnull(SEXE_U2H) and isnull(SEXE_U2F))) then \"votre autre conjoint \" else \"votre autre conjointe \") else PRENOM_U2) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "AUT_UNION", + "NB_AUT_UNION", + "AUT_U2" + ] + }, + "controls": [ + { + "id": "l9ikvx4n-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(MARI_U2) or MARI_U2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "MARI_U2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lldr8qge", + "page": "2.49", + "label": { + "value": "\"IV - \" || \"VOS PRECEDENTES PERIODES DE VIE EN COUPLE\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l9iksl95", + "page": "2.66", + "label": { + "value": "Votre autre période de vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TYPE_QUEST", + "PRENOM_U2", + "SEXE_U2H", + "SEXE_U2F", + "MARI_U2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "MARI_U2" + } + }, + { + "id": "l9iklcix", + "componentType": "Input", + "mandatory": false, + "page": "2.75", + "maxLength": 4, + "label": { + "value": "\"En quelle année vous étiez-vous marié\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" avec \" || (if(nvl(PRENOM_U2,\"\")=\"\") then (if ((SEXE_U2H=\"2\" or isnull(SEXE_U2H)) and (SEXE_U2F=\"1\" or isnull(SEXE_U2F)) or (isnull(SEXE_U2H) and isnull(SEXE_U2F))) then \"votre autre conjoint \" else \"votre autre conjointe \") else PRENOM_U2) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (MARI_U2 =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "AUT_UNION", + "NB_AUT_UNION", + "AUT_U2", + "MARI_U2" + ] + }, + "controls": [ + { + "id": "l9iklcix-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ANNEE_MARI_U2) or ANNEE_MARI_U2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’année attendue.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_MARI_U2" + ] + }, + { + "id": "l9iklcix-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_MARI_U2)) and not(isnull(ANNEE_U2)) and cast(ANNEE_MARI_U2,integer) < cast(ANNEE_U2,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année du mariage ne peut pas être antérieure à l’année de mise en couple.\"\r\n\r\n", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_MARI_U2", + "ANNEE_U2" + ] + }, + { + "id": "l9iklcix-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_MARI_U2)) and not(isnull(ANNEE_PACS_U2)) and cast(ANNEE_MARI_U2,integer) < cast(ANNEE_PACS_U2,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année du mariage ne peut pas être antérieure à l’année du pacs.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_MARI_U2", + "ANNEE_PACS_U2" + ] + }, + { + "id": "l9iklcix-CI-3", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_MARI_U2)) and not(isnull(ANAIS)) and cast(ANNEE_MARI_U2,integer) < cast(ANAIS,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année du mariage de cette autre union ne peut pas être antérieure à votre année de naissance.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_MARI_U2", + "ANAIS" + ] + }, + { + "id": "l9iklcix-CI-4", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_MARI_U2)) and not(isnull(ANAIS)) and (cast(ANAIS,integer) + 15 > cast(ANNEE_MARI_U2,integer)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Il semble y avoir peu d’écart entre votre année de naissance et celle du mariage de cette autre union, est-ce que vous confirmez ?\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_MARI_U2", + "ANAIS" + ] + }, + { + "id": "l9iklcix-CI-5", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_MARI_U2)) and not(isnull(ANNEE_MARI)) and cast(ANNEE_MARI_U2,integer) >= cast(ANNEE_MARI,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année du mariage de cette autre union ne peut pas être postérieure à l’année du mariage.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_MARI_U2", + "ANNEE_MARI" + ] + }, + { + "id": "l9iklcix-CI-6", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(ANNEE_MARI_U2,integer) < 1920 or cast(ANNEE_MARI_U2,integer) > 2023)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année du mariage de cette autre union est comprise entre 1920 et 2023.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_MARI_U2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lldr8qge", + "page": "2.49", + "label": { + "value": "\"IV - \" || \"VOS PRECEDENTES PERIODES DE VIE EN COUPLE\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l9iksl95", + "page": "2.66", + "label": { + "value": "Votre autre période de vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TYPE_QUEST", + "PRENOM_U2", + "SEXE_U2H", + "SEXE_U2F", + "ANNEE_MARI_U2", + "VAL_ANNAISS" + ], + "response": { + "name": "ANNEE_MARI_U2" + } + }, + { + "id": "l9ikqlwv", + "componentType": "Radio", + "mandatory": false, + "page": "2.76", + "label": { + "value": "\"Cette période de vie en couple s’est-elle achevée parce que \"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "AUT_UNION", + "NB_AUT_UNION", + "AUT_U2" + ] + }, + "controls": [ + { + "id": "l9ikqlwv-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEPARE_U2) or SEPARE_U2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEPARE_U2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lldr8qge", + "page": "2.49", + "label": { + "value": "\"IV - \" || \"VOS PRECEDENTES PERIODES DE VIE EN COUPLE\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l9iksl95", + "page": "2.66", + "label": { + "value": "Votre autre période de vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TYPE_QUEST", + "PRENOM_U2", + "SEXE_U2H", + "SEXE_U2F", + "SEPARE_U2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"vous vous êtes séparé\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" de \" || (if (isnull(PRENOM_U2)) then (if (SEXE_U2H=\"2\" and isnull(SEXE_U2F)) or (SEXE_U2F=\"1\" and isnull(SEXE_U2H)) or (isnull(SEXE_U2H) and isnull(SEXE_U2F)) then \"votre autre conjoint \" else \"votre autre conjointe \") else PRENOM_U2) || \" ? \"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"\" || (if(isnull(PRENOM_U2)) then (if ((SEXE_U2H=\"2\" or isnull(SEXE_U2H)) and (SEXE_U2F=\"1\" or isnull(SEXE_U2F)) or (isnull(SEXE_U2H) and isnull(SEXE_U2F))) then \"votre autre conjoint\" else \"votre autre conjointe\") else PRENOM_U2) || \" est décédé\" || (if (((nvl(SEXE_U2F,\"\")=\"\") and (nvl(SEXE_U2H,\"\")=\"\")) or (SEXE_U2F =\"1\" and isnull(SEXE_U2H)) or (SEXE_U2H = \"2\" and isnull(SEXE_U2F))) then \" ?\" else \"e ?\")", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEPARE_U2" + } + }, + { + "id": "l9ikze1y", + "componentType": "Input", + "mandatory": false, + "page": "2.77", + "maxLength": 4, + "label": { + "value": "\"En quelle année vous êtes-vous séparé\" ||(if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" de \" || (if (nvl(PRENOM_U2,\"\")=\"\") then (if (SEXE_U2H=\"2\" and isnull(SEXE_U2F)) or (SEXE_U2F=\"1\" and isnull(SEXE_U2H)) or (isnull(SEXE_U2H) and isnull(SEXE_U2F)) then \"votre autre conjoint \" else \"votre autre conjointe \") else PRENOM_U2) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (SEPARE_U2 =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "AUT_UNION", + "NB_AUT_UNION", + "AUT_U2", + "SEPARE_U2" + ] + }, + "controls": [ + { + "id": "l9ikze1y-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_S_U2)) and not(isnull(ANNEE_U2)) and cast(ANNEE_S_U2,integer) < cast(ANNEE_U2,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de la séparation ne peut pas être antérieure à l’année de mise en couple.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_S_U2", + "ANNEE_U2" + ] + }, + { + "id": "l9ikze1y-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ANNEE_S_U2) or ANNEE_S_U2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’année attendue.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_S_U2" + ] + }, + { + "id": "l9ikze1y-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_S_U2)) and not(isnull(ANAIS))and cast(ANNEE_S_U2,integer) < cast(ANAIS,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de séparation de cette autre union ne peut pas être antérieure à votre année de naissance.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_S_U2", + "ANAIS" + ] + }, + { + "id": "l9ikze1y-CI-3", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(ANNEE_S_U2,integer) < 1920 or cast(ANNEE_S_U2,integer) > 2023)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de séparation de cette autre union est comprise entre 1920 et 2023.\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_S_U2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lldr8qge", + "page": "2.49", + "label": { + "value": "\"IV - \" || \"VOS PRECEDENTES PERIODES DE VIE EN COUPLE\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l9iksl95", + "page": "2.66", + "label": { + "value": "Votre autre période de vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TYPE_QUEST", + "PRENOM_U2", + "SEXE_U2H", + "SEXE_U2F", + "ANNEE_S_U2", + "VAL_ANNAISS" + ], + "response": { + "name": "ANNEE_S_U2" + } + }, + { + "id": "l9ikmjqm", + "componentType": "Input", + "mandatory": false, + "page": "2.78", + "maxLength": 4, + "label": { + "value": "\"En quelle année \" || (if(nvl(PRENOM_U2,\"\")=\"\") then (if ((SEXE_U2H=\"2\" or isnull(SEXE_U2H)) and (SEXE_U2F=\"1\" or isnull(SEXE_U2F)) or (isnull(SEXE_U2H) and isnull(SEXE_U2F))) then \"votre autre conjoint \" else \"votre autre conjointe \") else PRENOM_U2) || \" est-\" || (if (((nvl(SEXE_U2F,\"\")=\"\") and (nvl(SEXE_U2H,\"\")=\"\")) or (SEXE_U2F =\"1\" and isnull(SEXE_U2H)) or (SEXE_U2H = \"2\" and isnull(SEXE_U2F)) or (isnull(SEXE_U2H) and isnull(SEXE_U2F))) then \"il décédé ?\" else \"elle décédée ?\")", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (SEPARE_U2 =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "AUT_UNION", + "NB_AUT_UNION", + "AUT_U2", + "SEPARE_U2" + ] + }, + "controls": [ + { + "id": "l9ikmjqm-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ANNEE_D_U2) or ANNEE_D_U2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’année attendue.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_D_U2" + ] + }, + { + "id": "l9ikmjqm-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_D_U2)) and not(isnull(ANNEE_U2)) and cast(ANNEE_D_U2,integer) < cast(ANNEE_U2,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année du décès de votre conjoint(e) ne peut pas être antérieure à l’année de mise en couple de cette autre union.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_D_U2", + "ANNEE_U2" + ] + }, + { + "id": "l9ikmjqm-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_D_U2)) and not(isnull(ANAIS)) and cast(ANNEE_D_U2,integer) < cast(ANAIS,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année du décès de votre conjoint(e) ne peut pas être antérieure à votre année de naissance.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_D_U2", + "ANAIS" + ] + }, + { + "id": "l9ikmjqm-CI-3", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(ANNEE_D_U2,integer) < 1920 or cast(ANNEE_D_U2,integer) > 2024)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de décès de votre conjoint(e) est comprise entre 1920 et 2024.\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_D_U2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lldr8qge", + "page": "2.49", + "label": { + "value": "\"IV - \" || \"VOS PRECEDENTES PERIODES DE VIE EN COUPLE\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l9iksl95", + "page": "2.66", + "label": { + "value": "Votre autre période de vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_U2", + "SEXE_U2H", + "SEXE_U2F", + "ANNEE_D_U2", + "VAL_ANNAISS" + ], + "response": { + "name": "ANNEE_D_U2" + } + }, + { + "id": "l9ikxndo", + "componentType": "Radio", + "mandatory": false, + "page": "2.79", + "label": { + "value": "\"Avant d’être en couple avec vous, \" || (if(nvl(PRENOM_U2,\"\")=\"\") then (if ((SEXE_U2H=\"2\" or isnull(SEXE_U2H)) and (SEXE_U2F=\"1\" or isnull(SEXE_U2F)) or (isnull(SEXE_U2H) and isnull(SEXE_U2F))) then \"votre autre conjoint\" else \"votre autre conjointe\") else PRENOM_U2) || \" avait-\" || (if (((nvl(SEXE_U2F,\"\")=\"\") and (nvl(SEXE_U2H,\"\")=\"\")) or (SEXE_U2F =\"1\" and isnull(SEXE_U2H)) or (SEXE_U2H = \"2\" and isnull(SEXE_U2F)) or (isnull(SEXE_U2H) and isnull(SEXE_U2F))) then \"il\" else \"elle\") || \" déjà des enfants ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "AUT_UNION", + "NB_AUT_UNION", + "AUT_U2" + ] + }, + "controls": [ + { + "id": "l9ikxndo-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ENFAV_C_U2) or ENFAV_C_U2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ENFAV_C_U2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lldr8qge", + "page": "2.49", + "label": { + "value": "\"IV - \" || \"VOS PRECEDENTES PERIODES DE VIE EN COUPLE\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l9iksl95", + "page": "2.66", + "label": { + "value": "Votre autre période de vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_U2", + "SEXE_U2H", + "SEXE_U2F", + "ENFAV_C_U2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "ENFAV_C_U2" + } + }, + { + "id": "l9ikuqoe", + "componentType": "InputNumber", + "mandatory": false, + "page": "2.80", + "min": 1, + "max": 20, + "decimals": 0, + "label": { + "value": "\"Combien d’enfants avait-\" || (if (((nvl(SEXE_U2F,\"\")=\"\") and (nvl(SEXE_U2H,\"\")=\"\")) or (SEXE_U2F =\"1\" and isnull(SEXE_U2H)) or (SEXE_U2H = \"2\" and isnull(SEXE_U2F))) then \"il ?\" else \"elle ?\")", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "AUT_UNION", + "NB_AUT_UNION", + "AUT_U2", + "ENFAV_C_U2" + ] + }, + "controls": [ + { + "id": "l9ikuqoe-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(NBENFAV_C_U2)) and (1>NBENFAV_C_U2 or 20NBENFAV_C_U2)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "l9ikuqoe-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NBENFAV_C_U2) or NBENFAV_C_U2 =\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre réponse.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NBENFAV_C_U2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lldr8qge", + "page": "2.49", + "label": { + "value": "\"IV - \" || \"VOS PRECEDENTES PERIODES DE VIE EN COUPLE\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l9iksl95", + "page": "2.66", + "label": { + "value": "Votre autre période de vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "SEXE_U2F", + "SEXE_U2H", + "NBENFAV_C_U2", + "VAL_ANNAISS" + ], + "response": { + "name": "NBENFAV_C_U2" + } + }, + { + "id": "l9ikekzu", + "componentType": "Radio", + "mandatory": false, + "page": "2.81", + "label": { + "value": "\"Cet enfant a-t-il vécu avec vous ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\") and (NBENFAV_C_U2=1)", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "AUT_UNION", + "NB_AUT_UNION", + "AUT_U2", + "ENFAV_C_U2", + "NBENFAV_C_U2" + ] + }, + "controls": [ + { + "id": "l9ikekzu-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NBENFAV_C1_VENU_U2) or NBENFAV_C1_VENU_U2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NBENFAV_C1_VENU_U2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lldr8qge", + "page": "2.49", + "label": { + "value": "\"IV - \" || \"VOS PRECEDENTES PERIODES DE VIE EN COUPLE\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l9iksl95", + "page": "2.66", + "label": { + "value": "Votre autre période de vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "NBENFAV_C1_VENU_U2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "NBENFAV_C1_VENU_U2" + } + }, + { + "id": "l9iks078", + "componentType": "InputNumber", + "mandatory": false, + "page": "2.82", + "min": 0, + "max": 20, + "decimals": 0, + "label": { + "value": "\"Combien ont vécu avec vous ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l9iks078-liizbc3w", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Si aucun, notez 0.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\") and (NBENFAV_C_U2 > 1 or isnull(NBENFAV_C_U2))", + "type": "VTL", + "bindingDependencies": [ + "COUPLE", + "AUT_UNION", + "NB_AUT_UNION", + "AUT_U2", + "ENFAV_C_U2", + "NBENFAV_C_U2" + ] + }, + "controls": [ + { + "id": "l9iks078-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(NBENFAV_C_VENU_U2)) and (0>NBENFAV_C_VENU_U2 or 20NBENFAV_C_VENU_U2)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "l9iks078-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NBENFAV_C_VENU_U2) or NBENFAV_C_VENU_U2 =\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre réponse.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NBENFAV_C_VENU_U2" + ] + }, + { + "id": "l9iks078-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(nvl(NBENFAV_C_VENU_U2,0) > nvl(NBENFAV_C_U2,0))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre d’enfants venus vivre avec vous ne peut pas être supérieur au nombre total d’enfants.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NBENFAV_C_VENU_U2", + "NBENFAV_C_U2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lldr8qge", + "page": "2.49", + "label": { + "value": "\"IV - \" || \"VOS PRECEDENTES PERIODES DE VIE EN COUPLE\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l9iksl95", + "page": "2.66", + "label": { + "value": "Votre autre période de vie en couple", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "NBENFAV_C_VENU_U2", + "VAL_ANNAISS" + ], + "response": { + "name": "NBENFAV_C_VENU_U2" + } + }, + { + "id": "kwqi91j9", + "componentType": "Sequence", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kwqi91j9-l34i0o62", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", nous allons maintenant vous poser des questions sur vos enfants, qui vivent avec vous ou non (y compris ceux adoptés ou décédés).\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "true", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "VAL_ANNAISS" + ] + }, + { + "id": "ljmulh27", + "componentType": "Subsequence", + "goToPage": "2.84", + "label": { + "value": "Description de vos enfants qui vivent avec vous ou non (y compris ceux adoptés ou décédés)", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "true", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmulh27", + "page": "2.84", + "label": { + "value": "Description de vos enfants qui vivent avec vous ou non (y compris ceux adoptés ou décédés)", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "VAL_ANNAISS" + ] + }, + { + "id": "kwqigxtx", + "componentType": "Radio", + "mandatory": false, + "page": "2.84", + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", avez-vous eu des enfants ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kwqigxtx-l1gkoo46", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"(y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "true", + "type": "VTL" + }, + "controls": [ + { + "id": "kwqigxtx-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ENF) or ENF=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ENF" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmulh27", + "page": "2.84", + "label": { + "value": "Description de vos enfants qui vivent avec vous ou non (y compris ceux adoptés ou décédés)", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "ENF", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "ENF" + } + }, + { + "id": "kwqi5zsm", + "componentType": "InputNumber", + "mandatory": false, + "page": "2.85", + "min": 1, + "max": 20, + "decimals": 0, + "label": { + "value": "\"Combien d’enfants avez-vous eus en tout ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(ENF =\"1\" or isnull(ENF))", + "type": "VTL", + "bindingDependencies": [ + "ENF" + ] + }, + "controls": [ + { + "id": "kwqi5zsm-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(NBENF)) and (1>NBENF or 20NBENF)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "kwqi5zsm-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NBENF) or NBENF=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre réponse.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NBENF" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmulh27", + "page": "2.84", + "label": { + "value": "Description de vos enfants qui vivent avec vous ou non (y compris ceux adoptés ou décédés)", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "NBENF", + "VAL_ANNAISS" + ], + "response": { + "name": "NBENF" + } + }, + { + "id": "l1gkeq97", + "componentType": "Radio", + "mandatory": false, + "page": "2.86", + "label": { + "value": "\"Cet enfant a-t-il été adopté ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l1gkeq97-l5cm1kac", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"(adoption simple ou plénière)\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(ENF =\"1\" or isnull(ENF)) and (NBENF = 1)", + "type": "VTL", + "bindingDependencies": [ + "ENF", + "NBENF" + ] + }, + "controls": [ + { + "id": "l1gkeq97-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NBENF_ADOP1) or NBENF_ADOP1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NBENF_ADOP1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmulh27", + "page": "2.84", + "label": { + "value": "Description de vos enfants qui vivent avec vous ou non (y compris ceux adoptés ou décédés)", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "NBENF_ADOP1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "NBENF_ADOP1" + } + }, + { + "id": "l7rlim3p", + "componentType": "InputNumber", + "mandatory": false, + "page": "2.87", + "min": 0, + "max": 20, + "decimals": 0, + "label": { + "value": "\"Parmi eux, combien d’enfants ont-ils été adoptés ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l7rlim3p-l7rltw55", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"(adoption simple ou plénière)\"", + "type": "VTL|MD" + } + }, + { + "id": "l7rlim3p-l7rlwtef", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Si aucun n’a été adopté, notez 0.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(ENF =\"1\" or isnull(ENF)) and (NBENF > 1)", + "type": "VTL", + "bindingDependencies": [ + "ENF", + "NBENF" + ] + }, + "controls": [ + { + "id": "l7rlim3p-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(NBENF_ADOP)) and (0>NBENF_ADOP or 20NBENF_ADOP)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "l7rlim3p-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NBENF_ADOP) or NBENF_ADOP=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre réponse.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NBENF_ADOP" + ] + }, + { + "id": "l7rlim3p-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(nvl(NBENF_ADOP,0) > nvl(NBENF,0))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre d’enfants adoptés ne peut pas être supérieur au nombre total d’enfants.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NBENF_ADOP", + "NBENF" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmulh27", + "page": "2.84", + "label": { + "value": "Description de vos enfants qui vivent avec vous ou non (y compris ceux adoptés ou décédés)", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "NBENF_ADOP", + "VAL_ANNAISS" + ], + "response": { + "name": "NBENF_ADOP" + } + }, + { + "id": "l1gi76wy", + "componentType": "Input", + "mandatory": false, + "page": "2.88", + "maxLength": 20, + "label": { + "value": "\"En quelle langue, dialecte, ou patois parliez-vous avec \" || (if (NBENF = 1) then \"votre enfant\" else \"vos enfants\") || \" lorsqu’il\" || (if (NBENF = 1) then \" était jeune ou lui\" else \"s étaient jeunes ou leur\") || \" parlez-vous maintenant s’il\" || (if (NBENF = 1) then \" est encore mineur ?\" else \"s sont encore mineurs ?\")", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l1gi76wy-laib1x47", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"(exemples : kabyle, breton, LSF, français, italien)\"", + "type": "VTL|MD" + } + }, + { + "id": "l1gi76wy-laiambix", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le libellé de la langue recherchée et sélectionnez la dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(ENF =\"1\" or isnull(ENF))", + "type": "VTL", + "bindingDependencies": [ + "ENF" + ] + }, + "controls": [ + { + "id": "l1gi76wy-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(LANGUE1_ENF) or LANGUE1_ENF=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "LANGUE1_ENF" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmulh27", + "page": "2.84", + "label": { + "value": "Description de vos enfants qui vivent avec vous ou non (y compris ceux adoptés ou décédés)", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "NBENF", + "LANGUE1_ENF", + "VAL_ANNAISS" + ], + "response": { + "name": "LANGUE1_ENF" + } + }, + { + "id": "l445u9x8", + "componentType": "Input", + "mandatory": false, + "page": "2.89", + "maxLength": 20, + "label": { + "value": "\"Y-a-t-il une autre langue, dialecte ou patois ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l445u9x8-l4o6hnbu", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le libellé de la langue recherchée et sélectionnez la dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(ENF =\"1\" or isnull(ENF)) and (LANGUE1_ENF <> \"\" or not(isnull(LANGUE1_ENF)))", + "type": "VTL", + "bindingDependencies": [ + "ENF", + "LANGUE1_ENF" + ] + }, + "controls": [ + { + "id": "l445u9x8-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(LANGUE1_ENF)) and not(isnull(LANGUE2_ENF)) and LANGUE2_ENF=LANGUE1_ENF)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Vous avez sélectionné la même langue que la précédente. Merci à vous de corriger.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "LANGUE1_ENF", + "LANGUE2_ENF" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmulh27", + "page": "2.84", + "label": { + "value": "Description de vos enfants qui vivent avec vous ou non (y compris ceux adoptés ou décédés)", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "LANGUE2_ENF", + "VAL_ANNAISS" + ], + "response": { + "name": "LANGUE2_ENF" + } + }, + { + "id": "l4idom4o", + "componentType": "Radio", + "mandatory": false, + "page": "2.90", + "label": { + "value": "\"Avez-vous des enfants qui vivent avec vous, même une petite partie du temps seulement ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(ENF =\"1\" or isnull(ENF))", + "type": "VTL", + "bindingDependencies": [ + "ENF" + ] + }, + "controls": [ + { + "id": "l4idom4o-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NBENFLOG) or NBENFLOG=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NBENFLOG" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmulh27", + "page": "2.84", + "label": { + "value": "Description de vos enfants qui vivent avec vous ou non (y compris ceux adoptés ou décédés)", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "NBENFLOG", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "NBENFLOG" + } + }, + { + "id": "l4lcr3vb", + "componentType": "InputNumber", + "mandatory": false, + "page": "2.91", + "min": 1, + "max": 20, + "decimals": 0, + "label": { + "value": "\"Combien d’enfants vivent avec vous, même une petite partie du temps seulement ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(ENF =\"1\" or isnull(ENF)) and (NBENFLOG = \"1\" or isnull(NBENFLOG))", + "type": "VTL", + "bindingDependencies": [ + "ENF", + "NBENFLOG" + ] + }, + "controls": [ + { + "id": "l4lcr3vb-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(CBENFLOG)) and (1>CBENFLOG or 20CBENFLOG)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "l4lcr3vb-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(CBENFLOG) or CBENFLOG=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre réponse.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "CBENFLOG" + ] + }, + { + "id": "l4lcr3vb-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(nvl(CBENFLOG,0) > nvl(NBENF,0))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre d’enfants qui vivent avec vous est supérieur au nombre total d’enfants que vous avez déclarés. Est-ce que vous confirmez ?\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "CBENFLOG", + "NBENF" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmulh27", + "page": "2.84", + "label": { + "value": "Description de vos enfants qui vivent avec vous ou non (y compris ceux adoptés ou décédés)", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "CBENFLOG", + "VAL_ANNAISS" + ], + "response": { + "name": "CBENFLOG" + } + }, + { + "id": "l447nuda", + "componentType": "Radio", + "mandatory": false, + "page": "2.92", + "label": { + "value": "\"Avez-vous des enfants qui ne vivent pas avec vous ou qui sont décédés ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(ENF =\"1\" or isnull(ENF)) and ((nvl(CBENFLOG,0) < nvl(NBENF,0)) or isnull(CBENFLOG) or isnull(NBENF))", + "type": "VTL", + "bindingDependencies": [ + "ENF", + "CBENFLOG", + "NBENF" + ] + }, + "controls": [ + { + "id": "l447nuda-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NBENFAIL) or NBENFAIL=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NBENFAIL" + ] + }, + { + "id": "l447nuda-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((isnull(NBENFAIL) or NBENFAIL=\"2\") and nvl(CBENFLOG,0) <> nvl(NBENF,0))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre d’enfants vivant dans le logement est différent du nombre d’enfants déclarés.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NBENFAIL", + "CBENFLOG", + "NBENF" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmulh27", + "page": "2.84", + "label": { + "value": "Description de vos enfants qui vivent avec vous ou non (y compris ceux adoptés ou décédés)", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "NBENFAIL", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "NBENFAIL" + } + }, + { + "id": "l4lfzig7", + "componentType": "InputNumber", + "mandatory": false, + "page": "2.93", + "min": 1, + "max": 20, + "decimals": 0, + "label": { + "value": "\"Combien d’enfants ne vivent pas avec vous ou sont décédés ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(ENF =\"1\" or isnull(ENF)) and ((nvl(CBENFLOG,0) < nvl(NBENF,0)) or isnull(CBENFLOG) or isnull(NBENF)) and (NBENFAIL=\"1\" or isnull(NBENFAIL))", + "type": "VTL", + "bindingDependencies": [ + "ENF", + "CBENFLOG", + "NBENF", + "NBENFAIL" + ] + }, + "controls": [ + { + "id": "l4lfzig7-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(CBENFAIL)) and (1>CBENFAIL or 20CBENFAIL)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "l4lfzig7-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(CBENFAIL) or CBENFAIL=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre réponse.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "CBENFAIL" + ] + }, + { + "id": "l4lfzig7-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(nvl(CBENFAIL,0) + nvl(CBENFLOG,0) <> nvl(NBENF,0))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre d’enfants vivant dans le logement, vivant ailleurs ou décédés est différent du nombre total d’enfants. Est-ce que vous confirmez ?\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "CBENFAIL", + "CBENFLOG", + "NBENF" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmulh27", + "page": "2.84", + "label": { + "value": "Description de vos enfants qui vivent avec vous ou non (y compris ceux adoptés ou décédés)", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "CBENFAIL", + "VAL_ANNAISS" + ], + "response": { + "name": "CBENFAIL" + } + }, + { + "id": "l446h6js", + "componentType": "Subsequence", + "page": "2.94", + "goToPage": "2.94", + "label": { + "value": "Votre premier enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l446h6js-l446p7s5", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "if cast(CBENFLOG,integer)=1 then \"Décrivez votre enfant qui vit avec vous, même une petite partie du temps seulement.\" else \"Décrivez votre premier enfant qui vit avec vous, même une petite partie du temps seulement, en commençant par l’aîné.\"", + "type": "VTL|MD" + } + }, + { + "id": "l446h6js-l4pjpys2", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "if cast(CBENFLOG, integer)>8 then \"Décrivez seulement les 8 plus âgés.\" else \"\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l446h6js", + "page": "2.94", + "label": { + "value": "Votre premier enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "CBENFLOG", + "VAL_ANNAISS" + ] + }, + { + "id": "l446nede", + "componentType": "Input", + "mandatory": false, + "page": "2.95", + "maxLength": 249, + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", comment s’appelle \" || (if (CBENFLOG=1 or isnull(CBENFLOG)) then \"votre enfant qui vit avec vous, même une petite partie du temps seulement ?\" else \"votre premier enfant qui vit avec vous, même une petite partie du temps seulement ?\")", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l446nede-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PRENOM_ENFLOG1) or PRENOM_ENFLOG1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer le prénom attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PRENOM_ENFLOG1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l446h6js", + "page": "2.94", + "label": { + "value": "Votre premier enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "CBENFLOG", + "PRENOM_ENFLOG1", + "VAL_ANNAISS" + ], + "response": { + "name": "PRENOM_ENFLOG1" + } + }, + { + "id": "kwqjk80w", + "componentType": "Radio", + "mandatory": false, + "page": "2.96", + "label": { + "value": "\"Quel est le sexe de \" || (if (nvl(PRENOM_ENFLOG1,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG1) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "kwqjk80w-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull (SEXE_ENFLOG1) or SEXE_ENFLOG1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEXE_ENFLOG1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l446h6js", + "page": "2.94", + "label": { + "value": "Votre premier enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG1", + "SEXE_ENFLOG1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Masculin\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Féminin\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEXE_ENFLOG1" + } + }, + { + "id": "kwqjmq2o", + "componentType": "Input", + "mandatory": false, + "page": "2.97", + "maxLength": 4, + "label": { + "value": "\"Quelle est l’année de naissance de \" || (if (nvl(PRENOM_ENFLOG1,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG1) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "kwqjmq2o-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ANAI_ENFLOG1) or ANAI_ENFLOG1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’année attendue.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFLOG1" + ] + }, + { + "id": "kwqjmq2o-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANAI_ENFLOG1)) and not(isnull(ANAIS)) and cast(ANAI_ENFLOG1,integer) < cast(ANAIS,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFLOG1", + "ANAIS" + ] + }, + { + "id": "kwqjmq2o-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANAI_ENFLOG1)) and not(isnull(ANAIS)) and (cast(ANAIS,integer) + 15 > cast(ANAI_ENFLOG1,integer)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Il semble y avoir peu d’écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFLOG1", + "ANAIS" + ] + }, + { + "id": "kwqjmq2o-CI-3", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(ANAI_ENFLOG1,integer) < 1920 or cast(ANAI_ENFLOG1,integer) > 2024)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de naissance de votre enfant est comprise entre 1920 et 2024.\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFLOG1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l446h6js", + "page": "2.94", + "label": { + "value": "Votre premier enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG1", + "ANAI_ENFLOG1", + "VAL_ANNAISS" + ], + "response": { + "name": "ANAI_ENFLOG1" + } + }, + { + "id": "l4qtls9o", + "componentType": "Radio", + "mandatory": false, + "page": "2.98", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFLOG1,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFLOG1) || \" est-\" || (if (SEXE_ENFLOG1=\"1\" or isnull(SEXE_ENFLOG1)) then \"il né\" else \"elle née\") || \" en France ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4qtls9o-l4qth2nf", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Prenez en compte les frontières actuelles.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l4qtls9o-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NEFRANCE_ENFLOG1) or NEFRANCE_ENFLOG1 =\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NEFRANCE_ENFLOG1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l446h6js", + "page": "2.94", + "label": { + "value": "Votre premier enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG1", + "SEXE_ENFLOG1", + "NEFRANCE_ENFLOG1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "NEFRANCE_ENFLOG1" + } + }, + { + "id": "kwqjol7e", + "componentType": "Radio", + "mandatory": false, + "page": "2.99", + "label": { + "value": "\"L’autre parent de \" || (if (nvl(PRENOM_ENFLOG1,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG1) || \" vit-il/elle avec vous dans ce logement ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "kwqjol7e-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_VIT_ENFLOG1) or PARENT_VIT_ENFLOG1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_VIT_ENFLOG1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l446h6js", + "page": "2.94", + "label": { + "value": "Votre premier enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG1", + "PARENT_VIT_ENFLOG1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui, il/elle vit avec vous\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Non, il/elle vit ailleurs\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Non, il/elle est décédé(e)\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_VIT_ENFLOG1" + } + }, + { + "id": "l4iaicn8", + "componentType": "Radio", + "mandatory": false, + "page": "2.100", + "label": { + "value": "\"L’autre parent de \" || (if (nvl(PRENOM_ENFLOG1,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG1) || \" vit-il/elle en France ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4iaicn8-l4paxo23", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Prenez en compte les frontières actuelles.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1) and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG1" + ] + }, + "controls": [ + { + "id": "l4iaicn8-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_FR_ENFLOG1) or PARENT_FR_ENFLOG1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_FR_ENFLOG1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l446h6js", + "page": "2.94", + "label": { + "value": "Votre premier enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG1", + "PARENT_FR_ENFLOG1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_FR_ENFLOG1" + } + }, + { + "id": "l4pav1bd", + "componentType": "Input", + "mandatory": false, + "page": "2.101", + "maxLength": 20, + "label": { + "value": "\"Dans quel département vit l’autre parent de \" || (if (nvl(PRENOM_ENFLOG1,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG1) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4pav1bd-l4papcwn", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1) and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (PARENT_FR_ENFLOG1 =\"1\" or isnull(PARENT_FR_ENFLOG1))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG1", + "PARENT_FR_ENFLOG1" + ] + }, + "controls": [ + { + "id": "l4pav1bd-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_DEP_ENFLOG1) or PARENT_DEP_ENFLOG1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_DEP_ENFLOG1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l446h6js", + "page": "2.94", + "label": { + "value": "Votre premier enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG1", + "PARENT_DEP_ENFLOG1", + "VAL_ANNAISS" + ], + "response": { + "name": "PARENT_DEP_ENFLOG1" + } + }, + { + "id": "l4parilg", + "componentType": "Input", + "mandatory": false, + "page": "2.102", + "maxLength": 20, + "label": { + "value": "\"Dans quelle commune vit l’autre parent de \" || (if (nvl(PRENOM_ENFLOG1,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG1) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4parilg-l4pb5c8v", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez la commune recherchée et sélectionnez la dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1) and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (PARENT_FR_ENFLOG1 =\"1\" or isnull(PARENT_FR_ENFLOG1))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG1", + "PARENT_FR_ENFLOG1" + ] + }, + "controls": [ + { + "id": "l4parilg-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_COM_ENFLOG1) or PARENT_COM_ENFLOG1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_COM_ENFLOG1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l446h6js", + "page": "2.94", + "label": { + "value": "Votre premier enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG1", + "PARENT_COM_ENFLOG1", + "VAL_ANNAISS" + ], + "response": { + "name": "PARENT_COM_ENFLOG1" + } + }, + { + "id": "l4pavrnh", + "componentType": "Input", + "mandatory": false, + "page": "2.103", + "maxLength": 20, + "label": { + "value": "\"Dans quel pays vit l’autre parent de \" || (if (nvl(PRENOM_ENFLOG1,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG1) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4pavrnh-l4pbeb5v", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1) and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (PARENT_FR_ENFLOG1 =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG1", + "PARENT_FR_ENFLOG1" + ] + }, + "controls": [ + { + "id": "l4pavrnh-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_PAY_ENFLOG1) or PARENT_PAY_ENFLOG1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_PAY_ENFLOG1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l446h6js", + "page": "2.94", + "label": { + "value": "Votre premier enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG1", + "PARENT_PAY_ENFLOG1", + "VAL_ANNAISS" + ], + "response": { + "name": "PARENT_PAY_ENFLOG1" + } + }, + { + "id": "l1ez78st", + "componentType": "Radio", + "mandatory": false, + "page": "2.104", + "label": { + "value": "\"A quelle fréquence \" || (if (nvl(PRENOM_ENFLOG1,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG1) || \" est-\" || (if (SEXE_ENFLOG1=\"1\" or isnull(SEXE_ENFLOG1)) then \"il\" else \"elle\") || \" en contact avec son autre parent ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l1ez78st-l1eze0cf", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"(en face à face, téléphone, mail, SMS, appel vidéo, etc.)\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1) and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG1" + ] + }, + "controls": [ + { + "id": "l1ez78st-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_FREQ_ENFLOG1) or PARENT_FREQ_ENFLOG1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_FREQ_ENFLOG1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l446h6js", + "page": "2.94", + "label": { + "value": "Votre premier enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG1", + "SEXE_ENFLOG1", + "PARENT_FREQ_ENFLOG1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "2", + "label": { + "value": "Une ou plusieurs fois par semaine", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Une ou plusieurs fois par mois", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Une ou plusieurs fois par an", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Plus rarement ou jamais", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_FREQ_ENFLOG1" + } + }, + { + "id": "l4iain70", + "componentType": "Radio", + "mandatory": false, + "page": "2.105", + "label": { + "value": "\"Arrive-t-il à \" || (if (nvl(PRENOM_ENFLOG1,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG1) || \" de dormir chez son autre parent ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1) and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG1" + ] + }, + "controls": [ + { + "id": "l4iain70-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_DORT_ENFLOG1) or PARENT_DORT_ENFLOG1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_DORT_ENFLOG1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l446h6js", + "page": "2.94", + "label": { + "value": "Votre premier enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG1", + "PARENT_DORT_ENFLOG1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_DORT_ENFLOG1" + } + }, + { + "id": "kwqk3gx2", + "componentType": "Radio", + "mandatory": false, + "page": "2.106", + "label": { + "value": "\"Avez-vous déjà vécu avec l’autre parent de \" || (if (nvl(PRENOM_ENFLOG1,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG1) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1) and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG1" + ] + }, + "controls": [ + { + "id": "kwqk3gx2-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_VECU_ENFLOG1) or PARENT_VECU_ENFLOG1 =\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_VECU_ENFLOG1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l446h6js", + "page": "2.94", + "label": { + "value": "Votre premier enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG1", + "PARENT_VECU_ENFLOG1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_VECU_ENFLOG1" + } + }, + { + "id": "la6ydnyh", + "componentType": "Radio", + "mandatory": false, + "page": "2.107", + "label": { + "value": "\"Vous êtes-vous séparé\" || (if (TYPE_QUEST = \"2\") then \"e\" else \"\") || \" de l’autre parent de \" || (if (nvl(PRENOM_ENFLOG1,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG1) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1) and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG1" + ] + }, + "controls": [ + { + "id": "la6ydnyh-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEP_AUT_PAR_ENFLOG1) or SEP_AUT_PAR_ENFLOG1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEP_AUT_PAR_ENFLOG1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l446h6js", + "page": "2.94", + "label": { + "value": "Votre premier enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TYPE_QUEST", + "PRENOM_ENFLOG1", + "SEP_AUT_PAR_ENFLOG1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEP_AUT_PAR_ENFLOG1" + } + }, + { + "id": "kwqjmy9d", + "componentType": "Radio", + "mandatory": false, + "page": "2.108", + "label": { + "value": "\"Quel a été le mode de résidence fixé par décision de justice ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1) and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (SEP_AUT_PAR_ENFLOG1=\"1\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG1", + "SEP_AUT_PAR_ENFLOG1" + ] + }, + "controls": [ + { + "id": "kwqjmy9d-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(RESID_ENFLOG1) or RESID_ENFLOG1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "RESID_ENFLOG1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l446h6js", + "page": "2.94", + "label": { + "value": "Votre premier enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "RESID_ENFLOG1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "2", + "label": { + "value": "\"Pas de décision\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Résidence alternée\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\"Principalement chez vous\"", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\"Principalement chez son autre parent\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "RESID_ENFLOG1" + } + }, + { + "id": "l1gia5uh", + "componentType": "CheckboxGroup", + "page": "2.109", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFLOG1,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFLOG1) || \" vit-\" || (if (SEXE_ENFLOG1=\"1\" or isnull(SEXE_ENFLOG1)) then \"il\" else \"elle\") || \" aussi ailleurs ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l1gia5uh-l59nppaa", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l1gia5uh-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(SANTE_ENFLOG11, false) = false and nvl(SANTE_ENFLOG12, false) = false and nvl(SANTE_ENFLOG13, false) = false and nvl(SANTE_ENFLOG14, false) = false))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SANTE_ENFLOG11", + "SANTE_ENFLOG12", + "SANTE_ENFLOG13", + "SANTE_ENFLOG14" + ] + }, + { + "id": "l1gia5uh-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(SANTE_ENFLOG11,false)=true and nvl(SANTE_ENFLOG14,false)=true) or (nvl(SANTE_ENFLOG12,false)=true and nvl(SANTE_ENFLOG14,false)=true) or (nvl(SANTE_ENFLOG13,false)=true and nvl(SANTE_ENFLOG14,false)=true))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Vous ne pouvez pas cocher Non et une autre réponse.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SANTE_ENFLOG11", + "SANTE_ENFLOG14", + "SANTE_ENFLOG12", + "SANTE_ENFLOG13" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l446h6js", + "page": "2.94", + "label": { + "value": "Votre premier enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG1", + "SEXE_ENFLOG1", + "SANTE_ENFLOG11", + "SANTE_ENFLOG12", + "SANTE_ENFLOG13", + "SANTE_ENFLOG14", + "VAL_ANNAISS" + ], + "responses": [ + { + "id": "l1gia5uh-QOP-la6vclx9", + "label": { + "value": "\"Oui, pour des raisons de santé\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFLOG11" + } + }, + { + "id": "l1gia5uh-QOP-la6vj3fw", + "label": { + "value": "\"Oui, à la suite d’une décision de l’aide sociale à l’enfance ou du juge des enfants\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFLOG12" + } + }, + { + "id": "l1gia5uh-QOP-la6vaa94", + "label": { + "value": "\"Oui, pour une autre raison\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFLOG13" + } + }, + { + "id": "l1gia5uh-QOP-la6v5qj3", + "label": { + "value": "\"Non\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFLOG14" + } + } + ] + }, + { + "id": "ljmv0rhg", + "componentType": "Subsequence", + "goToPage": "2.110", + "label": { + "value": "Votre deuxième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv0rhg", + "page": "2.110", + "label": { + "value": "Votre deuxième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "VAL_ANNAISS" + ] + }, + { + "id": "l4i9118b", + "componentType": "Input", + "mandatory": false, + "page": "2.110", + "maxLength": 249, + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", comment s’appelle votre deuxième enfant qui vit avec vous, même une petite partie du temps seulement ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l4i9118b-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PRENOM_ENFLOG2) or PRENOM_ENFLOG2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer le prénom attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PRENOM_ENFLOG2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv0rhg", + "page": "2.110", + "label": { + "value": "Votre deuxième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "PRENOM_ENFLOG2", + "VAL_ANNAISS" + ], + "response": { + "name": "PRENOM_ENFLOG2" + } + }, + { + "id": "l4i8zu5m", + "componentType": "Radio", + "mandatory": false, + "page": "2.111", + "label": { + "value": "\"Quel est le sexe de \" || (if (nvl(PRENOM_ENFLOG2,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG2) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l4i8zu5m-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEXE_ENFLOG2) or SEXE_ENFLOG2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEXE_ENFLOG2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv0rhg", + "page": "2.110", + "label": { + "value": "Votre deuxième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG2", + "SEXE_ENFLOG2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Masculin\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Féminin\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEXE_ENFLOG2" + } + }, + { + "id": "l4ia7rxn", + "componentType": "Input", + "mandatory": false, + "page": "2.112", + "maxLength": 4, + "label": { + "value": "\"Quelle est l’année de naissance de \" || (if (nvl(PRENOM_ENFLOG2,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG2) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l4ia7rxn-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ANAI_ENFLOG2) or ANAI_ENFLOG2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’année attendue.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFLOG2" + ] + }, + { + "id": "l4ia7rxn-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANAI_ENFLOG2)) and not(isnull(ANAIS)) and cast(ANAI_ENFLOG2,integer) < cast(ANAIS,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFLOG2", + "ANAIS" + ] + }, + { + "id": "l4ia7rxn-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANAI_ENFLOG2)) and not(isnull(ANAIS)) and (cast(ANAIS,integer) + 15 > cast(ANAI_ENFLOG2,integer)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Il semble y avoir peu d’écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFLOG2", + "ANAIS" + ] + }, + { + "id": "l4ia7rxn-CI-3", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(ANAI_ENFLOG2,integer) < 1920 or cast(ANAI_ENFLOG2,integer) > 2024)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de naissance de votre enfant est comprise entre 1920 et 2024.\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFLOG2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv0rhg", + "page": "2.110", + "label": { + "value": "Votre deuxième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG2", + "ANAI_ENFLOG2", + "VAL_ANNAISS" + ], + "response": { + "name": "ANAI_ENFLOG2" + } + }, + { + "id": "l4qtpg9f", + "componentType": "Radio", + "mandatory": false, + "page": "2.113", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFLOG2,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFLOG2) || \" est-\" || (if (SEXE_ENFLOG2=\"1\" or isnull(SEXE_ENFLOG2)) then \"il né\" else \"elle née\") || \" en France ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4qtpg9f-l4qtdwhq", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Prenez en compte les frontières actuelles.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l4qtpg9f-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NEFRANCE_ENFLOG2) or NEFRANCE_ENFLOG2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NEFRANCE_ENFLOG2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv0rhg", + "page": "2.110", + "label": { + "value": "Votre deuxième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG2", + "SEXE_ENFLOG2", + "NEFRANCE_ENFLOG2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "NEFRANCE_ENFLOG2" + } + }, + { + "id": "l4iano52", + "componentType": "Radio", + "mandatory": false, + "page": "2.114", + "label": { + "value": "\"L’autre parent de \" || (if (nvl(PRENOM_ENFLOG2,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG2) || \" vit-il/elle avec vous dans ce logement ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l4iano52-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_VIT_ENFLOG2) or PARENT_VIT_ENFLOG2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_VIT_ENFLOG2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv0rhg", + "page": "2.110", + "label": { + "value": "Votre deuxième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG2", + "PARENT_VIT_ENFLOG2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui, il/elle vit avec vous\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Non, il/elle vit ailleurs\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Non, il/elle est décédé(e)\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_VIT_ENFLOG2" + } + }, + { + "id": "kwqjmujx", + "componentType": "Radio", + "mandatory": false, + "page": "2.115", + "label": { + "value": "\"L’autre parent de \" || (if (nvl(PRENOM_ENFLOG2,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG2) || \" vit-il/elle en France ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kwqjmujx-l4pavsqb", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Prenez en compte les frontières actuelles.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG2" + ] + }, + "controls": [ + { + "id": "kwqjmujx-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_FR_ENFLOG2) or PARENT_FR_ENFLOG2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_FR_ENFLOG2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv0rhg", + "page": "2.110", + "label": { + "value": "Votre deuxième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG2", + "PARENT_FR_ENFLOG2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_FR_ENFLOG2" + } + }, + { + "id": "l4pannoa", + "componentType": "Input", + "mandatory": false, + "page": "2.116", + "maxLength": 20, + "label": { + "value": "\"Dans quel département vit l’autre parent de \" || (if (nvl(PRENOM_ENFLOG2,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG2) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4pannoa-l4pakgkw", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2)) and (PARENT_FR_ENFLOG2 =\"1\" or isnull(PARENT_FR_ENFLOG2))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG2", + "PARENT_FR_ENFLOG2" + ] + }, + "controls": [ + { + "id": "l4pannoa-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_DEP_ENFLOG2) or PARENT_DEP_ENFLOG2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_DEP_ENFLOG2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv0rhg", + "page": "2.110", + "label": { + "value": "Votre deuxième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG2", + "PARENT_DEP_ENFLOG2", + "VAL_ANNAISS" + ], + "response": { + "name": "PARENT_DEP_ENFLOG2" + } + }, + { + "id": "l4pasuts", + "componentType": "Input", + "mandatory": false, + "page": "2.117", + "maxLength": 20, + "label": { + "value": "\"Dans quelle commune vit l’autre parent de \" || (if (nvl(PRENOM_ENFLOG2,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG2) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4pasuts-l4pat1rt", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez la commune recherchée et sélectionnez la dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2)) and (PARENT_FR_ENFLOG2 =\"1\" or isnull(PARENT_FR_ENFLOG2))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG2", + "PARENT_FR_ENFLOG2" + ] + }, + "controls": [ + { + "id": "l4pasuts-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_COM_ENFLOG2) or PARENT_COM_ENFLOG2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_COM_ENFLOG2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv0rhg", + "page": "2.110", + "label": { + "value": "Votre deuxième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG2", + "PARENT_COM_ENFLOG2", + "VAL_ANNAISS" + ], + "response": { + "name": "PARENT_COM_ENFLOG2" + } + }, + { + "id": "l4pbc5wa", + "componentType": "Input", + "mandatory": false, + "page": "2.118", + "maxLength": 20, + "label": { + "value": "\"Dans quel pays vit l’autre parent de \" || (if (nvl(PRENOM_ENFLOG2,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG2) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4pbc5wa-l4pbep5s", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2)) and (PARENT_FR_ENFLOG2 =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG2", + "PARENT_FR_ENFLOG2" + ] + }, + "controls": [ + { + "id": "l4pbc5wa-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_PAY_ENFLOG2) or PARENT_PAY_ENFLOG2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_PAY_ENFLOG2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv0rhg", + "page": "2.110", + "label": { + "value": "Votre deuxième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG2", + "PARENT_PAY_ENFLOG2", + "VAL_ANNAISS" + ], + "response": { + "name": "PARENT_PAY_ENFLOG2" + } + }, + { + "id": "l4idgpbr", + "componentType": "Radio", + "mandatory": false, + "page": "2.119", + "label": { + "value": "\"A quelle fréquence \" || (if (nvl(PRENOM_ENFLOG2,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG2) || \" est-\" || (if (SEXE_ENFLOG2=\"1\" or isnull(SEXE_ENFLOG2)) then \"il\" else \"elle\") || \" en contact avec son autre parent ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4idgpbr-l4id8tmg", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"(en face à face, téléphone, mail, SMS, appel vidéo, etc.)\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG2" + ] + }, + "controls": [ + { + "id": "l4idgpbr-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_FREQ_ENFLOG2) or PARENT_FREQ_ENFLOG2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_FREQ_ENFLOG2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv0rhg", + "page": "2.110", + "label": { + "value": "Votre deuxième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG2", + "SEXE_ENFLOG2", + "PARENT_FREQ_ENFLOG2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "2", + "label": { + "value": "Une ou plusieurs fois par semaine", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Une ou plusieurs fois par mois", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Une ou plusieurs fois par an", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Plus rarement ou jamais", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_FREQ_ENFLOG2" + } + }, + { + "id": "l4486unb", + "componentType": "Radio", + "mandatory": false, + "page": "2.120", + "label": { + "value": "\"Arrive-t-il à \" || (if (nvl(PRENOM_ENFLOG2,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG2) || \" de dormir chez son autre parent ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG2" + ] + }, + "controls": [ + { + "id": "l4486unb-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_DORT_ENFLOG2) or PARENT_DORT_ENFLOG2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_DORT_ENFLOG2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv0rhg", + "page": "2.110", + "label": { + "value": "Votre deuxième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG2", + "PARENT_DORT_ENFLOG2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_DORT_ENFLOG2" + } + }, + { + "id": "l4ia5o28", + "componentType": "Radio", + "mandatory": false, + "page": "2.121", + "label": { + "value": "\"Avez-vous déjà vécu avec l’autre parent de \" || (if (nvl(PRENOM_ENFLOG2,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG2) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG2" + ] + }, + "controls": [ + { + "id": "l4ia5o28-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_VECU_ENFLOG2) or PARENT_VECU_ENFLOG2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_VECU_ENFLOG2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv0rhg", + "page": "2.110", + "label": { + "value": "Votre deuxième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG2", + "PARENT_VECU_ENFLOG2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_VECU_ENFLOG2" + } + }, + { + "id": "la6yjh65", + "componentType": "Radio", + "mandatory": false, + "page": "2.122", + "label": { + "value": "\"Vous êtes-vous séparé\" || (if (TYPE_QUEST = \"2\") then \"e\" else \"\") || \" de l’autre parent de \" || (if (nvl(PRENOM_ENFLOG2,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG2) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG2" + ] + }, + "controls": [ + { + "id": "la6yjh65-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEP_AUT_PAR_ENFLOG2) or SEP_AUT_PAR_ENFLOG2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEP_AUT_PAR_ENFLOG2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv0rhg", + "page": "2.110", + "label": { + "value": "Votre deuxième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TYPE_QUEST", + "PRENOM_ENFLOG2", + "SEP_AUT_PAR_ENFLOG2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEP_AUT_PAR_ENFLOG2" + } + }, + { + "id": "l4idgqx9", + "componentType": "Radio", + "mandatory": false, + "page": "2.123", + "label": { + "value": "\"Quel a été le mode de résidence fixé par décision de justice ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2)) and (SEP_AUT_PAR_ENFLOG2=\"1\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG2", + "SEP_AUT_PAR_ENFLOG2" + ] + }, + "controls": [ + { + "id": "l4idgqx9-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(RESID_ENFLOG2) or RESID_ENFLOG2 =\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "RESID_ENFLOG2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv0rhg", + "page": "2.110", + "label": { + "value": "Votre deuxième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "RESID_ENFLOG2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "2", + "label": { + "value": "\"Pas de décision\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Résidence alternée\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\"Principalement chez vous\"", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\"Principalement chez son autre parent\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "RESID_ENFLOG2" + } + }, + { + "id": "l4ia7y0p", + "componentType": "CheckboxGroup", + "page": "2.124", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFLOG2,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFLOG2) || \" vit-\" || (if (SEXE_ENFLOG2=\"1\" or isnull(SEXE_ENFLOG2)) then \"il\" else \"elle\") || \" aussi ailleurs ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4ia7y0p-l59nvexw", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l4ia7y0p-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(SANTE_ENFLOG21, false) = false and nvl(SANTE_ENFLOG22, false) = false and nvl(SANTE_ENFLOG23, false) = false and nvl(SANTE_ENFLOG24, false) = false))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SANTE_ENFLOG21", + "SANTE_ENFLOG22", + "SANTE_ENFLOG23", + "SANTE_ENFLOG24" + ] + }, + { + "id": "l4ia7y0p-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(SANTE_ENFLOG21,false)=true and nvl(SANTE_ENFLOG24,false)=true) or (nvl(SANTE_ENFLOG22,false)=true and nvl(SANTE_ENFLOG24,false)=true) or (nvl(SANTE_ENFLOG23,false)=true and nvl(SANTE_ENFLOG24,false)=true))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Vous ne pouvez pas cocher Non et une autre réponse.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SANTE_ENFLOG21", + "SANTE_ENFLOG24", + "SANTE_ENFLOG22", + "SANTE_ENFLOG23" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv0rhg", + "page": "2.110", + "label": { + "value": "Votre deuxième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG2", + "SEXE_ENFLOG2", + "SANTE_ENFLOG21", + "SANTE_ENFLOG22", + "SANTE_ENFLOG23", + "SANTE_ENFLOG24", + "VAL_ANNAISS" + ], + "responses": [ + { + "id": "l4ia7y0p-QOP-laqv5c3y", + "label": { + "value": "\"Oui, pour des raisons de santé\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFLOG21" + } + }, + { + "id": "l4ia7y0p-QOP-laqv4eoa", + "label": { + "value": "\"Oui, à la suite d’une décision de l’aide sociale à l’enfance ou du juge des enfants\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFLOG22" + } + }, + { + "id": "l4ia7y0p-QOP-laquos4t", + "label": { + "value": "\"Oui, pour une autre raison\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFLOG23" + } + }, + { + "id": "l4ia7y0p-QOP-laqupuni", + "label": { + "value": "\"Non\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFLOG24" + } + } + ] + }, + { + "id": "ljmvg6vc", + "componentType": "Subsequence", + "goToPage": "2.125", + "label": { + "value": "Votre troisième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvg6vc", + "page": "2.125", + "label": { + "value": "Votre troisième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "VAL_ANNAISS" + ] + }, + { + "id": "l4ld0ziw", + "componentType": "Input", + "mandatory": false, + "page": "2.125", + "maxLength": 249, + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", comment s’appelle votre troisième enfant qui vit avec vous, même une petite partie du temps seulement ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l4ld0ziw-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PRENOM_ENFLOG3) or PRENOM_ENFLOG3=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer le prénom attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PRENOM_ENFLOG3" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvg6vc", + "page": "2.125", + "label": { + "value": "Votre troisième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "PRENOM_ENFLOG3", + "VAL_ANNAISS" + ], + "response": { + "name": "PRENOM_ENFLOG3" + } + }, + { + "id": "l4lcp4co", + "componentType": "Radio", + "mandatory": false, + "page": "2.126", + "label": { + "value": "\"Quel est le sexe de \" || (if (nvl(PRENOM_ENFLOG3,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG3) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l4lcp4co-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEXE_ENFLOG3) or SEXE_ENFLOG3=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEXE_ENFLOG3" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvg6vc", + "page": "2.125", + "label": { + "value": "Votre troisième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG3", + "SEXE_ENFLOG3", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Masculin\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Féminin\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEXE_ENFLOG3" + } + }, + { + "id": "l4ld3y0j", + "componentType": "Input", + "mandatory": false, + "page": "2.127", + "maxLength": 4, + "label": { + "value": "\"Quelle est l’année de naissance de \" || (if (nvl(PRENOM_ENFLOG3,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG3) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l4ld3y0j-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ANAI_ENFLOG3) or ANAI_ENFLOG3=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFLOG3" + ] + }, + { + "id": "l4ld3y0j-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANAI_ENFLOG3)) and not(isnull(ANAIS)) and cast(ANAI_ENFLOG3,integer) < cast(ANAIS,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"\r\n", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFLOG3", + "ANAIS" + ] + }, + { + "id": "l4ld3y0j-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANAI_ENFLOG3)) and not(isnull(ANAIS)) and (cast(ANAIS,integer) + 15 > cast(ANAI_ENFLOG3,integer)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Il semble y avoir peu d’écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFLOG3", + "ANAIS" + ] + }, + { + "id": "l4ld3y0j-CI-3", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(ANAI_ENFLOG3,integer) < 1920 or cast(ANAI_ENFLOG3,integer) > 2024)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de naissance de votre enfant est comprise entre 1920 et 2024.\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFLOG3" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvg6vc", + "page": "2.125", + "label": { + "value": "Votre troisième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG3", + "ANAI_ENFLOG3", + "VAL_ANNAISS" + ], + "response": { + "name": "ANAI_ENFLOG3" + } + }, + { + "id": "l4qty53i", + "componentType": "Radio", + "mandatory": false, + "page": "2.128", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFLOG3,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFLOG3) || \" est-\" || (if (SEXE_ENFLOG3=\"1\" or isnull(SEXE_ENFLOG3)) then \"il né\" else \"elle née\") || \" en France ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4qty53i-l4qthko2", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Prenez en compte les frontières actuelles.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l4qty53i-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NEFRANCE_ENFLOG3) or NEFRANCE_ENFLOG3=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NEFRANCE_ENFLOG3" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvg6vc", + "page": "2.125", + "label": { + "value": "Votre troisième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG3", + "SEXE_ENFLOG3", + "NEFRANCE_ENFLOG3", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "NEFRANCE_ENFLOG3" + } + }, + { + "id": "l4lct7cb", + "componentType": "Radio", + "mandatory": false, + "page": "2.129", + "label": { + "value": "\"L’autre parent de \" || (if (nvl(PRENOM_ENFLOG3,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG3) || \" vit-il/elle avec vous dans ce logement ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l4lct7cb-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_VIT_ENFLOG3) or PARENT_VIT_ENFLOG3=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_VIT_ENFLOG3" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvg6vc", + "page": "2.125", + "label": { + "value": "Votre troisième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG3", + "PARENT_VIT_ENFLOG3", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui, il/elle vit avec vous\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Non, il/elle vit ailleurs\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Non, il/elle est décédé(e)\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_VIT_ENFLOG3" + } + }, + { + "id": "l4ld827i", + "componentType": "Radio", + "mandatory": false, + "page": "2.130", + "label": { + "value": "\"L’autre parent de \" || (if (nvl(PRENOM_ENFLOG3,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG3) || \" vit-il/elle en France ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4ld827i-l4pawrpv", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Prenez en compte les frontières actuelles.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG3" + ] + }, + "controls": [ + { + "id": "l4ld827i-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_FR_ENFLOG3) or PARENT_FR_ENFLOG3 =\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_FR_ENFLOG3" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvg6vc", + "page": "2.125", + "label": { + "value": "Votre troisième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG3", + "PARENT_FR_ENFLOG3", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_FR_ENFLOG3" + } + }, + { + "id": "l4pat7vx", + "componentType": "Input", + "mandatory": false, + "page": "2.131", + "maxLength": 20, + "label": { + "value": "\"Dans quel département vit l’autre parent de \" || (if (nvl(PRENOM_ENFLOG3,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG3) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4pat7vx-l4pb2s4u", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3)) and (PARENT_FR_ENFLOG3 =\"1\" or isnull(PARENT_FR_ENFLOG3))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG3", + "PARENT_FR_ENFLOG3" + ] + }, + "controls": [ + { + "id": "l4pat7vx-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_DEP_ENFLOG3) or PARENT_DEP_ENFLOG3=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_DEP_ENFLOG3" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvg6vc", + "page": "2.125", + "label": { + "value": "Votre troisième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG3", + "PARENT_DEP_ENFLOG3", + "VAL_ANNAISS" + ], + "response": { + "name": "PARENT_DEP_ENFLOG3" + } + }, + { + "id": "l4pavp6y", + "componentType": "Input", + "mandatory": false, + "page": "2.132", + "maxLength": 20, + "label": { + "value": "\"Dans quelle commune vit l’autre parent de \" || (if (nvl(PRENOM_ENFLOG3,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG3) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4pavp6y-l4paydhw", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez la commune recherchée et sélectionnez la dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3)) and (PARENT_FR_ENFLOG3 =\"1\" or isnull(PARENT_FR_ENFLOG3))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG3", + "PARENT_FR_ENFLOG3" + ] + }, + "controls": [ + { + "id": "l4pavp6y-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_COM_ENFLOG3) or PARENT_COM_ENFLOG3=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_COM_ENFLOG3" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvg6vc", + "page": "2.125", + "label": { + "value": "Votre troisième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG3", + "PARENT_COM_ENFLOG3", + "VAL_ANNAISS" + ], + "response": { + "name": "PARENT_COM_ENFLOG3" + } + }, + { + "id": "l4pb77tv", + "componentType": "Input", + "mandatory": false, + "page": "2.133", + "maxLength": 20, + "label": { + "value": "\"Dans quel pays vit l’autre parent de \" || (if (nvl(PRENOM_ENFLOG3,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG3) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4pb77tv-l4pbgztm", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3)) and (PARENT_FR_ENFLOG3 =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG3", + "PARENT_FR_ENFLOG3" + ] + }, + "controls": [ + { + "id": "l4pb77tv-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_PAY_ENFLOG3) or PARENT_PAY_ENFLOG3=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_PAY_ENFLOG3" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvg6vc", + "page": "2.125", + "label": { + "value": "Votre troisième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG3", + "PARENT_PAY_ENFLOG3", + "VAL_ANNAISS" + ], + "response": { + "name": "PARENT_PAY_ENFLOG3" + } + }, + { + "id": "l4ld15su", + "componentType": "Radio", + "mandatory": false, + "page": "2.134", + "label": { + "value": "\"A quelle fréquence \" || (if (nvl(PRENOM_ENFLOG3,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG3) || \" est-\" || (if (SEXE_ENFLOG3=\"1\" or isnull(SEXE_ENFLOG3)) then \"il\" else \"elle\") || \" en contact avec son autre parent ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4ld15su-l4lczwxy", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"(en face à face, téléphone, mail, SMS, appel vidéo, etc.)\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG3" + ] + }, + "controls": [ + { + "id": "l4ld15su-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_FREQ_ENFLOG3) or PARENT_FREQ_ENFLOG3=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_FREQ_ENFLOG3" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvg6vc", + "page": "2.125", + "label": { + "value": "Votre troisième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG3", + "SEXE_ENFLOG3", + "PARENT_FREQ_ENFLOG3", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "2", + "label": { + "value": "Une ou plusieurs fois par semaine", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Une ou plusieurs fois par mois", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Une ou plusieurs fois par an", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Plus rarement ou jamais", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_FREQ_ENFLOG3" + } + }, + { + "id": "l4ld0zmv", + "componentType": "Radio", + "mandatory": false, + "page": "2.135", + "label": { + "value": "\"Arrive-t-il à \" || (if (nvl(PRENOM_ENFLOG3,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG3) || \" de dormir chez son autre parent ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG3" + ] + }, + "controls": [ + { + "id": "l4ld0zmv-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_DORT_ENFLOG3) or PARENT_DORT_ENFLOG3=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_DORT_ENFLOG3" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvg6vc", + "page": "2.125", + "label": { + "value": "Votre troisième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG3", + "PARENT_DORT_ENFLOG3", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_DORT_ENFLOG3" + } + }, + { + "id": "l4ld0jea", + "componentType": "Radio", + "mandatory": false, + "page": "2.136", + "label": { + "value": "\"Avez-vous déjà vécu avec l’autre parent de \" || (if (nvl(PRENOM_ENFLOG3,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG3) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG3" + ] + }, + "controls": [ + { + "id": "l4ld0jea-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_VECU_ENFLOG3) or PARENT_VECU_ENFLOG3=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_VECU_ENFLOG3" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvg6vc", + "page": "2.125", + "label": { + "value": "Votre troisième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG3", + "PARENT_VECU_ENFLOG3", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_VECU_ENFLOG3" + } + }, + { + "id": "la6y9flo", + "componentType": "Radio", + "mandatory": false, + "page": "2.137", + "label": { + "value": "\"Vous êtes-vous séparé\" || (if (TYPE_QUEST = \"2\") then \"e\" else \"\") || \" de l’autre parent de \" || (if (nvl(PRENOM_ENFLOG3,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG3) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG3" + ] + }, + "controls": [ + { + "id": "la6y9flo-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEP_AUT_PAR_ENFLOG3) or SEP_AUT_PAR_ENFLOG3=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEP_AUT_PAR_ENFLOG3" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvg6vc", + "page": "2.125", + "label": { + "value": "Votre troisième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TYPE_QUEST", + "PRENOM_ENFLOG3", + "SEP_AUT_PAR_ENFLOG3", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEP_AUT_PAR_ENFLOG3" + } + }, + { + "id": "l4lde13h", + "componentType": "Radio", + "mandatory": false, + "page": "2.138", + "label": { + "value": "\"Quel a été le mode de résidence fixé par décision de justice ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3)) and (SEP_AUT_PAR_ENFLOG3=\"1\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG3", + "SEP_AUT_PAR_ENFLOG3" + ] + }, + "controls": [ + { + "id": "l4lde13h-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(RESID_ENFLOG3) or RESID_ENFLOG3=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "RESID_ENFLOG3" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvg6vc", + "page": "2.125", + "label": { + "value": "Votre troisième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "RESID_ENFLOG3", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "2", + "label": { + "value": "\"Pas de décision\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Résidence alternée\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\"Principalement chez vous\"", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\"Principalement chez son autre parent\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "RESID_ENFLOG3" + } + }, + { + "id": "l4lcuoke", + "componentType": "CheckboxGroup", + "page": "2.139", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFLOG3,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFLOG3) || \" vit-\" || (if (SEXE_ENFLOG3=\"1\" or isnull(SEXE_ENFLOG3)) then \"il\" else \"elle\") || \" aussi ailleurs ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4lcuoke-l59o0cuh", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l4lcuoke-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(SANTE_ENFLOG31, false) = false and nvl(SANTE_ENFLOG32, false) = false and nvl(SANTE_ENFLOG33, false) = false and nvl(SANTE_ENFLOG34, false) = false))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SANTE_ENFLOG31", + "SANTE_ENFLOG32", + "SANTE_ENFLOG33", + "SANTE_ENFLOG34" + ] + }, + { + "id": "l4lcuoke-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(SANTE_ENFLOG31,false)=true and nvl(SANTE_ENFLOG34,false)=true) or (nvl(SANTE_ENFLOG32,false)=true and nvl(SANTE_ENFLOG34,false)=true) or (nvl(SANTE_ENFLOG33,false)=true and nvl(SANTE_ENFLOG34,false)=true))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Vous ne pouvez pas cocher Non et une autre réponse.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SANTE_ENFLOG31", + "SANTE_ENFLOG34", + "SANTE_ENFLOG32", + "SANTE_ENFLOG33" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvg6vc", + "page": "2.125", + "label": { + "value": "Votre troisième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG3", + "SEXE_ENFLOG3", + "SANTE_ENFLOG31", + "SANTE_ENFLOG32", + "SANTE_ENFLOG33", + "SANTE_ENFLOG34", + "VAL_ANNAISS" + ], + "responses": [ + { + "id": "l4lcuoke-QOP-la6v5i7c", + "label": { + "value": "\"Oui, pour des raisons de santé\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFLOG31" + } + }, + { + "id": "l4lcuoke-QOP-la6vlqvx", + "label": { + "value": "\"Oui, à la suite d’une décision de l’aide sociale à l’enfance ou du juge des enfants\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFLOG32" + } + }, + { + "id": "l4lcuoke-QOP-la6vkkpx", + "label": { + "value": "\"Oui, pour une autre raison\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFLOG33" + } + }, + { + "id": "l4lcuoke-QOP-la6vkdlt", + "label": { + "value": "\"Non\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFLOG34" + } + } + ] + }, + { + "id": "ljmv7iyw", + "componentType": "Subsequence", + "goToPage": "2.140", + "label": { + "value": "Votre quatrième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv7iyw", + "page": "2.140", + "label": { + "value": "Votre quatrième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "VAL_ANNAISS" + ] + }, + { + "id": "l4lec0rk", + "componentType": "Input", + "mandatory": false, + "page": "2.140", + "maxLength": 249, + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", comment s’appelle votre quatrième enfant qui vit avec vous, même une petite partie du temps seulement ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l4lec0rk-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PRENOM_ENFLOG4) or PRENOM_ENFLOG4=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer le prénom attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PRENOM_ENFLOG4" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv7iyw", + "page": "2.140", + "label": { + "value": "Votre quatrième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "PRENOM_ENFLOG4", + "VAL_ANNAISS" + ], + "response": { + "name": "PRENOM_ENFLOG4" + } + }, + { + "id": "l4lefdoh", + "componentType": "Radio", + "mandatory": false, + "page": "2.141", + "label": { + "value": "\"Quel est le sexe de \" || (if (nvl(PRENOM_ENFLOG4,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG4) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l4lefdoh-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(insull(SEXE_ENFLOG4) or SEXE_ENFLOG4=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEXE_ENFLOG4" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv7iyw", + "page": "2.140", + "label": { + "value": "Votre quatrième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG4", + "SEXE_ENFLOG4", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Masculin\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Féminin\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEXE_ENFLOG4" + } + }, + { + "id": "l4le9rs3", + "componentType": "Input", + "mandatory": false, + "page": "2.142", + "maxLength": 4, + "label": { + "value": "\"Quelle est l’année de naissance de \" || (if (nvl(PRENOM_ENFLOG4,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG4) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l4le9rs3-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ANAI_ENFLOG4) or ANAI_ENFLOG4 =\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFLOG4" + ] + }, + { + "id": "l4le9rs3-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANAI_ENFLOG4)) and not(isnull(ANAIS)) and cast(ANAI_ENFLOG4,integer) < cast(ANAIS,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFLOG4", + "ANAIS" + ] + }, + { + "id": "l4le9rs3-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANAI_ENFLOG4)) and not(isnull(ANAIS)) and (cast(ANAIS,integer) + 15 > cast(ANAI_ENFLOG4,integer)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Il semble y avoir peu d’écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFLOG4", + "ANAIS" + ] + }, + { + "id": "l4le9rs3-CI-3", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(ANAI_ENFLOG4,integer) < 1920 or cast(ANAI_ENFLOG4,integer) > 2024)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de naissance de votre enfant est comprise entre 1920 et 2024.\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFLOG4" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv7iyw", + "page": "2.140", + "label": { + "value": "Votre quatrième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG4", + "ANAI_ENFLOG4", + "VAL_ANNAISS" + ], + "response": { + "name": "ANAI_ENFLOG4" + } + }, + { + "id": "l4qtvt71", + "componentType": "Radio", + "mandatory": false, + "page": "2.143", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFLOG4,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFLOG4) || \" est-\" || (if (SEXE_ENFLOG4=\"1\" or isnull(SEXE_ENFLOG4)) then \"il né\" else \"elle née\") || \" en France ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4qtvt71-l4qty3sm", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Prenez en compte les frontières actuelles.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l4qtvt71-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NEFRANCE_ENFLOG4) or NEFRANCE_ENFLOG4=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NEFRANCE_ENFLOG4" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv7iyw", + "page": "2.140", + "label": { + "value": "Votre quatrième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG4", + "SEXE_ENFLOG4", + "NEFRANCE_ENFLOG4", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "NEFRANCE_ENFLOG4" + } + }, + { + "id": "l4ler7fu", + "componentType": "Radio", + "mandatory": false, + "page": "2.144", + "label": { + "value": "\"L’autre parent de \" || (if (nvl(PRENOM_ENFLOG4,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG4) || \" vit-il/elle avec vous dans ce logement ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l4ler7fu-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_VIT_ENFLOG4) or PARENT_VIT_ENFLOG4=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_VIT_ENFLOG4" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv7iyw", + "page": "2.140", + "label": { + "value": "Votre quatrième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG4", + "PARENT_VIT_ENFLOG4", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui, il/elle vit avec vous\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Non, il/elle vit ailleurs\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Non, il/elle est décédé(e)\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_VIT_ENFLOG4" + } + }, + { + "id": "l4lemegm", + "componentType": "Radio", + "mandatory": false, + "page": "2.145", + "label": { + "value": "\"L’autre parent de \" || (if (nvl(PRENOM_ENFLOG4,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG4) || \" vit-il/elle en France ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4lemegm-l4paro0f", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Prenez en compte les frontières actuelles.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG4" + ] + }, + "controls": [ + { + "id": "l4lemegm-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_FR_ENFLOG4) or PARENT_FR_ENFLOG4=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_FR_ENFLOG4" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv7iyw", + "page": "2.140", + "label": { + "value": "Votre quatrième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG4", + "PARENT_FR_ENFLOG4", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_FR_ENFLOG4" + } + }, + { + "id": "l4payjff", + "componentType": "Input", + "mandatory": false, + "page": "2.146", + "maxLength": 20, + "label": { + "value": "\"Dans quel département vit l’autre parent de \" || (if (nvl(PRENOM_ENFLOG4,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG4) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4payjff-l4paqxkg", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4)) and (PARENT_FR_ENFLOG4 =\"1\" or isnull(PARENT_FR_ENFLOG4))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG4", + "PARENT_FR_ENFLOG4" + ] + }, + "controls": [ + { + "id": "l4payjff-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_DEP_ENFLOG4) or PARENT_DEP_ENFLOG4=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_DEP_ENFLOG4" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv7iyw", + "page": "2.140", + "label": { + "value": "Votre quatrième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG4", + "PARENT_DEP_ENFLOG4", + "VAL_ANNAISS" + ], + "response": { + "name": "PARENT_DEP_ENFLOG4" + } + }, + { + "id": "l4paz6m4", + "componentType": "Input", + "mandatory": false, + "page": "2.147", + "maxLength": 20, + "label": { + "value": "\"Dans quelle commune vit l’autre parent de \" || (if (nvl(PRENOM_ENFLOG4,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG4) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4paz6m4-l4pat094", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez la commune recherchée et sélectionnez la dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4)) and (PARENT_FR_ENFLOG4 =\"1\" or isnull(PARENT_FR_ENFLOG4))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG4", + "PARENT_FR_ENFLOG4" + ] + }, + "controls": [ + { + "id": "l4paz6m4-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_COM_ENFLOG4) or PARENT_COM_ENFLOG4=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_COM_ENFLOG4" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv7iyw", + "page": "2.140", + "label": { + "value": "Votre quatrième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG4", + "PARENT_COM_ENFLOG4", + "VAL_ANNAISS" + ], + "response": { + "name": "PARENT_COM_ENFLOG4" + } + }, + { + "id": "l4pbax4x", + "componentType": "Input", + "mandatory": false, + "page": "2.148", + "maxLength": 20, + "label": { + "value": "\"Dans quel pays vit l’autre parent de \" || (if (nvl(PRENOM_ENFLOG4,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG4) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4pbax4x-l4pbe5ur", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4)) and (PARENT_FR_ENFLOG4 =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG4", + "PARENT_FR_ENFLOG4" + ] + }, + "controls": [ + { + "id": "l4pbax4x-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_PAY_ENFLOG4) or PARENT_PAY_ENFLOG4=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_PAY_ENFLOG4" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv7iyw", + "page": "2.140", + "label": { + "value": "Votre quatrième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG4", + "PARENT_PAY_ENFLOG4", + "VAL_ANNAISS" + ], + "response": { + "name": "PARENT_PAY_ENFLOG4" + } + }, + { + "id": "l4letwtq", + "componentType": "Radio", + "mandatory": false, + "page": "2.149", + "label": { + "value": "\"A quelle fréquence \" || (if (nvl(PRENOM_ENFLOG4,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG4) || \" est-\" || (if (SEXE_ENFLOG4=\"1\" or isnull(SEXE_ENFLOG4)) then \"il\" else \"elle\") || \" en contact avec son autre parent ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4letwtq-l4lergdt", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"(en face à face, téléphone, mail, SMS, appel vidéo, etc.)\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG4" + ] + }, + "controls": [ + { + "id": "l4letwtq-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_FREQ_ENFLOG4) or PARENT_FREQ_ENFLOG4 =\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_FREQ_ENFLOG4" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv7iyw", + "page": "2.140", + "label": { + "value": "Votre quatrième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG4", + "SEXE_ENFLOG4", + "PARENT_FREQ_ENFLOG4", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "2", + "label": { + "value": "Une ou plusieurs fois par semaine", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Une ou plusieurs fois par mois", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Une ou plusieurs fois par an", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Plus rarement ou jamais", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_FREQ_ENFLOG4" + } + }, + { + "id": "l4letk9j", + "componentType": "Radio", + "mandatory": false, + "page": "2.150", + "label": { + "value": "\"Arrive-t-il à \" || (if (nvl(PRENOM_ENFLOG4,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG4) || \" de dormir chez son autre parent ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG4" + ] + }, + "controls": [ + { + "id": "l4letk9j-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_DORT_ENFLOG4) or PARENT_DORT_ENFLOG4=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_DORT_ENFLOG4" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv7iyw", + "page": "2.140", + "label": { + "value": "Votre quatrième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG4", + "PARENT_DORT_ENFLOG4", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_DORT_ENFLOG4" + } + }, + { + "id": "l4lekh2t", + "componentType": "Radio", + "mandatory": false, + "page": "2.151", + "label": { + "value": "\"Avez-vous déjà vécu avec l’autre parent de \" || (if (nvl(PRENOM_ENFLOG4,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG4) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG4" + ] + }, + "controls": [ + { + "id": "l4lekh2t-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_VECU_ENFLOG4) or PARENT_VECU_ENFLOG4=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_VECU_ENFLOG4" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv7iyw", + "page": "2.140", + "label": { + "value": "Votre quatrième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG4", + "PARENT_VECU_ENFLOG4", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_VECU_ENFLOG4" + } + }, + { + "id": "la6y7rno", + "componentType": "Radio", + "mandatory": false, + "page": "2.152", + "label": { + "value": "\"Vous êtes-vous séparé\" || (if (TYPE_QUEST = \"2\") then \"e\" else \"\") || \" de l’autre parent de \" || (if (nvl(PRENOM_ENFLOG4,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG4) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG4" + ] + }, + "controls": [ + { + "id": "la6y7rno-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEP_AUT_PAR_ENFLOG4) or SEP_AUT_PAR_ENFLOG4=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEP_AUT_PAR_ENFLOG4" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv7iyw", + "page": "2.140", + "label": { + "value": "Votre quatrième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TYPE_QUEST", + "PRENOM_ENFLOG4", + "SEP_AUT_PAR_ENFLOG4", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEP_AUT_PAR_ENFLOG4" + } + }, + { + "id": "l4lexatl", + "componentType": "Radio", + "mandatory": false, + "page": "2.153", + "label": { + "value": "\"Quel a été le mode de résidence fixé par décision de justice ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4)) and (SEP_AUT_PAR_ENFLOG4=\"1\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG4", + "SEP_AUT_PAR_ENFLOG4" + ] + }, + "controls": [ + { + "id": "l4lexatl-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(RESID_ENFLOG4) or RESID_ENFLOG4=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "RESID_ENFLOG4" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv7iyw", + "page": "2.140", + "label": { + "value": "Votre quatrième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "RESID_ENFLOG4", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "2", + "label": { + "value": "\"Pas de décision\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Résidence alternée\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\"Principalement chez vous\"", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\"Principalement chez son autre parent\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "RESID_ENFLOG4" + } + }, + { + "id": "l4lec2qz", + "componentType": "CheckboxGroup", + "page": "2.154", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFLOG4,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFLOG4) || \" vit- \" || (if (SEXE_ENFLOG4=\"1\" or isnull(SEXE_ENFLOG4)) then \"il\" else \"elle\") || \" aussi ailleurs ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4lec2qz-l59nzdj2", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l4lec2qz-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(SANTE_ENFLOG41, false) = false and nvl(SANTE_ENFLOG42, false) = false and nvl(SANTE_ENFLOG43, false) = false and nvl(SANTE_ENFLOG44, false) = false))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SANTE_ENFLOG41", + "SANTE_ENFLOG42", + "SANTE_ENFLOG43", + "SANTE_ENFLOG44" + ] + }, + { + "id": "l4lec2qz-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(SANTE_ENFLOG41,false)=true and nvl(SANTE_ENFLOG44,false)=true) or (nvl(SANTE_ENFLOG42,false)=true and nvl(SANTE_ENFLOG44,false)=true) or (nvl(SANTE_ENFLOG43,false)=true and nvl(SANTE_ENFLOG44,false)=true))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Vous ne pouvez pas cocher Non et une autre réponse.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SANTE_ENFLOG41", + "SANTE_ENFLOG44", + "SANTE_ENFLOG42", + "SANTE_ENFLOG43" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv7iyw", + "page": "2.140", + "label": { + "value": "Votre quatrième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG4", + "SEXE_ENFLOG4", + "SANTE_ENFLOG41", + "SANTE_ENFLOG42", + "SANTE_ENFLOG43", + "SANTE_ENFLOG44", + "VAL_ANNAISS" + ], + "responses": [ + { + "id": "l4lec2qz-QOP-la6vffpf", + "label": { + "value": "\"Oui, pour des raisons de santé\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFLOG41" + } + }, + { + "id": "l4lec2qz-QOP-la6vkyqn", + "label": { + "value": "\"Oui, à la suite d’une décision de l’aide sociale à l’enfance ou du juge des enfants\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFLOG42" + } + }, + { + "id": "l4lec2qz-QOP-la6vfxog", + "label": { + "value": "\"Oui, pour une autre raison\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFLOG43" + } + }, + { + "id": "l4lec2qz-QOP-la6vkx70", + "label": { + "value": "\"Non\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFLOG44" + } + } + ] + }, + { + "id": "ljmv5mgh", + "componentType": "Subsequence", + "goToPage": "2.155", + "label": { + "value": "Votre cinquième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv5mgh", + "page": "2.155", + "label": { + "value": "Votre cinquième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "VAL_ANNAISS" + ] + }, + { + "id": "l4leulqw", + "componentType": "Input", + "mandatory": false, + "page": "2.155", + "maxLength": 249, + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", comment s’appelle votre cinquième enfant qui vit avec vous, même une petite partie du temps seulement ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l4leulqw-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PRENOM_ENFLOG5) or PRENOM_ENFLOG5=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer le prénom attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PRENOM_ENFLOG5" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv5mgh", + "page": "2.155", + "label": { + "value": "Votre cinquième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "PRENOM_ENFLOG5", + "VAL_ANNAISS" + ], + "response": { + "name": "PRENOM_ENFLOG5" + } + }, + { + "id": "l4lem0yg", + "componentType": "Radio", + "mandatory": false, + "page": "2.156", + "label": { + "value": "\"Quel est le sexe de \" || (if (nvl(PRENOM_ENFLOG5,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG5) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l4lem0yg-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEXE_ENFLOG5) or SEXE_ENFLOG5=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEXE_ENFLOG5" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv5mgh", + "page": "2.155", + "label": { + "value": "Votre cinquième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG5", + "SEXE_ENFLOG5", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Masculin\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Féminin\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEXE_ENFLOG5" + } + }, + { + "id": "l4lffj1f", + "componentType": "Input", + "mandatory": false, + "page": "2.157", + "maxLength": 4, + "label": { + "value": "\"Quelle est l’année de naissance de \" || (if (nvl(PRENOM_ENFLOG5,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG5) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l4lffj1f-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ANAI_ENFLOG5) or ANAI_ENFLOG5 =\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFLOG5" + ] + }, + { + "id": "l4lffj1f-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANAI_ENFLOG5)) and not(isnull(ANAIS)) and cast(ANAI_ENFLOG5,integer) < cast(ANAIS,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFLOG5", + "ANAIS" + ] + }, + { + "id": "l4lffj1f-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANAI_ENFLOG5)) and not(isnull(ANAIS)) and (cast(ANAIS,integer) + 15 > cast(ANAI_ENFLOG5,integer)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Il semble y avoir peu d’écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFLOG5", + "ANAIS" + ] + }, + { + "id": "l4lffj1f-CI-3", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(ANAI_ENFLOG5,integer) < 1920 or cast(ANAI_ENFLOG5,integer) > 2024)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de naissance de votre enfant est comprise entre 1920 et 2024.\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFLOG5" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv5mgh", + "page": "2.155", + "label": { + "value": "Votre cinquième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG5", + "ANAI_ENFLOG5", + "VAL_ANNAISS" + ], + "response": { + "name": "ANAI_ENFLOG5" + } + }, + { + "id": "l4qtm8di", + "componentType": "Radio", + "mandatory": false, + "page": "2.158", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFLOG5,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFLOG5) || \" est-\" || (if (SEXE_ENFLOG5=\"1\" or isnull(SEXE_ENFLOG5)) then \"il né\" else \"elle née\") || \" en France ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4qtm8di-l4qu07sd", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Prenez en compte les frontières actuelles.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l4qtm8di-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NEFRANCE_ENFLOG5) or NEFRANCE_ENFLOG5=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NEFRANCE_ENFLOG5" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv5mgh", + "page": "2.155", + "label": { + "value": "Votre cinquième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG5", + "SEXE_ENFLOG5", + "NEFRANCE_ENFLOG5", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "NEFRANCE_ENFLOG5" + } + }, + { + "id": "l4lfye1g", + "componentType": "Radio", + "mandatory": false, + "page": "2.159", + "label": { + "value": "\"L’autre parent de \" || (if (nvl(PRENOM_ENFLOG5,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG5) || \" vit-il/elle avec vous dans ce logement ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l4lfye1g-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_VIT_ENFLOG5) or PARENT_VIT_ENFLOG5= \"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_VIT_ENFLOG5" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv5mgh", + "page": "2.155", + "label": { + "value": "Votre cinquième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG5", + "PARENT_VIT_ENFLOG5", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui, il/elle vit avec vous\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Non, il/elle vit ailleurs\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Non, il/elle est décédé(e)\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_VIT_ENFLOG5" + } + }, + { + "id": "l4lfoek4", + "componentType": "Radio", + "mandatory": false, + "page": "2.160", + "label": { + "value": "\"L’autre parent de \" || (if (nvl(PRENOM_ENFLOG5,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG5) || \" vit-il/elle en France ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4lfoek4-l4papqg4", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Prenez en compte les frontières actuelles.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG5" + ] + }, + "controls": [ + { + "id": "l4lfoek4-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_FR_ENFLOG5) or PARENT_FR_ENFLOG5=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_FR_ENFLOG5" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv5mgh", + "page": "2.155", + "label": { + "value": "Votre cinquième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG5", + "PARENT_FR_ENFLOG5", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_FR_ENFLOG5" + } + }, + { + "id": "l4pauqgi", + "componentType": "Input", + "mandatory": false, + "page": "2.161", + "maxLength": 20, + "label": { + "value": "\"Dans quel département vit l’autre parent de \" || (if (nvl(PRENOM_ENFLOG5,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG5) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4pauqgi-l4pb0t6z", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5)) and (PARENT_FR_ENFLOG5 =\"1\" or isnull(PARENT_FR_ENFLOG5))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG5", + "PARENT_FR_ENFLOG5" + ] + }, + "controls": [ + { + "id": "l4pauqgi-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_DEP_ENFLOG5) or PARENT_DEP_ENFLOG5 =\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_DEP_ENFLOG5" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv5mgh", + "page": "2.155", + "label": { + "value": "Votre cinquième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG5", + "PARENT_DEP_ENFLOG5", + "VAL_ANNAISS" + ], + "response": { + "name": "PARENT_DEP_ENFLOG5" + } + }, + { + "id": "l4paw4ax", + "componentType": "Input", + "mandatory": false, + "page": "2.162", + "maxLength": 20, + "label": { + "value": "\"Dans quelle commune vit l’autre parent de \" || (if (nvl(PRENOM_ENFLOG5,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG5) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4paw4ax-l4paz690", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez la commune recherchée et sélectionnez la dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5)) and (PARENT_FR_ENFLOG5 =\"1\" or isnull(PARENT_FR_ENFLOG5))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG5", + "PARENT_FR_ENFLOG5" + ] + }, + "controls": [ + { + "id": "l4paw4ax-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_COM_ENFLOG5) or PARENT_COM_ENFLOG5=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_COM_ENFLOG5" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv5mgh", + "page": "2.155", + "label": { + "value": "Votre cinquième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG5", + "PARENT_COM_ENFLOG5", + "VAL_ANNAISS" + ], + "response": { + "name": "PARENT_COM_ENFLOG5" + } + }, + { + "id": "l4pb234a", + "componentType": "Input", + "mandatory": false, + "page": "2.163", + "maxLength": 20, + "label": { + "value": "\"Dans quel pays vit l’autre parent de \" || (if (nvl(PRENOM_ENFLOG5,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG5) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4pb234a-l4pb68fn", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5)) and (PARENT_FR_ENFLOG5 =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG5", + "PARENT_FR_ENFLOG5" + ] + }, + "controls": [ + { + "id": "l4pb234a-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_PAY_ENFLOG5) or PARENT_PAY_ENFLOG5 =\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_PAY_ENFLOG5" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv5mgh", + "page": "2.155", + "label": { + "value": "Votre cinquième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG5", + "PARENT_PAY_ENFLOG5", + "VAL_ANNAISS" + ], + "response": { + "name": "PARENT_PAY_ENFLOG5" + } + }, + { + "id": "l8n262ck", + "componentType": "Radio", + "mandatory": false, + "page": "2.164", + "label": { + "value": "\"A quelle fréquence \" || (if (nvl(PRENOM_ENFLOG5,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG5) || \" est-\" || (if (SEXE_ENFLOG5=\"1\" or isnull(SEXE_ENFLOG5)) then \"il\" else \"elle\") || \" en contact avec son autre parent ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8n262ck-l8n1urc0", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"(en face à face, téléphone, mail, SMS, appel vidéo, etc.)\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG5" + ] + }, + "controls": [ + { + "id": "l8n262ck-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_FREQ_ENFLOG5) or PARENT_FREQ_ENFLOG5=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_FREQ_ENFLOG5" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv5mgh", + "page": "2.155", + "label": { + "value": "Votre cinquième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG5", + "SEXE_ENFLOG5", + "PARENT_FREQ_ENFLOG5", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "2", + "label": { + "value": "Une ou plusieurs fois par semaine", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Une ou plusieurs fois par mois", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Une ou plusieurs fois par an", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Plus rarement ou jamais", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_FREQ_ENFLOG5" + } + }, + { + "id": "l4lfr4qa", + "componentType": "Radio", + "mandatory": false, + "page": "2.165", + "label": { + "value": "\"Arrive-t-il à \" || (if (nvl(PRENOM_ENFLOG5,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG5) || \" de dormir chez son autre parent ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG5" + ] + }, + "controls": [ + { + "id": "l4lfr4qa-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_DORT_ENFLOG5) or PARENT_DORT_ENFLOG5=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_DORT_ENFLOG5" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv5mgh", + "page": "2.155", + "label": { + "value": "Votre cinquième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG5", + "PARENT_DORT_ENFLOG5", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_DORT_ENFLOG5" + } + }, + { + "id": "l4lfvape", + "componentType": "Radio", + "mandatory": false, + "page": "2.166", + "label": { + "value": "\"Avez-vous déjà vécu avec l’autre parent de \" || (if (nvl(PRENOM_ENFLOG5,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG5) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG5" + ] + }, + "controls": [ + { + "id": "l4lfvape-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_VECU_ENFLOG5) or PARENT_VECU_ENFLOG5=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_VECU_ENFLOG5" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv5mgh", + "page": "2.155", + "label": { + "value": "Votre cinquième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG5", + "PARENT_VECU_ENFLOG5", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_VECU_ENFLOG5" + } + }, + { + "id": "la6yfjnf", + "componentType": "Radio", + "mandatory": false, + "page": "2.167", + "label": { + "value": "\"Vous êtes-vous séparé\" || (if (TYPE_QUEST = \"2\") then \"e\" else \"\") || \" de l’autre parent de \" || (if (nvl(PRENOM_ENFLOG5,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG5) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG5" + ] + }, + "controls": [ + { + "id": "la6yfjnf-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEP_AUT_PAR_ENFLOG5) or SEP_AUT_PAR_ENFLOG5=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEP_AUT_PAR_ENFLOG5" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv5mgh", + "page": "2.155", + "label": { + "value": "Votre cinquième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TYPE_QUEST", + "PRENOM_ENFLOG5", + "SEP_AUT_PAR_ENFLOG5", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEP_AUT_PAR_ENFLOG5" + } + }, + { + "id": "l4lg25av", + "componentType": "Radio", + "mandatory": false, + "page": "2.168", + "label": { + "value": "\"Quel a été le mode de résidence fixé par décision de justice ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5)) and (SEP_AUT_PAR_ENFLOG5=\"1\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG5", + "SEP_AUT_PAR_ENFLOG5" + ] + }, + "controls": [ + { + "id": "l4lg25av-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(RESID_ENFLOG5) or RESID_ENFLOG5=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "RESID_ENFLOG5" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv5mgh", + "page": "2.155", + "label": { + "value": "Votre cinquième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "RESID_ENFLOG5", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "2", + "label": { + "value": "\"Pas de décision\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Résidence alternée\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\"Principalement chez vous\"", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\"Principalement chez son autre parent\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "RESID_ENFLOG5" + } + }, + { + "id": "l4lfclty", + "componentType": "CheckboxGroup", + "page": "2.169", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFLOG5,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFLOG5) || \" vit-\" || (if (SEXE_ENFLOG5=\"1\" or isnull(SEXE_ENFLOG5)) then \"il\" else \"elle\") || \" aussi ailleurs ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4lfclty-l59np16p", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l4lfclty-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(SANTE_ENFLOG51, false) = false and nvl(SANTE_ENFLOG52, false) = false and nvl(SANTE_ENFLOG53, false) = false and nvl(SANTE_ENFLOG54, false) = false))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SANTE_ENFLOG51", + "SANTE_ENFLOG52", + "SANTE_ENFLOG53", + "SANTE_ENFLOG54" + ] + }, + { + "id": "l4lfclty-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(SANTE_ENFLOG51,false)=true and nvl(SANTE_ENFLOG54,false)=true) or (nvl(SANTE_ENFLOG52,false)=true and nvl(SANTE_ENFLOG54,false)=true) or (nvl(SANTE_ENFLOG53,false)=true and nvl(SANTE_ENFLOG54,false)=true))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Vous ne pouvez pas cocher Non et une autre réponse.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SANTE_ENFLOG51", + "SANTE_ENFLOG54", + "SANTE_ENFLOG52", + "SANTE_ENFLOG53" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmv5mgh", + "page": "2.155", + "label": { + "value": "Votre cinquième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG5", + "SEXE_ENFLOG5", + "SANTE_ENFLOG51", + "SANTE_ENFLOG52", + "SANTE_ENFLOG53", + "SANTE_ENFLOG54", + "VAL_ANNAISS" + ], + "responses": [ + { + "id": "l4lfclty-QOP-la6vpzpe", + "label": { + "value": "\"Oui, pour des raisons de santé\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFLOG51" + } + }, + { + "id": "l4lfclty-QOP-la6vhlmp", + "label": { + "value": "\"Oui, à la suite d’une décision de l’aide sociale à l’enfance ou du juge des enfants\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFLOG52" + } + }, + { + "id": "l4lfclty-QOP-la6vcgh1", + "label": { + "value": "\"Oui, pour une autre raison\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFLOG53" + } + }, + { + "id": "l4lfclty-QOP-la6v7y36", + "label": { + "value": "\"Non\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFLOG54" + } + } + ] + }, + { + "id": "ljmvjhon", + "componentType": "Subsequence", + "goToPage": "2.170", + "label": { + "value": "Votre sixième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvjhon", + "page": "2.170", + "label": { + "value": "Votre sixième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "VAL_ANNAISS" + ] + }, + { + "id": "l8n2umnw", + "componentType": "Input", + "mandatory": false, + "page": "2.170", + "maxLength": 249, + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", comment s’appelle votre sixième enfant qui vit avec vous, même une petite partie du temps seulement ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l8n2umnw-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PRENOM_ENFLOG6) or PRENOM_ENFLOG6=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer le prénom attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PRENOM_ENFLOG6" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvjhon", + "page": "2.170", + "label": { + "value": "Votre sixième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "PRENOM_ENFLOG6", + "VAL_ANNAISS" + ], + "response": { + "name": "PRENOM_ENFLOG6" + } + }, + { + "id": "l8n2e1mr", + "componentType": "Radio", + "mandatory": false, + "page": "2.171", + "label": { + "value": "\"Quel est le sexe de \" || (if (nvl(PRENOM_ENFLOG6,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG6) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l8n2e1mr-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEXE_ENFLOG6) or SEXE_ENFLOG6=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEXE_ENFLOG6" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvjhon", + "page": "2.170", + "label": { + "value": "Votre sixième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG6", + "SEXE_ENFLOG6", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Masculin\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Féminin\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEXE_ENFLOG6" + } + }, + { + "id": "l8n2lctv", + "componentType": "Input", + "mandatory": false, + "page": "2.172", + "maxLength": 4, + "label": { + "value": "\"Quelle est l’année de naissance de \" || (if (nvl(PRENOM_ENFLOG6,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG6) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l8n2lctv-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ANAI_ENFLOG6) or ANAI_ENFLOG6=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’année attendue.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFLOG6" + ] + }, + { + "id": "l8n2lctv-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANAI_ENFLOG6)) and not(isnull(ANAIS)) and cast(ANAI_ENFLOG6,integer) < cast(ANAIS,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFLOG6", + "ANAIS" + ] + }, + { + "id": "l8n2lctv-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANAI_ENFLOG6)) and not(isnull(ANAIS)) and (cast(ANAIS,integer) + 15 > cast(ANAI_ENFLOG6,integer)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Il semble y avoir peu d’écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFLOG6", + "ANAIS" + ] + }, + { + "id": "l8n2lctv-CI-3", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(ANAI_ENFLOG6,integer) < 1920 or cast(ANAI_ENFLOG6,integer) > 2024)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de naissance de votre enfant est comprise entre 1920 et 2024.\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFLOG6" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvjhon", + "page": "2.170", + "label": { + "value": "Votre sixième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG6", + "ANAI_ENFLOG6", + "VAL_ANNAISS" + ], + "response": { + "name": "ANAI_ENFLOG6" + } + }, + { + "id": "l8n2gmuq", + "componentType": "Radio", + "mandatory": false, + "page": "2.173", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFLOG6,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFLOG6) || \" est-\" || (if (SEXE_ENFLOG6=\"1\" or isnull(SEXE_ENFLOG6)) then \"il né\" else \"elle née\") || \" en France ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8n2gmuq-l8n2r8je", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Prenez en compte les frontières actuelles.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l8n2gmuq-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NEFRANCE_ENFLOG6) or NEFRANCE_ENFLOG6=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NEFRANCE_ENFLOG6" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvjhon", + "page": "2.170", + "label": { + "value": "Votre sixième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG6", + "SEXE_ENFLOG6", + "NEFRANCE_ENFLOG6", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "NEFRANCE_ENFLOG6" + } + }, + { + "id": "l8n2ilpb", + "componentType": "Radio", + "mandatory": false, + "page": "2.174", + "label": { + "value": "\"L’autre parent de \" || (if (nvl(PRENOM_ENFLOG6,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG6) || \" vit-il/elle avec vous dans ce logement ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l8n2ilpb-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_VIT_ENFLOG6) or PARENT_VIT_ENFLOG6=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_VIT_ENFLOG6" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvjhon", + "page": "2.170", + "label": { + "value": "Votre sixième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG6", + "PARENT_VIT_ENFLOG6", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui, il/elle vit avec vous\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Non, il/elle vit ailleurs\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Non, il/elle est décédé(e)\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_VIT_ENFLOG6" + } + }, + { + "id": "l8n1zy7o", + "componentType": "Radio", + "mandatory": false, + "page": "2.175", + "label": { + "value": "\"L’autre parent de \" || (if (nvl(PRENOM_ENFLOG6,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG6) || \" vit-il/elle en France ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8n1zy7o-l8n2g2zx", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Prenez en compte les frontières actuelles.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG6" + ] + }, + "controls": [ + { + "id": "l8n1zy7o-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_FR_ENFLOG6) or PARENT_FR_ENFLOG6=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_FR_ENFLOG6" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvjhon", + "page": "2.170", + "label": { + "value": "Votre sixième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG6", + "PARENT_FR_ENFLOG6", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_FR_ENFLOG6" + } + }, + { + "id": "l8n2awb0", + "componentType": "Input", + "mandatory": false, + "page": "2.176", + "maxLength": 20, + "label": { + "value": "\"Dans quel département vit l’autre parent de \" || (if (nvl(PRENOM_ENFLOG6,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG6) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8n2awb0-l8n24jzh", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6)) and (PARENT_FR_ENFLOG6 =\"1\" or isnull(PARENT_FR_ENFLOG6))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG6", + "PARENT_FR_ENFLOG6" + ] + }, + "controls": [ + { + "id": "l8n2awb0-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_DEP_ENFLOG6) or PARENT_DEP_ENFLOG6=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_DEP_ENFLOG6" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvjhon", + "page": "2.170", + "label": { + "value": "Votre sixième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG6", + "PARENT_DEP_ENFLOG6", + "VAL_ANNAISS" + ], + "response": { + "name": "PARENT_DEP_ENFLOG6" + } + }, + { + "id": "l8n1u6yt", + "componentType": "Input", + "mandatory": false, + "page": "2.177", + "maxLength": 20, + "label": { + "value": "\"Dans quelle commune vit l’autre parent de \" || (if (nvl(PRENOM_ENFLOG6,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG6) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8n1u6yt-l8n208lx", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez la commune recherchée et sélectionnez la dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6)) and (PARENT_FR_ENFLOG6 =\"1\" or isnull(PARENT_FR_ENFLOG6))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG6", + "PARENT_FR_ENFLOG6" + ] + }, + "controls": [ + { + "id": "l8n1u6yt-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_COM_ENFLOG6) or PARENT_COM_ENFLOG6=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_COM_ENFLOG6" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvjhon", + "page": "2.170", + "label": { + "value": "Votre sixième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG6", + "PARENT_COM_ENFLOG6", + "VAL_ANNAISS" + ], + "response": { + "name": "PARENT_COM_ENFLOG6" + } + }, + { + "id": "l8n20r8i", + "componentType": "Input", + "mandatory": false, + "page": "2.178", + "maxLength": 20, + "label": { + "value": "\"Dans quel pays vit l’autre parent de \" || (if (nvl(PRENOM_ENFLOG6,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG6) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8n20r8i-l8n2b8s7", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6)) and (PARENT_FR_ENFLOG6 =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG6", + "PARENT_FR_ENFLOG6" + ] + }, + "controls": [ + { + "id": "l8n20r8i-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_PAY_ENFLOG6) or PARENT_PAY_ENFLOG6=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_PAY_ENFLOG6" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvjhon", + "page": "2.170", + "label": { + "value": "Votre sixième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG6", + "PARENT_PAY_ENFLOG6", + "VAL_ANNAISS" + ], + "response": { + "name": "PARENT_PAY_ENFLOG6" + } + }, + { + "id": "l4lfnqiq", + "componentType": "Radio", + "mandatory": false, + "page": "2.179", + "label": { + "value": "\"A quelle fréquence \" || (if (nvl(PRENOM_ENFLOG6,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG6) || \" est-\" || (if (SEXE_ENFLOG6=\"1\" or isnull(SEXE_ENFLOG6)) then \"il\" else \"elle\") || \" en contact avec son autre parent ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4lfnqiq-l4lfskzd", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"(en face à face, téléphone, mail, SMS, appel vidéo, etc.)\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG6" + ] + }, + "controls": [ + { + "id": "l4lfnqiq-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_FREQ_ENFLOG6) or PARENT_FREQ_ENFLOG6=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_FREQ_ENFLOG6" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvjhon", + "page": "2.170", + "label": { + "value": "Votre sixième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG6", + "SEXE_ENFLOG6", + "PARENT_FREQ_ENFLOG6", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "2", + "label": { + "value": "Une ou plusieurs fois par semaine", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Une ou plusieurs fois par mois", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Une ou plusieurs fois par an", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Plus rarement ou jamais", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_FREQ_ENFLOG6" + } + }, + { + "id": "l8n29jww", + "componentType": "Radio", + "mandatory": false, + "page": "2.180", + "label": { + "value": "\"Arrive-t-il à \" || (if (nvl(PRENOM_ENFLOG6,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG6) || \" de dormir chez son autre parent ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG6" + ] + }, + "controls": [ + { + "id": "l8n29jww-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_DORT_ENFLOG6) or PARENT_DORT_ENFLOG6=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_DORT_ENFLOG6" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvjhon", + "page": "2.170", + "label": { + "value": "Votre sixième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG6", + "PARENT_DORT_ENFLOG6", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_DORT_ENFLOG6" + } + }, + { + "id": "l8n1p0yj", + "componentType": "Radio", + "mandatory": false, + "page": "2.181", + "label": { + "value": "\"Avez-vous déjà vécu avec l’autre parent de \" || (if (nvl(PRENOM_ENFLOG6,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG6) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG6" + ] + }, + "controls": [ + { + "id": "l8n1p0yj-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_VECU_ENFLOG6) or PARENT_VECU_ENFLOG6=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_VECU_ENFLOG6" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvjhon", + "page": "2.170", + "label": { + "value": "Votre sixième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG6", + "PARENT_VECU_ENFLOG6", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_VECU_ENFLOG6" + } + }, + { + "id": "la6y7ni0", + "componentType": "Radio", + "mandatory": false, + "page": "2.182", + "label": { + "value": "\"Vous êtes-vous séparé\" || (if (TYPE_QUEST = \"2\") then \"e\" else \"\") || \" de l’autre parent de \" || (if (nvl(PRENOM_ENFLOG6,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG6) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG6" + ] + }, + "controls": [ + { + "id": "la6y7ni0-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEP_AUT_PAR_ENFLOG6) or SEP_AUT_PAR_ENFLOG6=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEP_AUT_PAR_ENFLOG6" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvjhon", + "page": "2.170", + "label": { + "value": "Votre sixième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TYPE_QUEST", + "PRENOM_ENFLOG6", + "SEP_AUT_PAR_ENFLOG6", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEP_AUT_PAR_ENFLOG6" + } + }, + { + "id": "l8n1u2kg", + "componentType": "Radio", + "mandatory": false, + "page": "2.183", + "label": { + "value": "\"Quel a été le mode de résidence fixé par décision de justice ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6)) and (SEP_AUT_PAR_ENFLOG6=\"1\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG6", + "SEP_AUT_PAR_ENFLOG6" + ] + }, + "controls": [ + { + "id": "l8n1u2kg-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(RESID_ENFLOG6) or RESID_ENFLOG6 =\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "RESID_ENFLOG6" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvjhon", + "page": "2.170", + "label": { + "value": "Votre sixième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "RESID_ENFLOG6", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "2", + "label": { + "value": "\"Pas de décision\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Résidence alternée\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\"Principalement chez vous\"", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\"Principalement chez son autre parent\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "RESID_ENFLOG6" + } + }, + { + "id": "l8n2hdgw", + "componentType": "CheckboxGroup", + "page": "2.184", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFLOG6,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFLOG6) || \" vit-\" || (if (SEXE_ENFLOG6=\"1\" or isnull(SEXE_ENFLOG6)) then \"il\" else \"elle\") || \" aussi ailleurs ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8n2hdgw-l8n2ki4d", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l8n2hdgw-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(SANTE_ENFLOG61, false) = false and nvl(SANTE_ENFLOG62, false) = false and nvl(SANTE_ENFLOG63, false) = false and nvl(SANTE_ENFLOG64, false) = false))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SANTE_ENFLOG61", + "SANTE_ENFLOG62", + "SANTE_ENFLOG63", + "SANTE_ENFLOG64" + ] + }, + { + "id": "l8n2hdgw-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(SANTE_ENFLOG61,false)=true and nvl(SANTE_ENFLOG64,false)=true) or (nvl(SANTE_ENFLOG62,false)=true and nvl(SANTE_ENFLOG64,false)=true) or (nvl(SANTE_ENFLOG63,false)=true and nvl(SANTE_ENFLOG64,false)=true))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Vous ne pouvez pas cocher Non et une autre réponse.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SANTE_ENFLOG61", + "SANTE_ENFLOG64", + "SANTE_ENFLOG62", + "SANTE_ENFLOG63" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvjhon", + "page": "2.170", + "label": { + "value": "Votre sixième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG6", + "SEXE_ENFLOG6", + "SANTE_ENFLOG61", + "SANTE_ENFLOG62", + "SANTE_ENFLOG63", + "SANTE_ENFLOG64", + "VAL_ANNAISS" + ], + "responses": [ + { + "id": "l8n2hdgw-QOP-la6v9e5y", + "label": { + "value": "\"Oui, pour des raisons de santé\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFLOG61" + } + }, + { + "id": "l8n2hdgw-QOP-la6vmq5o", + "label": { + "value": "\"Oui, à la suite d’une décision de l’aide sociale à l’enfance ou du juge des enfants\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFLOG62" + } + }, + { + "id": "l8n2hdgw-QOP-la6ven7z", + "label": { + "value": "\"Oui, pour une autre raison\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFLOG63" + } + }, + { + "id": "l8n2hdgw-QOP-la6vb73e", + "label": { + "value": "\"Non\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFLOG64" + } + } + ] + }, + { + "id": "ljmvjzfz", + "componentType": "Subsequence", + "goToPage": "2.185", + "label": { + "value": "Votre septième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvjzfz", + "page": "2.185", + "label": { + "value": "Votre septième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "VAL_ANNAISS" + ] + }, + { + "id": "l8n3pb4f", + "componentType": "Input", + "mandatory": false, + "page": "2.185", + "maxLength": 249, + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", comment s’appelle votre septième enfant qui vit avec vous, même une petite partie du temps seulement ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l8n3pb4f-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PRENOM_ENFLOG7) or PRENOM_ENFLOG7=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer le prénom attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PRENOM_ENFLOG7" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvjzfz", + "page": "2.185", + "label": { + "value": "Votre septième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "PRENOM_ENFLOG7", + "VAL_ANNAISS" + ], + "response": { + "name": "PRENOM_ENFLOG7" + } + }, + { + "id": "l8n3mik2", + "componentType": "Radio", + "mandatory": false, + "page": "2.186", + "label": { + "value": "\"Quel est le sexe de \" || (if (nvl(PRENOM_ENFLOG7,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG7) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l8n3mik2-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEXE_ENFLOG7) or SEXE_ENFLOG7=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEXE_ENFLOG7" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvjzfz", + "page": "2.185", + "label": { + "value": "Votre septième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG7", + "SEXE_ENFLOG7", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Masculin\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Féminin\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEXE_ENFLOG7" + } + }, + { + "id": "l8n3jmk8", + "componentType": "Input", + "mandatory": false, + "page": "2.187", + "maxLength": 4, + "label": { + "value": "\"Quelle est l’année de naissance de \" || (if (nvl(PRENOM_ENFLOG7,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG7) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l8n3jmk8-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ANAI_ENFLOG7) or ANAI_ENFLOG7=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’année attendue.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFLOG7" + ] + }, + { + "id": "l8n3jmk8-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANAI_ENFLOG7)) and not(isnull(ANAIS)) and (cast(ANAIS,integer) + 15 > cast(ANAI_ENFLOG7,integer)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Il semble y avoir peu d’écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFLOG7", + "ANAIS" + ] + }, + { + "id": "l8n3jmk8-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANAI_ENFLOG7)) and not(isnull(ANAIS)) and cast(ANAI_ENFLOG7,integer) < cast(ANAIS,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFLOG7", + "ANAIS" + ] + }, + { + "id": "l8n3jmk8-CI-3", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(ANAI_ENFLOG7,integer) < 1920 or cast(ANAI_ENFLOG7,integer) > 2024)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de naissance de votre enfant est comprise entre 1920 et 2024.\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFLOG7" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvjzfz", + "page": "2.185", + "label": { + "value": "Votre septième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG7", + "ANAI_ENFLOG7", + "VAL_ANNAISS" + ], + "response": { + "name": "ANAI_ENFLOG7" + } + }, + { + "id": "l8n36fv3", + "componentType": "Radio", + "mandatory": false, + "page": "2.188", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFLOG7,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFLOG7) || \" est-\" || (if (SEXE_ENFLOG7=\"1\" or isnull(SEXE_ENFLOG7)) then \"il né\" else \"elle née\") || \" en France ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8n36fv3-l8n38zes", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Prenez en compte les frontières actuelles.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l8n36fv3-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NEFRANCE_ENFLOG7) or NEFRANCE_ENFLOG7=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NEFRANCE_ENFLOG7" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvjzfz", + "page": "2.185", + "label": { + "value": "Votre septième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG7", + "SEXE_ENFLOG7", + "NEFRANCE_ENFLOG7", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "NEFRANCE_ENFLOG7" + } + }, + { + "id": "l8n3ff6s", + "componentType": "Radio", + "mandatory": false, + "page": "2.189", + "label": { + "value": "\"L’autre parent de \" || (if (nvl(PRENOM_ENFLOG7,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG7) || \" vit-il/elle avec vous dans ce logement ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l8n3ff6s-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_VIT_ENFLOG7) or PARENT_VIT_ENFLOG7=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_VIT_ENFLOG7" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvjzfz", + "page": "2.185", + "label": { + "value": "Votre septième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG7", + "PARENT_VIT_ENFLOG7", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui, il/elle vit avec vous\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Non, il/elle vit ailleurs\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Non, il/elle est décédé(e)\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_VIT_ENFLOG7" + } + }, + { + "id": "l8n3b7uo", + "componentType": "Radio", + "mandatory": false, + "page": "2.190", + "label": { + "value": "\"L’autre parent de \" || (if (nvl(PRENOM_ENFLOG7,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG7) || \" vit-il/elle en France ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8n3b7uo-l8n32k1l", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Prenez en compte les frontières actuelles.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG7" + ] + }, + "controls": [ + { + "id": "l8n3b7uo-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_FR_ENFLOG7) or PARENT_FR_ENFLOG7=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_FR_ENFLOG7" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvjzfz", + "page": "2.185", + "label": { + "value": "Votre septième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG7", + "PARENT_FR_ENFLOG7", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_FR_ENFLOG7" + } + }, + { + "id": "l8n3fzap", + "componentType": "Input", + "mandatory": false, + "page": "2.191", + "maxLength": 20, + "label": { + "value": "\"Dans quel département vit l’autre parent de \" || (if (nvl(PRENOM_ENFLOG7,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG7) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8n3fzap-l8n3j9rq", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7)) and (PARENT_FR_ENFLOG7=\"1\" or isnull(PARENT_FR_ENFLOG7))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG7", + "PARENT_FR_ENFLOG7" + ] + }, + "controls": [ + { + "id": "l8n3fzap-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_DEP_ENFLOG7) or PARENT_DEP_ENFLOG7=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_DEP_ENFLOG7" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvjzfz", + "page": "2.185", + "label": { + "value": "Votre septième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG7", + "PARENT_DEP_ENFLOG7", + "VAL_ANNAISS" + ], + "response": { + "name": "PARENT_DEP_ENFLOG7" + } + }, + { + "id": "l8n3485v", + "componentType": "Input", + "mandatory": false, + "page": "2.192", + "maxLength": 20, + "label": { + "value": "\"Dans quelle commune vit l’autre parent de \" || (if (nvl(PRENOM_ENFLOG7,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG7) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8n3485v-l8n33lad", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez la commune recherchée et sélectionnez la dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7)) and (PARENT_FR_ENFLOG7=\"1\" or isnull(PARENT_FR_ENFLOG7))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG7", + "PARENT_FR_ENFLOG7" + ] + }, + "controls": [ + { + "id": "l8n3485v-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_COM_ENFLOG7) or PARENT_COM_ENFLOG7=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_COM_ENFLOG7" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvjzfz", + "page": "2.185", + "label": { + "value": "Votre septième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG7", + "PARENT_COM_ENFLOG7", + "VAL_ANNAISS" + ], + "response": { + "name": "PARENT_COM_ENFLOG7" + } + }, + { + "id": "l8n3burz", + "componentType": "Input", + "mandatory": false, + "page": "2.193", + "maxLength": 20, + "label": { + "value": "\"Dans quel pays vit l’autre parent de \" || (if (nvl(PRENOM_ENFLOG7,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG7) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8n3burz-l8n2z0lq", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7)) and (PARENT_FR_ENFLOG7=\"2\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG7", + "PARENT_FR_ENFLOG7" + ] + }, + "controls": [ + { + "id": "l8n3burz-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_PAY_ENFLOG7) or PARENT_PAY_ENFLOG7=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_PAY_ENFLOG7" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvjzfz", + "page": "2.185", + "label": { + "value": "Votre septième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG7", + "PARENT_PAY_ENFLOG7", + "VAL_ANNAISS" + ], + "response": { + "name": "PARENT_PAY_ENFLOG7" + } + }, + { + "id": "l8n32xk9", + "componentType": "Radio", + "mandatory": false, + "page": "2.194", + "label": { + "value": "\"A quelle fréquence \" || (if (nvl(PRENOM_ENFLOG7,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG7) || \" est-\" || (if (SEXE_ENFLOG7=\"1\" or isnull(SEXE_ENFLOG7)) then \"il\" else \"elle\") || \" en contact avec son autre parent ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8n32xk9-l8n3gpec", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"(en face à face, téléphone, mail, SMS, appel vidéo, etc.)\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG7" + ] + }, + "controls": [ + { + "id": "l8n32xk9-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_FREQ_ENFLOG7) or PARENT_FREQ_ENFLOG7=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_FREQ_ENFLOG7" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvjzfz", + "page": "2.185", + "label": { + "value": "Votre septième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG7", + "SEXE_ENFLOG7", + "PARENT_FREQ_ENFLOG7", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "2", + "label": { + "value": "Une ou plusieurs fois par semaine", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Une ou plusieurs fois par mois", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Une ou plusieurs fois par an", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Plus rarement ou jamais", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_FREQ_ENFLOG7" + } + }, + { + "id": "l8n2x7q4", + "componentType": "Radio", + "mandatory": false, + "page": "2.195", + "label": { + "value": "\"Arrive-t-il à \" || (if (nvl(PRENOM_ENFLOG7,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG7) || \" de dormir chez son autre parent ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG7" + ] + }, + "controls": [ + { + "id": "l8n2x7q4-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_DORT_ENFLOG7) or PARENT_DORT_ENFLOG7=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_DORT_ENFLOG7" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvjzfz", + "page": "2.185", + "label": { + "value": "Votre septième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG7", + "PARENT_DORT_ENFLOG7", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_DORT_ENFLOG7" + } + }, + { + "id": "l8n3ary8", + "componentType": "Radio", + "mandatory": false, + "page": "2.196", + "label": { + "value": "\"Avez-vous déjà vécu avec l’autre parent de \" || (if (nvl(PRENOM_ENFLOG7,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG7) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG7" + ] + }, + "controls": [ + { + "id": "l8n3ary8-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_VECU_ENFLOG7) or PARENT_VECU_ENFLOG7=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_VECU_ENFLOG7" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvjzfz", + "page": "2.185", + "label": { + "value": "Votre septième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG7", + "PARENT_VECU_ENFLOG7", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_VECU_ENFLOG7" + } + }, + { + "id": "la6y542q", + "componentType": "Radio", + "mandatory": false, + "page": "2.197", + "label": { + "value": "\"Vous êtes-vous séparé\" || (if (TYPE_QUEST = \"2\") then \"e\" else \"\") || \" de l’autre parent de \" || (if (nvl(PRENOM_ENFLOG7,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG7) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG7" + ] + }, + "controls": [ + { + "id": "la6y542q-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEP_AUT_PAR_ENFLOG7) or SEP_AUT_PAR_ENFLOG7=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEP_AUT_PAR_ENFLOG7" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvjzfz", + "page": "2.185", + "label": { + "value": "Votre septième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TYPE_QUEST", + "PRENOM_ENFLOG7", + "SEP_AUT_PAR_ENFLOG7", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEP_AUT_PAR_ENFLOG7" + } + }, + { + "id": "l8n2t39d", + "componentType": "Radio", + "mandatory": false, + "page": "2.198", + "label": { + "value": "\"Quel a été le mode de résidence fixé par décision de justice ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7)) and (SEP_AUT_PAR_ENFLOG7=\"1\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG7", + "SEP_AUT_PAR_ENFLOG7" + ] + }, + "controls": [ + { + "id": "l8n2t39d-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(RESID_ENFLOG7) or RESID_ENFLOG7=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"\r\n", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "RESID_ENFLOG7" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvjzfz", + "page": "2.185", + "label": { + "value": "Votre septième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "RESID_ENFLOG7", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "2", + "label": { + "value": "\"Pas de décision\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Résidence alternée\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\"Principalement chez vous\"", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\"Principalement chez son autre parent\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "RESID_ENFLOG7" + } + }, + { + "id": "l8n3bp4o", + "componentType": "CheckboxGroup", + "page": "2.199", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFLOG7,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFLOG7) || \" vit-\" || (if (SEXE_ENFLOG7=\"1\" or isnull(SEXE_ENFLOG7)) then \"il\" else \"elle\") || \" aussi ailleurs ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8n3bp4o-l8n3q1k1", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l8n3bp4o-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(SANTE_ENFLOG71, false) = false and nvl(SANTE_ENFLOG72, false) = false and nvl(SANTE_ENFLOG73, false) = false and nvl(SANTE_ENFLOG74, false) = false))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SANTE_ENFLOG71", + "SANTE_ENFLOG72", + "SANTE_ENFLOG73", + "SANTE_ENFLOG74" + ] + }, + { + "id": "l8n3bp4o-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(SANTE_ENFLOG71,false)=true and nvl(SANTE_ENFLOG74,false)=true) or (nvl(SANTE_ENFLOG72,false)=true and nvl(SANTE_ENFLOG74,false)=true) or (nvl(SANTE_ENFLOG73,false)=true and nvl(SANTE_ENFLOG74,false)=true))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Vous ne pouvez pas cocher Non et une autre réponse.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SANTE_ENFLOG71", + "SANTE_ENFLOG74", + "SANTE_ENFLOG72", + "SANTE_ENFLOG73" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvjzfz", + "page": "2.185", + "label": { + "value": "Votre septième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG7", + "SEXE_ENFLOG7", + "SANTE_ENFLOG71", + "SANTE_ENFLOG72", + "SANTE_ENFLOG73", + "SANTE_ENFLOG74", + "VAL_ANNAISS" + ], + "responses": [ + { + "id": "l8n3bp4o-QOP-la6vdrq8", + "label": { + "value": "\"Oui, pour des raisons de santé\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFLOG71" + } + }, + { + "id": "l8n3bp4o-QOP-la6vbh88", + "label": { + "value": "\"Oui, à la suite d’une décision de l’aide sociale à l’enfance ou du juge des enfants\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFLOG72" + } + }, + { + "id": "l8n3bp4o-QOP-la6vk4x5", + "label": { + "value": "\"Oui, pour une autre raison\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFLOG73" + } + }, + { + "id": "l8n3bp4o-QOP-la6vnbtp", + "label": { + "value": "\"Non\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFLOG74" + } + } + ] + }, + { + "id": "ljmvnzv4", + "componentType": "Subsequence", + "goToPage": "2.200", + "label": { + "value": "Votre huitième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvnzv4", + "page": "2.200", + "label": { + "value": "Votre huitième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "VAL_ANNAISS" + ] + }, + { + "id": "l8n4cayp", + "componentType": "Input", + "mandatory": false, + "page": "2.200", + "maxLength": 249, + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", comment s’appelle votre huitième enfant qui vit avec vous, même une petite partie du temps seulement ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l8n4cayp-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PRENOM_ENFLOG8) or PRENOM_ENFLOG8=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer le prénom attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PRENOM_ENFLOG8" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvnzv4", + "page": "2.200", + "label": { + "value": "Votre huitième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "PRENOM_ENFLOG8", + "VAL_ANNAISS" + ], + "response": { + "name": "PRENOM_ENFLOG8" + } + }, + { + "id": "l8n406m9", + "componentType": "Radio", + "mandatory": false, + "page": "2.201", + "label": { + "value": "\"Quel est le sexe de \" || (if (nvl(PRENOM_ENFLOG8,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG8) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l8n406m9-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEXE_ENFLOG8) or SEXE_ENFLOG8=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEXE_ENFLOG8" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvnzv4", + "page": "2.200", + "label": { + "value": "Votre huitième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG8", + "SEXE_ENFLOG8", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Masculin\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Féminin\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEXE_ENFLOG8" + } + }, + { + "id": "l8n3tya0", + "componentType": "Input", + "mandatory": false, + "page": "2.202", + "maxLength": 4, + "label": { + "value": "\"Quelle est l’année de naissance de \" || (if (nvl(PRENOM_ENFLOG8,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG8) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l8n3tya0-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ANAI_ENFLOG8) or ANAI_ENFLOG8=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’année attendue.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFLOG8" + ] + }, + { + "id": "l8n3tya0-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANAI_ENFLOG8)) and not(isnull(ANAIS)) and cast(ANAI_ENFLOG8,integer) < cast(ANAIS,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFLOG8", + "ANAIS" + ] + }, + { + "id": "l8n3tya0-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANAI_ENFLOG8)) and not(isnull(ANAIS)) and (cast(ANAIS,integer) + 15 > cast(ANAI_ENFLOG8,integer)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Il semble y avoir peu d’écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFLOG8", + "ANAIS" + ] + }, + { + "id": "l8n3tya0-CI-3", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(ANAI_ENFLOG8,integer) < 1920 or cast(ANAI_ENFLOG8,integer) > 2024)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de naissance de votre enfant est comprise entre 1920 et 2024.\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFLOG8" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvnzv4", + "page": "2.200", + "label": { + "value": "Votre huitième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG8", + "ANAI_ENFLOG8", + "VAL_ANNAISS" + ], + "response": { + "name": "ANAI_ENFLOG8" + } + }, + { + "id": "l8n3vr8b", + "componentType": "Radio", + "mandatory": false, + "page": "2.203", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFLOG8,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFLOG8) || \" est-\" || (if (SEXE_ENFLOG8=\"1\" or isnull(SEXE_ENFLOG8)) then \"il né\" else \"elle née\") || \" en France ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8n3vr8b-l8n3xl10", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Prenez en compte les frontières actuelles.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l8n3vr8b-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NEFRANCE_ENFLOG8) or NEFRANCE_ENFLOG8=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NEFRANCE_ENFLOG8" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvnzv4", + "page": "2.200", + "label": { + "value": "Votre huitième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG8", + "SEXE_ENFLOG8", + "NEFRANCE_ENFLOG8", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "NEFRANCE_ENFLOG8" + } + }, + { + "id": "l8n427a2", + "componentType": "Radio", + "mandatory": false, + "page": "2.204", + "label": { + "value": "\"L’autre parent de \" || (if (nvl(PRENOM_ENFLOG8,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG8) || \" vit-il/elle avec vous dans ce logement ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l8n427a2-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_VIT_ENFLOG8) or PARENT_VIT_ENFLOG8=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_VIT_ENFLOG8" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvnzv4", + "page": "2.200", + "label": { + "value": "Votre huitième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG8", + "PARENT_VIT_ENFLOG8", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui, il/elle vit avec vous\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Non, il/elle vit ailleurs\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Non, il/elle est décédé(e)\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_VIT_ENFLOG8" + } + }, + { + "id": "l8n41hvu", + "componentType": "Radio", + "mandatory": false, + "page": "2.205", + "label": { + "value": "\"L’autre parent de \" || (if (nvl(PRENOM_ENFLOG8,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG8) || \" vit-il/elle en France ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8n41hvu-l8n3m622", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Prenez en compte les frontières actuelles.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG8" + ] + }, + "controls": [ + { + "id": "l8n41hvu-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_FR_ENFLOG8) or PARENT_FR_ENFLOG8=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_FR_ENFLOG8" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvnzv4", + "page": "2.200", + "label": { + "value": "Votre huitième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG8", + "PARENT_FR_ENFLOG8", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_FR_ENFLOG8" + } + }, + { + "id": "l8n41c78", + "componentType": "Input", + "mandatory": false, + "page": "2.206", + "maxLength": 20, + "label": { + "value": "\"Dans quel département vit l’autre parent de \" || (if (nvl(PRENOM_ENFLOG8,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG8) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8n41c78-l8n3q2xj", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8)) and (PARENT_FR_ENFLOG8=\"1\" or isnull(PARENT_FR_ENFLOG8))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG8", + "PARENT_FR_ENFLOG8" + ] + }, + "controls": [ + { + "id": "l8n41c78-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_DEP_ENFLOG8) or PARENT_DEP_ENFLOG8=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_DEP_ENFLOG8" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvnzv4", + "page": "2.200", + "label": { + "value": "Votre huitième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG8", + "PARENT_DEP_ENFLOG8", + "VAL_ANNAISS" + ], + "response": { + "name": "PARENT_DEP_ENFLOG8" + } + }, + { + "id": "l8n3tbmd", + "componentType": "Input", + "mandatory": false, + "page": "2.207", + "maxLength": 20, + "label": { + "value": "\"Dans quelle commune vit l’autre parent de \" || (if (nvl(PRENOM_ENFLOG8,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG8) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8n3tbmd-l8n3z556", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez la commune recherchée et sélectionnez la dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8)) and (PARENT_FR_ENFLOG8=\"1\" or isnull(PARENT_FR_ENFLOG8))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG8", + "PARENT_FR_ENFLOG8" + ] + }, + "controls": [ + { + "id": "l8n3tbmd-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_COM_ENFLOG8) or PARENT_COM_ENFLOG8=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_COM_ENFLOG8" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvnzv4", + "page": "2.200", + "label": { + "value": "Votre huitième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG8", + "PARENT_COM_ENFLOG8", + "VAL_ANNAISS" + ], + "response": { + "name": "PARENT_COM_ENFLOG8" + } + }, + { + "id": "l8n40r7t", + "componentType": "Input", + "mandatory": false, + "page": "2.208", + "maxLength": 20, + "label": { + "value": "\"Dans quel pays vit l’autre parent de \" || (if (nvl(PRENOM_ENFLOG8,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG8) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8n40r7t-l8n3kcnq", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8)) and (PARENT_FR_ENFLOG8=\"2\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG8", + "PARENT_FR_ENFLOG8" + ] + }, + "controls": [ + { + "id": "l8n40r7t-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_PAY_ENFLOG8) or PARENT_PAY_ENFLOG8=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_PAY_ENFLOG8" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvnzv4", + "page": "2.200", + "label": { + "value": "Votre huitième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG8", + "PARENT_PAY_ENFLOG8", + "VAL_ANNAISS" + ], + "response": { + "name": "PARENT_PAY_ENFLOG8" + } + }, + { + "id": "l8n3fpp7", + "componentType": "Radio", + "mandatory": false, + "page": "2.209", + "label": { + "value": "\"A quelle fréquence \" || (if (nvl(PRENOM_ENFLOG8,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG8) || \" est-\" || (if (SEXE_ENFLOG8=\"1\" or isnull(SEXE_ENFLOG8)) then \"il\" else \"elle\") || \" en contact avec son autre parent ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8n3fpp7-l8n3wl31", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"(en face à face, téléphone, mail, SMS, appel vidéo, etc.)\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG8" + ] + }, + "controls": [ + { + "id": "l8n3fpp7-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_FREQ_ENFLOG8) or PARENT_FREQ_ENFLOG8=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_FREQ_ENFLOG8" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvnzv4", + "page": "2.200", + "label": { + "value": "Votre huitième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG8", + "SEXE_ENFLOG8", + "PARENT_FREQ_ENFLOG8", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "2", + "label": { + "value": "Une ou plusieurs fois par semaine", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Une ou plusieurs fois par mois", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Une ou plusieurs fois par an", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Plus rarement ou jamais", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_FREQ_ENFLOG8" + } + }, + { + "id": "l8n3xb0z", + "componentType": "Radio", + "mandatory": false, + "page": "2.210", + "label": { + "value": "\"Arrive-t-il à \" || (if (nvl(PRENOM_ENFLOG8,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG8) || \" de dormir chez son autre parent ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG8" + ] + }, + "controls": [ + { + "id": "l8n3xb0z-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_DORT_ENFLOG8) or PARENT_DORT_ENFLOG8=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_DORT_ENFLOG8" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvnzv4", + "page": "2.200", + "label": { + "value": "Votre huitième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG8", + "PARENT_DORT_ENFLOG8", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_DORT_ENFLOG8" + } + }, + { + "id": "l8n3tjlw", + "componentType": "Radio", + "mandatory": false, + "page": "2.211", + "label": { + "value": "\"Avez-vous déjà vécu avec l’autre parent de \" || (if (nvl(PRENOM_ENFLOG8,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG8) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG8" + ] + }, + "controls": [ + { + "id": "l8n3tjlw-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_VECU_ENFLOG8) or PARENT_VECU_ENFLOG8=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_VECU_ENFLOG8" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvnzv4", + "page": "2.200", + "label": { + "value": "Votre huitième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG8", + "PARENT_VECU_ENFLOG8", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_VECU_ENFLOG8" + } + }, + { + "id": "la6v947r", + "componentType": "Radio", + "mandatory": false, + "page": "2.212", + "label": { + "value": "\"Vous êtes-vous séparé\" || (if (TYPE_QUEST = \"2\") then \"e\" else \"\") || \" de l’autre parent de \" || (if (nvl(PRENOM_ENFLOG8,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFLOG8) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8))", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG8" + ] + }, + "controls": [ + { + "id": "la6v947r-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEP_AUT_PAR_ENFLOG8) or SEP_AUT_PAR_ENFLOG8=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEP_AUT_PAR_ENFLOG8" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvnzv4", + "page": "2.200", + "label": { + "value": "Votre huitième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TYPE_QUEST", + "PRENOM_ENFLOG8", + "SEP_AUT_PAR_ENFLOG8", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEP_AUT_PAR_ENFLOG8" + } + }, + { + "id": "l8n3ocd5", + "componentType": "Radio", + "mandatory": false, + "page": "2.213", + "label": { + "value": "\"Quel a été le mode de résidence fixé par décision de justice ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8)) and (SEP_AUT_PAR_ENFLOG8=\"1\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG", + "PARENT_VIT_ENFLOG8", + "SEP_AUT_PAR_ENFLOG8" + ] + }, + "controls": [ + { + "id": "l8n3ocd5-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(RESID_ENFLOG8) or RESID_ENFLOG8=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "RESID_ENFLOG8" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvnzv4", + "page": "2.200", + "label": { + "value": "Votre huitième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "RESID_ENFLOG8", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "2", + "label": { + "value": "\"Pas de décision\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Résidence alternée\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\"Principalement chez vous\"", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\"Principalement chez son autre parent\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "RESID_ENFLOG8" + } + }, + { + "id": "l8n3uqr2", + "componentType": "CheckboxGroup", + "page": "2.214", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFLOG8,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFLOG8) || \" vit-\" || (if (SEXE_ENFLOG8=\"1\" or isnull(SEXE_ENFLOG8)) then \"il\" else \"elle\") || \" aussi ailleurs ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8n3uqr2-l8n4a6u7", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8)", + "type": "VTL", + "bindingDependencies": [ + "CBENFLOG" + ] + }, + "controls": [ + { + "id": "l8n3uqr2-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(SANTE_ENFLOG81, false) = false and nvl(SANTE_ENFLOG82, false) = false and nvl(SANTE_ENFLOG83, false) = false and nvl(SANTE_ENFLOG84, false) = false))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SANTE_ENFLOG81", + "SANTE_ENFLOG82", + "SANTE_ENFLOG83", + "SANTE_ENFLOG84" + ] + }, + { + "id": "l8n3uqr2-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(SANTE_ENFLOG81,false)=true and nvl(SANTE_ENFLOG84,false)=true) or (nvl(SANTE_ENFLOG82,false)=true and nvl(SANTE_ENFLOG84,false)=true) or (nvl(SANTE_ENFLOG83,false)=true and nvl(SANTE_ENFLOG84,false)=true))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Vous ne pouvez pas cocher Non et une autre réponse.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SANTE_ENFLOG81", + "SANTE_ENFLOG84", + "SANTE_ENFLOG82", + "SANTE_ENFLOG83" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmvnzv4", + "page": "2.200", + "label": { + "value": "Votre huitième enfant qui vit avec vous, même une petite partie du temps seulement", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFLOG8", + "SEXE_ENFLOG8", + "SANTE_ENFLOG81", + "SANTE_ENFLOG82", + "SANTE_ENFLOG83", + "SANTE_ENFLOG84", + "VAL_ANNAISS" + ], + "responses": [ + { + "id": "l8n3uqr2-QOP-la6vbpmh", + "label": { + "value": "\"Oui, pour des raisons de santé\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFLOG81" + } + }, + { + "id": "l8n3uqr2-QOP-la6vpud7", + "label": { + "value": "\"Oui, à la suite d’une décision de l’aide sociale à l’enfance ou du juge des enfants\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFLOG82" + } + }, + { + "id": "l8n3uqr2-QOP-la6vmmu5", + "label": { + "value": "\"Oui, pour une autre raison\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFLOG83" + } + }, + { + "id": "l8n3uqr2-QOP-la6vp6s1", + "label": { + "value": "\"Non\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFLOG84" + } + } + ] + }, + { + "id": "l447aq23", + "componentType": "Subsequence", + "page": "2.215", + "goToPage": "2.215", + "label": { + "value": "\"Votre premier enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l447aq23-l447etvc", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "if cast(CBENFAIL,integer)=1 then \"Décrivez votre enfant qui ne vit pas avec vous ou qui est décédé.\" else \"Décrivez votre premier enfant qui ne vit pas avec vous ou qui est décédé, en commençant par l’aîné.\"", + "type": "VTL|MD" + } + }, + { + "id": "l447aq23-l4pjmysh", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "if cast(CBENFAIL, integer)>8 then \"Décrivez seulement les 8 plus âgés.\" else \"\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l447aq23", + "page": "2.215", + "label": { + "value": "\"Votre premier enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "CBENFAIL", + "VAL_ANNAISS" + ] + }, + { + "id": "l4idug6p", + "componentType": "Input", + "mandatory": false, + "page": "2.216", + "maxLength": 249, + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", comment s’appelle \" || (if (CBENFAIL = 1 or isnull(CBENFAIL)) then \"votre enfant qui ne vit pas avec vous ou qui est décédé ?\" else \"votre premier enfant qui ne vit pas avec vous ou qui est décédé ?\")", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l4idug6p-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PRENOM_ENFAIL1) or PRENOM_ENFAIL1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer le prénom attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PRENOM_ENFAIL1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l447aq23", + "page": "2.215", + "label": { + "value": "\"Votre premier enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "CBENFAIL", + "PRENOM_ENFAIL1", + "VAL_ANNAISS" + ], + "response": { + "name": "PRENOM_ENFAIL1" + } + }, + { + "id": "kwqix1j5", + "componentType": "Radio", + "mandatory": false, + "page": "2.217", + "label": { + "value": "\"Quel est le sexe de \" || (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL1) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "kwqix1j5-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEXE_ENFAIL1) or SEXE_ENFAIL1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEXE_ENFAIL1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l447aq23", + "page": "2.215", + "label": { + "value": "\"Votre premier enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL1", + "SEXE_ENFAIL1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Masculin\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Féminin\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEXE_ENFAIL1" + } + }, + { + "id": "kwqj561a", + "componentType": "Input", + "mandatory": false, + "page": "2.218", + "maxLength": 4, + "label": { + "value": "\"Quelle est l’année de naissance de \" || (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL1) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "kwqj561a-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ANAI_ENFAIL1) or ANAI_ENFAIL1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’année attendue.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFAIL1" + ] + }, + { + "id": "kwqj561a-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANAI_ENFAIL1)) and not(isnull(ANAIS)) and cast(ANAI_ENFAIL1,integer) < cast(ANAIS,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFAIL1", + "ANAIS" + ] + }, + { + "id": "kwqj561a-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANAI_ENFAIL1)) and not(isnull(ANAIS)) and (cast(ANAIS,integer) + 15 > cast(ANAI_ENFAIL1,integer)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Il semble y avoir peu d’écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFAIL1", + "ANAIS" + ] + }, + { + "id": "kwqj561a-CI-3", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(ANAI_ENFAIL1,integer) < 1920 or cast(ANAI_ENFAIL1,integer) > 2024)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de naissance de votre enfant est comprise entre 1920 et 2024.\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFAIL1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l447aq23", + "page": "2.215", + "label": { + "value": "\"Votre premier enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL1", + "ANAI_ENFAIL1", + "VAL_ANNAISS" + ], + "response": { + "name": "ANAI_ENFAIL1" + } + }, + { + "id": "l4cjlk0i", + "componentType": "Radio", + "mandatory": false, + "page": "2.219", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL1) || \" est-\" || (if (SEXE_ENFAIL1=\"1\" or isnull(SEXE_ENFAIL1)) then \"il né\" else \"elle née\") || \" en France ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4cjlk0i-l4p9roph", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Prenez en compte les frontières actuelles.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l4cjlk0i-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NEFRANCE_ENFAIL1) or NEFRANCE_ENFAIL1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NEFRANCE_ENFAIL1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l447aq23", + "page": "2.215", + "label": { + "value": "\"Votre premier enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL1", + "SEXE_ENFAIL1", + "NEFRANCE_ENFAIL1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "NEFRANCE_ENFAIL1" + } + }, + { + "id": "l4cjivdg", + "componentType": "Radio", + "mandatory": false, + "page": "2.220", + "label": { + "value": "\"L’autre parent de \" || (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL1) || \" vit-il/elle avec vous ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l4cjivdg-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_VIT_ENFAIL1) or PARENT_VIT_ENFAIL1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_VIT_ENFAIL1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l447aq23", + "page": "2.215", + "label": { + "value": "\"Votre premier enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL1", + "PARENT_VIT_ENFAIL1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui, il/elle vit avec vous\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Non, il/elle vit ailleurs\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Non, il/elle est décédé(e)\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_VIT_ENFAIL1" + } + }, + { + "id": "l8lzt19v", + "componentType": "Radio", + "mandatory": false, + "page": "2.221", + "label": { + "value": "\"Avez-vous déjà vécu avec l’autre parent de \" || (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL1) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and (PARENT_VIT_ENFAIL1=\"2\" or PARENT_VIT_ENFAIL1=\"3\" or isnull( PARENT_VIT_ENFAIL1))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "PARENT_VIT_ENFAIL1" + ] + }, + "controls": [ + { + "id": "l8lzt19v-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_VECU_ENFAIL1) or PARENT_VECU_ENFAIL1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_VECU_ENFAIL1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l447aq23", + "page": "2.215", + "label": { + "value": "\"Votre premier enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL1", + "PARENT_VECU_ENFAIL1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_VECU_ENFAIL1" + } + }, + { + "id": "l4485tkr", + "componentType": "Radio", + "mandatory": false, + "page": "2.222", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL1) || \" est-\" || if (SEXE_ENFAIL1=\"1\" or isnull(SEXE_ENFAIL1)) then \"il encore en vie ?\" else \"elle encore en vie ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l4485tkr-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(DC_ENFAIL1) or DC_ENFAIL1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "DC_ENFAIL1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l447aq23", + "page": "2.215", + "label": { + "value": "\"Votre premier enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL1", + "SEXE_ENFAIL1", + "DC_ENFAIL1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "DC_ENFAIL1" + } + }, + { + "id": "kwqkh05l", + "componentType": "InputNumber", + "mandatory": false, + "page": "2.223", + "min": 0, + "max": 95, + "decimals": 0, + "label": { + "value": "\"A quel âge \" || (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL1) || \" est-\" || if (SEXE_ENFAIL1=\"1\" or isnull(SEXE_ENFAIL1)) then \"il décédé ?\" else \"elle décédée ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kwqkh05l-l2eizvoe", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Notez 0 si \"||(if(nvl(PRENOM_ENFAIL1,\"\") = \"\") then \"cet enfant\" else PRENOM_ENFAIL1) || (\" est\") || (if (SEXE_ENFAIL1 = \"1\" or nvl(SEXE_ENFAIL1,\"\") = \"\") then \" décédé\" else \" décédée\") || (\" avant un an.\")", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and (DC_ENFAIL1 =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL1" + ] + }, + "controls": [ + { + "id": "kwqkh05l-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(AG_DC_ENFAIL1)) and (0>AG_DC_ENFAIL1 or 95AG_DC_ENFAIL1)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "kwqkh05l-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(AG_DC_ENFAIL1) or AG_DC_ENFAIL1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’âge attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AG_DC_ENFAIL1" + ] + }, + { + "id": "kwqkh05l-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(AG_ENFAIL1)) and not (isnull(AG_DC_ENFAIL1)) and cast(AG_DC_ENFAIL1,integer) > cast(AG_ENFAIL1,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’âge de votre enfant lors de son décès ne peut pas être supérieur à son âge.\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AG_ENFAIL1", + "AG_DC_ENFAIL1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l447aq23", + "page": "2.215", + "label": { + "value": "\"Votre premier enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL1", + "SEXE_ENFAIL1", + "AG_DC_ENFAIL1", + "VAL_ANNAISS" + ], + "unit": "ans", + "response": { + "name": "AG_DC_ENFAIL1" + } + }, + { + "id": "kwqk3ki3", + "componentType": "InputNumber", + "mandatory": false, + "page": "2.224", + "min": 0, + "max": 95, + "decimals": 0, + "label": { + "value": "\"A quel âge environ \" || (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL1) || \" a-t-\" || (if (SEXE_ENFAIL1=\"1\" or isnull(SEXE_ENFAIL1)) then \"il \" else \"elle\") || \" cessé de vivre avec vous ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL1" + ] + }, + "controls": [ + { + "id": "kwqk3ki3-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(AG_DEPART_ENFAIL1)) and (0>AG_DEPART_ENFAIL1 or 95AG_DEPART_ENFAIL1)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "kwqk3ki3-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(AG_DEPART_ENFAIL1) or AG_DEPART_ENFAIL1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’âge attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AG_DEPART_ENFAIL1" + ] + }, + { + "id": "kwqk3ki3-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(AG_DEPART_ENFAIL1)) and not(isnull(ANAI_ENFAIL1)) and AG_DEPART_ENFAIL1 > AG_ENFAIL1)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AG_DEPART_ENFAIL1", + "ANAI_ENFAIL1", + "AG_ENFAIL1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l447aq23", + "page": "2.215", + "label": { + "value": "\"Votre premier enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL1", + "SEXE_ENFAIL1", + "AG_DEPART_ENFAIL1", + "VAL_ANNAISS" + ], + "unit": "ans", + "response": { + "name": "AG_DEPART_ENFAIL1" + } + }, + { + "id": "kwqkmusz", + "componentType": "Radio", + "mandatory": false, + "page": "2.225", + "label": { + "value": "\"A quelle fréquence êtes-vous en contact avec \" || (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL1) || \" ? \"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kwqkmusz-l4483m6s", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"(en face à face, téléphone, mail, SMS, appel vidéo, etc.)\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL1" + ] + }, + "controls": [ + { + "id": "kwqkmusz-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_FREQ_ENFAIL1) or PARENT_FREQ_ENFAIL1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_FREQ_ENFAIL1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l447aq23", + "page": "2.215", + "label": { + "value": "\"Votre premier enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL1", + "PARENT_FREQ_ENFAIL1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "2", + "label": { + "value": "Une ou plusieurs fois par semaine", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Une ou plusieurs fois par mois", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Une ou plusieurs fois par an", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Plus rarement ou jamais", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_FREQ_ENFAIL1" + } + }, + { + "id": "kwqjp9yr", + "componentType": "Radio", + "mandatory": false, + "page": "2.226", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL1) || \" vit-\" || (if (SEXE_ENFAIL1=\"1\" or isnull(SEXE_ENFAIL1)) then \"il \" else \"elle \") || \"en France actuellement ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kwqjp9yr-lai6xcya", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Prenez en compte les frontières actuelles.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL1" + ] + }, + "controls": [ + { + "id": "kwqjp9yr-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(FR_ENFAIL1) or FR_ENFAIL1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "FR_ENFAIL1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l447aq23", + "page": "2.215", + "label": { + "value": "\"Votre premier enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL1", + "SEXE_ENFAIL1", + "FR_ENFAIL1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "FR_ENFAIL1" + } + }, + { + "id": "l4onskib", + "componentType": "Input", + "mandatory": false, + "page": "2.227", + "maxLength": 20, + "label": { + "value": "\"Dans quel département vit \" || (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL1) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4onskib-l4paafoh", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and (FR_ENFAIL1 =\"1\" or isnull(FR_ENFAIL1))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL1", + "FR_ENFAIL1" + ] + }, + "controls": [ + { + "id": "l4onskib-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(DEP_ENFAIL1) or DEP_ENFAIL1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "DEP_ENFAIL1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l447aq23", + "page": "2.215", + "label": { + "value": "\"Votre premier enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL1", + "DEP_ENFAIL1", + "VAL_ANNAISS" + ], + "response": { + "name": "DEP_ENFAIL1" + } + }, + { + "id": "l4onsq99", + "componentType": "Input", + "mandatory": false, + "page": "2.228", + "maxLength": 20, + "label": { + "value": "\"Dans quelle commune vit \" || (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL1) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4onsq99-l4pap0it", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez la commune recherchée et sélectionnez la dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and (FR_ENFAIL1 =\"1\" or isnull(FR_ENFAIL1))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL1", + "FR_ENFAIL1" + ] + }, + "controls": [ + { + "id": "l4onsq99-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(COM_ENFAIL1) or COM_ENFAIL1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "COM_ENFAIL1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l447aq23", + "page": "2.215", + "label": { + "value": "\"Votre premier enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL1", + "COM_ENFAIL1", + "VAL_ANNAISS" + ], + "response": { + "name": "COM_ENFAIL1" + } + }, + { + "id": "l4onsf7y", + "componentType": "Input", + "mandatory": false, + "page": "2.229", + "maxLength": 20, + "label": { + "value": "\"Dans quel pays vit \" || (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL1) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4onsf7y-l4panc40", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and (FR_ENFAIL1 =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL1", + "FR_ENFAIL1" + ] + }, + "controls": [ + { + "id": "l4onsf7y-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PAY_ENFAIL1) or PAY_ENFAIL1 =\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PAY_ENFAIL1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l447aq23", + "page": "2.215", + "label": { + "value": "\"Votre premier enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL1", + "PAY_ENFAIL1", + "VAL_ANNAISS" + ], + "response": { + "name": "PAY_ENFAIL1" + } + }, + { + "id": "kwqk3a58", + "componentType": "Radio", + "mandatory": false, + "page": "2.230", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL1) || \" vit-\" || (if (SEXE_ENFAIL1=\"1\" or isnull(SEXE_ENFAIL1)) then \"il \" else \"elle \") || \" dans son propre logement ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2004) and (cast(ANAI_ENFAIL1,integer) <= 2011)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL1", + "ANAI_ENFAIL1" + ] + }, + "controls": [ + { + "id": "kwqk3a58-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(LOG_ENFAIL1) or LOG_ENFAIL1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "LOG_ENFAIL1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l447aq23", + "page": "2.215", + "label": { + "value": "\"Votre premier enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL1", + "SEXE_ENFAIL1", + "LOG_ENFAIL1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "LOG_ENFAIL1" + } + }, + { + "id": "l44849iu", + "componentType": "Radio", + "mandatory": false, + "page": "2.231", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL1) || \" vit-\"|| (if (SEXE_ENFAIL1=\"1\" or isnull(SEXE_ENFAIL1)) then \"il \" else \"elle \") || \"chez son autre parent ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2004) and (PARENT_VIT_ENFAIL1<>=\"3\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL1", + "ANAI_ENFAIL1", + "PARENT_VIT_ENFAIL1" + ] + }, + "controls": [ + { + "id": "l44849iu-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(AUT_PAR_ENFAIL1) or AUT_PAR_ENFAIL1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AUT_PAR_ENFAIL1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l447aq23", + "page": "2.215", + "label": { + "value": "\"Votre premier enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL1", + "SEXE_ENFAIL1", + "AUT_PAR_ENFAIL1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "AUT_PAR_ENFAIL1" + } + }, + { + "id": "kwqj7xh6", + "componentType": "Radio", + "mandatory": false, + "page": "2.232", + "label": { + "value": "\"Arrive-t-il à \" || (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL1) || \" de dormir chez vous ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2004)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL1", + "ANAI_ENFAIL1" + ] + }, + "controls": [ + { + "id": "kwqj7xh6-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(DORT_ENFAIL1) or DORT_ENFAIL1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "DORT_ENFAIL1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l447aq23", + "page": "2.215", + "label": { + "value": "\"Votre premier enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL1", + "DORT_ENFAIL1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "DORT_ENFAIL1" + } + }, + { + "id": "l4o74e6d", + "componentType": "Radio", + "mandatory": false, + "page": "2.233", + "label": { + "value": "\"Vous êtes-vous séparé\" || (if (TYPE_QUEST = \"2\") then \"e\" else \"\") || \" de l’autre parent de \" || (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL1) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2004) and (PARENT_VIT_ENFAIL1<>\"3\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL1", + "ANAI_ENFAIL1", + "PARENT_VIT_ENFAIL1" + ] + }, + "controls": [ + { + "id": "l4o74e6d-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEP_AUT_PAR_ENFAIL1) or SEP_AUT_PAR_ENFAIL1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEP_AUT_PAR_ENFAIL1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l447aq23", + "page": "2.215", + "label": { + "value": "\"Votre premier enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TYPE_QUEST", + "PRENOM_ENFAIL1", + "SEP_AUT_PAR_ENFAIL1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEP_AUT_PAR_ENFAIL1" + } + }, + { + "id": "l1gknpsx", + "componentType": "Radio", + "mandatory": false, + "page": "2.234", + "label": { + "value": "\"Quel a été le mode de résidence fixé par décision de justice ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2004) and (PARENT_VIT_ENFAIL1<>\"3\") and (SEP_AUT_PAR_ENFAIL1 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL1))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL1", + "ANAI_ENFAIL1", + "PARENT_VIT_ENFAIL1", + "SEP_AUT_PAR_ENFAIL1" + ] + }, + "controls": [ + { + "id": "l1gknpsx-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(RESID_ENFAIL1) or RESID_ENFAIL1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "RESID_ENFAIL1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l447aq23", + "page": "2.215", + "label": { + "value": "\"Votre premier enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "RESID_ENFAIL1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Pas de décision", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Résidence alternée", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Principalement chez vous", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Principalement chez son autre parent", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "RESID_ENFAIL1" + } + }, + { + "id": "l1gi8vrf", + "componentType": "CheckboxGroup", + "page": "2.235", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL1) || \" vit-\" || (if (SEXE_ENFAIL1=\"1\" or isnull(SEXE_ENFAIL1)) then \"il \" else \"elle \") || \"ailleurs que chez vous ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l1gi8vrf-l59ny4to", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL1" + ] + }, + "controls": [ + { + "id": "l1gi8vrf-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(SANTE_ENFAIL11, false) = false and nvl(SANTE_ENFAIL12, false) = false and nvl(SANTE_ENFAIL13, false) = false ))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SANTE_ENFAIL11", + "SANTE_ENFAIL12", + "SANTE_ENFAIL13" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "l447aq23", + "page": "2.215", + "label": { + "value": "\"Votre premier enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL1", + "SEXE_ENFAIL1", + "SANTE_ENFAIL11", + "SANTE_ENFAIL12", + "SANTE_ENFAIL13", + "VAL_ANNAISS" + ], + "responses": [ + { + "id": "l1gi8vrf-QOP-lagyu6fp", + "label": { + "value": "\"Pour des raisons de santé\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFAIL11" + } + }, + { + "id": "l1gi8vrf-QOP-lagyjdla", + "label": { + "value": "\"A la suite d’une décision de l’aide sociale à l’enfance ou du juge des enfants\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFAIL12" + } + }, + { + "id": "l1gi8vrf-QOP-lagydkrl", + "label": { + "value": "\"Pour une autre raison\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFAIL13" + } + } + ] + }, + { + "id": "ljmwx9yl", + "componentType": "Subsequence", + "goToPage": "2.236", + "label": { + "value": "\"Votre deuxième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwx9yl", + "page": "2.236", + "label": { + "value": "\"Votre deuxième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "VAL_ANNAISS" + ] + }, + { + "id": "l4lg1tus", + "componentType": "Input", + "mandatory": false, + "page": "2.236", + "maxLength": 249, + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", comment s’appelle votre deuxième enfant qui ne vit pas avec vous ou qui est décédé ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l4lg1tus-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PRENOM_ENFAIL2) or PRENOM_ENFAIL2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer le prénom attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PRENOM_ENFAIL2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwx9yl", + "page": "2.236", + "label": { + "value": "\"Votre deuxième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "PRENOM_ENFAIL2", + "VAL_ANNAISS" + ], + "response": { + "name": "PRENOM_ENFAIL2" + } + }, + { + "id": "l4lgd8bs", + "componentType": "Radio", + "mandatory": false, + "page": "2.237", + "label": { + "value": "\"Quel est le sexe de \" || (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL2) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l4lgd8bs-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEXE_ENFAIL2) or SEXE_ENFAIL2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEXE_ENFAIL2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwx9yl", + "page": "2.236", + "label": { + "value": "\"Votre deuxième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL2", + "SEXE_ENFAIL2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Masculin\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Féminin\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEXE_ENFAIL2" + } + }, + { + "id": "l4lgjbi8", + "componentType": "Input", + "mandatory": false, + "page": "2.238", + "maxLength": 4, + "label": { + "value": "\"Quelle est l’année de naissance de \" || (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL2) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l4lgjbi8-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ANAI_ENFAIL2) or ANAI_ENFAIL2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’année attendue.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFAIL2" + ] + }, + { + "id": "l4lgjbi8-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANAI_ENFAIL2)) and not(isnull(ANAIS)) and cast(ANAI_ENFAIL2,integer) < cast(ANAIS,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFAIL2", + "ANAIS" + ] + }, + { + "id": "l4lgjbi8-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANAI_ENFAIL2)) and not(isnull(ANAIS)) and (cast(ANAIS,integer) + 15 > cast(ANAI_ENFAIL2,integer)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Il semble y avoir peu d’écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFAIL2", + "ANAIS" + ] + }, + { + "id": "l4lgjbi8-CI-3", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(ANAI_ENFAIL2,integer) < 1920 or cast(ANAI_ENFAIL2,integer) > 2024)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de naissance de votre enfant est comprise entre 1920 et 2024.\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFAIL2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwx9yl", + "page": "2.236", + "label": { + "value": "\"Votre deuxième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL2", + "ANAI_ENFAIL2", + "VAL_ANNAISS" + ], + "response": { + "name": "ANAI_ENFAIL2" + } + }, + { + "id": "l4lgtwy7", + "componentType": "Radio", + "mandatory": false, + "page": "2.239", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL2) || \" est-\" || (if (SEXE_ENFAIL2=\"1\" or isnull(SEXE_ENFAIL2)) then \"il né\" else \"elle née\") || \" en France ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4lgtwy7-l4p9xwnx", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Prenez en compte les frontières actuelles.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l4lgtwy7-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NEFRANCE_ENFAIL2) or NEFRANCE_ENFAIL2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NEFRANCE_ENFAIL2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwx9yl", + "page": "2.236", + "label": { + "value": "\"Votre deuxième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL2", + "SEXE_ENFAIL2", + "NEFRANCE_ENFAIL2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "NEFRANCE_ENFAIL2" + } + }, + { + "id": "l4lgqbdk", + "componentType": "Radio", + "mandatory": false, + "page": "2.240", + "label": { + "value": "\"L’autre parent de \" || (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL2) || \" vit-il/elle avec vous ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l4lgqbdk-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_VIT_ENFAIL2) or PARENT_VIT_ENFAIL2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_VIT_ENFAIL2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwx9yl", + "page": "2.236", + "label": { + "value": "\"Votre deuxième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL2", + "PARENT_VIT_ENFAIL2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui, il/elle vit avec vous\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Non, il/elle vit ailleurs\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Non, il/elle est décédé(e)\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_VIT_ENFAIL2" + } + }, + { + "id": "l8lzthqx", + "componentType": "Radio", + "mandatory": false, + "page": "2.241", + "label": { + "value": "\"Avez-vous déjà vécu avec l’autre parent de \" || (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL2) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (PARENT_VIT_ENFAIL2 =\"2\" or PARENT_VIT_ENFAIL2 =\"3\" or isnull( PARENT_VIT_ENFAIL2))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "PARENT_VIT_ENFAIL2" + ] + }, + "controls": [ + { + "id": "l8lzthqx-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_VECU_ENFAIL2) or PARENT_VECU_ENFAIL2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_VECU_ENFAIL2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwx9yl", + "page": "2.236", + "label": { + "value": "\"Votre deuxième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL2", + "PARENT_VECU_ENFAIL2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_VECU_ENFAIL2" + } + }, + { + "id": "l4lh1bvw", + "componentType": "Radio", + "mandatory": false, + "page": "2.242", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL2) || \" est-\" || if (SEXE_ENFAIL2=\"1\" or isnull(SEXE_ENFAIL2)) then \"il encore en vie ?\" else \"elle encore en vie ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l4lh1bvw-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(DC_ENFAIL2) or DC_ENFAIL2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "DC_ENFAIL2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwx9yl", + "page": "2.236", + "label": { + "value": "\"Votre deuxième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL2", + "SEXE_ENFAIL2", + "DC_ENFAIL2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "DC_ENFAIL2" + } + }, + { + "id": "l4lhc03p", + "componentType": "InputNumber", + "mandatory": false, + "page": "2.243", + "min": 0, + "max": 95, + "decimals": 0, + "label": { + "value": "\"A quel âge \" || (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL2) || \" est-\" || if (SEXE_ENFAIL2=\"1\" or isnull(SEXE_ENFAIL2)) then \"il décédé ?\" else \"elle décédée ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4lhc03p-l4lh6w99", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Notez 0 si \"||(if(nvl(PRENOM_ENFAIL2,\"\") = \"\") then \"cet enfant\" else PRENOM_ENFAIL2) || (\" est\") || (if (SEXE_ENFAIL2 = \"1\" or nvl(SEXE_ENFAIL2,\"\") = \"\") then \" décédé\" else \" décédée\") || (\" avant un an.\")", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL2" + ] + }, + "controls": [ + { + "id": "l4lhc03p-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(AG_DC_ENFAIL2)) and (0>AG_DC_ENFAIL2 or 95AG_DC_ENFAIL2)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "l4lhc03p-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(AG_DC_ENFAIL2) or AG_DC_ENFAIL2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’âge attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AG_DC_ENFAIL2" + ] + }, + { + "id": "l4lhc03p-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(AG_ENFAIL2)) and not (isnull(AG_DC_ENFAIL2)) and cast(AG_DC_ENFAIL2,integer) > cast(AG_ENFAIL2,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’âge de votre enfant lors de son décès ne peut pas être supérieur à son âge.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AG_ENFAIL2", + "AG_DC_ENFAIL2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwx9yl", + "page": "2.236", + "label": { + "value": "\"Votre deuxième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL2", + "SEXE_ENFAIL2", + "AG_DC_ENFAIL2", + "VAL_ANNAISS" + ], + "unit": "ans", + "response": { + "name": "AG_DC_ENFAIL2" + } + }, + { + "id": "l4lhkbmw", + "componentType": "InputNumber", + "mandatory": false, + "page": "2.244", + "min": 0, + "max": 95, + "decimals": 0, + "label": { + "value": "\"A quel âge environ \" || (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL2) || \" a-t-\" || (if (SEXE_ENFAIL2=\"1\" or isnull(SEXE_ENFAIL2)) then \"il\" else \"elle\") || \" cessé de vivre avec vous ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL2" + ] + }, + "controls": [ + { + "id": "l4lhkbmw-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(AG_DEPART_ENFAIL2)) and (0>AG_DEPART_ENFAIL2 or 95AG_DEPART_ENFAIL2)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "l4lhkbmw-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(AG_DEPART_ENFAIL2) or AG_DEPART_ENFAIL2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’âge attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AG_DEPART_ENFAIL2" + ] + }, + { + "id": "l4lhkbmw-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(AG_DEPART_ENFAIL2)) and not(isnull(ANAI_ENFAIL2)) and AG_DEPART_ENFAIL2 > AG_ENFAIL2)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AG_DEPART_ENFAIL2", + "ANAI_ENFAIL2", + "AG_ENFAIL2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwx9yl", + "page": "2.236", + "label": { + "value": "\"Votre deuxième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL2", + "SEXE_ENFAIL2", + "AG_DEPART_ENFAIL2", + "VAL_ANNAISS" + ], + "unit": "ans", + "response": { + "name": "AG_DEPART_ENFAIL2" + } + }, + { + "id": "l4liqyis", + "componentType": "Radio", + "mandatory": false, + "page": "2.245", + "label": { + "value": "\"A quelle fréquence êtes-vous en contact avec \" || (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL2) || \" ? \"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4liqyis-l4liqr1h", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"(en face à face, téléphone, mail, SMS, appel vidéo, etc.)\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL2" + ] + }, + "controls": [ + { + "id": "l4liqyis-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_FREQ_ENFAIL2) or PARENT_FREQ_ENFAIL2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_FREQ_ENFAIL2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwx9yl", + "page": "2.236", + "label": { + "value": "\"Votre deuxième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL2", + "PARENT_FREQ_ENFAIL2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "2", + "label": { + "value": "Une ou plusieurs fois par semaine", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Une ou plusieurs fois par mois", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Une ou plusieurs fois par an", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Plus rarement ou jamais", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_FREQ_ENFAIL2" + } + }, + { + "id": "l4lj22ar", + "componentType": "Radio", + "mandatory": false, + "page": "2.246", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL2) || \" vit-\" || (if (SEXE_ENFAIL2=\"1\" or isnull(SEXE_ENFAIL2)) then \"il \" else \"elle \") || \"en France actuellement ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4lj22ar-lai6wbee", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Prenez en compte les frontières actuelles.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL2" + ] + }, + "controls": [ + { + "id": "l4lj22ar-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(FR_ENFAIL2) or FR_ENFAIL2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "FR_ENFAIL2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwx9yl", + "page": "2.236", + "label": { + "value": "\"Votre deuxième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL2", + "SEXE_ENFAIL2", + "FR_ENFAIL2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "FR_ENFAIL2" + } + }, + { + "id": "l4oo8gk0", + "componentType": "Input", + "mandatory": false, + "page": "2.247", + "maxLength": 20, + "label": { + "value": "\"Dans quel département vit \" || (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL2) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4oo8gk0-l4paergi", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2)) and (FR_ENFAIL2 =\"1\" or isnull(FR_ENFAIL2))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL2", + "FR_ENFAIL2" + ] + }, + "controls": [ + { + "id": "l4oo8gk0-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(DEP_ENFAIL2) or DEP_ENFAIL2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "DEP_ENFAIL2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwx9yl", + "page": "2.236", + "label": { + "value": "\"Votre deuxième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL2", + "DEP_ENFAIL2", + "VAL_ANNAISS" + ], + "response": { + "name": "DEP_ENFAIL2" + } + }, + { + "id": "l4oo2unu", + "componentType": "Input", + "mandatory": false, + "page": "2.248", + "maxLength": 20, + "label": { + "value": "\"Dans quelle commune vit \" || (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL2) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4oo2unu-l4pa7dpy", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez la commune recherchée et sélectionnez la dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2)) and (FR_ENFAIL2 =\"1\" or isnull(FR_ENFAIL2))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL2", + "FR_ENFAIL2" + ] + }, + "controls": [ + { + "id": "l4oo2unu-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(COM_ENFAIL2) or COM_ENFAIL2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "COM_ENFAIL2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwx9yl", + "page": "2.236", + "label": { + "value": "\"Votre deuxième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL2", + "COM_ENFAIL2", + "VAL_ANNAISS" + ], + "response": { + "name": "COM_ENFAIL2" + } + }, + { + "id": "l4ooebmj", + "componentType": "Input", + "mandatory": false, + "page": "2.249", + "maxLength": 20, + "label": { + "value": "\"Dans quel pays vit \" || (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL2) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4ooebmj-l4padk5u", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2)) and (FR_ENFAIL2 =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL2", + "FR_ENFAIL2" + ] + }, + "controls": [ + { + "id": "l4ooebmj-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PAY_ENFAIL2) or PAY_ENFAIL2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PAY_ENFAIL2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwx9yl", + "page": "2.236", + "label": { + "value": "\"Votre deuxième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL2", + "PAY_ENFAIL2", + "VAL_ANNAISS" + ], + "response": { + "name": "PAY_ENFAIL2" + } + }, + { + "id": "l4liztyl", + "componentType": "Radio", + "mandatory": false, + "page": "2.250", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL2) || \" vit-\" || (if (SEXE_ENFAIL2=\"1\" or isnull(SEXE_ENFAIL2)) then \"il \" else \"elle \") || \" dans son propre logement ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2004) and (cast(ANAI_ENFAIL2,integer) <= 2011)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL2", + "ANAI_ENFAIL2" + ] + }, + "controls": [ + { + "id": "l4liztyl-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(LOG_ENFAIL2) or LOG_ENFAIL2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "LOG_ENFAIL2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwx9yl", + "page": "2.236", + "label": { + "value": "\"Votre deuxième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL2", + "SEXE_ENFAIL2", + "LOG_ENFAIL2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "LOG_ENFAIL2" + } + }, + { + "id": "l4lk1w8p", + "componentType": "Radio", + "mandatory": false, + "page": "2.251", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL2) || \" vit-\" || (if (SEXE_ENFAIL2=\"1\" or isnull(SEXE_ENFAIL2)) then \"il\" else \"elle\") || \" chez son autre parent ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2004) and (PARENT_VIT_ENFAIL2<>=\"3\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL2", + "ANAI_ENFAIL2", + "PARENT_VIT_ENFAIL2" + ] + }, + "controls": [ + { + "id": "l4lk1w8p-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(AUT_PAR_ENFAIL2) or AUT_PAR_ENFAIL2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AUT_PAR_ENFAIL2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwx9yl", + "page": "2.236", + "label": { + "value": "\"Votre deuxième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL2", + "SEXE_ENFAIL2", + "AUT_PAR_ENFAIL2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "AUT_PAR_ENFAIL2" + } + }, + { + "id": "l4ljkmaj", + "componentType": "Radio", + "mandatory": false, + "page": "2.252", + "label": { + "value": "\"Arrive-t-il à \" || (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL2) || \" de dormir chez vous ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2004)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL2", + "ANAI_ENFAIL2" + ] + }, + "controls": [ + { + "id": "l4ljkmaj-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(DORT_ENFAIL2) or DORT_ENFAIL2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "DORT_ENFAIL2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwx9yl", + "page": "2.236", + "label": { + "value": "\"Votre deuxième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL2", + "DORT_ENFAIL2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "DORT_ENFAIL2" + } + }, + { + "id": "l4o73m0u", + "componentType": "Radio", + "mandatory": false, + "page": "2.253", + "label": { + "value": "\"Vous êtes-vous séparé\" || (if (TYPE_QUEST = \"2\") then \"e\" else \"\") || \" de l’autre parent de \" || (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL2) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2004) and (PARENT_VIT_ENFAIL2<>\"3\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL2", + "ANAI_ENFAIL2", + "PARENT_VIT_ENFAIL2" + ] + }, + "controls": [ + { + "id": "l4o73m0u-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEP_AUT_PAR_ENFAIL2) or SEP_AUT_PAR_ENFAIL2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEP_AUT_PAR_ENFAIL2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwx9yl", + "page": "2.236", + "label": { + "value": "\"Votre deuxième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TYPE_QUEST", + "PRENOM_ENFAIL2", + "SEP_AUT_PAR_ENFAIL2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEP_AUT_PAR_ENFAIL2" + } + }, + { + "id": "l4lmxke4", + "componentType": "Radio", + "mandatory": false, + "page": "2.254", + "label": { + "value": "\"Quel a été le mode de résidence fixé par décision de justice ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2004) and (PARENT_VIT_ENFAIL2<>\"3\") and (SEP_AUT_PAR_ENFAIL2 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL2))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL2", + "ANAI_ENFAIL2", + "PARENT_VIT_ENFAIL2", + "SEP_AUT_PAR_ENFAIL2" + ] + }, + "controls": [ + { + "id": "l4lmxke4-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(RESID_ENFAIL2) or RESID_ENFAIL2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "RESID_ENFAIL2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwx9yl", + "page": "2.236", + "label": { + "value": "\"Votre deuxième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "RESID_ENFAIL2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Pas de décision", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Résidence alternée", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Principalement chez vous", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Principalement chez son autre parent", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "RESID_ENFAIL2" + } + }, + { + "id": "l4ljj44i", + "componentType": "CheckboxGroup", + "page": "2.255", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL2) || \" vit-\" || (if (SEXE_ENFAIL2=\"1\" or isnull(SEXE_ENFAIL2)) then \"il \" else \"elle \") || \"ailleurs que chez vous ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4ljj44i-l59nu66k", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL2" + ] + }, + "controls": [ + { + "id": "l4ljj44i-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(SANTE_ENFAIL21, false) = false and nvl(SANTE_ENFAIL22, false) = false and nvl(SANTE_ENFAIL23, false) = false ))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SANTE_ENFAIL21", + "SANTE_ENFAIL22", + "SANTE_ENFAIL23" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwx9yl", + "page": "2.236", + "label": { + "value": "\"Votre deuxième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL2", + "SEXE_ENFAIL2", + "SANTE_ENFAIL21", + "SANTE_ENFAIL22", + "SANTE_ENFAIL23", + "VAL_ANNAISS" + ], + "responses": [ + { + "id": "l4ljj44i-QOP-lagyowte", + "label": { + "value": "\"Pour des raisons de santé\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFAIL21" + } + }, + { + "id": "l4ljj44i-QOP-lagyfrw1", + "label": { + "value": "\"A la suite d’une décision de l’aide sociale à l’enfance ou du juge des enfants\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFAIL22" + } + }, + { + "id": "l4ljj44i-QOP-lagyeeeb", + "label": { + "value": "\"Pour une autre raison\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFAIL23" + } + } + ] + }, + { + "id": "ljmwnjny", + "componentType": "Subsequence", + "goToPage": "2.256", + "label": { + "value": "\"Votre troisième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwnjny", + "page": "2.256", + "label": { + "value": "\"Votre troisième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "VAL_ANNAISS" + ] + }, + { + "id": "l4lg3j5g", + "componentType": "Input", + "mandatory": false, + "page": "2.256", + "maxLength": 249, + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", comment s’appelle votre troisième enfant qui ne vit pas avec vous ou qui est décédé ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l4lg3j5g-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PRENOM_ENFAIL3) or PRENOM_ENFAIL3=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer le prénom attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PRENOM_ENFAIL3" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwnjny", + "page": "2.256", + "label": { + "value": "\"Votre troisième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "PRENOM_ENFAIL3", + "VAL_ANNAISS" + ], + "response": { + "name": "PRENOM_ENFAIL3" + } + }, + { + "id": "l4lg6nx5", + "componentType": "Radio", + "mandatory": false, + "page": "2.257", + "label": { + "value": "\"Quel est le sexe de \" || (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL3) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l4lg6nx5-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEXE_ENFAIL3) or SEXE_ENFAIL3=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEXE_ENFAIL3" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwnjny", + "page": "2.256", + "label": { + "value": "\"Votre troisième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL3", + "SEXE_ENFAIL3", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Masculin\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Féminin\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEXE_ENFAIL3" + } + }, + { + "id": "l4lgenh5", + "componentType": "Input", + "mandatory": false, + "page": "2.258", + "maxLength": 4, + "label": { + "value": "\"Quelle est l’année de naissance de \" || (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL3) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l4lgenh5-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ANAI_ENFAIL3) or ANAI_ENFAIL3=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’année attendue.\"\r\n\r\n", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFAIL3" + ] + }, + { + "id": "l4lgenh5-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANAI_ENFAIL3)) and not(isnull(ANAIS)) and cast(ANAI_ENFAIL3,integer) < cast(ANAIS,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFAIL3", + "ANAIS" + ] + }, + { + "id": "l4lgenh5-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANAI_ENFAIL3)) and not(isnull(ANAIS)) and (cast(ANAIS,integer) + 15 > cast(ANAI_ENFAIL3,integer)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Il semble y avoir peu d’écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFAIL3", + "ANAIS" + ] + }, + { + "id": "l4lgenh5-CI-3", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(ANAI_ENFAIL3,integer) < 1920 or cast(ANAI_ENFAIL3,integer) > 2024)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de naissance de votre enfant est comprise entre 1920 et 2024.\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFAIL3" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwnjny", + "page": "2.256", + "label": { + "value": "\"Votre troisième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL3", + "ANAI_ENFAIL3", + "VAL_ANNAISS" + ], + "response": { + "name": "ANAI_ENFAIL3" + } + }, + { + "id": "l4lh0q7i", + "componentType": "Radio", + "mandatory": false, + "page": "2.259", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL3) || \" est-\" || (if (SEXE_ENFAIL3=\"1\" or isnull(SEXE_ENFAIL3)) then \"il né\" else \"elle née\") || \" en France ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4lh0q7i-l4pa7lpq", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Prenez en compte les frontières actuelles.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l4lh0q7i-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NEFRANCE_ENFAIL3) or NEFRANCE_ENFAIL3=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NEFRANCE_ENFAIL3" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwnjny", + "page": "2.256", + "label": { + "value": "\"Votre troisième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL3", + "SEXE_ENFAIL3", + "NEFRANCE_ENFAIL3", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "NEFRANCE_ENFAIL3" + } + }, + { + "id": "l4lgysxq", + "componentType": "Radio", + "mandatory": false, + "page": "2.260", + "label": { + "value": "\"L’autre parent de \" || (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL3) || \" vit-il/elle avec vous ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l4lgysxq-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_VIT_ENFAIL3) or PARENT_VIT_ENFAIL3=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_VIT_ENFAIL3" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwnjny", + "page": "2.256", + "label": { + "value": "\"Votre troisième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL3", + "PARENT_VIT_ENFAIL3", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui, il/elle vit avec vous\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Non, il/elle vit ailleurs\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Non, il/elle est décédé(e)\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_VIT_ENFAIL3" + } + }, + { + "id": "l8m0bu1o", + "componentType": "Radio", + "mandatory": false, + "page": "2.261", + "label": { + "value": "\"Avez-vous déjà vécu avec l’autre parent de \" || (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL3) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (PARENT_VIT_ENFAIL3 =\"2\" or PARENT_VIT_ENFAIL3 =\"3\" or isnull( PARENT_VIT_ENFAIL3))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "PARENT_VIT_ENFAIL3" + ] + }, + "controls": [ + { + "id": "l8m0bu1o-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_VECU_ENFAIL3) or PARENT_VECU_ENFAIL3=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_VECU_ENFAIL3" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwnjny", + "page": "2.256", + "label": { + "value": "\"Votre troisième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL3", + "PARENT_VECU_ENFAIL3", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_VECU_ENFAIL3" + } + }, + { + "id": "l4lh0ofl", + "componentType": "Radio", + "mandatory": false, + "page": "2.262", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL3) || \" est-\" || if (SEXE_ENFAIL3=\"1\" or isnull(SEXE_ENFAIL3)) then \"il encore en vie ?\" else \"elle encore en vie ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l4lh0ofl-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(DC_ENFAIL3) or DC_ENFAIL3=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "DC_ENFAIL3" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwnjny", + "page": "2.256", + "label": { + "value": "\"Votre troisième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL3", + "SEXE_ENFAIL3", + "DC_ENFAIL3", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "DC_ENFAIL3" + } + }, + { + "id": "l4lhbuxg", + "componentType": "InputNumber", + "mandatory": false, + "page": "2.263", + "min": 0, + "max": 95, + "decimals": 0, + "label": { + "value": "\"A quel âge \" || (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL3) || \" est-\" || if (SEXE_ENFAIL3=\"1\" or isnull(SEXE_ENFAIL3)) then \"il décédé ?\" else \"elle décédée ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4lhbuxg-l4lh8af1", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Notez 0 si \"||(if(nvl(PRENOM_ENFAIL3,\"\") = \"\") then \"cet enfant\" else PRENOM_ENFAIL3) || (\" est\") || (if (SEXE_ENFAIL3 = \"1\" or nvl(SEXE_ENFAIL3,\"\") = \"\") then \" décédé\" else \" décédée\") || (\" avant un an.\")", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL3" + ] + }, + "controls": [ + { + "id": "l4lhbuxg-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(AG_DC_ENFAIL3)) and (0>AG_DC_ENFAIL3 or 95AG_DC_ENFAIL3)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "l4lhbuxg-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(AG_DC_ENFAIL3) or AG_DC_ENFAIL3=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’âge attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AG_DC_ENFAIL3" + ] + }, + { + "id": "l4lhbuxg-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(AG_ENFAIL3)) and not (isnull(AG_DC_ENFAIL3)) and cast(AG_DC_ENFAIL3,integer) > cast(AG_ENFAIL3,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’âge de votre enfant lors de son décès ne peut pas être supérieur à son âge.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AG_ENFAIL3", + "AG_DC_ENFAIL3" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwnjny", + "page": "2.256", + "label": { + "value": "\"Votre troisième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL3", + "SEXE_ENFAIL3", + "AG_DC_ENFAIL3", + "VAL_ANNAISS" + ], + "unit": "ans", + "response": { + "name": "AG_DC_ENFAIL3" + } + }, + { + "id": "l4lhdubm", + "componentType": "InputNumber", + "mandatory": false, + "page": "2.264", + "min": 0, + "max": 95, + "decimals": 0, + "label": { + "value": "\"A quel âge environ \" || (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL3) || \" a-t-\" || (if (SEXE_ENFAIL3=\"1\" or isnull(SEXE_ENFAIL3)) then \"il\" else \"elle\") || \" cessé de vivre avec vous ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL3" + ] + }, + "controls": [ + { + "id": "l4lhdubm-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(AG_DEPART_ENFAIL3)) and (0>AG_DEPART_ENFAIL3 or 95AG_DEPART_ENFAIL3)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "l4lhdubm-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(AG_DEPART_ENFAIL3) or AG_DEPART_ENFAIL3=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’âge attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AG_DEPART_ENFAIL3" + ] + }, + { + "id": "l4lhdubm-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(AG_DEPART_ENFAIL3)) and not(isnull(ANAI_ENFAIL3)) and AG_DEPART_ENFAIL3 > AG_ENFAIL3)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AG_DEPART_ENFAIL3", + "ANAI_ENFAIL3", + "AG_ENFAIL3" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwnjny", + "page": "2.256", + "label": { + "value": "\"Votre troisième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL3", + "SEXE_ENFAIL3", + "AG_DEPART_ENFAIL3", + "VAL_ANNAISS" + ], + "unit": "ans", + "response": { + "name": "AG_DEPART_ENFAIL3" + } + }, + { + "id": "l4lirpfm", + "componentType": "Radio", + "mandatory": false, + "page": "2.265", + "label": { + "value": "\"A quelle fréquence êtes-vous en contact avec \" || (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL3) || \" ? \"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4lirpfm-l4livqhf", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"(en face à face, téléphone, mail, SMS, appel vidéo, etc.)\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL3" + ] + }, + "controls": [ + { + "id": "l4lirpfm-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_FREQ_ENFAIL3) or PARENT_FREQ_ENFAIL3=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_FREQ_ENFAIL3" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwnjny", + "page": "2.256", + "label": { + "value": "\"Votre troisième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL3", + "PARENT_FREQ_ENFAIL3", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "2", + "label": { + "value": "Une ou plusieurs fois par semaine", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Une ou plusieurs fois par mois", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Une ou plusieurs fois par an", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Plus rarement ou jamais", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_FREQ_ENFAIL3" + } + }, + { + "id": "l4lj2cqg", + "componentType": "Radio", + "mandatory": false, + "page": "2.266", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL3) || \" vit-\" || (if (SEXE_ENFAIL3=\"1\" or isnull(SEXE_ENFAIL3)) then \"il \" else \"elle \") || \"en France actuellement ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4lj2cqg-lai71v9g", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Prenez en compte les frontières actuelles.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL3" + ] + }, + "controls": [ + { + "id": "l4lj2cqg-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(FR_ENFAIL3) or FR_ENFAIL3=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "FR_ENFAIL3" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwnjny", + "page": "2.256", + "label": { + "value": "\"Votre troisième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL3", + "SEXE_ENFAIL3", + "FR_ENFAIL3", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "FR_ENFAIL3" + } + }, + { + "id": "l4oo03nq", + "componentType": "Input", + "mandatory": false, + "page": "2.267", + "maxLength": 20, + "label": { + "value": "\"Dans quel département vit \" || (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL3) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4oo03nq-l4paa00m", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3)) and (FR_ENFAIL3 =\"1\" or isnull(FR_ENFAIL3))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL3", + "FR_ENFAIL3" + ] + }, + "controls": [ + { + "id": "l4oo03nq-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(DEP_ENFAIL3) or DEP_ENFAIL3=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "DEP_ENFAIL3" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwnjny", + "page": "2.256", + "label": { + "value": "\"Votre troisième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL3", + "DEP_ENFAIL3", + "VAL_ANNAISS" + ], + "response": { + "name": "DEP_ENFAIL3" + } + }, + { + "id": "l4oo41j6", + "componentType": "Input", + "mandatory": false, + "page": "2.268", + "maxLength": 20, + "label": { + "value": "\"Dans quelle commune vit \" || (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL3) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4oo41j6-l4paiw08", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez la commune recherchée et sélectionnez la dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3)) and (FR_ENFAIL3 =\"1\" or isnull(FR_ENFAIL3))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL3", + "FR_ENFAIL3" + ] + }, + "controls": [ + { + "id": "l4oo41j6-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(COM_ENFAIL3) or COM_ENFAIL3=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "COM_ENFAIL3" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwnjny", + "page": "2.256", + "label": { + "value": "\"Votre troisième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL3", + "COM_ENFAIL3", + "VAL_ANNAISS" + ], + "response": { + "name": "COM_ENFAIL3" + } + }, + { + "id": "l4ooe2gj", + "componentType": "Input", + "mandatory": false, + "page": "2.269", + "maxLength": 20, + "label": { + "value": "\"Dans quel pays vit \" || (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL3) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4ooe2gj-l4pac47a", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3)) and (FR_ENFAIL3 =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL3", + "FR_ENFAIL3" + ] + }, + "controls": [ + { + "id": "l4ooe2gj-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PAY_ENFAIL3) or PAY_ENFAIL3=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PAY_ENFAIL3" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwnjny", + "page": "2.256", + "label": { + "value": "\"Votre troisième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL3", + "PAY_ENFAIL3", + "VAL_ANNAISS" + ], + "response": { + "name": "PAY_ENFAIL3" + } + }, + { + "id": "l4ljddzv", + "componentType": "Radio", + "mandatory": false, + "page": "2.270", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL3) || \" vit-\" || (if (SEXE_ENFAIL3=\"1\" or isnull(SEXE_ENFAIL3)) then \"il \" else \"elle \") || \" dans son propre logement ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2004) and (cast(ANAI_ENFAIL3,integer) <= 2011)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL3", + "ANAI_ENFAIL3" + ] + }, + "controls": [ + { + "id": "l4ljddzv-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(LOG_ENFAIL3) or LOG_ENFAIL3=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "LOG_ENFAIL3" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwnjny", + "page": "2.256", + "label": { + "value": "\"Votre troisième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL3", + "SEXE_ENFAIL3", + "LOG_ENFAIL3", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "LOG_ENFAIL3" + } + }, + { + "id": "l4lmjzwd", + "componentType": "Radio", + "mandatory": false, + "page": "2.271", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL3) || \" vit-\" || (if (SEXE_ENFAIL3=\"1\" or isnull(SEXE_ENFAIL3)) then \"il\" else \"elle\") || \" chez son autre parent ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2004) and (PARENT_VIT_ENFAIL3<>=\"3\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL3", + "ANAI_ENFAIL3", + "PARENT_VIT_ENFAIL3" + ] + }, + "controls": [ + { + "id": "l4lmjzwd-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(AUT_PAR_ENFAIL3) or AUT_PAR_ENFAIL3=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AUT_PAR_ENFAIL3" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwnjny", + "page": "2.256", + "label": { + "value": "\"Votre troisième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL3", + "SEXE_ENFAIL3", + "AUT_PAR_ENFAIL3", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "AUT_PAR_ENFAIL3" + } + }, + { + "id": "l4ljm6cp", + "componentType": "Radio", + "mandatory": false, + "page": "2.272", + "label": { + "value": "\"Arrive-t-il à \" || (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL3) || \" de dormir chez vous ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2004)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL3", + "ANAI_ENFAIL3" + ] + }, + "controls": [ + { + "id": "l4ljm6cp-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(DORT_ENFAIL3) or DORT_ENFAIL3=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "DORT_ENFAIL3" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwnjny", + "page": "2.256", + "label": { + "value": "\"Votre troisième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL3", + "DORT_ENFAIL3", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "DORT_ENFAIL3" + } + }, + { + "id": "l4o7gt0n", + "componentType": "Radio", + "mandatory": false, + "page": "2.273", + "label": { + "value": "\"Vous êtes-vous séparé\" || (if (TYPE_QUEST = \"2\") then \"e\" else \"\") || \" de l’autre parent de \" || (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL3) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2004) and (PARENT_VIT_ENFAIL3<>\"3\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL3", + "ANAI_ENFAIL3", + "PARENT_VIT_ENFAIL3" + ] + }, + "controls": [ + { + "id": "l4o7gt0n-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEP_AUT_PAR_ENFAIL3) or SEP_AUT_PAR_ENFAIL3=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEP_AUT_PAR_ENFAIL3" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwnjny", + "page": "2.256", + "label": { + "value": "\"Votre troisième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TYPE_QUEST", + "PRENOM_ENFAIL3", + "SEP_AUT_PAR_ENFAIL3", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEP_AUT_PAR_ENFAIL3" + } + }, + { + "id": "l4lmszob", + "componentType": "Radio", + "mandatory": false, + "page": "2.274", + "label": { + "value": "\"Quel a été le mode de résidence fixé par décision de justice ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2004) and (PARENT_VIT_ENFAIL3<>\"3\") and (SEP_AUT_PAR_ENFAIL3 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL3))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL3", + "ANAI_ENFAIL3", + "PARENT_VIT_ENFAIL3", + "SEP_AUT_PAR_ENFAIL3" + ] + }, + "controls": [ + { + "id": "l4lmszob-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(RESID_ENFAIL3) or RESID_ENFAIL3=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "RESID_ENFAIL3" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwnjny", + "page": "2.256", + "label": { + "value": "\"Votre troisième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "RESID_ENFAIL3", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Pas de décision", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Résidence alternée", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Principalement chez vous", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Principalement chez son autre parent", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "RESID_ENFAIL3" + } + }, + { + "id": "l4ljg7fn", + "componentType": "CheckboxGroup", + "page": "2.275", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL3) || \" vit-\" || (if (SEXE_ENFAIL3=\"1\" or isnull(SEXE_ENFAIL3)) then \"il \" else \"elle \") || \"ailleurs que chez vous?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4ljg7fn-l59o0g5r", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL3" + ] + }, + "controls": [ + { + "id": "l4ljg7fn-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(SANTE_ENFAIL31, false) = false and nvl(SANTE_ENFAIL32, false) = false and nvl(SANTE_ENFAIL33, false) = false ))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SANTE_ENFAIL31", + "SANTE_ENFAIL32", + "SANTE_ENFAIL33" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljmwnjny", + "page": "2.256", + "label": { + "value": "\"Votre troisième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL3", + "SEXE_ENFAIL3", + "SANTE_ENFAIL31", + "SANTE_ENFAIL32", + "SANTE_ENFAIL33", + "VAL_ANNAISS" + ], + "responses": [ + { + "id": "l4ljg7fn-QOP-lagyxtyg", + "label": { + "value": "\"Pour des raisons de santé\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFAIL31" + } + }, + { + "id": "l4ljg7fn-QOP-lagyuta3", + "label": { + "value": "\"A la suite d’une décision de l’aide sociale à l’enfance ou du juge des enfants\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFAIL32" + } + }, + { + "id": "l4ljg7fn-QOP-lagyuxyh", + "label": { + "value": "\"Pour une autre raison\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFAIL33" + } + } + ] + }, + { + "id": "ljof3wlm", + "componentType": "Subsequence", + "goToPage": "2.276", + "label": { + "value": "\"Votre quatrième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof3wlm", + "page": "2.276", + "label": { + "value": "\"Votre quatrième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "VAL_ANNAISS" + ] + }, + { + "id": "l4lg5t9v", + "componentType": "Input", + "mandatory": false, + "page": "2.276", + "maxLength": 249, + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", comment s’appelle votre quatrième enfant qui ne vit pas avec vous ou qui est décédé ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l4lg5t9v-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PRENOM_ENFAIL4) or PRENOM_ENFAIL4=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer le prénom attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PRENOM_ENFAIL4" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof3wlm", + "page": "2.276", + "label": { + "value": "\"Votre quatrième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "PRENOM_ENFAIL4", + "VAL_ANNAISS" + ], + "response": { + "name": "PRENOM_ENFAIL4" + } + }, + { + "id": "l4lg3wub", + "componentType": "Radio", + "mandatory": false, + "page": "2.277", + "label": { + "value": "\"Quel est le sexe de \" || (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL4) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l4lg3wub-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEXE_ENFAIL4) or SEXE_ENFAIL4=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEXE_ENFAIL4" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof3wlm", + "page": "2.276", + "label": { + "value": "\"Votre quatrième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL4", + "SEXE_ENFAIL4", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Masculin\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Féminin\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEXE_ENFAIL4" + } + }, + { + "id": "l4lgfphb", + "componentType": "Input", + "mandatory": false, + "page": "2.278", + "maxLength": 4, + "label": { + "value": "\"Quelle est l’année de naissance de \" || (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL4) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l4lgfphb-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ANAI_ENFAIL4) or ANAI_ENFAIL4=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’année attendue.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFAIL4" + ] + }, + { + "id": "l4lgfphb-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANAI_ENFAIL4)) and not(isnull(ANAIS)) and cast(ANAI_ENFAIL4,integer) < cast(ANAIS,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFAIL4", + "ANAIS" + ] + }, + { + "id": "l4lgfphb-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANAI_ENFAIL4)) and not(isnull(ANAIS)) and (cast(ANAIS,integer) + 15 > cast(ANAI_ENFAIL4,integer)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Il semble y avoir peu d’écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFAIL4", + "ANAIS" + ] + }, + { + "id": "l4lgfphb-CI-3", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(ANAI_ENFAIL4,integer) < 1920 or cast(ANAI_ENFAIL4,integer) > 2024)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de naissance de votre enfant est comprise entre 1920 et 2024.\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFAIL4" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof3wlm", + "page": "2.276", + "label": { + "value": "\"Votre quatrième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL4", + "ANAI_ENFAIL4", + "VAL_ANNAISS" + ], + "response": { + "name": "ANAI_ENFAIL4" + } + }, + { + "id": "l4lgr9ny", + "componentType": "Radio", + "mandatory": false, + "page": "2.279", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL4) || \" est-\" || (if (SEXE_ENFAIL4=\"1\" or isnull(SEXE_ENFAIL4)) then \"il né\" else \"elle née\") || \" en France ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4lgr9ny-l4paawvf", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Prenez en compte les frontières actuelles.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l4lgr9ny-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NEFRANCE_ENFAIL4) or NEFRANCE_ENFAIL4=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NEFRANCE_ENFAIL4" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof3wlm", + "page": "2.276", + "label": { + "value": "\"Votre quatrième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL4", + "SEXE_ENFAIL4", + "NEFRANCE_ENFAIL4", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "NEFRANCE_ENFAIL4" + } + }, + { + "id": "l4lgo4yb", + "componentType": "Radio", + "mandatory": false, + "page": "2.280", + "label": { + "value": "\"L’autre parent de \" || (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL4) || \" vit-il/elle avec vous ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l4lgo4yb-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_VIT_ENFAIL4) or PARENT_VIT_ENFAIL4=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_VIT_ENFAIL4" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof3wlm", + "page": "2.276", + "label": { + "value": "\"Votre quatrième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL4", + "PARENT_VIT_ENFAIL4", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui, il/elle vit avec vous\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Non, il/elle vit ailleurs\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Non, il/elle est décédé(e)\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_VIT_ENFAIL4" + } + }, + { + "id": "l8m03w7m", + "componentType": "Radio", + "mandatory": false, + "page": "2.281", + "label": { + "value": "\"Avez-vous déjà vécu avec l’autre parent de \" || (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL4) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (PARENT_VIT_ENFAIL4 =\"2\" or PARENT_VIT_ENFAIL4 =\"3\" or isnull( PARENT_VIT_ENFAIL4))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "PARENT_VIT_ENFAIL4" + ] + }, + "controls": [ + { + "id": "l8m03w7m-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_VECU_ENFAIL4) or PARENT_VECU_ENFAIL4=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_VECU_ENFAIL4" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof3wlm", + "page": "2.276", + "label": { + "value": "\"Votre quatrième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL4", + "PARENT_VECU_ENFAIL4", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_VECU_ENFAIL4" + } + }, + { + "id": "l4lh1a42", + "componentType": "Radio", + "mandatory": false, + "page": "2.282", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL4) || \" est-\" || if (SEXE_ENFAIL4=\"1\" or isnull(SEXE_ENFAIL4)) then \"il encore en vie ?\" else \"elle encore en vie ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l4lh1a42-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(DC_ENFAIL4) or DC_ENFAIL4=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "DC_ENFAIL4" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof3wlm", + "page": "2.276", + "label": { + "value": "\"Votre quatrième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL4", + "SEXE_ENFAIL4", + "DC_ENFAIL4", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "DC_ENFAIL4" + } + }, + { + "id": "l4lhbfxh", + "componentType": "InputNumber", + "mandatory": false, + "page": "2.283", + "min": 0, + "max": 95, + "decimals": 0, + "label": { + "value": "\"A quel âge \" || (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL4) || \" est-\" || if (SEXE_ENFAIL4=\"1\" or isnull(SEXE_ENFAIL4)) then \"il décédé ?\" else \"elle décédée ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4lhbfxh-l4lh0mk3", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Notez 0 si \"||(if(nvl(PRENOM_ENFAIL4,\"\") = \"\") then \"cet enfant\" else PRENOM_ENFAIL4) || (\" est\") || (if (SEXE_ENFAIL4 = \"1\" or nvl(SEXE_ENFAIL4,\"\") = \"\") then \" décédé\" else \" décédée\") || (\" avant un an.\")", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL4" + ] + }, + "controls": [ + { + "id": "l4lhbfxh-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(AG_DC_ENFAIL4)) and (0>AG_DC_ENFAIL4 or 95AG_DC_ENFAIL4)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "l4lhbfxh-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(AG_DC_ENFAIL4) or AG_DC_ENFAIL4=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’âge attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AG_DC_ENFAIL4" + ] + }, + { + "id": "l4lhbfxh-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(AG_ENFAIL4)) and not (isnull(AG_DC_ENFAIL4)) and cast(AG_DC_ENFAIL4,integer) > cast(AG_ENFAIL4,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’âge de votre enfant lors de son décès ne peut pas être supérieur à son âge.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AG_ENFAIL4", + "AG_DC_ENFAIL4" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof3wlm", + "page": "2.276", + "label": { + "value": "\"Votre quatrième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL4", + "SEXE_ENFAIL4", + "AG_DC_ENFAIL4", + "VAL_ANNAISS" + ], + "unit": "ans", + "response": { + "name": "AG_DC_ENFAIL4" + } + }, + { + "id": "l4lho0e2", + "componentType": "InputNumber", + "mandatory": false, + "page": "2.284", + "min": 0, + "max": 95, + "decimals": 0, + "label": { + "value": "\"A quel âge environ \" || (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL4) || \" a-t-\" || (if (SEXE_ENFAIL4=\"1\" or isnull(SEXE_ENFAIL4)) then \"il \" else \"elle\") || \" cessé de vivre avec vous ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL4" + ] + }, + "controls": [ + { + "id": "l4lho0e2-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(AG_DEPART_ENFAIL4)) and (0>AG_DEPART_ENFAIL4 or 95AG_DEPART_ENFAIL4)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "l4lho0e2-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(AG_DEPART_ENFAIL4) or AG_DEPART_ENFAIL4=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’âge attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AG_DEPART_ENFAIL4" + ] + }, + { + "id": "l4lho0e2-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(AG_DEPART_ENFAIL4)) and not(isnull(ANAI_ENFAIL4)) and AG_DEPART_ENFAIL4 > AG_ENFAIL4)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AG_DEPART_ENFAIL4", + "ANAI_ENFAIL4", + "AG_ENFAIL4" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof3wlm", + "page": "2.276", + "label": { + "value": "\"Votre quatrième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL4", + "SEXE_ENFAIL4", + "AG_DEPART_ENFAIL4", + "VAL_ANNAISS" + ], + "unit": "ans", + "response": { + "name": "AG_DEPART_ENFAIL4" + } + }, + { + "id": "l4lj5kv6", + "componentType": "Radio", + "mandatory": false, + "page": "2.285", + "label": { + "value": "\"A quelle fréquence êtes-vous en contact avec \" || (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL4) || \" ? \"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4lj5kv6-l4liwkni", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"(en face à face, téléphone, mail, SMS, appel vidéo, etc.)\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL4" + ] + }, + "controls": [ + { + "id": "l4lj5kv6-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_FREQ_ENFAIL4) or PARENT_FREQ_ENFAIL4=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_FREQ_ENFAIL4" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof3wlm", + "page": "2.276", + "label": { + "value": "\"Votre quatrième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL4", + "PARENT_FREQ_ENFAIL4", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "2", + "label": { + "value": "Une ou plusieurs fois par semaine", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Une ou plusieurs fois par mois", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Une ou plusieurs fois par an", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Plus rarement ou jamais", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_FREQ_ENFAIL4" + } + }, + { + "id": "l4lj0iea", + "componentType": "Radio", + "mandatory": false, + "page": "2.286", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL4) || \" vit-\" || (if (SEXE_ENFAIL4=\"1\" or isnull(SEXE_ENFAIL4)) then \"il \" else \"elle \") || \"en France actuellement ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4lj0iea-lai71ft1", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Prenez en compte les frontières actuelles.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL4" + ] + }, + "controls": [ + { + "id": "l4lj0iea-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(FR_ENFAIL4) or FR_ENFAIL4=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "FR_ENFAIL4" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof3wlm", + "page": "2.276", + "label": { + "value": "\"Votre quatrième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL4", + "SEXE_ENFAIL4", + "FR_ENFAIL4", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "FR_ENFAIL4" + } + }, + { + "id": "l4oo4x1t", + "componentType": "Input", + "mandatory": false, + "page": "2.287", + "maxLength": 20, + "label": { + "value": "\"Dans quel département vit \" || (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL4) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4oo4x1t-l4pa6ogq", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4)) and (FR_ENFAIL4 =\"1\" or isnull(FR_ENFAIL4))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL4", + "FR_ENFAIL4" + ] + }, + "controls": [ + { + "id": "l4oo4x1t-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(DEP_ENFAIL4) or DEP_ENFAIL4=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "DEP_ENFAIL4" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof3wlm", + "page": "2.276", + "label": { + "value": "\"Votre quatrième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL4", + "DEP_ENFAIL4", + "VAL_ANNAISS" + ], + "response": { + "name": "DEP_ENFAIL4" + } + }, + { + "id": "l4onwhrf", + "componentType": "Input", + "mandatory": false, + "page": "2.288", + "maxLength": 20, + "label": { + "value": "\"Dans quelle commune vit \" || (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL4) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4onwhrf-l4pabom2", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez la commune recherchée et sélectionnez la dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4)) and (FR_ENFAIL4 =\"1\" or isnull(FR_ENFAIL4))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL4", + "FR_ENFAIL4" + ] + }, + "controls": [ + { + "id": "l4onwhrf-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(COM_ENFAIL4) or COM_ENFAIL4=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "COM_ENFAIL4" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof3wlm", + "page": "2.276", + "label": { + "value": "\"Votre quatrième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL4", + "COM_ENFAIL4", + "VAL_ANNAISS" + ], + "response": { + "name": "COM_ENFAIL4" + } + }, + { + "id": "l4oo1817", + "componentType": "Input", + "mandatory": false, + "page": "2.289", + "maxLength": 20, + "label": { + "value": "\"Dans quel pays vit \" || (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL4) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4oo1817-l4paauej", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4)) and (FR_ENFAIL4 =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL4", + "FR_ENFAIL4" + ] + }, + "controls": [ + { + "id": "l4oo1817-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PAY_ENFAIL4) or PAY_ENFAIL4=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PAY_ENFAIL4" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof3wlm", + "page": "2.276", + "label": { + "value": "\"Votre quatrième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL4", + "PAY_ENFAIL4", + "VAL_ANNAISS" + ], + "response": { + "name": "PAY_ENFAIL4" + } + }, + { + "id": "l4lixcs2", + "componentType": "Radio", + "mandatory": false, + "page": "2.290", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL4) || \" vit-\" || (if (SEXE_ENFAIL4=\"1\" or isnull(SEXE_ENFAIL4)) then \"il \" else \"elle \") || \" dans son propre logement ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2004) and (cast(ANAI_ENFAIL4,integer) <= 2011)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL4", + "ANAI_ENFAIL4" + ] + }, + "controls": [ + { + "id": "l4lixcs2-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(LOG_ENFAIL4) or LOG_ENFAIL4 =\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "LOG_ENFAIL4" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof3wlm", + "page": "2.276", + "label": { + "value": "\"Votre quatrième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL4", + "SEXE_ENFAIL4", + "LOG_ENFAIL4", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "LOG_ENFAIL4" + } + }, + { + "id": "l4lms9a0", + "componentType": "Radio", + "mandatory": false, + "page": "2.291", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL4) || \" vit-\" || (if (SEXE_ENFAIL4=\"1\" or isnull(SEXE_ENFAIL4)) then \"il\" else \"elle\") || \" chez son autre parent ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2004) and (PARENT_VIT_ENFAIL4<>=\"3\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL4", + "ANAI_ENFAIL4", + "PARENT_VIT_ENFAIL4" + ] + }, + "controls": [ + { + "id": "l4lms9a0-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(AUT_PAR_ENFAIL4) or AUT_PAR_ENFAIL4=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AUT_PAR_ENFAIL4" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof3wlm", + "page": "2.276", + "label": { + "value": "\"Votre quatrième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL4", + "SEXE_ENFAIL4", + "AUT_PAR_ENFAIL4", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "AUT_PAR_ENFAIL4" + } + }, + { + "id": "l4ljmpiu", + "componentType": "Radio", + "mandatory": false, + "page": "2.292", + "label": { + "value": "\"Arrive-t-il à \" || (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL4) || \" de dormir chez vous ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2004)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL4", + "ANAI_ENFAIL4" + ] + }, + "controls": [ + { + "id": "l4ljmpiu-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(DORT_ENFAIL4) or DORT_ENFAIL4=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "DORT_ENFAIL4" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof3wlm", + "page": "2.276", + "label": { + "value": "\"Votre quatrième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL4", + "DORT_ENFAIL4", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "DORT_ENFAIL4" + } + }, + { + "id": "l4o7jdze", + "componentType": "Radio", + "mandatory": false, + "page": "2.293", + "label": { + "value": "\"Vous êtes-vous séparé\" || (if (TYPE_QUEST = \"2\") then \"e\" else \"\") || \" de l’autre parent de \" || (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL4) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2004) and (PARENT_VIT_ENFAIL4<>\"3\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL4", + "ANAI_ENFAIL4", + "PARENT_VIT_ENFAIL4" + ] + }, + "controls": [ + { + "id": "l4o7jdze-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEP_AUT_PAR_ENFAIL4) or SEP_AUT_PAR_ENFAIL4=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEP_AUT_PAR_ENFAIL4" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof3wlm", + "page": "2.276", + "label": { + "value": "\"Votre quatrième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TYPE_QUEST", + "PRENOM_ENFAIL4", + "SEP_AUT_PAR_ENFAIL4", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEP_AUT_PAR_ENFAIL4" + } + }, + { + "id": "l4lmvah7", + "componentType": "Radio", + "mandatory": false, + "page": "2.294", + "label": { + "value": "\"Quel a été le mode de résidence fixé par décision de justice ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2004) and (PARENT_VIT_ENFAIL4<>\"3\") and (SEP_AUT_PAR_ENFAIL4 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL4))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL4", + "ANAI_ENFAIL4", + "PARENT_VIT_ENFAIL4", + "SEP_AUT_PAR_ENFAIL4" + ] + }, + "controls": [ + { + "id": "l4lmvah7-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(RESID_ENFAIL4) or RESID_ENFAIL4)=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "RESID_ENFAIL4" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof3wlm", + "page": "2.276", + "label": { + "value": "\"Votre quatrième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "RESID_ENFAIL4", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Pas de décision", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Résidence alternée", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Principalement chez vous", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Principalement chez son autre parent", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "RESID_ENFAIL4" + } + }, + { + "id": "l4ljjvig", + "componentType": "CheckboxGroup", + "page": "2.295", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL4) || \" vit-\" || (if (SEXE_ENFAIL4=\"1\" or isnull(SEXE_ENFAIL4)) then \"il \" else \"elle \") || \"ailleurs que chez vous ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4ljjvig-l59o5htr", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL4" + ] + }, + "controls": [ + { + "id": "l4ljjvig-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(SANTE_ENFAIL41, false) = false and nvl(SANTE_ENFAIL42, false) = false and nvl(SANTE_ENFAIL43, false) = false ))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SANTE_ENFAIL41", + "SANTE_ENFAIL42", + "SANTE_ENFAIL43" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof3wlm", + "page": "2.276", + "label": { + "value": "\"Votre quatrième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL4", + "SEXE_ENFAIL4", + "SANTE_ENFAIL41", + "SANTE_ENFAIL42", + "SANTE_ENFAIL43", + "VAL_ANNAISS" + ], + "responses": [ + { + "id": "l4ljjvig-QOP-lagyh7yq", + "label": { + "value": "\"Pour des raisons de santé\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFAIL41" + } + }, + { + "id": "l4ljjvig-QOP-lagyinu2", + "label": { + "value": "\"A la suite d’une décision de l’aide sociale à l’enfance ou du juge des enfants\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFAIL42" + } + }, + { + "id": "l4ljjvig-QOP-lagyvlaz", + "label": { + "value": "\"Pour une autre raison\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFAIL43" + } + } + ] + }, + { + "id": "ljof7iet", + "componentType": "Subsequence", + "goToPage": "2.296", + "label": { + "value": "\"Votre cinquième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof7iet", + "page": "2.296", + "label": { + "value": "\"Votre cinquième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "VAL_ANNAISS" + ] + }, + { + "id": "l4lgayon", + "componentType": "Input", + "mandatory": false, + "page": "2.296", + "maxLength": 249, + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", comment s’appelle votre cinquième enfant qui ne vit pas avec vous ou qui est décédé ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l4lgayon-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PRENOM_ENFAIL5) or PRENOM_ENFAIL5=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer le prénom attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PRENOM_ENFAIL5" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof7iet", + "page": "2.296", + "label": { + "value": "\"Votre cinquième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "PRENOM_ENFAIL5", + "VAL_ANNAISS" + ], + "response": { + "name": "PRENOM_ENFAIL5" + } + }, + { + "id": "l4lgep4c", + "componentType": "Radio", + "mandatory": false, + "page": "2.297", + "label": { + "value": "\"Quel est le sexe de \" || (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL5) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l4lgep4c-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEXE_ENFAIL5) or SEXE_ENFAIL5=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEXE_ENFAIL5" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof7iet", + "page": "2.296", + "label": { + "value": "\"Votre cinquième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL5", + "SEXE_ENFAIL5", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Masculin\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Féminin\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEXE_ENFAIL5" + } + }, + { + "id": "l4lgp1ft", + "componentType": "Input", + "mandatory": false, + "page": "2.298", + "maxLength": 4, + "label": { + "value": "\"Quelle est l’année de naissance de \" || (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL5) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l4lgp1ft-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ANAI_ENFAIL5) or ANAI_ENFAIL5=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’année attendue.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFAIL5" + ] + }, + { + "id": "l4lgp1ft-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANAI_ENFAIL5)) and not(isnull(ANAIS)) and cast(ANAI_ENFAIL5,integer) < cast(ANAIS,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFAIL5", + "ANAIS" + ] + }, + { + "id": "l4lgp1ft-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANAI_ENFAIL5)) and not(isnull(ANAIS)) and (cast(ANAIS,integer) + 15 > cast(ANAI_ENFAIL5,integer)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Il semble y avoir peu d’écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFAIL5", + "ANAIS" + ] + }, + { + "id": "l4lgp1ft-CI-3", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(ANAI_ENFAIL5,integer) < 1920 or cast(ANAI_ENFAIL5,integer) > 2024)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de naissance de votre enfant est comprise entre 1920 et 2024.\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFAIL5" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof7iet", + "page": "2.296", + "label": { + "value": "\"Votre cinquième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL5", + "ANAI_ENFAIL5", + "VAL_ANNAISS" + ], + "response": { + "name": "ANAI_ENFAIL5" + } + }, + { + "id": "l4lgnphx", + "componentType": "Radio", + "mandatory": false, + "page": "2.299", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL5) || \" est-\" || (if (SEXE_ENFAIL5=\"1\" or isnull(SEXE_ENFAIL5)) then \"il né\" else \"elle née\") || \" en France ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4lgnphx-l4pabnh2", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Prenez en compte les frontières actuelles.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l4lgnphx-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NEFRANCE_ENFAIL5) or NEFRANCE_ENFAIL5=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NEFRANCE_ENFAIL5" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof7iet", + "page": "2.296", + "label": { + "value": "\"Votre cinquième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL5", + "SEXE_ENFAIL5", + "NEFRANCE_ENFAIL5", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "NEFRANCE_ENFAIL5" + } + }, + { + "id": "l4lh672z", + "componentType": "Radio", + "mandatory": false, + "page": "2.300", + "label": { + "value": "\"L’autre parent de \" || (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL5) || \" vit-il/elle avec vous ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l4lh672z-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_VIT_ENFAIL5) or PARENT_VIT_ENFAIL5=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_VIT_ENFAIL5" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof7iet", + "page": "2.296", + "label": { + "value": "\"Votre cinquième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL5", + "PARENT_VIT_ENFAIL5", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui, il/elle vit avec vous\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Non, il/elle vit ailleurs\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Non, il/elle est décédé(e)\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_VIT_ENFAIL5" + } + }, + { + "id": "l8m0ld6c", + "componentType": "Radio", + "mandatory": false, + "page": "2.301", + "label": { + "value": "\"Avez-vous déjà vécu avec l’autre parent de \" || (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL5) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (PARENT_VIT_ENFAIL5 =\"2\" or PARENT_VIT_ENFAIL5 =\"3\" or isnull( PARENT_VIT_ENFAIL5))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "PARENT_VIT_ENFAIL5" + ] + }, + "controls": [ + { + "id": "l8m0ld6c-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_VECU_ENFAIL5) or PARENT_VECU_ENFAIL5=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_VECU_ENFAIL5" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof7iet", + "page": "2.296", + "label": { + "value": "\"Votre cinquième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL5", + "PARENT_VECU_ENFAIL5", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_VECU_ENFAIL5" + } + }, + { + "id": "l4lhcdf6", + "componentType": "Radio", + "mandatory": false, + "page": "2.302", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL5) || \" est-\" || if (SEXE_ENFAIL5=\"1\" or isnull(SEXE_ENFAIL5)) then \"il encore en vie ?\" else \"elle encore en vie ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l4lhcdf6-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(DC_ENFAIL5) or DC_ENFAIL5=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "DC_ENFAIL5" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof7iet", + "page": "2.296", + "label": { + "value": "\"Votre cinquième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL5", + "SEXE_ENFAIL5", + "DC_ENFAIL5", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "DC_ENFAIL5" + } + }, + { + "id": "l4lh8c72", + "componentType": "InputNumber", + "mandatory": false, + "page": "2.303", + "min": 0, + "max": 95, + "decimals": 0, + "label": { + "value": "\"A quel âge \" || (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL5) || \" est-\" || if (SEXE_ENFAIL5=\"1\" or isnull(SEXE_ENFAIL5)) then \"il décédé ?\" else \"elle décédée ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4lh8c72-l4lh2kwz", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Notez 0 si \"||(if(nvl(PRENOM_ENFAIL5,\"\") = \"\") then \"cet enfant\" else PRENOM_ENFAIL5) || (\" est\") || (if (SEXE_ENFAIL5 = \"1\" or nvl(SEXE_ENFAIL5,\"\") = \"\") then \" décédé\" else \" décédée\") || (\" avant un an.\")", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL5" + ] + }, + "controls": [ + { + "id": "l4lh8c72-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(AG_DC_ENFAIL5)) and (0>AG_DC_ENFAIL5 or 95AG_DC_ENFAIL5)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "l4lh8c72-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(AG_DC_ENFAIL5) or AG_DC_ENFAIL5=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’âge attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AG_DC_ENFAIL5" + ] + }, + { + "id": "l4lh8c72-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(AG_ENFAIL5)) and not (isnull(AG_DC_ENFAIL5)) and cast(AG_DC_ENFAIL5,integer) > cast(AG_ENFAIL5,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’âge de votre enfant lors de son décès ne peut pas être supérieur à son âge.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AG_ENFAIL5", + "AG_DC_ENFAIL5" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof7iet", + "page": "2.296", + "label": { + "value": "\"Votre cinquième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL5", + "SEXE_ENFAIL5", + "AG_DC_ENFAIL5", + "VAL_ANNAISS" + ], + "unit": "ans", + "response": { + "name": "AG_DC_ENFAIL5" + } + }, + { + "id": "l4lhn614", + "componentType": "InputNumber", + "mandatory": false, + "page": "2.304", + "min": 0, + "max": 95, + "decimals": 0, + "label": { + "value": "\"A quel âge environ \" || (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL5) || \" a-t-\" || (if (SEXE_ENFAIL5=\"1\" or isnull(SEXE_ENFAIL5)) then \"il \" else \"elle\") || \" cessé de vivre avec vous ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL5" + ] + }, + "controls": [ + { + "id": "l4lhn614-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(AG_DEPART_ENFAIL5)) and (0>AG_DEPART_ENFAIL5 or 95AG_DEPART_ENFAIL5)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "l4lhn614-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(AG_DEPART_ENFAIL5) or AG_DEPART_ENFAIL5=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’âge attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AG_DEPART_ENFAIL5" + ] + }, + { + "id": "l4lhn614-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(AG_DEPART_ENFAIL5)) and not(isnull(ANAI_ENFAIL5)) and AG_DEPART_ENFAIL5 > AG_ENFAIL5)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AG_DEPART_ENFAIL5", + "ANAI_ENFAIL5", + "AG_ENFAIL5" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof7iet", + "page": "2.296", + "label": { + "value": "\"Votre cinquième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL5", + "SEXE_ENFAIL5", + "AG_DEPART_ENFAIL5", + "VAL_ANNAISS" + ], + "unit": "ans", + "response": { + "name": "AG_DEPART_ENFAIL5" + } + }, + { + "id": "l4lj98cz", + "componentType": "Radio", + "mandatory": false, + "page": "2.305", + "label": { + "value": "\"A quelle fréquence êtes-vous en contact avec \" || (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL5) || \" ? \"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4lj98cz-l4lj2zmz", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"(en face à face, téléphone, mail, SMS, appel vidéo, etc.)\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL5" + ] + }, + "controls": [ + { + "id": "l4lj98cz-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_FREQ_ENFAIL5) or PARENT_FREQ_ENFAIL5=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_FREQ_ENFAIL5" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof7iet", + "page": "2.296", + "label": { + "value": "\"Votre cinquième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL5", + "PARENT_FREQ_ENFAIL5", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "2", + "label": { + "value": "Une ou plusieurs fois par semaine", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Une ou plusieurs fois par mois", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Une ou plusieurs fois par an", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Plus rarement ou jamais", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_FREQ_ENFAIL5" + } + }, + { + "id": "l4lijtvo", + "componentType": "Radio", + "mandatory": false, + "page": "2.306", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL5) || \" vit-\" || (if (SEXE_ENFAIL5=\"1\" or isnull(SEXE_ENFAIL5)) then \"il \" else \"elle \") || \"en France actuellement ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4lijtvo-lai73fre", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Prenez en compte les frontières actuelles.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL5" + ] + }, + "controls": [ + { + "id": "l4lijtvo-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(FR_ENFAIL5) or FR_ENFAIL5=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "FR_ENFAIL5" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof7iet", + "page": "2.296", + "label": { + "value": "\"Votre cinquième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL5", + "SEXE_ENFAIL5", + "FR_ENFAIL5", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "FR_ENFAIL5" + } + }, + { + "id": "l4oo7lwi", + "componentType": "Input", + "mandatory": false, + "page": "2.307", + "maxLength": 20, + "label": { + "value": "\"Dans quel département vit \" || (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL5) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4oo7lwi-l4paeclu", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5)) and (FR_ENFAIL5 =\"1\" or isnull(FR_ENFAIL5))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL5", + "FR_ENFAIL5" + ] + }, + "controls": [ + { + "id": "l4oo7lwi-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(DEP_ENFAIL5) or DEP_ENFAIL5=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "DEP_ENFAIL5" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof7iet", + "page": "2.296", + "label": { + "value": "\"Votre cinquième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL5", + "DEP_ENFAIL5", + "VAL_ANNAISS" + ], + "response": { + "name": "DEP_ENFAIL5" + } + }, + { + "id": "l4oo41q4", + "componentType": "Input", + "mandatory": false, + "page": "2.308", + "maxLength": 20, + "label": { + "value": "\"Dans quelle commune vit \" || (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL5) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4oo41q4-l4pamdh2", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez la commune recherchée et sélectionnez la dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5)) and (FR_ENFAIL5 =\"1\" or isnull(FR_ENFAIL5))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL5", + "FR_ENFAIL5" + ] + }, + "controls": [ + { + "id": "l4oo41q4-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(COM_ENFAIL5) or COM_ENFAIL5=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "COM_ENFAIL5" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof7iet", + "page": "2.296", + "label": { + "value": "\"Votre cinquième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL5", + "COM_ENFAIL5", + "VAL_ANNAISS" + ], + "response": { + "name": "COM_ENFAIL5" + } + }, + { + "id": "l4oo5bj9", + "componentType": "Input", + "mandatory": false, + "page": "2.309", + "maxLength": 20, + "label": { + "value": "\"Dans quel pays vit \" || (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL5) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4oo5bj9-l4paiwz0", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5)) and (FR_ENFAIL5 =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL5", + "FR_ENFAIL5" + ] + }, + "controls": [ + { + "id": "l4oo5bj9-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PAY_ENFAIL5) or PAY_ENFAIL5=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PAY_ENFAIL5" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof7iet", + "page": "2.296", + "label": { + "value": "\"Votre cinquième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL5", + "PAY_ENFAIL5", + "VAL_ANNAISS" + ], + "response": { + "name": "PAY_ENFAIL5" + } + }, + { + "id": "l4lizygc", + "componentType": "Radio", + "mandatory": false, + "page": "2.310", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL5) || \" vit-\" || (if (SEXE_ENFAIL5=\"1\" or isnull(SEXE_ENFAIL5)) then \"il\" else \"elle\") || \" dans son propre logement ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2004) and (cast(ANAI_ENFAIL5,integer) <= 2011)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL5", + "ANAI_ENFAIL5" + ] + }, + "controls": [ + { + "id": "l4lizygc-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(LOG_ENFAIL5) or LOG_ENFAIL5=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "LOG_ENFAIL5" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof7iet", + "page": "2.296", + "label": { + "value": "\"Votre cinquième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL5", + "SEXE_ENFAIL5", + "LOG_ENFAIL5", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "LOG_ENFAIL5" + } + }, + { + "id": "l4lmc52p", + "componentType": "Radio", + "mandatory": false, + "page": "2.311", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL5) || \" vit-\" || (if (SEXE_ENFAIL5=\"1\" or isnull(SEXE_ENFAIL5)) then \"il\" else \"elle\") || \" chez son autre parent ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2004) and (PARENT_VIT_ENFAIL5<>=\"3\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL5", + "ANAI_ENFAIL5", + "PARENT_VIT_ENFAIL5" + ] + }, + "controls": [ + { + "id": "l4lmc52p-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(AUT_PAR_ENFAIL5) or AUT_PAR_ENFAIL5=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AUT_PAR_ENFAIL5" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof7iet", + "page": "2.296", + "label": { + "value": "\"Votre cinquième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL5", + "SEXE_ENFAIL5", + "AUT_PAR_ENFAIL5", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "AUT_PAR_ENFAIL5" + } + }, + { + "id": "l4ljxer7", + "componentType": "Radio", + "mandatory": false, + "page": "2.312", + "label": { + "value": "\"Arrive-t-il à \" || (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL5) || \" de dormir chez vous ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2004)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL5", + "ANAI_ENFAIL5" + ] + }, + "controls": [ + { + "id": "l4ljxer7-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(DORT_ENFAIL5) or DORT_ENFAIL5=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "DORT_ENFAIL5" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof7iet", + "page": "2.296", + "label": { + "value": "\"Votre cinquième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL5", + "DORT_ENFAIL5", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "DORT_ENFAIL5" + } + }, + { + "id": "l4o7vzru", + "componentType": "Radio", + "mandatory": false, + "page": "2.313", + "label": { + "value": "\"Vous êtes-vous séparé\" || (if (TYPE_QUEST = \"2\") then \"e\" else \"\") || \" de l’autre parent de \" || (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL5) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2004) and (PARENT_VIT_ENFAIL5<>\"3\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL5", + "ANAI_ENFAIL5", + "PARENT_VIT_ENFAIL5" + ] + }, + "controls": [ + { + "id": "l4o7vzru-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEP_AUT_PAR_ENFAIL5) or SEP_AUT_PAR_ENFAIL5=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEP_AUT_PAR_ENFAIL5" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof7iet", + "page": "2.296", + "label": { + "value": "\"Votre cinquième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TYPE_QUEST", + "PRENOM_ENFAIL5", + "SEP_AUT_PAR_ENFAIL5", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEP_AUT_PAR_ENFAIL5" + } + }, + { + "id": "l4lms6u4", + "componentType": "Radio", + "mandatory": false, + "page": "2.314", + "label": { + "value": "\"Quel a été le mode de résidence fixé par décision de justice ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2004) and (PARENT_VIT_ENFAIL5<>\"3\") and (SEP_AUT_PAR_ENFAIL5 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL5))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL5", + "ANAI_ENFAIL5", + "PARENT_VIT_ENFAIL5", + "SEP_AUT_PAR_ENFAIL5" + ] + }, + "controls": [ + { + "id": "l4lms6u4-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(RESID_ENFAIL5) or RESID_ENFAIL5=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "RESID_ENFAIL5" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof7iet", + "page": "2.296", + "label": { + "value": "\"Votre cinquième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "RESID_ENFAIL5", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Pas de décision", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Résidence alternée", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Principalement chez vous", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Principalement chez son autre parent", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "RESID_ENFAIL5" + } + }, + { + "id": "l4ljcdar", + "componentType": "CheckboxGroup", + "page": "2.315", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL5) || \" vit-\" || (if (SEXE_ENFAIL5=\"1\" or isnull(SEXE_ENFAIL5)) then \"il \" else \"elle \") || \"ailleurs que chez vous ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4ljcdar-l59okksf", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL5" + ] + }, + "controls": [ + { + "id": "l4ljcdar-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(SANTE_ENFAIL51, false) = false and nvl(SANTE_ENFAIL52, false) = false and nvl(SANTE_ENFAIL53, false) = false ))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SANTE_ENFAIL51", + "SANTE_ENFAIL52", + "SANTE_ENFAIL53" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof7iet", + "page": "2.296", + "label": { + "value": "\"Votre cinquième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL5", + "SEXE_ENFAIL5", + "SANTE_ENFAIL51", + "SANTE_ENFAIL52", + "SANTE_ENFAIL53", + "VAL_ANNAISS" + ], + "responses": [ + { + "id": "l4ljcdar-QOP-lagyt3hb", + "label": { + "value": "\"Pour des raisons de santé\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFAIL51" + } + }, + { + "id": "l4ljcdar-QOP-lagyitoa", + "label": { + "value": "\"A la suite d’une décision de l’aide sociale à l’enfance ou du juge des enfants\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFAIL52" + } + }, + { + "id": "l4ljcdar-QOP-lagyycd1", + "label": { + "value": "\"Pour une autre raison\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFAIL53" + } + } + ] + }, + { + "id": "ljoezdxm", + "componentType": "Subsequence", + "goToPage": "2.316", + "label": { + "value": "\"Votre sixième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljoezdxm", + "page": "2.316", + "label": { + "value": "\"Votre sixième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "VAL_ANNAISS" + ] + }, + { + "id": "l8oign0h", + "componentType": "Input", + "mandatory": false, + "page": "2.316", + "maxLength": 249, + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", comment s’appelle votre sixième enfant qui ne vit pas avec vous ou qui est décédé ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l8oign0h-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PRENOM_ENFAIL6) or PRENOM_ENFAIL6=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer le prénom attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PRENOM_ENFAIL6" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljoezdxm", + "page": "2.316", + "label": { + "value": "\"Votre sixième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "PRENOM_ENFAIL6", + "VAL_ANNAISS" + ], + "response": { + "name": "PRENOM_ENFAIL6" + } + }, + { + "id": "l8oi92w4", + "componentType": "Radio", + "mandatory": false, + "page": "2.317", + "label": { + "value": "\"Quel est le sexe de \" || (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL6) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l8oi92w4-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEXE_ENFAIL6) or SEXE_ENFAIL6=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEXE_ENFAIL6" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljoezdxm", + "page": "2.316", + "label": { + "value": "\"Votre sixième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL6", + "SEXE_ENFAIL6", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Masculin\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Féminin\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEXE_ENFAIL6" + } + }, + { + "id": "l8oi7q9f", + "componentType": "Input", + "mandatory": false, + "page": "2.318", + "maxLength": 4, + "label": { + "value": "\"Quelle est l’année de naissance de \" || (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL6) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l8oi7q9f-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ANAI_ENFAIL6) or ANAI_ENFAIL6=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’année attendue.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFAIL6" + ] + }, + { + "id": "l8oi7q9f-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANAI_ENFAIL6)) and not(isnull(ANAIS)) and (cast(ANAIS,integer) + 15 > cast(ANAI_ENFAIL6,integer)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Il semble y avoir peu d’écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFAIL6", + "ANAIS" + ] + }, + { + "id": "l8oi7q9f-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANAI_ENFAIL6)) and not(isnull(ANAIS)) and cast(ANAI_ENFAIL6,integer) < cast(ANAIS,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFAIL6", + "ANAIS" + ] + }, + { + "id": "l8oi7q9f-CI-3", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(ANAI_ENFAIL6,integer) < 1920 or cast(ANAI_ENFAIL6,integer) > 2024)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de naissance de votre enfant est comprise entre 1920 et 2024.\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFAIL6" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljoezdxm", + "page": "2.316", + "label": { + "value": "\"Votre sixième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL6", + "ANAI_ENFAIL6", + "VAL_ANNAISS" + ], + "response": { + "name": "ANAI_ENFAIL6" + } + }, + { + "id": "l8oientz", + "componentType": "Radio", + "mandatory": false, + "page": "2.319", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL6) || \" est-\" || (if (SEXE_ENFAIL6=\"1\" or isnull(SEXE_ENFAIL6)) then \"il né\" else \"elle née\") || \" en France ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8oientz-l8oifpiy", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Prenez en compte les frontières actuelles.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l8oientz-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NEFRANCE_ENFAIL6) or NEFRANCE_ENFAIL6=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NEFRANCE_ENFAIL6" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljoezdxm", + "page": "2.316", + "label": { + "value": "\"Votre sixième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL6", + "SEXE_ENFAIL6", + "NEFRANCE_ENFAIL6", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "NEFRANCE_ENFAIL6" + } + }, + { + "id": "l8oidc2m", + "componentType": "Radio", + "mandatory": false, + "page": "2.320", + "label": { + "value": "\"L’autre parent de \" || (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL6) || \" vit-il/elle avec vous ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l8oidc2m-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_VIT_ENFAIL6) or PARENT_VIT_ENFAIL6=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_VIT_ENFAIL6" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljoezdxm", + "page": "2.316", + "label": { + "value": "\"Votre sixième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL6", + "PARENT_VIT_ENFAIL6", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui, il/elle vit avec vous\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Non, il/elle vit ailleurs\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Non, il/elle est décédé(e)\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_VIT_ENFAIL6" + } + }, + { + "id": "l8oib75g", + "componentType": "Radio", + "mandatory": false, + "page": "2.321", + "label": { + "value": "\"Avez-vous déjà vécu avec l’autre parent de \" || (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL6) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (PARENT_VIT_ENFAIL6 =\"2\" or PARENT_VIT_ENFAIL6 =\"3\" or isnull( PARENT_VIT_ENFAIL6))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "PARENT_VIT_ENFAIL6" + ] + }, + "controls": [ + { + "id": "l8oib75g-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_VECU_ENFAIL6) or PARENT_VECU_ENFAIL6=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_VECU_ENFAIL6" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljoezdxm", + "page": "2.316", + "label": { + "value": "\"Votre sixième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL6", + "PARENT_VECU_ENFAIL6", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_VECU_ENFAIL6" + } + }, + { + "id": "l8ohus0v", + "componentType": "Radio", + "mandatory": false, + "page": "2.322", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL6) || \" est-\" || if (SEXE_ENFAIL6=\"1\" or isnull(SEXE_ENFAIL6)) then \"il encore en vie ?\" else \"elle encore en vie ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l8ohus0v-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(DC_ENFAIL6) or DC_ENFAIL6=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "DC_ENFAIL6" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljoezdxm", + "page": "2.316", + "label": { + "value": "\"Votre sixième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL6", + "SEXE_ENFAIL6", + "DC_ENFAIL6", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "DC_ENFAIL6" + } + }, + { + "id": "l8ohrpn7", + "componentType": "InputNumber", + "mandatory": false, + "page": "2.323", + "min": 0, + "max": 95, + "decimals": 0, + "label": { + "value": "\"A quel âge \" || (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL6) || \" est-\" || if (SEXE_ENFAIL6=\"1\" or isnull(SEXE_ENFAIL6)) then \"il décédé ?\" else \"elle décédée ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8ohrpn7-l8ohgdgh", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Notez 0 si \"||(if(nvl(PRENOM_ENFAIL6,\"\") = \"\") then \"cet enfant\" else PRENOM_ENFAIL6) || (\" est\") || (if (SEXE_ENFAIL6 = \"1\" or nvl(SEXE_ENFAIL6,\"\") = \"\") then \" décédé\" else \" décédée\") || (\" avant un an.\")", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL6" + ] + }, + "controls": [ + { + "id": "l8ohrpn7-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(AG_DC_ENFAIL6)) and (0>AG_DC_ENFAIL6 or 95AG_DC_ENFAIL6)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "l8ohrpn7-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(AG_DC_ENFAIL6) or AG_DC_ENFAIL6=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’âge attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AG_DC_ENFAIL6" + ] + }, + { + "id": "l8ohrpn7-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(AG_ENFAIL6)) and not (isnull(AG_DC_ENFAIL6)) and cast(AG_DC_ENFAIL6,integer) > cast(AG_ENFAIL6,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’âge de votre enfant lors de son décès ne peut pas être supérieur à son âge.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AG_ENFAIL6", + "AG_DC_ENFAIL6" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljoezdxm", + "page": "2.316", + "label": { + "value": "\"Votre sixième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL6", + "SEXE_ENFAIL6", + "AG_DC_ENFAIL6", + "VAL_ANNAISS" + ], + "unit": "ans", + "response": { + "name": "AG_DC_ENFAIL6" + } + }, + { + "id": "l8ohwpt9", + "componentType": "InputNumber", + "mandatory": false, + "page": "2.324", + "min": 0, + "max": 95, + "decimals": 0, + "label": { + "value": "\"A quel âge environ \" || (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL6) || \" a-t-\" || (if (SEXE_ENFAIL6=\"1\" or isnull(SEXE_ENFAIL6)) then \"il \" else \"elle\") || \" cessé de vivre avec vous ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL6" + ] + }, + "controls": [ + { + "id": "l8ohwpt9-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(AG_DEPART_ENFAIL6)) and (0>AG_DEPART_ENFAIL6 or 95AG_DEPART_ENFAIL6)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "l8ohwpt9-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(AG_DEPART_ENFAIL6) or AG_DEPART_ENFAIL6=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’âge attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AG_DEPART_ENFAIL6" + ] + }, + { + "id": "l8ohwpt9-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(AG_DEPART_ENFAIL6)) and not(isnull(ANAI_ENFAIL6)) and AG_DEPART_ENFAIL6 > AG_ENFAIL6)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AG_DEPART_ENFAIL6", + "ANAI_ENFAIL6", + "AG_ENFAIL6" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljoezdxm", + "page": "2.316", + "label": { + "value": "\"Votre sixième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL6", + "SEXE_ENFAIL6", + "AG_DEPART_ENFAIL6", + "VAL_ANNAISS" + ], + "unit": "ans", + "response": { + "name": "AG_DEPART_ENFAIL6" + } + }, + { + "id": "l8oh46rn", + "componentType": "Radio", + "mandatory": false, + "page": "2.325", + "label": { + "value": "\"A quelle fréquence êtes-vous en contact avec \" || (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL6) || \" ? \"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8oh46rn-l8oh36w5", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"(en face à face, téléphone, mail, SMS, appel vidéo, etc.)\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL6" + ] + }, + "controls": [ + { + "id": "l8oh46rn-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_FREQ_ENFAIL6) or PARENT_FREQ_ENFAIL6=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_FREQ_ENFAIL6" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljoezdxm", + "page": "2.316", + "label": { + "value": "\"Votre sixième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL6", + "PARENT_FREQ_ENFAIL6", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "2", + "label": { + "value": "Une ou plusieurs fois par semaine", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Une ou plusieurs fois par mois", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Une ou plusieurs fois par an", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Plus rarement ou jamais", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_FREQ_ENFAIL6" + } + }, + { + "id": "l8ogysyp", + "componentType": "Radio", + "mandatory": false, + "page": "2.326", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL6) || \" vit-\" || (if (SEXE_ENFAIL6=\"1\" or isnull(SEXE_ENFAIL6)) then \"il \" else \"elle \") || \"en France actuellement ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8ogysyp-lai78xq9", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Prenez en compte les frontières actuelles.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL6" + ] + }, + "controls": [ + { + "id": "l8ogysyp-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(FR_ENFAIL6) or FR_ENFAIL6=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "FR_ENFAIL6" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljoezdxm", + "page": "2.316", + "label": { + "value": "\"Votre sixième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL6", + "SEXE_ENFAIL6", + "FR_ENFAIL6", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "FR_ENFAIL6" + } + }, + { + "id": "l8ogp9jo", + "componentType": "Input", + "mandatory": false, + "page": "2.327", + "maxLength": 20, + "label": { + "value": "\"Dans quel département vit \" || (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL6) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8ogp9jo-l8ogoo1k", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6)) and (FR_ENFAIL6 =\"1\" or isnull(FR_ENFAIL6))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL6", + "FR_ENFAIL6" + ] + }, + "controls": [ + { + "id": "l8ogp9jo-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(DEP_ENFAIL6) or DEP_ENFAIL6=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "DEP_ENFAIL6" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljoezdxm", + "page": "2.316", + "label": { + "value": "\"Votre sixième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL6", + "DEP_ENFAIL6", + "VAL_ANNAISS" + ], + "response": { + "name": "DEP_ENFAIL6" + } + }, + { + "id": "l8ogqig3", + "componentType": "Input", + "mandatory": false, + "page": "2.328", + "maxLength": 20, + "label": { + "value": "\"Dans quelle commune vit \" || (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL6) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8ogqig3-l8ogppom", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez la commune recherchée et sélectionnez la dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6)) and (FR_ENFAIL6 =\"1\" or isnull(FR_ENFAIL6))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL6", + "FR_ENFAIL6" + ] + }, + "controls": [ + { + "id": "l8ogqig3-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(COM_ENFAIL6) or COM_ENFAIL6=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "COM_ENFAIL6" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljoezdxm", + "page": "2.316", + "label": { + "value": "\"Votre sixième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL6", + "COM_ENFAIL6", + "VAL_ANNAISS" + ], + "response": { + "name": "COM_ENFAIL6" + } + }, + { + "id": "l8ogpnbn", + "componentType": "Input", + "mandatory": false, + "page": "2.329", + "maxLength": 20, + "label": { + "value": "\"Dans quel pays vit \" || (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL6) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8ogpnbn-l8ogttr2", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6)) and (FR_ENFAIL6 =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL6", + "FR_ENFAIL6" + ] + }, + "controls": [ + { + "id": "l8ogpnbn-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PAY_ENFAIL6) or PAY_ENFAIL6=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"\r\n", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PAY_ENFAIL6" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljoezdxm", + "page": "2.316", + "label": { + "value": "\"Votre sixième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL6", + "PAY_ENFAIL6", + "VAL_ANNAISS" + ], + "response": { + "name": "PAY_ENFAIL6" + } + }, + { + "id": "l8ogukpt", + "componentType": "Radio", + "mandatory": false, + "page": "2.330", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL6) || \" vit-\" || (if (SEXE_ENFAIL6=\"1\" or isnull(SEXE_ENFAIL6)) then \"il\" else \"elle\") || \" dans son propre logement ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2004) and (cast(ANAI_ENFAIL6,integer) <= 2011)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL6", + "ANAI_ENFAIL6" + ] + }, + "controls": [ + { + "id": "l8ogukpt-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(LOG_ENFAIL6) or LOG_ENFAIL6=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "LOG_ENFAIL6" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljoezdxm", + "page": "2.316", + "label": { + "value": "\"Votre sixième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL6", + "SEXE_ENFAIL6", + "LOG_ENFAIL6", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "LOG_ENFAIL6" + } + }, + { + "id": "l8ob0dk4", + "componentType": "Radio", + "mandatory": false, + "page": "2.331", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL6) || \" vit-\" || (if (SEXE_ENFAIL6=\"1\" or isnull(SEXE_ENFAIL6)) then \"il\" else \"elle\") || \" chez son autre parent ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2004) and (PARENT_VIT_ENFAIL6<>=\"3\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL6", + "ANAI_ENFAIL6", + "PARENT_VIT_ENFAIL6" + ] + }, + "controls": [ + { + "id": "l8ob0dk4-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(AUT_PAR_ENFAIL6) or AUT_PAR_ENFAIL6=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AUT_PAR_ENFAIL6" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljoezdxm", + "page": "2.316", + "label": { + "value": "\"Votre sixième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL6", + "SEXE_ENFAIL6", + "AUT_PAR_ENFAIL6", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "AUT_PAR_ENFAIL6" + } + }, + { + "id": "l8oarkxm", + "componentType": "Radio", + "mandatory": false, + "page": "2.332", + "label": { + "value": "\"Arrive-t-il à \" || (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL6) || \" de dormir chez vous ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2004)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL6", + "ANAI_ENFAIL6" + ] + }, + "controls": [ + { + "id": "l8oarkxm-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(DORT_ENFAIL6) or DORT_ENFAIL6=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "DORT_ENFAIL6" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljoezdxm", + "page": "2.316", + "label": { + "value": "\"Votre sixième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL6", + "DORT_ENFAIL6", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "DORT_ENFAIL6" + } + }, + { + "id": "l8oaqbj5", + "componentType": "Radio", + "mandatory": false, + "page": "2.333", + "label": { + "value": "\"Vous êtes-vous séparé\" || (if (TYPE_QUEST = \"2\") then \"e\" else \"\") || \" de l’autre parent de \" || (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL6) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2004) and (PARENT_VIT_ENFAIL6<>\"3\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL6", + "ANAI_ENFAIL6", + "PARENT_VIT_ENFAIL6" + ] + }, + "controls": [ + { + "id": "l8oaqbj5-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEP_AUT_PAR_ENFAIL6) or SEP_AUT_PAR_ENFAIL6=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEP_AUT_PAR_ENFAIL6" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljoezdxm", + "page": "2.316", + "label": { + "value": "\"Votre sixième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TYPE_QUEST", + "PRENOM_ENFAIL6", + "SEP_AUT_PAR_ENFAIL6", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEP_AUT_PAR_ENFAIL6" + } + }, + { + "id": "l8oanpzw", + "componentType": "Radio", + "mandatory": false, + "page": "2.334", + "label": { + "value": "\"Quel a été le mode de résidence fixé par décision de justice ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2004) and (PARENT_VIT_ENFAIL6<>\"3\") and (SEP_AUT_PAR_ENFAIL6 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL6))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL6", + "ANAI_ENFAIL6", + "PARENT_VIT_ENFAIL6", + "SEP_AUT_PAR_ENFAIL6" + ] + }, + "controls": [ + { + "id": "l8oanpzw-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(RESID_ENFAIL6) or RESID_ENFAIL6=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "RESID_ENFAIL6" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljoezdxm", + "page": "2.316", + "label": { + "value": "\"Votre sixième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "RESID_ENFAIL6", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Pas de décision", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Résidence alternée", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Principalement chez vous", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Principalement chez son autre parent", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "RESID_ENFAIL6" + } + }, + { + "id": "l8oasgat", + "componentType": "CheckboxGroup", + "page": "2.335", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL6) || \" vit-\" || (if (SEXE_ENFAIL6=\"1\" or isnull(SEXE_ENFAIL6)) then \"il \" else \"elle \") || \"ailleurs que chez vous ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8oasgat-l8ob1odl", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL6" + ] + }, + "controls": [ + { + "id": "l8oasgat-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(SANTE_ENFAIL61, false) = false and nvl(SANTE_ENFAIL62, false) = false and nvl(SANTE_ENFAIL63, false) = false ))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"\r\n", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SANTE_ENFAIL61", + "SANTE_ENFAIL62", + "SANTE_ENFAIL63" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljoezdxm", + "page": "2.316", + "label": { + "value": "\"Votre sixième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL6", + "SEXE_ENFAIL6", + "SANTE_ENFAIL61", + "SANTE_ENFAIL62", + "SANTE_ENFAIL63", + "VAL_ANNAISS" + ], + "responses": [ + { + "id": "l8oasgat-QOP-lagyuenn", + "label": { + "value": "\"Pour des raisons de santé\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFAIL61" + } + }, + { + "id": "l8oasgat-QOP-lagyvzmn", + "label": { + "value": "\"A la suite d’une décision de l’aide sociale à l’enfance ou du juge des enfants\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFAIL62" + } + }, + { + "id": "l8oasgat-QOP-lagyviqg", + "label": { + "value": "\"Pour une autre raison\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFAIL63" + } + } + ] + }, + { + "id": "ljof8bti", + "componentType": "Subsequence", + "goToPage": "2.336", + "label": { + "value": "\"Votre septième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof8bti", + "page": "2.336", + "label": { + "value": "\"Votre septième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "VAL_ANNAISS" + ] + }, + { + "id": "l8ok9kmj", + "componentType": "Input", + "mandatory": false, + "page": "2.336", + "maxLength": 249, + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", comment s’appelle votre septième enfant qui ne vit pas avec vous ou qui est décédé ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l8ok9kmj-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PRENOM_ENFAIL7) or PRENOM_ENFAIL7=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer le prénom attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PRENOM_ENFAIL7" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof8bti", + "page": "2.336", + "label": { + "value": "\"Votre septième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "PRENOM_ENFAIL7", + "VAL_ANNAISS" + ], + "response": { + "name": "PRENOM_ENFAIL7" + } + }, + { + "id": "l8okbmv3", + "componentType": "Radio", + "mandatory": false, + "page": "2.337", + "label": { + "value": "\"Quel est le sexe de \" || (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL7) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l8okbmv3-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEXE_ENFAIL7) or SEXE_ENFAIL7=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEXE_ENFAIL7" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof8bti", + "page": "2.336", + "label": { + "value": "\"Votre septième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL7", + "SEXE_ENFAIL7", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Masculin\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Féminin\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEXE_ENFAIL7" + } + }, + { + "id": "l8okh65e", + "componentType": "Input", + "mandatory": false, + "page": "2.338", + "maxLength": 4, + "label": { + "value": "\"Quelle est l’année de naissance de \" || (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL7) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l8okh65e-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ANAI_ENFAIL7) or ANAI_ENFAIL7=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’année attendue.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFAIL7" + ] + }, + { + "id": "l8okh65e-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANAI_ENFAIL7)) and not(isnull(ANAIS)) and cast(ANAI_ENFAIL7,integer) < cast(ANAIS,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFAIL7", + "ANAIS" + ] + }, + { + "id": "l8okh65e-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANAI_ENFAIL7)) and not(isnull(ANAIS)) and (cast(ANAIS,integer) + 15 > cast(ANAI_ENFAIL7,integer)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Il semble y avoir peu d’écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFAIL7", + "ANAIS" + ] + }, + { + "id": "l8okh65e-CI-3", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(ANAI_ENFAIL7,integer) < 1920 or cast(ANAI_ENFAIL7,integer) > 2024)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de naissance de votre enfant est comprise entre 1920 et 2024.\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFAIL7" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof8bti", + "page": "2.336", + "label": { + "value": "\"Votre septième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL7", + "ANAI_ENFAIL7", + "VAL_ANNAISS" + ], + "response": { + "name": "ANAI_ENFAIL7" + } + }, + { + "id": "l8okc5z9", + "componentType": "Radio", + "mandatory": false, + "page": "2.339", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL7) || \" est-\" || (if (SEXE_ENFAIL7=\"1\" or isnull(SEXE_ENFAIL7)) then \"il né\" else \"elle née\") || \" en France ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8okc5z9-l8ok97f5", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Prenez en compte les frontières actuelles.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l8okc5z9-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NEFRANCE_ENFAIL7) or NEFRANCE_ENFAIL7=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NEFRANCE_ENFAIL7" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof8bti", + "page": "2.336", + "label": { + "value": "\"Votre septième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL7", + "SEXE_ENFAIL7", + "NEFRANCE_ENFAIL7", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "NEFRANCE_ENFAIL7" + } + }, + { + "id": "l8okdoof", + "componentType": "Radio", + "mandatory": false, + "page": "2.340", + "label": { + "value": "\"L’autre parent de \" || (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL7) || \" vit-il/elle avec vous ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l8okdoof-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_VIT_ENFAIL7) or PARENT_VIT_ENFAIL7=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_VIT_ENFAIL7" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof8bti", + "page": "2.336", + "label": { + "value": "\"Votre septième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL7", + "PARENT_VIT_ENFAIL7", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui, il/elle vit avec vous\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Non, il/elle vit ailleurs\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Non, il/elle est décédé(e)\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_VIT_ENFAIL7" + } + }, + { + "id": "l8ok0d4y", + "componentType": "Radio", + "mandatory": false, + "page": "2.341", + "label": { + "value": "\"Avez-vous déjà vécu avec l’autre parent de \" || (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL7) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (PARENT_VIT_ENFAIL7 =\"2\" or PARENT_VIT_ENFAIL7 =\"3\" or isnull( PARENT_VIT_ENFAIL7))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "PARENT_VIT_ENFAIL7" + ] + }, + "controls": [ + { + "id": "l8ok0d4y-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_VECU_ENFAIL7) or PARENT_VECU_ENFAIL7=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_VECU_ENFAIL7" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof8bti", + "page": "2.336", + "label": { + "value": "\"Votre septième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL7", + "PARENT_VECU_ENFAIL7", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_VECU_ENFAIL7" + } + }, + { + "id": "l8ok0acp", + "componentType": "Radio", + "mandatory": false, + "page": "2.342", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL7) || \" est-\" || if (SEXE_ENFAIL7=\"1\" or isnull(SEXE_ENFAIL7)) then \"il encore en vie ?\" else \"elle encore en vie ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l8ok0acp-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(DC_ENFAIL7) or DC_ENFAIL7=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "DC_ENFAIL7" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof8bti", + "page": "2.336", + "label": { + "value": "\"Votre septième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL7", + "SEXE_ENFAIL7", + "DC_ENFAIL7", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "DC_ENFAIL7" + } + }, + { + "id": "l8ojs3vl", + "componentType": "InputNumber", + "mandatory": false, + "page": "2.343", + "min": 0, + "max": 95, + "decimals": 0, + "label": { + "value": "\"A quel âge \" || (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL7) || \" est-\" || if (SEXE_ENFAIL7=\"1\" or isnull(SEXE_ENFAIL7)) then \"il décédé ?\" else \"elle décédée ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8ojs3vl-l8ojoix6", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Notez 0 si \"||(if(nvl(PRENOM_ENFAIL7,\"\") = \"\") then \"cet enfant\" else PRENOM_ENFAIL7) || (\" est\") || (if (SEXE_ENFAIL7 = \"1\" or nvl(SEXE_ENFAIL7,\"\") = \"\") then \" décédé\" else \" décédée\") || (\" avant un an.\")", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL7" + ] + }, + "controls": [ + { + "id": "l8ojs3vl-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(AG_DC_ENFAIL7)) and (0>AG_DC_ENFAIL7 or 95AG_DC_ENFAIL7)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "l8ojs3vl-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(AG_DC_ENFAIL7) or AG_DC_ENFAIL7=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’âge attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AG_DC_ENFAIL7" + ] + }, + { + "id": "l8ojs3vl-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(AG_ENFAIL7)) and not (isnull(AG_DC_ENFAIL7)) and cast(AG_DC_ENFAIL7,integer) > cast(AG_ENFAIL7,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’âge de votre enfant lors de son décès ne peut pas être supérieur à son âge.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AG_ENFAIL7", + "AG_DC_ENFAIL7" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof8bti", + "page": "2.336", + "label": { + "value": "\"Votre septième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL7", + "SEXE_ENFAIL7", + "AG_DC_ENFAIL7", + "VAL_ANNAISS" + ], + "unit": "ans", + "response": { + "name": "AG_DC_ENFAIL7" + } + }, + { + "id": "l8ojuhud", + "componentType": "InputNumber", + "mandatory": false, + "page": "2.344", + "min": 0, + "max": 95, + "decimals": 0, + "label": { + "value": "\"A quel âge environ \" || (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL7) || \" a-t-\" || (if (SEXE_ENFAIL7=\"1\" or isnull(SEXE_ENFAIL7)) then \"il \" else \"elle\") || \" cessé de vivre avec vous ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL7" + ] + }, + "controls": [ + { + "id": "l8ojuhud-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(AG_DEPART_ENFAIL7)) and (0>AG_DEPART_ENFAIL7 or 95AG_DEPART_ENFAIL7)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "l8ojuhud-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(AG_DEPART_ENFAIL7) or AG_DEPART_ENFAIL7=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’âge attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AG_DEPART_ENFAIL7" + ] + }, + { + "id": "l8ojuhud-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(AG_DEPART_ENFAIL7)) and not(isnull(ANAI_ENFAIL7)) and AG_DEPART_ENFAIL7 > AG_ENFAIL7)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AG_DEPART_ENFAIL7", + "ANAI_ENFAIL7", + "AG_ENFAIL7" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof8bti", + "page": "2.336", + "label": { + "value": "\"Votre septième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL7", + "SEXE_ENFAIL7", + "AG_DEPART_ENFAIL7", + "VAL_ANNAISS" + ], + "unit": "ans", + "response": { + "name": "AG_DEPART_ENFAIL7" + } + }, + { + "id": "l8ojmjws", + "componentType": "Radio", + "mandatory": false, + "page": "2.345", + "label": { + "value": "\"A quelle fréquence êtes-vous en contact avec \" || (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL7) || \" ? \"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8ojmjws-l8ojt8hw", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"(en face à face, téléphone, mail, SMS, appel vidéo, etc.)\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL7" + ] + }, + "controls": [ + { + "id": "l8ojmjws-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_FREQ_ENFAIL7) or PARENT_FREQ_ENFAIL7=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_FREQ_ENFAIL7" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof8bti", + "page": "2.336", + "label": { + "value": "\"Votre septième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL7", + "PARENT_FREQ_ENFAIL7", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "2", + "label": { + "value": "Une ou plusieurs fois par semaine", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Une ou plusieurs fois par mois", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Une ou plusieurs fois par an", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Plus rarement ou jamais", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_FREQ_ENFAIL7" + } + }, + { + "id": "l8oj98gw", + "componentType": "Radio", + "mandatory": false, + "page": "2.346", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL7) || \" vit-\" || (if (SEXE_ENFAIL7=\"1\" or isnull(SEXE_ENFAIL7)) then \"il \" else \"elle \") || \"en France actuellement ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8oj98gw-lai6ugn5", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Prenez en compte les frontières actuelles.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL7" + ] + }, + "controls": [ + { + "id": "l8oj98gw-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(FR_ENFAIL7) or FR_ENFAIL7=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "FR_ENFAIL7" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof8bti", + "page": "2.336", + "label": { + "value": "\"Votre septième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL7", + "SEXE_ENFAIL7", + "FR_ENFAIL7", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "FR_ENFAIL7" + } + }, + { + "id": "l8ojb4ub", + "componentType": "Input", + "mandatory": false, + "page": "2.347", + "maxLength": 20, + "label": { + "value": "\"Dans quel département vit \" || (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL7) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8ojb4ub-l8ojdq5t", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7)) and (FR_ENFAIL7 =\"1\" or isnull(FR_ENFAIL7))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL7", + "FR_ENFAIL7" + ] + }, + "controls": [ + { + "id": "l8ojb4ub-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(DEP_ENFAIL7) or DEP_ENFAIL7=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "DEP_ENFAIL7" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof8bti", + "page": "2.336", + "label": { + "value": "\"Votre septième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL7", + "DEP_ENFAIL7", + "VAL_ANNAISS" + ], + "response": { + "name": "DEP_ENFAIL7" + } + }, + { + "id": "l8ojczfv", + "componentType": "Input", + "mandatory": false, + "page": "2.348", + "maxLength": 20, + "label": { + "value": "\"Dans quelle commune vit \" || (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL7) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8ojczfv-l8oj6my9", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez la commune recherchée et sélectionnez la dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7)) and (FR_ENFAIL7 =\"1\" or isnull(FR_ENFAIL7))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL7", + "FR_ENFAIL7" + ] + }, + "controls": [ + { + "id": "l8ojczfv-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(COM_ENFAIL7) or COM_ENFAIL7=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "COM_ENFAIL7" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof8bti", + "page": "2.336", + "label": { + "value": "\"Votre septième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL7", + "COM_ENFAIL7", + "VAL_ANNAISS" + ], + "response": { + "name": "COM_ENFAIL7" + } + }, + { + "id": "l8ojif3m", + "componentType": "Input", + "mandatory": false, + "page": "2.349", + "maxLength": 20, + "label": { + "value": "\"Dans quel pays vit \" || (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL7) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8ojif3m-l8oj5v82", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7)) and (FR_ENFAIL7 =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL7", + "FR_ENFAIL7" + ] + }, + "controls": [ + { + "id": "l8ojif3m-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PAY_ENFAIL7) or PAY_ENFAIL7=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PAY_ENFAIL7" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof8bti", + "page": "2.336", + "label": { + "value": "\"Votre septième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL7", + "PAY_ENFAIL7", + "VAL_ANNAISS" + ], + "response": { + "name": "PAY_ENFAIL7" + } + }, + { + "id": "l8oja1pz", + "componentType": "Radio", + "mandatory": false, + "page": "2.350", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL7) || \" vit-\" || (if (SEXE_ENFAIL7=\"1\" or isnull(SEXE_ENFAIL7)) then \"il\" else \"elle\") || \" dans son propre logement ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2004) and (cast(ANAI_ENFAIL7,integer) <= 2011)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL7", + "ANAI_ENFAIL7" + ] + }, + "controls": [ + { + "id": "l8oja1pz-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(LOG_ENFAIL7) or LOG_ENFAIL7=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "LOG_ENFAIL7" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof8bti", + "page": "2.336", + "label": { + "value": "\"Votre septième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL7", + "SEXE_ENFAIL7", + "LOG_ENFAIL7", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "LOG_ENFAIL7" + } + }, + { + "id": "l8oiinpy", + "componentType": "Radio", + "mandatory": false, + "page": "2.351", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL7) || \" vit-\" || (if (SEXE_ENFAIL7=\"1\" or isnull(SEXE_ENFAIL7)) then \"il\" else \"elle\") || \" chez son autre parent ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2004) and (PARENT_VIT_ENFAIL7<>=\"3\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL7", + "ANAI_ENFAIL7", + "PARENT_VIT_ENFAIL7" + ] + }, + "controls": [ + { + "id": "l8oiinpy-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(AUT_PAR_ENFAIL7) or AUT_PAR_ENFAIL7=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AUT_PAR_ENFAIL7" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof8bti", + "page": "2.336", + "label": { + "value": "\"Votre septième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL7", + "SEXE_ENFAIL7", + "AUT_PAR_ENFAIL7", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "AUT_PAR_ENFAIL7" + } + }, + { + "id": "l8oj67fo", + "componentType": "Radio", + "mandatory": false, + "page": "2.352", + "label": { + "value": "\"Arrive-t-il à \" || (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL7) || \" de dormir chez vous ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2004)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL7", + "ANAI_ENFAIL7" + ] + }, + "controls": [ + { + "id": "l8oj67fo-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(DORT_ENFAIL7) or DORT_ENFAIL7=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "DORT_ENFAIL7" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof8bti", + "page": "2.336", + "label": { + "value": "\"Votre septième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL7", + "DORT_ENFAIL7", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "DORT_ENFAIL7" + } + }, + { + "id": "l8oiu9ax", + "componentType": "Radio", + "mandatory": false, + "page": "2.353", + "label": { + "value": "\"Vous êtes-vous séparé\" || (if (TYPE_QUEST = \"2\") then \"e\" else \"\") || \" de l’autre parent de \" || (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL7) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2004) and (PARENT_VIT_ENFAIL7<>\"3\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL7", + "ANAI_ENFAIL7", + "PARENT_VIT_ENFAIL7" + ] + }, + "controls": [ + { + "id": "l8oiu9ax-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEP_AUT_PAR_ENFAIL7) or SEP_AUT_PAR_ENFAIL7=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEP_AUT_PAR_ENFAIL7" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof8bti", + "page": "2.336", + "label": { + "value": "\"Votre septième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TYPE_QUEST", + "PRENOM_ENFAIL7", + "SEP_AUT_PAR_ENFAIL7", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEP_AUT_PAR_ENFAIL7" + } + }, + { + "id": "l8oicj6e", + "componentType": "Radio", + "mandatory": false, + "page": "2.354", + "label": { + "value": "\"Quel a été le mode de résidence fixé par décision de justice ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2004) and (PARENT_VIT_ENFAIL7<>\"3\") and (SEP_AUT_PAR_ENFAIL7 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL7))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL7", + "ANAI_ENFAIL7", + "PARENT_VIT_ENFAIL7", + "SEP_AUT_PAR_ENFAIL7" + ] + }, + "controls": [ + { + "id": "l8oicj6e-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(RESID_ENFAIL7) or RESID_ENFAIL7=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "RESID_ENFAIL7" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof8bti", + "page": "2.336", + "label": { + "value": "\"Votre septième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "RESID_ENFAIL7", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Pas de décision", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Résidence alternée", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Principalement chez vous", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Principalement chez son autre parent", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "RESID_ENFAIL7" + } + }, + { + "id": "l8oizp0r", + "componentType": "CheckboxGroup", + "page": "2.355", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL7) || \" vit-\" || (if (SEXE_ENFAIL7=\"1\" or isnull(SEXE_ENFAIL7)) then \"il \" else \"elle \") || \"ailleurs que chez vous ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8oizp0r-l8oj4gac", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL7" + ] + }, + "controls": [ + { + "id": "l8oizp0r-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(SANTE_ENFAIL71, false) = false and nvl(SANTE_ENFAIL72, false) = false and nvl(SANTE_ENFAIL73, false) = false ))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SANTE_ENFAIL71", + "SANTE_ENFAIL72", + "SANTE_ENFAIL73" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljof8bti", + "page": "2.336", + "label": { + "value": "\"Votre septième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL7", + "SEXE_ENFAIL7", + "SANTE_ENFAIL71", + "SANTE_ENFAIL72", + "SANTE_ENFAIL73", + "VAL_ANNAISS" + ], + "responses": [ + { + "id": "l8oizp0r-QOP-lagyku3m", + "label": { + "value": "\"Pour des raisons de santé\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFAIL71" + } + }, + { + "id": "l8oizp0r-QOP-lagyel8m", + "label": { + "value": "\"A la suite d’une décision de l’aide sociale à l’enfance ou du juge des enfants\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFAIL72" + } + }, + { + "id": "l8oizp0r-QOP-lagyk7tb", + "label": { + "value": "\"Pour une autre raison\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFAIL73" + } + } + ] + }, + { + "id": "ljofiex8", + "componentType": "Subsequence", + "goToPage": "2.356", + "label": { + "value": "\"Votre huitième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljofiex8", + "page": "2.356", + "label": { + "value": "\"Votre huitième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "VAL_ANNAISS" + ] + }, + { + "id": "l8olci32", + "componentType": "Input", + "mandatory": false, + "page": "2.356", + "maxLength": 249, + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", comment s’appelle votre huitième enfant qui ne vit pas avec vous ou qui est décédé ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l8olci32-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PRENOM_ENFAIL8) or PRENOM_ENFAIL8=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer le prénom attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PRENOM_ENFAIL8" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljofiex8", + "page": "2.356", + "label": { + "value": "\"Votre huitième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "PRENOM_ENFAIL8", + "VAL_ANNAISS" + ], + "response": { + "name": "PRENOM_ENFAIL8" + } + }, + { + "id": "l8olbhxj", + "componentType": "Radio", + "mandatory": false, + "page": "2.357", + "label": { + "value": "\"Quel est le sexe de \" || (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL8) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l8olbhxj-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEXE_ENFAIL8) or SEXE_ENFAIL8=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEXE_ENFAIL8" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljofiex8", + "page": "2.356", + "label": { + "value": "\"Votre huitième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL8", + "SEXE_ENFAIL8", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Masculin\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Féminin\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEXE_ENFAIL8" + } + }, + { + "id": "l8ol9xy3", + "componentType": "Input", + "mandatory": false, + "page": "2.358", + "maxLength": 4, + "label": { + "value": "\"Quelle est l’année de naissance de \" || (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL8) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l8ol9xy3-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ANAI_ENFAIL8) or ANAI_ENFAIL8=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’année attendue.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFAIL8" + ] + }, + { + "id": "l8ol9xy3-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANAI_ENFAIL8)) and not(isnull(ANAIS)) and (cast(ANAIS,integer) + 15 > cast(ANAI_ENFAIL8,integer)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Il semble y avoir peu d’écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFAIL8", + "ANAIS" + ] + }, + { + "id": "l8ol9xy3-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANAI_ENFAIL8)) and not(isnull(ANAIS)) and cast(ANAI_ENFAIL8,integer) < cast(ANAIS,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFAIL8", + "ANAIS" + ] + }, + { + "id": "l8ol9xy3-CI-3", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(ANAI_ENFAIL8,integer) < 1920 or cast(ANAI_ENFAIL8,integer) > 2024)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de naissance de votre enfant est comprise entre 1920 et 2024.\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_ENFAIL8" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljofiex8", + "page": "2.356", + "label": { + "value": "\"Votre huitième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL8", + "ANAI_ENFAIL8", + "VAL_ANNAISS" + ], + "response": { + "name": "ANAI_ENFAIL8" + } + }, + { + "id": "l8ola1mr", + "componentType": "Radio", + "mandatory": false, + "page": "2.359", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL8) || \" est-\" || (if (SEXE_ENFAIL8=\"1\" or isnull(SEXE_ENFAIL8)) then \"il né\" else \"elle née\") || \" en France ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8ola1mr-l8okzirz", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Prenez en compte les frontières actuelles.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l8ola1mr-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NEFRANCE_ENFAIL8) or NEFRANCE_ENFAIL8=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NEFRANCE_ENFAIL8" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljofiex8", + "page": "2.356", + "label": { + "value": "\"Votre huitième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL8", + "SEXE_ENFAIL8", + "NEFRANCE_ENFAIL8", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "NEFRANCE_ENFAIL8" + } + }, + { + "id": "l8okz45l", + "componentType": "Radio", + "mandatory": false, + "page": "2.360", + "label": { + "value": "\"L’autre parent de \" || (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL8) || \" vit-il/elle avec vous ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l8okz45l-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_VIT_ENFAIL8) or PARENT_VIT_ENFAIL8=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_VIT_ENFAIL8" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljofiex8", + "page": "2.356", + "label": { + "value": "\"Votre huitième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL8", + "PARENT_VIT_ENFAIL8", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui, il/elle vit avec vous\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Non, il/elle vit ailleurs\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Non, il/elle est décédé(e)\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_VIT_ENFAIL8" + } + }, + { + "id": "l8ol369l", + "componentType": "Radio", + "mandatory": false, + "page": "2.361", + "label": { + "value": "\"Avez-vous déjà vécu avec l’autre parent de \" || (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL8) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (PARENT_VIT_ENFAIL8 =\"2\" or PARENT_VIT_ENFAIL8 =\"3\" or isnull( PARENT_VIT_ENFAIL8))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "PARENT_VIT_ENFAIL8" + ] + }, + "controls": [ + { + "id": "l8ol369l-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_VECU_ENFAIL8) or PARENT_VECU_ENFAIL8=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_VECU_ENFAIL8" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljofiex8", + "page": "2.356", + "label": { + "value": "\"Votre huitième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL8", + "PARENT_VECU_ENFAIL8", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_VECU_ENFAIL8" + } + }, + { + "id": "l8ole120", + "componentType": "Radio", + "mandatory": false, + "page": "2.362", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL8) || \" est-\" || if (SEXE_ENFAIL8=\"1\" or isnull(SEXE_ENFAIL8)) then \"il encore en vie ?\" else \"elle encore en vie ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL" + ] + }, + "controls": [ + { + "id": "l8ole120-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(DC_ENFAIL8) or DC_ENFAIL8=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "DC_ENFAIL8" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljofiex8", + "page": "2.356", + "label": { + "value": "\"Votre huitième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL8", + "SEXE_ENFAIL8", + "DC_ENFAIL8", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "DC_ENFAIL8" + } + }, + { + "id": "l8olcd8n", + "componentType": "InputNumber", + "mandatory": false, + "page": "2.363", + "min": 0, + "max": 95, + "decimals": 0, + "label": { + "value": "\"A quel âge \" || (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL8) || \" est-\" || if (SEXE_ENFAIL8=\"1\" or isnull(SEXE_ENFAIL8)) then \"il décédé ?\" else \"elle décédée ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8olcd8n-l8oktakr", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Notez 0 si \"||(if(nvl(PRENOM_ENFAIL8,\"\") = \"\") then \"cet enfant\" else PRENOM_ENFAIL8) || (\" est\") || (if (SEXE_ENFAIL8 = \"1\" or nvl(SEXE_ENFAIL8,\"\") = \"\") then \" décédé\" else \" décédée\") || (\" avant un an.\")", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL8" + ] + }, + "controls": [ + { + "id": "l8olcd8n-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(AG_DC_ENFAIL8)) and (0>AG_DC_ENFAIL8 or 95AG_DC_ENFAIL8)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "l8olcd8n-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(AG_DC_ENFAIL8) or AG_DC_ENFAIL8=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’âge attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AG_DC_ENFAIL8" + ] + }, + { + "id": "l8olcd8n-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(AG_ENFAIL8)) and not (isnull(AG_DC_ENFAIL8)) and cast(AG_DC_ENFAIL8,integer) > cast(AG_ENFAIL8,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’âge de votre enfant lors de son décès ne peut pas être supérieur à son âge.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AG_ENFAIL8", + "AG_DC_ENFAIL8" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljofiex8", + "page": "2.356", + "label": { + "value": "\"Votre huitième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL8", + "SEXE_ENFAIL8", + "AG_DC_ENFAIL8", + "VAL_ANNAISS" + ], + "unit": "ans", + "response": { + "name": "AG_DC_ENFAIL8" + } + }, + { + "id": "l8ol84b7", + "componentType": "InputNumber", + "mandatory": false, + "page": "2.364", + "min": 0, + "max": 95, + "decimals": 0, + "label": { + "value": "\"A quel âge environ \" || (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL8) || \" a-t-\" || (if (SEXE_ENFAIL8=\"1\" or isnull(SEXE_ENFAIL8)) then \"il \" else \"elle\") || \" cessé de vivre avec vous ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL8" + ] + }, + "controls": [ + { + "id": "l8ol84b7-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(AG_DEPART_ENFAIL8)) and (0>AG_DEPART_ENFAIL8 or 95AG_DEPART_ENFAIL8)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "l8ol84b7-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(AG_DEPART_ENFAIL8) or AG_DEPART_ENFAIL8=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’âge attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AG_DEPART_ENFAIL8" + ] + }, + { + "id": "l8ol84b7-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(AG_DEPART_ENFAIL8)) and not(isnull(ANAI_ENFAIL8)) and AG_DEPART_ENFAIL8 > AG_ENFAIL8)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AG_DEPART_ENFAIL8", + "ANAI_ENFAIL8", + "AG_ENFAIL8" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljofiex8", + "page": "2.356", + "label": { + "value": "\"Votre huitième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL8", + "SEXE_ENFAIL8", + "AG_DEPART_ENFAIL8", + "VAL_ANNAISS" + ], + "unit": "ans", + "response": { + "name": "AG_DEPART_ENFAIL8" + } + }, + { + "id": "l8okx7cd", + "componentType": "Radio", + "mandatory": false, + "page": "2.365", + "label": { + "value": "\"A quelle fréquence êtes-vous en contact avec \" || (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL8) || \" ? \"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8okx7cd-l8ol6hio", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"(en face à face, téléphone, mail, SMS, appel vidéo, etc.)\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL8" + ] + }, + "controls": [ + { + "id": "l8okx7cd-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PARENT_FREQ_ENFAIL8) or PARENT_FREQ_ENFAIL8=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PARENT_FREQ_ENFAIL8" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljofiex8", + "page": "2.356", + "label": { + "value": "\"Votre huitième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL8", + "PARENT_FREQ_ENFAIL8", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "2", + "label": { + "value": "Une ou plusieurs fois par semaine", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Une ou plusieurs fois par mois", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Une ou plusieurs fois par an", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Plus rarement ou jamais", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PARENT_FREQ_ENFAIL8" + } + }, + { + "id": "l8okpxv8", + "componentType": "Radio", + "mandatory": false, + "page": "2.366", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL8) || \" vit-\" || (if (SEXE_ENFAIL8=\"1\" or isnull(SEXE_ENFAIL8)) then \"il \" else \"elle \") || \"en France actuellement ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8okpxv8-lai7cpw5", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Prenez en compte les frontières actuelles.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL8" + ] + }, + "controls": [ + { + "id": "l8okpxv8-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(FR_ENFAIL8) or FR_ENFAIL8=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "FR_ENFAIL8" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljofiex8", + "page": "2.356", + "label": { + "value": "\"Votre huitième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL8", + "SEXE_ENFAIL8", + "FR_ENFAIL8", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "FR_ENFAIL8" + } + }, + { + "id": "l8okue2t", + "componentType": "Input", + "mandatory": false, + "page": "2.367", + "maxLength": 20, + "label": { + "value": "\"Dans quel département vit \" || (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL8) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8okue2t-l8okk3ew", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8)) and (FR_ENFAIL8 =\"1\" or isnull(FR_ENFAIL8))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL8", + "FR_ENFAIL8" + ] + }, + "controls": [ + { + "id": "l8okue2t-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(DEP_ENFAIL8) or DEP_ENFAIL8=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "DEP_ENFAIL8" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljofiex8", + "page": "2.356", + "label": { + "value": "\"Votre huitième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL8", + "DEP_ENFAIL8", + "VAL_ANNAISS" + ], + "response": { + "name": "DEP_ENFAIL8" + } + }, + { + "id": "l8okjfla", + "componentType": "Input", + "mandatory": false, + "page": "2.368", + "maxLength": 20, + "label": { + "value": "\"Dans quelle commune vit \" || (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL8) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8okjfla-l8okkn0x", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez la commune recherchée et sélectionnez la dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8)) and (FR_ENFAIL8 =\"1\" or isnull(FR_ENFAIL8))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL8", + "FR_ENFAIL8" + ] + }, + "controls": [ + { + "id": "l8okjfla-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(COM_ENFAIL8) or COM_ENFAIL8=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "COM_ENFAIL8" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljofiex8", + "page": "2.356", + "label": { + "value": "\"Votre huitième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL8", + "COM_ENFAIL8", + "VAL_ANNAISS" + ], + "response": { + "name": "COM_ENFAIL8" + } + }, + { + "id": "l8okxgwv", + "componentType": "Input", + "mandatory": false, + "page": "2.369", + "maxLength": 20, + "label": { + "value": "\"Dans quel pays vit \" || (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL8) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8okxgwv-l8okt75e", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8)) and (FR_ENFAIL8 =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL8", + "FR_ENFAIL8" + ] + }, + "controls": [ + { + "id": "l8okxgwv-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnul(PAY_ENFAIL8) or PAY_ENFAIL8=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PAY_ENFAIL8" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljofiex8", + "page": "2.356", + "label": { + "value": "\"Votre huitième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL8", + "PAY_ENFAIL8", + "VAL_ANNAISS" + ], + "response": { + "name": "PAY_ENFAIL8" + } + }, + { + "id": "l8oksuft", + "componentType": "Radio", + "mandatory": false, + "page": "2.370", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL8) || \" vit-\" || (if (SEXE_ENFAIL8=\"1\" or isnull(SEXE_ENFAIL8)) then \"il\" else \"elle\") || \" dans son propre logement ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2004) and (cast(ANAI_ENFAIL8,integer) <= 2011)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL8", + "ANAI_ENFAIL8" + ] + }, + "controls": [ + { + "id": "l8oksuft-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(LOG_ENFAIL8) or LOG_ENFAIL8=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "LOG_ENFAIL8" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljofiex8", + "page": "2.356", + "label": { + "value": "\"Votre huitième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL8", + "SEXE_ENFAIL8", + "LOG_ENFAIL8", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "LOG_ENFAIL8" + } + }, + { + "id": "l8okked6", + "componentType": "Radio", + "mandatory": false, + "page": "2.371", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL8) || \" vit-\" || (if (SEXE_ENFAIL8=\"1\" or isnull(SEXE_ENFAIL8)) then \"il\" else \"elle\") || \" chez son autre parent ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2004) and (PARENT_VIT_ENFAIL8<>=\"3\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL8", + "ANAI_ENFAIL8", + "PARENT_VIT_ENFAIL8" + ] + }, + "controls": [ + { + "id": "l8okked6-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(AUT_PAR_ENFAIL8) or AUT_PAR_ENFAIL8=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AUT_PAR_ENFAIL8" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljofiex8", + "page": "2.356", + "label": { + "value": "\"Votre huitième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL8", + "SEXE_ENFAIL8", + "AUT_PAR_ENFAIL8", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "AUT_PAR_ENFAIL8" + } + }, + { + "id": "l8okkkef", + "componentType": "Radio", + "mandatory": false, + "page": "2.372", + "label": { + "value": "\"Arrive-t-il à \" || (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL8) || \" de dormir chez vous ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2004)", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL8", + "ANAI_ENFAIL8" + ] + }, + "controls": [ + { + "id": "l8okkkef-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(DORT_ENFAIL8) or DORT_ENFAIL8=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "DORT_ENFAIL8" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljofiex8", + "page": "2.356", + "label": { + "value": "\"Votre huitième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL8", + "DORT_ENFAIL8", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "DORT_ENFAIL8" + } + }, + { + "id": "l8okfvhy", + "componentType": "Radio", + "mandatory": false, + "page": "2.373", + "label": { + "value": "\"Vous êtes-vous séparé\" || (if (TYPE_QUEST = \"2\") then \"e\" else \"\") || \" de l’autre parent de \" || (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then \"cet enfant\" else PRENOM_ENFAIL8) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2004) and (PARENT_VIT_ENFAIL8<>\"3\")", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL8", + "ANAI_ENFAIL8", + "PARENT_VIT_ENFAIL8" + ] + }, + "controls": [ + { + "id": "l8okfvhy-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEP_AUT_PAR_ENFAIL8) or SEP_AUT_PAR_ENFAIL8=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEP_AUT_PAR_ENFAIL8" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljofiex8", + "page": "2.356", + "label": { + "value": "\"Votre huitième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TYPE_QUEST", + "PRENOM_ENFAIL8", + "SEP_AUT_PAR_ENFAIL8", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEP_AUT_PAR_ENFAIL8" + } + }, + { + "id": "l8okioqc", + "componentType": "Radio", + "mandatory": false, + "page": "2.374", + "label": { + "value": "\"Quel a été le mode de résidence fixé par décision de justice ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2004) and (PARENT_VIT_ENFAIL8<>\"3\") and (SEP_AUT_PAR_ENFAIL8 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL8))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL8", + "ANAI_ENFAIL8", + "PARENT_VIT_ENFAIL8", + "SEP_AUT_PAR_ENFAIL8" + ] + }, + "controls": [ + { + "id": "l8okioqc-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(RESID_ENFAIL8) or RESID_ENFAIL8=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "RESID_ENFAIL8" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljofiex8", + "page": "2.356", + "label": { + "value": "\"Votre huitième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "RESID_ENFAIL8", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Pas de décision", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Résidence alternée", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Principalement chez vous", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Principalement chez son autre parent", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "RESID_ENFAIL8" + } + }, + { + "id": "l8oklb21", + "componentType": "CheckboxGroup", + "page": "2.375", + "label": { + "value": "\"\" || (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then \"Cet enfant\" else PRENOM_ENFAIL8) || \" vit-\" || (if (SEXE_ENFAIL8=\"1\" or isnull(SEXE_ENFAIL8)) then \"il \" else \"elle \") || \"ailleurs que chez vous ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l8oklb21-l8okvidp", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8))", + "type": "VTL", + "bindingDependencies": [ + "CBENFAIL", + "DC_ENFAIL8" + ] + }, + "controls": [ + { + "id": "l8oklb21-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(SANTE_ENFAIL81, false) = false and nvl(SANTE_ENFAIL82, false) = false and nvl(SANTE_ENFAIL83, false) = false ))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SANTE_ENFAIL81", + "SANTE_ENFAIL82", + "SANTE_ENFAIL83" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqi91j9", + "page": "2.83", + "label": { + "value": "\"V - \" || \"VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "ljofiex8", + "page": "2.356", + "label": { + "value": "\"Votre huitième enfant qui ne vit pas avec vous ou qui est décédé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_ENFAIL8", + "SEXE_ENFAIL8", + "SANTE_ENFAIL81", + "SANTE_ENFAIL82", + "SANTE_ENFAIL83", + "VAL_ANNAISS" + ], + "responses": [ + { + "id": "l8oklb21-QOP-lagyjvmi", + "label": { + "value": "\"Pour des raisons de santé\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFAIL81" + } + }, + { + "id": "l8oklb21-QOP-lagynhci", + "label": { + "value": "\"A la suite d’une décision de l’aide sociale à l’enfance ou du juge des enfants\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFAIL82" + } + }, + { + "id": "l8oklb21-QOP-lagyehg2", + "label": { + "value": "\"Pour une autre raison\"", + "type": "VTL|MD" + }, + "response": { + "name": "SANTE_ENFAIL83" + } + } + ] + }, + { + "id": "l1f6bztr", + "componentType": "Sequence", + "page": "2.376", + "label": { + "value": "\"VI - \" || \"VOS PETITS-ENFANTS\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l1f6bztr-l1f65cp9", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", nous allons maintenant vous poser quelques questions sur vos petits-enfants.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\"))", + "type": "VTL", + "bindingDependencies": [ + "AGE", + "ENF" + ] + }, + "hierarchy": { + "sequence": { + "id": "l1f6bztr", + "page": "2.376", + "label": { + "value": "\"VI - \" || \"VOS PETITS-ENFANTS\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "VAL_ANNAISS" + ] + }, + { + "id": "l1f6a3qv", + "componentType": "Radio", + "mandatory": false, + "page": "2.377", + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", avez-vous des petits-enfants ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l1f6a3qv-l5iarkhk", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"(enfants de vos enfants)\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\"))", + "type": "VTL", + "bindingDependencies": [ + "AGE", + "ENF" + ] + }, + "controls": [ + { + "id": "l1f6a3qv-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PETIT_ENF) or PETIT_ENF=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PETIT_ENF" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "l1f6bztr", + "page": "2.376", + "label": { + "value": "\"VI - \" || \"VOS PETITS-ENFANTS\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "PETIT_ENF", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PETIT_ENF" + } + }, + { + "id": "l1f6dz1j", + "componentType": "InputNumber", + "mandatory": false, + "page": "2.378", + "min": 1, + "max": 40, + "decimals": 0, + "label": { + "value": "\"Combien de petits-enfants avez-vous en tout ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "AGE", + "ENF", + "PETIT_ENF" + ] + }, + "controls": [ + { + "id": "l1f6dz1j-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(NB_PETIT_ENF)) and (1>NB_PETIT_ENF or 40NB_PETIT_ENF)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "l1f6dz1j-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NB_PETIT_ENF) or NB_PETIT_ENF=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante au bon déroulement du questionnaire. Merci d’indiquer le nombre attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NB_PETIT_ENF" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "l1f6bztr", + "page": "2.376", + "label": { + "value": "\"VI - \" || \"VOS PETITS-ENFANTS\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "NB_PETIT_ENF", + "VAL_ANNAISS" + ], + "response": { + "name": "NB_PETIT_ENF" + } + }, + { + "id": "l1f69ivh", + "componentType": "InputNumber", + "mandatory": false, + "page": "2.379", + "min": 0, + "max": 80, + "decimals": 0, + "label": { + "value": "\"\" || if (cast(NB_PETIT_ENF,integer)>1 or isnull(NB_PETIT_ENF)) then \"Quel âge a l’aîné(e) ?\" else \"Quel âge a-t-il/elle ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l1f69ivh-l1f62ww0", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"S’il/elle a moins d’un an, notez 0.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "AGE", + "ENF", + "PETIT_ENF" + ] + }, + "controls": [ + { + "id": "l1f69ivh-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(AG_PETIT_ENF)) and (0>AG_PETIT_ENF or 80AG_PETIT_ENF)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "l1f69ivh-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(AG_PETIT_ENF) or AG_PETIT_ENF=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’âge attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AG_PETIT_ENF" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "l1f6bztr", + "page": "2.376", + "label": { + "value": "\"VI - \" || \"VOS PETITS-ENFANTS\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "NB_PETIT_ENF", + "AG_PETIT_ENF", + "VAL_ANNAISS" + ], + "unit": "ans", + "response": { + "name": "AG_PETIT_ENF" + } + }, + { + "id": "l1g3hka7", + "componentType": "CheckboxGroup", + "page": "2.380", + "label": { + "value": "\"En moyenne, à quelle fréquence voyez-vous \" || if (cast(NB_PETIT_ENF,integer)>1 or isnull(NB_PETIT_ENF)) then \"vos petits-enfants ?\" else \"votre petit-enfant ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l1g3hka7-l1g38p58", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"(en face à face)\"", + "type": "VTL|MD" + } + }, + { + "id": "l1g3hka7-l1g3k3v5", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"\" || if (cast(NB_PETIT_ENF,integer)>1 or isnull(NB_PETIT_ENF)) then \"Plusieurs réponses possibles.\" else \"\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "AGE", + "ENF", + "PETIT_ENF" + ] + }, + "controls": [ + { + "id": "l1g3hka7-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(FREQ_VU_PETIT_ENF1, false) = false and nvl(FREQ_VU_PETIT_ENF2, false) = false and nvl(FREQ_VU_PETIT_ENF3, false) = false and nvl(FREQ_VU_PETIT_ENF4, false) = false ))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "FREQ_VU_PETIT_ENF1", + "FREQ_VU_PETIT_ENF2", + "FREQ_VU_PETIT_ENF3", + "FREQ_VU_PETIT_ENF4" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "l1f6bztr", + "page": "2.376", + "label": { + "value": "\"VI - \" || \"VOS PETITS-ENFANTS\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "NB_PETIT_ENF", + "FREQ_VU_PETIT_ENF1", + "FREQ_VU_PETIT_ENF2", + "FREQ_VU_PETIT_ENF3", + "FREQ_VU_PETIT_ENF4", + "VAL_ANNAISS" + ], + "responses": [ + { + "id": "l1g3hka7-QOP-llf32z1d", + "label": { + "value": "Une ou plusieurs fois par semaine", + "type": "VTL|MD" + }, + "response": { + "name": "FREQ_VU_PETIT_ENF1" + } + }, + { + "id": "l1g3hka7-QOP-llf309m5", + "label": { + "value": "Une ou plusieurs fois par mois", + "type": "VTL|MD" + }, + "response": { + "name": "FREQ_VU_PETIT_ENF2" + } + }, + { + "id": "l1g3hka7-QOP-llf3bgof", + "label": { + "value": "Une ou plusieurs fois par an", + "type": "VTL|MD" + }, + "response": { + "name": "FREQ_VU_PETIT_ENF3" + } + }, + { + "id": "l1g3hka7-QOP-llf38epk", + "label": { + "value": "Plus rarement ou jamais", + "type": "VTL|MD" + }, + "response": { + "name": "FREQ_VU_PETIT_ENF4" + } + } + ] + }, + { + "id": "l1f4yrno", + "componentType": "CheckboxGroup", + "page": "2.381", + "label": { + "value": "\"En moyenne, à quelle fréquence communiquez-vous avec \" || if (cast(NB_PETIT_ENF,integer)>1 or isnull(NB_PETIT_ENF)) then \"vos petits-enfants ?\" else \"votre petit-enfant ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l1f4yrno-l1f4o4x7", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"(téléphone, mail, SMS, appel vidéo, etc.)\"", + "type": "VTL|MD" + } + }, + { + "id": "l1f4yrno-l1g3h5xf", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"\" || if (cast(NB_PETIT_ENF,integer)>1 or isnull(NB_PETIT_ENF)) then \"Plusieurs réponses possibles.\" else \"\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "AGE", + "ENF", + "PETIT_ENF" + ] + }, + "controls": [ + { + "id": "l1f4yrno-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(FREQ_CONT_PETIT_ENF1, false) = false and nvl(FREQ_CONT_PETIT_ENF2, false) = false and nvl(FREQ_CONT_PETIT_ENF3, false) = false and nvl(FREQ_CONT_PETIT_ENF4, false) = false ))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "FREQ_CONT_PETIT_ENF1", + "FREQ_CONT_PETIT_ENF2", + "FREQ_CONT_PETIT_ENF3", + "FREQ_CONT_PETIT_ENF4" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "l1f6bztr", + "page": "2.376", + "label": { + "value": "\"VI - \" || \"VOS PETITS-ENFANTS\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "NB_PETIT_ENF", + "FREQ_CONT_PETIT_ENF1", + "FREQ_CONT_PETIT_ENF2", + "FREQ_CONT_PETIT_ENF3", + "FREQ_CONT_PETIT_ENF4", + "VAL_ANNAISS" + ], + "responses": [ + { + "id": "l1f4yrno-QOP-llf334dp", + "label": { + "value": "Une ou plusieurs fois par semaine", + "type": "VTL|MD" + }, + "response": { + "name": "FREQ_CONT_PETIT_ENF1" + } + }, + { + "id": "l1f4yrno-QOP-llf35l7f", + "label": { + "value": "Une ou plusieurs fois par mois", + "type": "VTL|MD" + }, + "response": { + "name": "FREQ_CONT_PETIT_ENF2" + } + }, + { + "id": "l1f4yrno-QOP-llf2xk2h", + "label": { + "value": "Une ou plusieurs fois par an", + "type": "VTL|MD" + }, + "response": { + "name": "FREQ_CONT_PETIT_ENF3" + } + }, + { + "id": "l1f4yrno-QOP-llf355j1", + "label": { + "value": "Plus rarement ou jamais", + "type": "VTL|MD" + }, + "response": { + "name": "FREQ_CONT_PETIT_ENF4" + } + } + ] + }, + { + "id": "l1g7w78w", + "componentType": "Sequence", + "page": "2.382", + "label": { + "value": "\"VII - \" || \"VOTRE FAMILLE (vivant ou non avec vous) ET VOTRE ENTOURAGE\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l1g7w78w-l1g898c1", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", nous allons maintenant vous poser quelques questions sur les aides apportées ou reçues de votre famille (vivant ou non avec vous) et sur votre entourage.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "true", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "l1g7w78w", + "page": "2.382", + "label": { + "value": "\"VII - \" || \"VOTRE FAMILLE (vivant ou non avec vous) ET VOTRE ENTOURAGE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "VAL_ANNAISS" + ] + }, + { + "id": "l1g87t8t", + "componentType": "CheckboxGroup", + "page": "2.383", + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", apportez-vous régulièrement une aide à une ou plusieurs personnes de votre famille (parent(s), conjoint(e), enfant(s), etc.) en raison de leur état de santé, d’un handicap ou d’une difficulté liée à un âge avancé ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l1g87t8t-l1g850jr", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "true", + "type": "VTL" + }, + "controls": [ + { + "id": "l1g87t8t-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(AIDE_APPORT1, false) = false and nvl(AIDE_APPORT2, false) = false and nvl(AIDE_APPORT3, false) = false and nvl(AIDE_APPORT4, false) = false and nvl(AIDE_APPORT5, false) = false ))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AIDE_APPORT1", + "AIDE_APPORT2", + "AIDE_APPORT3", + "AIDE_APPORT4", + "AIDE_APPORT5" + ] + }, + { + "id": "l1g87t8t-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not((nvl(AIDE_APPORT1,false)=true and nvl(AIDE_APPORT5,false)=true) or (nvl(AIDE_APPORT2,false)=true and nvl(AIDE_APPORT5,false)=true) or (nvl(AIDE_APPORT3,false)=true and nvl(AIDE_APPORT5,false)=true) or (nvl(AIDE_APPORT4,false)=true and nvl(AIDE_APPORT5,false)=true))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Vous ne pouvez pas cocher Non et une autre réponse.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AIDE_APPORT1", + "AIDE_APPORT5", + "AIDE_APPORT2", + "AIDE_APPORT3", + "AIDE_APPORT4" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "l1g7w78w", + "page": "2.382", + "label": { + "value": "\"VII - \" || \"VOTRE FAMILLE (vivant ou non avec vous) ET VOTRE ENTOURAGE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "TYPE_QUEST", + "AIDE_APPORT1", + "AIDE_APPORT2", + "AIDE_APPORT3", + "AIDE_APPORT4", + "AIDE_APPORT5", + "VAL_ANNAISS" + ], + "responses": [ + { + "id": "l1g87t8t-QOP-lmrsjz2q", + "label": { + "value": "\"Oui, une aide pour les tâches quotidiennes\"", + "type": "VTL|MD" + }, + "response": { + "name": "AIDE_APPORT1" + } + }, + { + "id": "l1g87t8t-QOP-lmrsu19x", + "label": { + "value": "\"Oui, une aide financière ou matérielle\"", + "type": "VTL|MD" + }, + "response": { + "name": "AIDE_APPORT2" + } + }, + { + "id": "l1g87t8t-QOP-lmrsjxl8", + "label": { + "value": "\"Oui, un soutien moral\"", + "type": "VTL|MD" + }, + "response": { + "name": "AIDE_APPORT3" + } + }, + { + "id": "l1g87t8t-QOP-lmrswobh", + "label": { + "value": "\"Oui, vous êtes\" || (if (TYPE_QUEST =\"1\") then \" tuteur ou curateur \" else \" tutrice ou curatrice\")", + "type": "VTL|MD" + }, + "response": { + "name": "AIDE_APPORT4" + } + }, + { + "id": "l1g87t8t-QOP-lmrsncuh", + "label": { + "value": "\"Non, aucune aide de ce type\"", + "type": "VTL|MD" + }, + "response": { + "name": "AIDE_APPORT5" + } + } + ] + }, + { + "id": "l1ggssgl", + "componentType": "CheckboxGroup", + "page": "2.384", + "label": { + "value": "\"A qui apportez-vous cette aide pour les tâches quotidiennes ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l1ggssgl-l1ggjolj", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(AIDE_APPORT1)", + "type": "VTL", + "bindingDependencies": [ + "AIDE_APPORT1" + ] + }, + "controls": [ + { + "id": "l1ggssgl-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(QUI_AID_APP_11, false) = false and nvl(QUI_AID_APP_12, false) = false and nvl(QUI_AID_APP_13, false) = false and nvl(QUI_AID_APP_14, false) = false ))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "QUI_AID_APP_11", + "QUI_AID_APP_12", + "QUI_AID_APP_13", + "QUI_AID_APP_14" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "l1g7w78w", + "page": "2.382", + "label": { + "value": "\"VII - \" || \"VOTRE FAMILLE (vivant ou non avec vous) ET VOTRE ENTOURAGE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "SEXE_CH", + "SEXE_CF", + "QUI_AID_APP_11", + "QUI_AID_APP_12", + "QUI_AID_APP_13", + "QUI_AID_APP_14", + "VAL_ANNAISS" + ], + "responses": [ + { + "id": "l1ggssgl-QOP-llz50h9h", + "label": { + "value": "Vos parents", + "type": "VTL|MD" + }, + "response": { + "name": "QUI_AID_APP_11" + } + }, + { + "id": "l1ggssgl-QOP-llz4zodt", + "label": { + "value": "\"\" || if (SEXE_CH=\"2\" or isnull(SEXE_CH)) and (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"Votre conjoint\" else \"Votre conjointe\"", + "type": "VTL|MD" + }, + "response": { + "name": "QUI_AID_APP_12" + } + }, + { + "id": "l1ggssgl-QOP-llz4thr9", + "label": { + "value": "Vos enfants", + "type": "VTL|MD" + }, + "response": { + "name": "QUI_AID_APP_13" + } + }, + { + "id": "l1ggssgl-QOP-llz4uavy", + "label": { + "value": "Un autre membre de la famille", + "type": "VTL|MD" + }, + "response": { + "name": "QUI_AID_APP_14" + } + } + ] + }, + { + "id": "l1ggm06b", + "componentType": "CheckboxGroup", + "page": "2.385", + "label": { + "value": "\"A qui apportez-vous cette aide financière ou matérielle ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l1ggm06b-l1ggq5nj", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(AIDE_APPORT2)", + "type": "VTL", + "bindingDependencies": [ + "AIDE_APPORT2" + ] + }, + "controls": [ + { + "id": "l1ggm06b-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(QUI_AID_APP_21, false) = false and nvl(QUI_AID_APP_22, false) = false and nvl(QUI_AID_APP_23, false) = false and nvl(QUI_AID_APP_24, false) = false ))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci de d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "QUI_AID_APP_21", + "QUI_AID_APP_22", + "QUI_AID_APP_23", + "QUI_AID_APP_24" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "l1g7w78w", + "page": "2.382", + "label": { + "value": "\"VII - \" || \"VOTRE FAMILLE (vivant ou non avec vous) ET VOTRE ENTOURAGE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "SEXE_CH", + "SEXE_CF", + "QUI_AID_APP_21", + "QUI_AID_APP_22", + "QUI_AID_APP_23", + "QUI_AID_APP_24", + "VAL_ANNAISS" + ], + "responses": [ + { + "id": "l1ggm06b-QOP-l8lfgbqf", + "label": { + "value": "Vos parents", + "type": "VTL|MD" + }, + "response": { + "name": "QUI_AID_APP_21" + } + }, + { + "id": "l1ggm06b-QOP-l8lfhiwk", + "label": { + "value": "\"\" || if (SEXE_CH=\"2\" or isnull(SEXE_CH)) and (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"Votre conjoint\" else \"Votre conjointe\"", + "type": "VTL|MD" + }, + "response": { + "name": "QUI_AID_APP_22" + } + }, + { + "id": "l1ggm06b-QOP-l8lffrns", + "label": { + "value": "Vos enfants", + "type": "VTL|MD" + }, + "response": { + "name": "QUI_AID_APP_23" + } + }, + { + "id": "l1ggm06b-QOP-l8lffy1z", + "label": { + "value": "Un autre membre de la famille", + "type": "VTL|MD" + }, + "response": { + "name": "QUI_AID_APP_24" + } + } + ] + }, + { + "id": "l1ggtznr", + "componentType": "CheckboxGroup", + "page": "2.386", + "label": { + "value": "\"A qui apportez-vous ce soutien moral ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l1ggtznr-l1ggjqp6", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(AIDE_APPORT3)", + "type": "VTL", + "bindingDependencies": [ + "AIDE_APPORT3" + ] + }, + "controls": [ + { + "id": "l1ggtznr-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(QUI_AID_APP_31, false) = false and nvl(QUI_AID_APP_32, false) = false and nvl(QUI_AID_APP_33, false) = false and nvl(QUI_AID_APP_34, false) = false ))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "QUI_AID_APP_31", + "QUI_AID_APP_32", + "QUI_AID_APP_33", + "QUI_AID_APP_34" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "l1g7w78w", + "page": "2.382", + "label": { + "value": "\"VII - \" || \"VOTRE FAMILLE (vivant ou non avec vous) ET VOTRE ENTOURAGE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "SEXE_CH", + "SEXE_CF", + "QUI_AID_APP_31", + "QUI_AID_APP_32", + "QUI_AID_APP_33", + "QUI_AID_APP_34", + "VAL_ANNAISS" + ], + "responses": [ + { + "id": "l1ggtznr-QOP-l8lfrnl6", + "label": { + "value": "Vos parents", + "type": "VTL|MD" + }, + "response": { + "name": "QUI_AID_APP_31" + } + }, + { + "id": "l1ggtznr-QOP-l8lftaoi", + "label": { + "value": "\"\" || if (SEXE_CH=\"2\" or isnull(SEXE_CH)) and (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"Votre conjoint\" else \"Votre conjointe\"", + "type": "VTL|MD" + }, + "response": { + "name": "QUI_AID_APP_32" + } + }, + { + "id": "l1ggtznr-QOP-l8lfdroz", + "label": { + "value": "Vos enfants", + "type": "VTL|MD" + }, + "response": { + "name": "QUI_AID_APP_33" + } + }, + { + "id": "l1ggtznr-QOP-l8lfgqn9", + "label": { + "value": "Un autre membre de la famille", + "type": "VTL|MD" + }, + "response": { + "name": "QUI_AID_APP_34" + } + } + ] + }, + { + "id": "l4lf0y9m", + "componentType": "CheckboxGroup", + "page": "2.387", + "label": { + "value": "\"De qui êtes-vous \" || if (TYPE_QUEST=\"1\") then \" tuteur ou curateur ?\" else \" tutrice ou curatrice ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4lf0y9m-l4lfdg0x", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(AIDE_APPORT4)", + "type": "VTL", + "bindingDependencies": [ + "AIDE_APPORT4" + ] + }, + "controls": [ + { + "id": "l4lf0y9m-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(QUI_AID_APP_41, false) = false and nvl(QUI_AID_APP_42, false) = false and nvl(QUI_AID_APP_43, false) = false and nvl(QUI_AID_APP_44, false) = false ))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"\r\n\r\n", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "QUI_AID_APP_41", + "QUI_AID_APP_42", + "QUI_AID_APP_43", + "QUI_AID_APP_44" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "l1g7w78w", + "page": "2.382", + "label": { + "value": "\"VII - \" || \"VOTRE FAMILLE (vivant ou non avec vous) ET VOTRE ENTOURAGE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TYPE_QUEST", + "SEXE_CH", + "SEXE_CF", + "QUI_AID_APP_41", + "QUI_AID_APP_42", + "QUI_AID_APP_43", + "QUI_AID_APP_44", + "VAL_ANNAISS" + ], + "responses": [ + { + "id": "l4lf0y9m-QOP-l8lfdihy", + "label": { + "value": "Vos parents", + "type": "VTL|MD" + }, + "response": { + "name": "QUI_AID_APP_41" + } + }, + { + "id": "l4lf0y9m-QOP-l8lfirt9", + "label": { + "value": "\"\" || if (SEXE_CH=\"2\" or isnull(SEXE_CH)) and (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"Votre conjoint\" else \"Votre conjointe\"", + "type": "VTL|MD" + }, + "response": { + "name": "QUI_AID_APP_42" + } + }, + { + "id": "l4lf0y9m-QOP-l8lfeq6r", + "label": { + "value": "Vos enfants", + "type": "VTL|MD" + }, + "response": { + "name": "QUI_AID_APP_43" + } + }, + { + "id": "l4lf0y9m-QOP-l8lfjwx6", + "label": { + "value": "Un autre membre de la famille", + "type": "VTL|MD" + }, + "response": { + "name": "QUI_AID_APP_44" + } + } + ] + }, + { + "id": "l1g8o84g", + "componentType": "CheckboxGroup", + "page": "2.388", + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", recevez-vous régulièrement de l’aide d’une ou plusieurs personnes de votre famille (parent(s), conjoint(e), enfant(s), etc.) en raison de votre état de santé, d’un handicap ou d’une difficulté liée à un âge avancé ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l1g8o84g-l1g8hmv7", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "true", + "type": "VTL" + }, + "controls": [ + { + "id": "l1g8o84g-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(AIDE_RECUE1, false) = false and nvl(AIDE_RECUE2, false) = false and nvl(AIDE_RECUE3, false) = false and nvl(AIDE_RECUE4, false) = false ))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AIDE_RECUE1", + "AIDE_RECUE2", + "AIDE_RECUE3", + "AIDE_RECUE4" + ] + }, + { + "id": "l1g8o84g-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not((nvl(AIDE_RECUE1,false)=true and nvl(AIDE_RECUE4,false)=true) or (nvl(AIDE_RECUE2,false)=true and nvl(AIDE_RECUE4,false)=true) or (nvl(AIDE_RECUE3,false)=true and nvl(AIDE_RECUE4,false)=true))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Vous ne pouvez pas cocher Non et une autre réponse.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AIDE_RECUE1", + "AIDE_RECUE4", + "AIDE_RECUE2", + "AIDE_RECUE3" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "l1g7w78w", + "page": "2.382", + "label": { + "value": "\"VII - \" || \"VOTRE FAMILLE (vivant ou non avec vous) ET VOTRE ENTOURAGE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "AIDE_RECUE1", + "AIDE_RECUE2", + "AIDE_RECUE3", + "AIDE_RECUE4", + "VAL_ANNAISS" + ], + "responses": [ + { + "id": "l1g8o84g-QOP-lmrsrwwh", + "label": { + "value": "\"Oui, une aide pour les tâches quotidiennes\"", + "type": "VTL|MD" + }, + "response": { + "name": "AIDE_RECUE1" + } + }, + { + "id": "l1g8o84g-QOP-lmrsiwcj", + "label": { + "value": "\"Oui, une aide financière ou matérielle\"", + "type": "VTL|MD" + }, + "response": { + "name": "AIDE_RECUE2" + } + }, + { + "id": "l1g8o84g-QOP-lmrslpuw", + "label": { + "value": "\"Oui, un soutien moral\"", + "type": "VTL|MD" + }, + "response": { + "name": "AIDE_RECUE3" + } + }, + { + "id": "l1g8o84g-QOP-lmrspudh", + "label": { + "value": "\"Non, aucune aide de ce type\"", + "type": "VTL|MD" + }, + "response": { + "name": "AIDE_RECUE4" + } + } + ] + }, + { + "id": "l1ggpjd7", + "componentType": "CheckboxGroup", + "page": "2.389", + "label": { + "value": "\"De qui recevez-vous cette aide pour les tâches quotidiennes ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l1ggpjd7-l1ggnslo", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(AIDE_RECUE1)", + "type": "VTL", + "bindingDependencies": [ + "AIDE_RECUE1" + ] + }, + "controls": [ + { + "id": "l1ggpjd7-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(QUI_AID_REC_11, false) = false and nvl(QUI_AID_REC_12, false) = false and nvl(QUI_AID_REC_13, false) = false and nvl(QUI_AID_REC_14, false) = false ))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "QUI_AID_REC_11", + "QUI_AID_REC_12", + "QUI_AID_REC_13", + "QUI_AID_REC_14" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "l1g7w78w", + "page": "2.382", + "label": { + "value": "\"VII - \" || \"VOTRE FAMILLE (vivant ou non avec vous) ET VOTRE ENTOURAGE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "SEXE_CH", + "SEXE_CF", + "QUI_AID_REC_11", + "QUI_AID_REC_12", + "QUI_AID_REC_13", + "QUI_AID_REC_14", + "VAL_ANNAISS" + ], + "responses": [ + { + "id": "l1ggpjd7-QOP-l8lfnnly", + "label": { + "value": "Vos parents", + "type": "VTL|MD" + }, + "response": { + "name": "QUI_AID_REC_11" + } + }, + { + "id": "l1ggpjd7-QOP-l8lflmwj", + "label": { + "value": "\"\" || if (SEXE_CH=\"2\" or isnull(SEXE_CH)) and (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"Votre conjoint\" else \"Votre conjointe\"", + "type": "VTL|MD" + }, + "response": { + "name": "QUI_AID_REC_12" + } + }, + { + "id": "l1ggpjd7-QOP-l8lfhcl4", + "label": { + "value": "Vos enfants", + "type": "VTL|MD" + }, + "response": { + "name": "QUI_AID_REC_13" + } + }, + { + "id": "l1ggpjd7-QOP-l8lfi83w", + "label": { + "value": "Un autre membre de la famille", + "type": "VTL|MD" + }, + "response": { + "name": "QUI_AID_REC_14" + } + } + ] + }, + { + "id": "l1ggp8js", + "componentType": "CheckboxGroup", + "page": "2.390", + "label": { + "value": "\"De qui recevez-vous cette aide financière ou matérielle ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l1ggp8js-l1gglc9h", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(AIDE_RECUE2)", + "type": "VTL", + "bindingDependencies": [ + "AIDE_RECUE2" + ] + }, + "controls": [ + { + "id": "l1ggp8js-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(QUI_AID_REC_21, false) = false and nvl(QUI_AID_REC_22, false) = false and nvl(QUI_AID_REC_23, false) = false and nvl(QUI_AID_REC_24, false) = false ))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "QUI_AID_REC_21", + "QUI_AID_REC_22", + "QUI_AID_REC_23", + "QUI_AID_REC_24" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "l1g7w78w", + "page": "2.382", + "label": { + "value": "\"VII - \" || \"VOTRE FAMILLE (vivant ou non avec vous) ET VOTRE ENTOURAGE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "SEXE_CH", + "SEXE_CF", + "QUI_AID_REC_21", + "QUI_AID_REC_22", + "QUI_AID_REC_23", + "QUI_AID_REC_24", + "VAL_ANNAISS" + ], + "responses": [ + { + "id": "l1ggp8js-QOP-l8lfslzm", + "label": { + "value": "Vos parents", + "type": "VTL|MD" + }, + "response": { + "name": "QUI_AID_REC_21" + } + }, + { + "id": "l1ggp8js-QOP-l8lf8uhf", + "label": { + "value": "\"\" || if (SEXE_CH=\"2\" or isnull(SEXE_CH)) and (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"Votre conjoint\" else \"Votre conjointe\"", + "type": "VTL|MD" + }, + "response": { + "name": "QUI_AID_REC_22" + } + }, + { + "id": "l1ggp8js-QOP-l8lfnjgv", + "label": { + "value": "Vos enfants", + "type": "VTL|MD" + }, + "response": { + "name": "QUI_AID_REC_23" + } + }, + { + "id": "l1ggp8js-QOP-l8lfccyo", + "label": { + "value": "Un autre membre de la famille", + "type": "VTL|MD" + }, + "response": { + "name": "QUI_AID_REC_24" + } + } + ] + }, + { + "id": "l1gh36ky", + "componentType": "CheckboxGroup", + "page": "2.391", + "label": { + "value": "\"De qui recevez-vous ce soutien moral ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l1gh36ky-l1ggm7zg", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(AIDE_RECUE3)", + "type": "VTL", + "bindingDependencies": [ + "AIDE_RECUE3" + ] + }, + "controls": [ + { + "id": "l1gh36ky-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(QUI_AID_REC_31, false) = false and nvl(QUI_AID_REC_32, false) = false and nvl(QUI_AID_REC_33, false) = false and nvl(QUI_AID_REC_34, false) = false ))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "QUI_AID_REC_31", + "QUI_AID_REC_32", + "QUI_AID_REC_33", + "QUI_AID_REC_34" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "l1g7w78w", + "page": "2.382", + "label": { + "value": "\"VII - \" || \"VOTRE FAMILLE (vivant ou non avec vous) ET VOTRE ENTOURAGE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "SEXE_CH", + "SEXE_CF", + "QUI_AID_REC_31", + "QUI_AID_REC_32", + "QUI_AID_REC_33", + "QUI_AID_REC_34", + "VAL_ANNAISS" + ], + "responses": [ + { + "id": "l1gh36ky-QOP-l5jp75md", + "label": { + "value": "Vos parents", + "type": "VTL|MD" + }, + "response": { + "name": "QUI_AID_REC_31" + } + }, + { + "id": "l1gh36ky-QOP-l5jpgd0s", + "label": { + "value": "\"\" || if (SEXE_CH=\"2\" or isnull(SEXE_CH)) and (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"Votre conjoint\" else \"Votre conjointe\"", + "type": "VTL|MD" + }, + "response": { + "name": "QUI_AID_REC_32" + } + }, + { + "id": "l1gh36ky-QOP-l5jplm82", + "label": { + "value": "Vos enfants", + "type": "VTL|MD" + }, + "response": { + "name": "QUI_AID_REC_33" + } + }, + { + "id": "l1gh36ky-QOP-l5jpm5d8", + "label": { + "value": "Un autre membre de la famille", + "type": "VTL|MD" + }, + "response": { + "name": "QUI_AID_REC_34" + } + } + ] + }, + { + "id": "l1g8apw2", + "componentType": "Input", + "mandatory": false, + "page": "2.392", + "maxLength": 20, + "label": { + "value": "\"En quelle langue, dialecte, ou patois discutez-vous régulièrement avec votre entourage (famille, amis, collègues, commerçants, etc.) ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l1g8apw2-laians4k", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"(exemples : kabyle, breton, LSF, français, italien)\"", + "type": "VTL|MD" + } + }, + { + "id": "l1g8apw2-laial6r0", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le libellé de la langue recherchée et sélectionnez la dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "true", + "type": "VTL" + }, + "controls": [ + { + "id": "l1g8apw2-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(LANGUE1_ENTOU) or LANGUE1_ENTOU=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "LANGUE1_ENTOU" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "l1g7w78w", + "page": "2.382", + "label": { + "value": "\"VII - \" || \"VOTRE FAMILLE (vivant ou non avec vous) ET VOTRE ENTOURAGE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "LANGUE1_ENTOU", + "VAL_ANNAISS" + ], + "response": { + "name": "LANGUE1_ENTOU" + } + }, + { + "id": "l43tgurz", + "componentType": "Input", + "mandatory": false, + "page": "2.393", + "maxLength": 20, + "label": { + "value": "\"Y-a-t-il une autre langue, dialecte ou patois ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l43tgurz-l4o6rkjz", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le libellé de la langue recherchée et sélectionnez la dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(LANGUE1_ENTOU <> \"\" or not(isnull(LANGUE1_ENTOU)))", + "type": "VTL", + "bindingDependencies": [ + "LANGUE1_ENTOU" + ] + }, + "controls": [ + { + "id": "l43tgurz-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(LANGUE1_ENTOU)) and not(isnull(LANGUE2_ENTOU)) and LANGUE2_ENTOU=LANGUE1_ENTOU)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Vous avez sélectionné la même langue que la précédente. Merci à vous de corriger.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "LANGUE1_ENTOU", + "LANGUE2_ENTOU" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "l1g7w78w", + "page": "2.382", + "label": { + "value": "\"VII - \" || \"VOTRE FAMILLE (vivant ou non avec vous) ET VOTRE ENTOURAGE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "LANGUE2_ENTOU", + "VAL_ANNAISS" + ], + "response": { + "name": "LANGUE2_ENTOU" + } + }, + { + "id": "kwqfdovw", + "componentType": "Sequence", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kwqfdovw-l4r7fofh", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", nous allons maintenant vous poser quelques questions sur vos parents, vivants ou non (père, mère, personnes que vous considérez comme tels).\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "true", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "VAL_ANNAISS" + ] + }, + { + "id": "kwqf618x", + "componentType": "Subsequence", + "page": "2.395", + "goToPage": "2.395", + "label": { + "value": "\"Votre parent le plus âgé\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kwqf618x-l0wezuxl", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", décrivez l’un de vos parents, encore en vie ou non (père, mère ou personne que vous considérez comme tel), en commençant par le plus âgé.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "true", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kwqf618x", + "page": "2.395", + "label": { + "value": "\"Votre parent le plus âgé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "VAL_ANNAISS" + ] + }, + { + "id": "l2kjnm8k", + "componentType": "Input", + "mandatory": false, + "page": "2.396", + "maxLength": 249, + "label": { + "value": "\"Quel est son prénom ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "true", + "type": "VTL" + }, + "controls": [ + { + "id": "l2kjnm8k-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PRENOM_PAR1) or PRENOM_PAR1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer le prénom attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PRENOM_PAR1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kwqf618x", + "page": "2.395", + "label": { + "value": "\"Votre parent le plus âgé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR1", + "VAL_ANNAISS" + ], + "response": { + "name": "PRENOM_PAR1" + } + }, + { + "id": "l2kjy49o", + "componentType": "Input", + "mandatory": false, + "page": "2.397", + "maxLength": 4, + "label": { + "value": "\"Quelle est l’année de naissance de \" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"votre parent\" else PRENOM_PAR1) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l2kjy49o-l6c4w3ax", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Indiquez une année approximative si vous ne savez pas précisément.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "true", + "type": "VTL" + }, + "controls": [ + { + "id": "l2kjy49o-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ANAI_PAR1) or ANAI_PAR1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’année attendue.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_PAR1" + ] + }, + { + "id": "l2kjy49o-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANAI_PAR1)) and not(isnull(ANAIS)) and cast(ANAI_PAR1,integer) > cast(ANAIS,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de naissance de votre parent ne peut pas être postérieure à votre année de naissance.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_PAR1", + "ANAIS" + ] + }, + { + "id": "l2kjy49o-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANAI_PAR1)) and not(isnull(ANAIS)) and (cast(ANAI_PAR1,integer) + 12 > cast(ANAIS,integer)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Il semble y avoir peu d’écart entre votre année de naissance et celle de votre parent, est-ce que vous confirmez ?\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_PAR1", + "ANAIS" + ] + }, + { + "id": "l2kjy49o-CI-3", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(ANAI_PAR1,integer) < 1860 or cast(ANAI_PAR1,integer) > 1991)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de naissance de votre parent est comprise entre 1860 et 1991.\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_PAR1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kwqf618x", + "page": "2.395", + "label": { + "value": "\"Votre parent le plus âgé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR1", + "ANAI_PAR1", + "VAL_ANNAISS" + ], + "response": { + "name": "ANAI_PAR1" + } + }, + { + "id": "l2kkvar7", + "componentType": "Radio", + "mandatory": false, + "page": "2.398", + "label": { + "value": "\"Quel est le sexe de \" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"votre parent\" else PRENOM_PAR1) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "true", + "type": "VTL" + }, + "controls": [ + { + "id": "l2kkvar7-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull (SEXE_PAR1) or SEXE_PAR1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEXE_PAR1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kwqf618x", + "page": "2.395", + "label": { + "value": "\"Votre parent le plus âgé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR1", + "SEXE_PAR1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Une femme", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Un homme", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEXE_PAR1" + } + }, + { + "id": "l2kk539f", + "componentType": "Radio", + "mandatory": false, + "page": "2.399", + "label": { + "value": "\"\" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"Votre parent\" else PRENOM_PAR1) || \" était-\" || LIBSUJETPAR1 || \" français\" || LIBSEXPAR1 || \" à la naissance ? \"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer))", + "type": "VTL", + "bindingDependencies": [ + "RPPRENOMPAR1", + "PRENOM_PAR1", + "RPANAISPAR1", + "ANAI_PAR1" + ] + }, + "controls": [ + { + "id": "l2kk539f-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NATIO_PAR1) or NATIO_PAR1 =\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NATIO_PAR1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kwqf618x", + "page": "2.395", + "label": { + "value": "\"Votre parent le plus âgé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR1", + "LIBSUJETPAR1", + "LIBSEXPAR1", + "NATIO_PAR1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "NATIO_PAR1" + } + }, + { + "id": "l7ywp1vk", + "componentType": "Radio", + "mandatory": false, + "page": "2.400", + "label": { + "value": "\"\" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"Votre parent\" else PRENOM_PAR1) || \" a-t-\" || LIBSUJETPAR1 || \" déjà travaillé ? \"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer))", + "type": "VTL", + "bindingDependencies": [ + "RPPRENOMPAR1", + "PRENOM_PAR1", + "RPANAISPAR1", + "ANAI_PAR1" + ] + }, + "controls": [ + { + "id": "l7ywp1vk-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(TRAV_PAR1) or TRAV_PAR1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "TRAV_PAR1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kwqf618x", + "page": "2.395", + "label": { + "value": "\"Votre parent le plus âgé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR1", + "LIBSUJETPAR1", + "TRAV_PAR1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "TRAV_PAR1" + } + }, + { + "id": "l2kjueig", + "componentType": "Input", + "mandatory": false, + "page": "2.401", + "maxLength": 20, + "label": { + "value": "\"Quelle est ou était la profession de \" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"votre parent\" else PRENOM_PAR1) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l2kjueig-l4o5gqap", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le libellé de profession recherché et sélectionnez le dans la liste.\" \"Si vous ne le trouvez pas, passez à la question suivante.\"", + "type": "VTL|MD" + } + }, + { + "id": "l2kjueig-l5jp82du", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Saisissez bien la dernière profession connue.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (SEXE_PAR1=\"2\" or isnull(SEXE_PAR1))", + "type": "VTL", + "bindingDependencies": [ + "RPPRENOMPAR1", + "PRENOM_PAR1", + "RPANAISPAR1", + "ANAI_PAR1", + "TRAV_PAR1", + "SEXE_PAR1" + ] + }, + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kwqf618x", + "page": "2.395", + "label": { + "value": "\"Votre parent le plus âgé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR1", + "PROF_PAR1H", + "VAL_ANNAISS" + ], + "response": { + "name": "PROF_PAR1H" + } + }, + { + "id": "l4qzvm5v", + "componentType": "Input", + "mandatory": false, + "page": "2.402", + "maxLength": 20, + "label": { + "value": "\"Quelle est ou était la profession de \" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"votre parent\" else PRENOM_PAR1) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4qzvm5v-l4qzje64", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le libellé de profession recherché et sélectionnez le dans la liste.\" \"Si vous ne le trouvez pas, passez à la question suivante.\"", + "type": "VTL|MD" + } + }, + { + "id": "l4qzvm5v-l5joyl4e", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Saisissez bien la dernière profession connue.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (SEXE_PAR1=\"1\")", + "type": "VTL", + "bindingDependencies": [ + "RPPRENOMPAR1", + "PRENOM_PAR1", + "RPANAISPAR1", + "ANAI_PAR1", + "TRAV_PAR1", + "SEXE_PAR1" + ] + }, + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kwqf618x", + "page": "2.395", + "label": { + "value": "\"Votre parent le plus âgé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR1", + "PROF_PAR1F", + "VAL_ANNAISS" + ], + "response": { + "name": "PROF_PAR1F" + } + }, + { + "id": "l45cjoj7", + "componentType": "Input", + "mandatory": false, + "page": "2.403", + "maxLength": 249, + "label": { + "value": "\"Vous n’avez pas trouvé le libellé de profession recherché dans la liste. Veuillez saisir le libellé de profession le plus précis et complet possible.\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (isnull(PROF_PAR1F) and isnull(PROF_PAR1H))", + "type": "VTL", + "bindingDependencies": [ + "RPPRENOMPAR1", + "PRENOM_PAR1", + "RPANAISPAR1", + "ANAI_PAR1", + "TRAV_PAR1", + "PROF_PAR1F", + "PROF_PAR1H" + ] + }, + "controls": [ + { + "id": "l45cjoj7-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PROF_PAR1_2) or PROF_PAR1_2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre réponse.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PROF_PAR1_2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kwqf618x", + "page": "2.395", + "label": { + "value": "\"Votre parent le plus âgé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PROF_PAR1_2", + "VAL_ANNAISS" + ], + "response": { + "name": "PROF_PAR1_2" + } + }, + { + "id": "l2kjshy4", + "componentType": "Radio", + "mandatory": false, + "page": "2.404", + "label": { + "value": "\"Quel est ou était le statut professionnel de \" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"votre parent\" else PRENOM_PAR1) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1))", + "type": "VTL", + "bindingDependencies": [ + "RPPRENOMPAR1", + "PRENOM_PAR1", + "RPANAISPAR1", + "ANAI_PAR1", + "TRAV_PAR1" + ] + }, + "controls": [ + { + "id": "l2kjshy4-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(STATUT_PAR1) or STATUT_PAR1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "STATUT_PAR1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kwqf618x", + "page": "2.395", + "label": { + "value": "\"Votre parent le plus âgé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR1", + "LIBSEXPAR1", + "STATUT_PAR1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"A son compte (y compris gérant\" || LIBSEXPAR1 || \" de société salarié\" || LIBSEXPAR1 || \")\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Salarié\" || LIBSEXPAR1 || \" de la fonction publique (Etat, territoriale, hospitalière)\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Salarié\" || LIBSEXPAR1 || \" d’une entreprise (y compris d’une association ou de la sécurité sociale)\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\"Salarié\" || LIBSEXPAR1 || \" d’un particulier\"", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\"Aide familial\" || LIBSEXPAR1 || \" non rémunéré\" || LIBSEXPAR1", + "type": "VTL|MD" + } + }, + { + "value": "6", + "label": { + "value": "\"Je ne sais pas\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "STATUT_PAR1" + } + }, + { + "id": "llgo5n7b", + "componentType": "Radio", + "mandatory": false, + "page": "2.405", + "label": { + "value": "\"Dans cet emploi, \" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"votre parent\" else PRENOM_PAR1) || \" est ou était ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (STATUT_PAR1 =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "RPPRENOMPAR1", + "PRENOM_PAR1", + "RPANAISPAR1", + "ANAI_PAR1", + "TRAV_PAR1", + "STATUT_PAR1" + ] + }, + "controls": [ + { + "id": "llgo5n7b-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(SAL_FP_PAR1=\"\" or isnull(SAL_FP_PAR1))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SAL_FP_PAR1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kwqf618x", + "page": "2.395", + "label": { + "value": "\"Votre parent le plus âgé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR1", + "SEXE_PAR1", + "LIBSEXPAR1", + "SAL_FP_PAR1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Manœuvre, ouvri\" || if (SEXE_PAR1=\"2\" or isnull(SEXE_PAR1)) then \"er\" else \"ère\" || \" spécialisé\" || LIBSEXPAR1", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Ouvri\" || if (SEXE_PAR1=\"2\" or isnull(SEXE_PAR1)) then \"er\" else \"ère\" || \" qualifié\" || LIBSEXPAR1", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Technici\" || if (SEXE_PAR1=\"2\" or isnull(SEXE_PAR1)) then \"en\" else \"enne\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\"Agent\" || LIBSEXPAR1 || \" de catégorie D de la fonction publique\"", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\"Agent\" || LIBSEXPAR1 || \" de catégorie C de la fonction publique\"", + "type": "VTL|MD" + } + }, + { + "value": "6", + "label": { + "value": "\"Agent\" || LIBSEXPAR1 || \" de catégorie B de la fonction publique\"", + "type": "VTL|MD" + } + }, + { + "value": "7", + "label": { + "value": "\"Agent\" || LIBSEXPAR1 || \" de catégorie A de la fonction publique\"", + "type": "VTL|MD" + } + }, + { + "value": "8", + "label": { + "value": "\"Dans une autre situation, je ne sais pas\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SAL_FP_PAR1" + } + }, + { + "id": "llgqspnh", + "componentType": "Radio", + "mandatory": false, + "page": "2.406", + "label": { + "value": "\"Dans cet emploi, \" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"votre parent\" else PRENOM_PAR1) || \" est ou était ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (STATUT_PAR1 =\"3\")", + "type": "VTL", + "bindingDependencies": [ + "RPPRENOMPAR1", + "PRENOM_PAR1", + "RPANAISPAR1", + "ANAI_PAR1", + "TRAV_PAR1", + "STATUT_PAR1" + ] + }, + "controls": [ + { + "id": "llgqspnh-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SAL_ENT_PAR1) or SAL_ENT_PAR1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SAL_ENT_PAR1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kwqf618x", + "page": "2.395", + "label": { + "value": "\"Votre parent le plus âgé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR1", + "SEXE_PAR1", + "LIBSEXPAR1", + "SAL_ENT_PAR1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Manœuvre, ouvri\" || if (SEXE_PAR1=\"2\" or isnull(SEXE_PAR1)) then \"er\" else \"ère\" || \" spécialisé\" || LIBSEXPAR1", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Ouvri\" || if (SEXE_PAR1=\"2\" or isnull(SEXE_PAR1)) then \"er\" else \"ère\" || \" qualifié\" || LIBSEXPAR1 || \", technici\" || if (SEXE_PAR1=\"2\" or isnull(SEXE_PAR1)) then \"en\" else \"enne\" || \" d’atelier\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Employé\" || LIBSEXPAR1 || \" de bureau, de commerce, de services\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\"Agent de maîtrise (y compris administrative ou commerciale)\"", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\"Technici\" || if (SEXE_PAR1=\"2\" or isnull(SEXE_PAR1)) then \"en\" else \"enne\"", + "type": "VTL|MD" + } + }, + { + "value": "6", + "label": { + "value": "\"Ingénieur\" || LIBSEXPAR1 || \", cadre d’entreprise\"", + "type": "VTL|MD" + } + }, + { + "value": "7", + "label": { + "value": "\"Dans une autre situation, je ne sais pas\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SAL_ENT_PAR1" + } + }, + { + "id": "l2kk4seh", + "componentType": "Input", + "mandatory": false, + "page": "2.407", + "maxLength": 20, + "label": { + "value": "\"En quelle langue, dialecte, ou patois \" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"votre parent\" else PRENOM_PAR1) || \" vous parlait-\" || LIBSUJETPAR1 || \", quand vous étiez enfant ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l2kk4seh-laiasuwg", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"(exemples : kabyle, breton, LSF, français, italien)\"", + "type": "VTL|MD" + } + }, + { + "id": "l2kk4seh-laiaq49f", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le libellé de la langue recherchée et sélectionnez la dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "true", + "type": "VTL" + }, + "controls": [ + { + "id": "l2kk4seh-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(LANGUE1_PAR1) or LANGUE1_PAR1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "LANGUE1_PAR1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kwqf618x", + "page": "2.395", + "label": { + "value": "\"Votre parent le plus âgé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR1", + "LIBSUJETPAR1", + "LANGUE1_PAR1", + "VAL_ANNAISS" + ], + "response": { + "name": "LANGUE1_PAR1" + } + }, + { + "id": "l447j7cx", + "componentType": "Input", + "mandatory": false, + "page": "2.408", + "maxLength": 20, + "label": { + "value": "\"Y-a-t-il une autre langue, dialecte ou patois ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l447j7cx-l4o6o3qv", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le libellé de la langue recherchée et sélectionnez la dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(LANGUE1_PAR1 <> \"\" or not(isnull(LANGUE1_PAR1)))", + "type": "VTL", + "bindingDependencies": [ + "LANGUE1_PAR1" + ] + }, + "controls": [ + { + "id": "l447j7cx-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(LANGUE1_PAR1)) and not(isnull(LANGUE2_PAR1)) and LANGUE2_PAR1=LANGUE1_PAR1)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Vous avez sélectionné la même langue que la précédente. Merci à vous de corriger.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "LANGUE1_PAR1", + "LANGUE2_PAR1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kwqf618x", + "page": "2.395", + "label": { + "value": "\"Votre parent le plus âgé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "LANGUE2_PAR1", + "VAL_ANNAISS" + ], + "response": { + "name": "LANGUE2_PAR1" + } + }, + { + "id": "l2kjzugb", + "componentType": "Radio", + "mandatory": false, + "page": "2.409", + "label": { + "value": "\"\" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"Votre parent\" else PRENOM_PAR1) || \" est-\" || LIBSUJETPAR1 || \" encore en vie ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer))", + "type": "VTL", + "bindingDependencies": [ + "RPPRENOMPAR1", + "PRENOM_PAR1", + "RPANAISPAR1", + "ANAI_PAR1" + ] + }, + "controls": [ + { + "id": "l2kjzugb-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(VIV_PAR1) or VIV_PAR1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "VIV_PAR1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kwqf618x", + "page": "2.395", + "label": { + "value": "\"Votre parent le plus âgé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR1", + "LIBSUJETPAR1", + "VIV_PAR1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "VIV_PAR1" + } + }, + { + "id": "l2kkd59n", + "componentType": "Input", + "mandatory": false, + "page": "2.410", + "maxLength": 4, + "label": { + "value": "\"En quelle année environ \" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"votre parent\" else PRENOM_PAR1) || \" est-\" || LIBSUJETPAR1 || \" décédé\" || LIBSEXPAR1 || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1 =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "RPPRENOMPAR1", + "PRENOM_PAR1", + "RPANAISPAR1", + "ANAI_PAR1", + "VIV_PAR1" + ] + }, + "controls": [ + { + "id": "l2kkd59n-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ANNEE_DC_PAR1) or ANNEE_DC_PAR1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’année attendue.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_DC_PAR1" + ] + }, + { + "id": "l2kkd59n-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_DC_PAR1)) and not(isnull(ANAI_PAR1)) and cast(ANNEE_DC_PAR1,integer) < cast(ANAI_PAR1,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année du décès de votre parent ne peut pas être antérieure à son année de naissance.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_DC_PAR1", + "ANAI_PAR1" + ] + }, + { + "id": "l2kkd59n-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(ANNEE_DC_PAR1,integer) < 1880 or cast(ANNEE_DC_PAR1,integer) > 2024)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année du décès de votre parent est comprise entre 1880 et 2024.\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_DC_PAR1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kwqf618x", + "page": "2.395", + "label": { + "value": "\"Votre parent le plus âgé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR1", + "LIBSUJETPAR1", + "LIBSEXPAR1", + "ANNEE_DC_PAR1", + "VAL_ANNAISS" + ], + "response": { + "name": "ANNEE_DC_PAR1" + } + }, + { + "id": "l2kk4snz", + "componentType": "Radio", + "mandatory": false, + "page": "2.411", + "label": { + "value": "\"Où vit \" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"votre parent\" else PRENOM_PAR1) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1))", + "type": "VTL", + "bindingDependencies": [ + "RPPRENOMPAR1", + "PRENOM_PAR1", + "RPANAISPAR1", + "ANAI_PAR1", + "VIV_PAR1" + ] + }, + "controls": [ + { + "id": "l2kk4snz-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(LOG_PAR1) or LOG_PAR1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "LOG_PAR1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kwqf618x", + "page": "2.395", + "label": { + "value": "\"Votre parent le plus âgé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR1", + "LOG_PAR1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Avec vous, dans ce logement\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Ailleurs\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "LOG_PAR1" + } + }, + { + "id": "l2kkb4xa", + "componentType": "Radio", + "mandatory": false, + "page": "2.412", + "label": { + "value": "\"\" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"Votre parent\" else PRENOM_PAR1) || \" vit-\" || LIBSUJETPAR1 || \" en France ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l2kkb4xa-lai78qvl", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Prenez en compte les frontières actuelles.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))", + "type": "VTL", + "bindingDependencies": [ + "RPPRENOMPAR1", + "PRENOM_PAR1", + "RPANAISPAR1", + "ANAI_PAR1", + "VIV_PAR1", + "LOG_PAR1" + ] + }, + "controls": [ + { + "id": "l2kkb4xa-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(FR_PAR1) or FR_PAR1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "FR_PAR1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kwqf618x", + "page": "2.395", + "label": { + "value": "\"Votre parent le plus âgé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR1", + "LIBSUJETPAR1", + "FR_PAR1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "FR_PAR1" + } + }, + { + "id": "l4o7ufzl", + "componentType": "Input", + "mandatory": false, + "page": "2.413", + "maxLength": 20, + "label": { + "value": "\"Dans quel département vit \" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"votre parent\" else PRENOM_PAR1) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4o7ufzl-l4o88r3u", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"1\" or isnull(FR_PAR1))", + "type": "VTL", + "bindingDependencies": [ + "RPPRENOMPAR1", + "PRENOM_PAR1", + "RPANAISPAR1", + "ANAI_PAR1", + "VIV_PAR1", + "LOG_PAR1", + "FR_PAR1" + ] + }, + "controls": [ + { + "id": "l4o7ufzl-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(DEP_PAR1) or DEP_PAR1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "DEP_PAR1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kwqf618x", + "page": "2.395", + "label": { + "value": "\"Votre parent le plus âgé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR1", + "DEP_PAR1", + "VAL_ANNAISS" + ], + "response": { + "name": "DEP_PAR1" + } + }, + { + "id": "l4onhpvd", + "componentType": "Input", + "mandatory": false, + "page": "2.414", + "maxLength": 20, + "label": { + "value": "\"Dans quelle commune vit \" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"votre parent\" else PRENOM_PAR1) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4onhpvd-l4onfbps", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez la commune recherchée et sélectionnez la dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"1\" or isnull(FR_PAR1))", + "type": "VTL", + "bindingDependencies": [ + "RPPRENOMPAR1", + "PRENOM_PAR1", + "RPANAISPAR1", + "ANAI_PAR1", + "VIV_PAR1", + "LOG_PAR1", + "FR_PAR1" + ] + }, + "controls": [ + { + "id": "l4onhpvd-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(COM_PAR1) or COM_PAR1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "COM_PAR1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kwqf618x", + "page": "2.395", + "label": { + "value": "\"Votre parent le plus âgé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR1", + "COM_PAR1", + "VAL_ANNAISS" + ], + "response": { + "name": "COM_PAR1" + } + }, + { + "id": "l4o8eale", + "componentType": "Input", + "mandatory": false, + "page": "2.415", + "maxLength": 20, + "label": { + "value": "\"Dans quel pays vit \" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"votre parent\" else PRENOM_PAR1) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4o8eale-l4o8fj6f", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "RPPRENOMPAR1", + "PRENOM_PAR1", + "RPANAISPAR1", + "ANAI_PAR1", + "VIV_PAR1", + "LOG_PAR1", + "FR_PAR1" + ] + }, + "controls": [ + { + "id": "l4o8eale-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PAY_PAR1) or PAY_PAR1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PAY_PAR1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kwqf618x", + "page": "2.395", + "label": { + "value": "\"Votre parent le plus âgé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR1", + "PAY_PAR1", + "VAL_ANNAISS" + ], + "response": { + "name": "PAY_PAR1" + } + }, + { + "id": "l1ezkqes", + "componentType": "Radio", + "mandatory": false, + "page": "2.416", + "label": { + "value": "\"\" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"Votre parent\" else PRENOM_PAR1) || \" vit-\" || LIBSUJETPAR1 || \" dans un établissement pour personnes âgées ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l1ezkqes-l1ez5cei", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"(EHPAD, maison de retraite, etc.)\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))", + "type": "VTL", + "bindingDependencies": [ + "RPPRENOMPAR1", + "PRENOM_PAR1", + "RPANAISPAR1", + "ANAI_PAR1", + "VIV_PAR1", + "LOG_PAR1" + ] + }, + "controls": [ + { + "id": "l1ezkqes-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ETAB_PAR1) or ETAB_PAR1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ETAB_PAR1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kwqf618x", + "page": "2.395", + "label": { + "value": "\"Votre parent le plus âgé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR1", + "LIBSUJETPAR1", + "ETAB_PAR1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "ETAB_PAR1" + } + }, + { + "id": "l2kkeqsz", + "componentType": "Radio", + "mandatory": false, + "page": "2.417", + "label": { + "value": "\"A quelle fréquence voyez-vous \" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"votre parent\" else PRENOM_PAR1) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l2kkeqsz-l2kkh5nj", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"(en face à face)\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))", + "type": "VTL", + "bindingDependencies": [ + "RPPRENOMPAR1", + "PRENOM_PAR1", + "RPANAISPAR1", + "ANAI_PAR1", + "VIV_PAR1", + "LOG_PAR1" + ] + }, + "controls": [ + { + "id": "l2kkeqsz-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(FREQ_VU_PAR1) or FREQ_VU_PAR1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "FREQ_VU_PAR1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kwqf618x", + "page": "2.395", + "label": { + "value": "\"Votre parent le plus âgé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR1", + "FREQ_VU_PAR1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "2", + "label": { + "value": "Une ou plusieurs fois par semaine", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Une ou plusieurs fois par mois", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Une ou plusieurs fois par an", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Plus rarement ou jamais", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "FREQ_VU_PAR1" + } + }, + { + "id": "l2kk296y", + "componentType": "Radio", + "mandatory": false, + "page": "2.418", + "label": { + "value": "\"A quelle fréquence communiquez-vous avec \" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"votre parent\" else PRENOM_PAR1) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l2kk296y-l2kk1ab3", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"(téléphone, mail, SMS, appel vidéo, etc.)\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))", + "type": "VTL", + "bindingDependencies": [ + "RPPRENOMPAR1", + "PRENOM_PAR1", + "RPANAISPAR1", + "ANAI_PAR1", + "VIV_PAR1", + "LOG_PAR1" + ] + }, + "controls": [ + { + "id": "l2kk296y-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(FREQ_CONT_PAR1) or FREQ_CONT_PAR1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "FREQ_CONT_PAR1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kwqf618x", + "page": "2.395", + "label": { + "value": "\"Votre parent le plus âgé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR1", + "FREQ_CONT_PAR1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "2", + "label": { + "value": "Une ou plusieurs fois par semaine", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Une ou plusieurs fois par mois", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Une ou plusieurs fois par an", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Plus rarement ou jamais", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "FREQ_CONT_PAR1" + } + }, + { + "id": "l4lojzxg", + "componentType": "Radio", + "mandatory": false, + "page": "2.419", + "label": { + "value": "\"Vivez-vous à moins d’une heure de chez \" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"votre parent\" else PRENOM_PAR1) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))", + "type": "VTL", + "bindingDependencies": [ + "RPPRENOMPAR1", + "PRENOM_PAR1", + "RPANAISPAR1", + "ANAI_PAR1", + "VIV_PAR1", + "LOG_PAR1" + ] + }, + "controls": [ + { + "id": "l4lojzxg-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PROX_EGO_PAR1) or PROX_EGO_PAR1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PROX_EGO_PAR1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kwqf618x", + "page": "2.395", + "label": { + "value": "\"Votre parent le plus âgé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR1", + "PROX_EGO_PAR1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PROX_EGO_PAR1" + } + }, + { + "id": "l43yap7r", + "componentType": "Radio", + "mandatory": false, + "page": "2.420", + "label": { + "value": "\"\" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"Votre parent\" else PRENOM_PAR1) || \" a-t-\" || LIBSUJETPAR1 || \" d’autres enfants que vous qui vivent à moins d’une heure de chez\" || if (SEXE_PAR1=\"2\" or isnull(SEXE_PAR1)) then \" lui ?\" else \" elle ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1))", + "type": "VTL", + "bindingDependencies": [ + "RPPRENOMPAR1", + "PRENOM_PAR1", + "RPANAISPAR1", + "ANAI_PAR1", + "VIV_PAR1" + ] + }, + "controls": [ + { + "id": "l43yap7r-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PROX_FRAT_PAR1) or PROX_FRAT_PAR1 =\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PROX_FRAT_PAR1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kwqf618x", + "page": "2.395", + "label": { + "value": "\"Votre parent le plus âgé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR1", + "LIBSUJETPAR1", + "SEXE_PAR1", + "PROX_FRAT_PAR1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PROX_FRAT_PAR1" + } + }, + { + "id": "l5axrwsa", + "componentType": "Radio", + "mandatory": false, + "page": "2.421", + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", avez-vous un autre parent, vivant ou non (père, mère ou personne que vous considérez comme tel) ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "true", + "type": "VTL" + }, + "controls": [ + { + "id": "l5axrwsa-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(EXIST_PAR2) or EXIST_PAR2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "EXIST_PAR2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "kwqf618x", + "page": "2.395", + "label": { + "value": "\"Votre parent le plus âgé\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "EXIST_PAR2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "EXIST_PAR2" + } + }, + { + "id": "las2r756", + "componentType": "Subsequence", + "page": "2.422", + "goToPage": "2.422", + "label": { + "value": "Votre autre parent", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "las2r756-las2uh3c", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", décrivez maintenant votre autre parent, encore en vie ou non (père, mère ou personne que vous considérez comme tel).\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(EXIST_PAR2 =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "EXIST_PAR2" + ] + }, + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "las2r756", + "page": "2.422", + "label": { + "value": "Votre autre parent", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "VAL_ANNAISS" + ] + }, + { + "id": "l27ijusa", + "componentType": "Input", + "mandatory": false, + "page": "2.423", + "maxLength": 249, + "label": { + "value": "\"Quel est son prénom ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(EXIST_PAR2 =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "EXIST_PAR2" + ] + }, + "controls": [ + { + "id": "l27ijusa-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PRENOM_PAR2) or PRENOM_PAR2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer le prénom attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PRENOM_PAR2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "las2r756", + "page": "2.422", + "label": { + "value": "Votre autre parent", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR2", + "VAL_ANNAISS" + ], + "response": { + "name": "PRENOM_PAR2" + } + }, + { + "id": "kwqfufye", + "componentType": "Input", + "mandatory": false, + "page": "2.424", + "maxLength": 4, + "label": { + "value": "\"Quelle est l’année de naissance de \" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"votre autre parent\" else PRENOM_PAR2) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kwqfufye-l6c4ofs8", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Indiquez une année approximative si vous ne savez pas précisément.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(EXIST_PAR2 =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "EXIST_PAR2" + ] + }, + "controls": [ + { + "id": "kwqfufye-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ANAI_PAR2) or ANAI_PAR2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’année attendue.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_PAR2" + ] + }, + { + "id": "kwqfufye-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANAI_PAR2)) and not(isnull(ANAIS)) and (cast(ANAI_PAR2,integer) + 12 > cast(ANAIS,integer)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Il semble y avoir peu d’écart entre votre année de naissance et celle de votre parent, est-ce que vous confirmez ?\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_PAR2", + "ANAIS" + ] + }, + { + "id": "kwqfufye-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANAI_PAR2)) and not(isnull(ANAIS)) and cast(ANAI_PAR2,integer) > cast(ANAIS,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de naissance de votre parent ne peut pas être postérieure à votre année de naissance.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_PAR2", + "ANAIS" + ] + }, + { + "id": "kwqfufye-CI-3", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(ANAI_PAR2,integer) < 1860 or cast(ANAI_PAR2,integer) > 1991)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de naissance de votre parent est comprise entre 1860 et 1991.\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAI_PAR2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "las2r756", + "page": "2.422", + "label": { + "value": "Votre autre parent", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR2", + "ANAI_PAR2", + "VAL_ANNAISS" + ], + "response": { + "name": "ANAI_PAR2" + } + }, + { + "id": "l27ig4yy", + "componentType": "Radio", + "mandatory": false, + "page": "2.425", + "label": { + "value": "\"Quel est le sexe de \" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"votre autre parent\" else PRENOM_PAR2) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(EXIST_PAR2 =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "EXIST_PAR2" + ] + }, + "controls": [ + { + "id": "l27ig4yy-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SEXE_PAR2) or SEXE_PAR2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SEXE_PAR2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "las2r756", + "page": "2.422", + "label": { + "value": "Votre autre parent", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR2", + "SEXE_PAR2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Une femme", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Un homme", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEXE_PAR2" + } + }, + { + "id": "kwqfhhge", + "componentType": "Radio", + "mandatory": false, + "page": "2.426", + "label": { + "value": "\"\" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"Votre autre parent\" else PRENOM_PAR2) || \" était-\" || LIBSUJETPAR2 || \" français\" || LIBSEXPAR2 || \" à la naissance ? \"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer))", + "type": "VTL", + "bindingDependencies": [ + "EXIST_PAR2", + "RPPRENOMPAR2", + "PRENOM_PAR2", + "RPANAISPAR2", + "ANAI_PAR2" + ] + }, + "controls": [ + { + "id": "kwqfhhge-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NATIO_PAR2) or NATIO_PAR2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NATIO_PAR2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "las2r756", + "page": "2.422", + "label": { + "value": "Votre autre parent", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR2", + "LIBSUJETPAR2", + "LIBSEXPAR2", + "NATIO_PAR2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "NATIO_PAR2" + } + }, + { + "id": "l7ywxphs", + "componentType": "Radio", + "mandatory": false, + "page": "2.427", + "label": { + "value": "\"\" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"Votre autre parent\" else PRENOM_PAR2) || \" a-t-\" || LIBSUJETPAR2 || \" déjà travaillé ? \"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer))", + "type": "VTL", + "bindingDependencies": [ + "EXIST_PAR2", + "RPPRENOMPAR2", + "PRENOM_PAR2", + "RPANAISPAR2", + "ANAI_PAR2" + ] + }, + "controls": [ + { + "id": "l7ywxphs-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(TRAV_PAR2) or TRAV_PAR2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "TRAV_PAR2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "las2r756", + "page": "2.422", + "label": { + "value": "Votre autre parent", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR2", + "LIBSUJETPAR2", + "TRAV_PAR2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "TRAV_PAR2" + } + }, + { + "id": "l1ezowxi", + "componentType": "Input", + "mandatory": false, + "page": "2.428", + "maxLength": 20, + "label": { + "value": "\"Quelle est ou était la profession de \" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"votre autre parent\" else PRENOM_PAR2) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l1ezowxi-l4o51lf6", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le libellé de profession recherché et sélectionnez le dans la liste.\" \"Si vous ne le trouvez pas, passez à la question suivante.\"", + "type": "VTL|MD" + } + }, + { + "id": "l1ezowxi-l5jou9wy", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Saisissez bien la dernière profession connue.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (SEXE_PAR2 =\"2\" or isnull(SEXE_PAR2))", + "type": "VTL", + "bindingDependencies": [ + "EXIST_PAR2", + "RPPRENOMPAR2", + "PRENOM_PAR2", + "RPANAISPAR2", + "ANAI_PAR2", + "TRAV_PAR2", + "SEXE_PAR2" + ] + }, + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "las2r756", + "page": "2.422", + "label": { + "value": "Votre autre parent", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR2", + "PROF_PAR2H", + "VAL_ANNAISS" + ], + "response": { + "name": "PROF_PAR2H" + } + }, + { + "id": "l4qzjbsx", + "componentType": "Input", + "mandatory": false, + "page": "2.429", + "maxLength": 20, + "label": { + "value": "\"Quelle est ou était la profession de \" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"votre autre parent\" else PRENOM_PAR2) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4qzjbsx-l4qzsxov", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le libellé de profession recherché et sélectionnez le dans la liste.\" \"Si vous ne le trouvez pas, passez à la question suivante.\"", + "type": "VTL|MD" + } + }, + { + "id": "l4qzjbsx-l5jp1tz6", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "Saisissez bien la dernière profession connue.", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (SEXE_PAR2 =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "EXIST_PAR2", + "RPPRENOMPAR2", + "PRENOM_PAR2", + "RPANAISPAR2", + "ANAI_PAR2", + "TRAV_PAR2", + "SEXE_PAR2" + ] + }, + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "las2r756", + "page": "2.422", + "label": { + "value": "Votre autre parent", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR2", + "PROF_PAR2F", + "VAL_ANNAISS" + ], + "response": { + "name": "PROF_PAR2F" + } + }, + { + "id": "l444t31z", + "componentType": "Input", + "mandatory": false, + "page": "2.430", + "maxLength": 249, + "label": { + "value": "\"Vous n’avez pas trouvé le libellé de profession recherché dans la liste. Veuillez saisir le libellé de profession le plus précis et complet possible.\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (isnull(PROF_PAR2F) and isnull(PROF_PAR2H))", + "type": "VTL", + "bindingDependencies": [ + "EXIST_PAR2", + "RPPRENOMPAR2", + "PRENOM_PAR2", + "RPANAISPAR2", + "ANAI_PAR2", + "TRAV_PAR2", + "PROF_PAR2F", + "PROF_PAR2H" + ] + }, + "controls": [ + { + "id": "l444t31z-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PROF_PAR2_2) or PROF_PAR2_2 =\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre réponse.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PROF_PAR2_2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "las2r756", + "page": "2.422", + "label": { + "value": "Votre autre parent", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PROF_PAR2_2", + "VAL_ANNAISS" + ], + "response": { + "name": "PROF_PAR2_2" + } + }, + { + "id": "kwqfto3c", + "componentType": "Radio", + "mandatory": false, + "page": "2.431", + "label": { + "value": "\"Quel est ou était le statut professionnel de \" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"votre autre parent\" else PRENOM_PAR2) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2))", + "type": "VTL", + "bindingDependencies": [ + "EXIST_PAR2", + "RPPRENOMPAR2", + "PRENOM_PAR2", + "RPANAISPAR2", + "ANAI_PAR2", + "TRAV_PAR2" + ] + }, + "controls": [ + { + "id": "kwqfto3c-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(STATUT_PAR2) or STATUT_PAR2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "STATUT_PAR2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "las2r756", + "page": "2.422", + "label": { + "value": "Votre autre parent", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR2", + "LIBSEXPAR2", + "STATUT_PAR2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"A son compte (y compris gérant\" || LIBSEXPAR2 || \" de société salarié\" || LIBSEXPAR2 || \")\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Salarié\" || LIBSEXPAR2 || \" de la fonction publique (Etat, territoriale, hospitalière)\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Salarié\" || LIBSEXPAR2 || \" d’une entreprise (y compris d’une association ou de la sécurité sociale)\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\"Salarié\" || LIBSEXPAR2 || \" d’un particulier\"", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\"Aide familial\" || LIBSEXPAR2 || \" non rémunéré\" || LIBSEXPAR2", + "type": "VTL|MD" + } + }, + { + "value": "6", + "label": { + "value": "\"Je ne sais pas\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "STATUT_PAR2" + } + }, + { + "id": "llgosp3i", + "componentType": "Radio", + "mandatory": false, + "page": "2.432", + "label": { + "value": "\"Dans cet emploi, \" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"votre parent\" else PRENOM_PAR2) || \" est ou était ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (STATUT_PAR2 =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "EXIST_PAR2", + "RPPRENOMPAR2", + "PRENOM_PAR2", + "RPANAISPAR2", + "ANAI_PAR2", + "TRAV_PAR2", + "STATUT_PAR2" + ] + }, + "controls": [ + { + "id": "llgosp3i-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(SAL_FP_PAR2=\"\" or isnull(SAL_FP_PAR2))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SAL_FP_PAR2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "las2r756", + "page": "2.422", + "label": { + "value": "Votre autre parent", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR2", + "SEXE_PAR2", + "LIBSEXPAR2", + "SAL_FP_PAR2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Manœuvre, ouvri\" || if (SEXE_PAR2=\"2\" or isnull(SEXE_PAR2)) then \"er\" else \"ère\" || \" spécialisé\" || LIBSEXPAR2", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Ouvri\" || if (SEXE_PAR2=\"2\" or isnull(SEXE_PAR2)) then \"er\" else \"ère\" || \" qualifié\" || LIBSEXPAR2", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Technici\" || if (SEXE_PAR2=\"2\" or isnull(SEXE_PAR2)) then \"en\" else \"enne\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\"Agent\" || LIBSEXPAR2 || \" de catégorie D de la fonction publique\"", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\"Agent\" || LIBSEXPAR2 || \" de catégorie C de la fonction publique\"", + "type": "VTL|MD" + } + }, + { + "value": "6", + "label": { + "value": "\"Agent\" || LIBSEXPAR2 || \" de catégorie B de la fonction publique\"", + "type": "VTL|MD" + } + }, + { + "value": "7", + "label": { + "value": "\"Agent\" || LIBSEXPAR2 || \" de catégorie A de la fonction publique\"", + "type": "VTL|MD" + } + }, + { + "value": "8", + "label": { + "value": "\"Dans une autre situation, je ne sais pas\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SAL_FP_PAR2" + } + }, + { + "id": "llgrqyqg", + "componentType": "Radio", + "mandatory": false, + "page": "2.433", + "label": { + "value": "\"Dans cet emploi, \" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"votre parent\" else PRENOM_PAR2) || \" est ou était ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (STATUT_PAR2 =\"3\")", + "type": "VTL", + "bindingDependencies": [ + "EXIST_PAR2", + "RPPRENOMPAR2", + "PRENOM_PAR2", + "RPANAISPAR2", + "ANAI_PAR2", + "TRAV_PAR2", + "STATUT_PAR2" + ] + }, + "controls": [ + { + "id": "llgrqyqg-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(SAL_ENT_PAR2) or SAL_ENT_PAR2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "SAL_ENT_PAR2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "las2r756", + "page": "2.422", + "label": { + "value": "Votre autre parent", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR2", + "SEXE_PAR2", + "LIBSEXPAR2", + "SAL_ENT_PAR2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Manœuvre, ouvri\" || if (SEXE_PAR2=\"2\" or isnull(SEXE_PAR2)) then \"er\" else \"ère\" || \" spécialisé\" || LIBSEXPAR2", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Ouvri\" || if (SEXE_PAR2=\"2\" or isnull(SEXE_PAR2)) then \"er\" else \"ère\" || \" qualifié\" || LIBSEXPAR2 || \", technici\" || if (SEXE_PAR2=\"2\" or isnull(SEXE_PAR2)) then \"en\" else \"enne\" || \" d’atelier\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Employé\" || LIBSEXPAR2 || \" de bureau, de commerce, de services\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\"Agent de maîtrise (y compris administrative ou commerciale)\"", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\"Technici\" || if (SEXE_PAR2=\"2\" or isnull(SEXE_PAR2)) then \"en\" else \"enne\"", + "type": "VTL|MD" + } + }, + { + "value": "6", + "label": { + "value": "\"Ingénieur\" || LIBSEXPAR2 || \", cadre d’entreprise\"", + "type": "VTL|MD" + } + }, + { + "value": "7", + "label": { + "value": "\"Dans une autre situation, je ne sais pas\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SAL_ENT_PAR2" + } + }, + { + "id": "l1ezgxe3", + "componentType": "Input", + "mandatory": false, + "page": "2.434", + "maxLength": 20, + "label": { + "value": "\"En quelle langue, dialecte, ou patois \" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"votre autre parent\" else PRENOM_PAR2) || \" vous parlait-\" || LIBSUJETPAR2 || \", quand vous étiez enfant ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l1ezgxe3-laiaof32", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"(exemples : kabyle, breton, LSF, français, italien)\"", + "type": "VTL|MD" + } + }, + { + "id": "l1ezgxe3-laiap5v8", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le libellé de la langue recherchée et sélectionnez la dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(EXIST_PAR2 =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "EXIST_PAR2" + ] + }, + "controls": [ + { + "id": "l1ezgxe3-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(LANGUE1_PAR2) or LANGUE1_PAR2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "LANGUE1_PAR2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "las2r756", + "page": "2.422", + "label": { + "value": "Votre autre parent", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR2", + "LIBSUJETPAR2", + "LANGUE1_PAR2", + "VAL_ANNAISS" + ], + "response": { + "name": "LANGUE1_PAR2" + } + }, + { + "id": "l444xjux", + "componentType": "Input", + "mandatory": false, + "page": "2.435", + "maxLength": 20, + "label": { + "value": "\"Y-a-t-il une autre langue, dialecte ou patois ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l444xjux-l4o6tj9q", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le libellé de la langue recherchée et sélectionnez la dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(EXIST_PAR2 =\"1\") and (LANGUE1_PAR2 <> \"\" or not(isnull(LANGUE1_PAR2)))", + "type": "VTL", + "bindingDependencies": [ + "EXIST_PAR2", + "LANGUE1_PAR2" + ] + }, + "controls": [ + { + "id": "l444xjux-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(LANGUE1_PAR2)) and not(isnull(LANGUE2_PAR2)) and LANGUE2_PAR2=LANGUE1_PAR2)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Vous avez sélectionné la même langue que la précédente. Merci à vous de corriger.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "LANGUE1_PAR2", + "LANGUE2_PAR2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "las2r756", + "page": "2.422", + "label": { + "value": "Votre autre parent", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "LANGUE2_PAR2", + "VAL_ANNAISS" + ], + "response": { + "name": "LANGUE2_PAR2" + } + }, + { + "id": "kwqhjfzk", + "componentType": "Radio", + "mandatory": false, + "page": "2.436", + "label": { + "value": "\"\" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"Votre autre parent\" else PRENOM_PAR2) || \" est-\" || LIBSUJETPAR2 || \" encore en vie ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer))", + "type": "VTL", + "bindingDependencies": [ + "EXIST_PAR2", + "RPPRENOMPAR2", + "PRENOM_PAR2", + "RPANAISPAR2", + "ANAI_PAR2" + ] + }, + "controls": [ + { + "id": "kwqhjfzk-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(VIV_PAR2) or VIV_PAR2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "VIV_PAR2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "las2r756", + "page": "2.422", + "label": { + "value": "Votre autre parent", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR2", + "LIBSUJETPAR2", + "VIV_PAR2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "VIV_PAR2" + } + }, + { + "id": "kwqg35i9", + "componentType": "Input", + "mandatory": false, + "page": "2.437", + "maxLength": 4, + "label": { + "value": "\"En quelle année environ \" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"votre autre parent\" else PRENOM_PAR2) || \" est-\" || LIBSUJETPAR2 || \" décédé\" || LIBSEXPAR2 || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "EXIST_PAR2", + "RPPRENOMPAR2", + "PRENOM_PAR2", + "RPANAISPAR2", + "ANAI_PAR2", + "VIV_PAR2" + ] + }, + "controls": [ + { + "id": "kwqg35i9-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ANNEE_DC_PAR2) or ANNEE_DC_PAR2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’année attendue.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_DC_PAR2" + ] + }, + { + "id": "kwqg35i9-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_DC_PAR2)) and not(isnull(ANAI_PAR2)) and cast(ANNEE_DC_PAR2,integer) < cast(ANAI_PAR2,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année du décès de votre parent ne peut pas être antérieure à son année de naissance.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_DC_PAR2", + "ANAI_PAR2" + ] + }, + { + "id": "kwqg35i9-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(ANNEE_DC_PAR2,integer) < 1880 or cast(ANNEE_DC_PAR2,integer) > 2024)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de décès de votre parent est comprise entre 1880 et 2024.\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_DC_PAR2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "las2r756", + "page": "2.422", + "label": { + "value": "Votre autre parent", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR2", + "LIBSUJETPAR2", + "LIBSEXPAR2", + "ANNEE_DC_PAR2", + "VAL_ANNAISS" + ], + "response": { + "name": "ANNEE_DC_PAR2" + } + }, + { + "id": "kwqgffvw", + "componentType": "CheckboxGroup", + "page": "2.438", + "label": { + "value": "\"Où vit \" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"votre autre parent\" else PRENOM_PAR2) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kwqgffvw-lley7g7u", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"1\" or isnull(VIV_PAR1))", + "type": "VTL", + "bindingDependencies": [ + "EXIST_PAR2", + "RPPRENOMPAR2", + "PRENOM_PAR2", + "RPANAISPAR2", + "ANAI_PAR2", + "VIV_PAR2", + "VIV_PAR1" + ] + }, + "controls": [ + { + "id": "kwqgffvw-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false ))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "LOG_PAR2A1", + "LOG_PAR2A2", + "LOG_PAR2A3" + ] + }, + { + "id": "kwqgffvw-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(LOG_PAR2A1,false)=true and nvl(LOG_PAR2A3,false)=true) or (nvl(LOG_PAR2A2,false)=true and nvl(LOG_PAR2A3,false)=true))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Vous ne pouvez pas cocher Ailleurs et une autre réponse.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "LOG_PAR2A1", + "LOG_PAR2A3", + "LOG_PAR2A2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "las2r756", + "page": "2.422", + "label": { + "value": "Votre autre parent", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR2", + "PRENOM_PAR1", + "LOG_PAR2A1", + "LOG_PAR2A2", + "LOG_PAR2A3", + "VAL_ANNAISS" + ], + "responses": [ + { + "id": "kwqgffvw-QOP-lm0fqbdz", + "label": { + "value": "\"Avec vous, dans ce logement\"", + "type": "VTL|MD" + }, + "response": { + "name": "LOG_PAR2A1" + } + }, + { + "id": "kwqgffvw-QOP-lm0f8md7", + "label": { + "value": "\"Avec \" || (if (isnull(PRENOM_PAR1)) then \"votre autre parent\" else PRENOM_PAR1)", + "type": "VTL|MD" + }, + "response": { + "name": "LOG_PAR2A2" + } + }, + { + "id": "kwqgffvw-QOP-lm0fpbr7", + "label": { + "value": "\"Ailleurs\"", + "type": "VTL|MD" + }, + "response": { + "name": "LOG_PAR2A3" + } + } + ] + }, + { + "id": "lab6xfk9", + "componentType": "Radio", + "mandatory": false, + "page": "2.439", + "label": { + "value": "\"Où vit \" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"votre autre parent\" else PRENOM_PAR2) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "EXIST_PAR2", + "RPPRENOMPAR2", + "PRENOM_PAR2", + "RPANAISPAR2", + "ANAI_PAR2", + "VIV_PAR2", + "VIV_PAR1" + ] + }, + "controls": [ + { + "id": "lab6xfk9-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(LOG_PAR2B) or LOG_PAR2B=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "LOG_PAR2B" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "las2r756", + "page": "2.422", + "label": { + "value": "Votre autre parent", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR2", + "LOG_PAR2B", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Avec vous, dans ce logement\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Ailleurs\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "LOG_PAR2B" + } + }, + { + "id": "kwqgawqp", + "componentType": "Radio", + "mandatory": false, + "page": "2.440", + "label": { + "value": "\"\" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"Votre autre parent\" else PRENOM_PAR2) || \" vit-\" || LIBSUJETPAR2 || \" en France ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kwqgawqp-lai7elua", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Prenez en compte les frontières actuelles.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "type": "VTL", + "bindingDependencies": [ + "EXIST_PAR2", + "RPPRENOMPAR2", + "PRENOM_PAR2", + "RPANAISPAR2", + "ANAI_PAR2", + "VIV_PAR2", + "LOG_PAR2A3", + "LOG_PAR2B", + "LOG_PAR2A1", + "LOG_PAR2A2" + ] + }, + "controls": [ + { + "id": "kwqgawqp-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(FR_PAR2) or FR_PAR2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "FR_PAR2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "las2r756", + "page": "2.422", + "label": { + "value": "Votre autre parent", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR2", + "LIBSUJETPAR2", + "FR_PAR2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "FR_PAR2" + } + }, + { + "id": "l4o8co0c", + "componentType": "Input", + "mandatory": false, + "page": "2.441", + "maxLength": 20, + "label": { + "value": "\"Dans quel département vit \" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"votre autre parent\" else PRENOM_PAR2) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4o8co0c-l4o87prg", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2))", + "type": "VTL", + "bindingDependencies": [ + "EXIST_PAR2", + "RPPRENOMPAR2", + "PRENOM_PAR2", + "RPANAISPAR2", + "ANAI_PAR2", + "VIV_PAR2", + "LOG_PAR2A3", + "LOG_PAR2B", + "LOG_PAR2A1", + "LOG_PAR2A2", + "FR_PAR2" + ] + }, + "controls": [ + { + "id": "l4o8co0c-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(DEP_PAR2) or DEP_PAR2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "DEP_PAR2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "las2r756", + "page": "2.422", + "label": { + "value": "Votre autre parent", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR2", + "DEP_PAR2", + "VAL_ANNAISS" + ], + "response": { + "name": "DEP_PAR2" + } + }, + { + "id": "l4onk34z", + "componentType": "Input", + "mandatory": false, + "page": "2.442", + "maxLength": 20, + "label": { + "value": "\"Dans quelle commune vit \" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"votre autre parent\" else PRENOM_PAR2) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4onk34z-l4ondms9", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez la commune recherchée et sélectionnez la dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2))", + "type": "VTL", + "bindingDependencies": [ + "EXIST_PAR2", + "RPPRENOMPAR2", + "PRENOM_PAR2", + "RPANAISPAR2", + "ANAI_PAR2", + "VIV_PAR2", + "LOG_PAR2A3", + "LOG_PAR2B", + "LOG_PAR2A1", + "LOG_PAR2A2", + "FR_PAR2" + ] + }, + "controls": [ + { + "id": "l4onk34z-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(COM_PAR2) or COM_PAR2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "COM_PAR2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "las2r756", + "page": "2.422", + "label": { + "value": "Votre autre parent", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR2", + "COM_PAR2", + "VAL_ANNAISS" + ], + "response": { + "name": "COM_PAR2" + } + }, + { + "id": "l4o8dk7q", + "componentType": "Input", + "mandatory": false, + "page": "2.443", + "maxLength": 20, + "label": { + "value": "\"Dans quel pays vit \" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"votre autre parent\" else PRENOM_PAR2) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4o8dk7q-l4o8fiwd", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "EXIST_PAR2", + "RPPRENOMPAR2", + "PRENOM_PAR2", + "RPANAISPAR2", + "ANAI_PAR2", + "VIV_PAR2", + "LOG_PAR2A3", + "LOG_PAR2B", + "LOG_PAR2A1", + "LOG_PAR2A2", + "FR_PAR2" + ] + }, + "controls": [ + { + "id": "l4o8dk7q-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PAY_PAR2) or PAY_PAR2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PAY_PAR2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "las2r756", + "page": "2.422", + "label": { + "value": "Votre autre parent", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR2", + "PAY_PAR2", + "VAL_ANNAISS" + ], + "response": { + "name": "PAY_PAR2" + } + }, + { + "id": "l2kkc8s9", + "componentType": "Radio", + "mandatory": false, + "page": "2.444", + "label": { + "value": "\"\" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"Votre autre parent\" else PRENOM_PAR2) || \" vit-\" || LIBSUJETPAR2 || \" dans un établissement pour personnes âgées ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l2kkc8s9-l2kjzgxz", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"(EHPAD, maison de retraite, etc.)\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "type": "VTL", + "bindingDependencies": [ + "EXIST_PAR2", + "RPPRENOMPAR2", + "PRENOM_PAR2", + "RPANAISPAR2", + "ANAI_PAR2", + "VIV_PAR2", + "LOG_PAR2A3", + "LOG_PAR2B", + "LOG_PAR2A1", + "LOG_PAR2A2" + ] + }, + "controls": [ + { + "id": "l2kkc8s9-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ETAB_PAR2) or ETAB_PAR2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ETAB_PAR2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "las2r756", + "page": "2.422", + "label": { + "value": "Votre autre parent", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR2", + "LIBSUJETPAR2", + "ETAB_PAR2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "ETAB_PAR2" + } + }, + { + "id": "l1gl4054", + "componentType": "Radio", + "mandatory": false, + "page": "2.445", + "label": { + "value": "\"A quelle fréquence voyez-vous \" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"votre autre parent\" else PRENOM_PAR2) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l1gl4054-l1gkryh5", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"(en face à face)\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "type": "VTL", + "bindingDependencies": [ + "EXIST_PAR2", + "RPPRENOMPAR2", + "PRENOM_PAR2", + "RPANAISPAR2", + "ANAI_PAR2", + "VIV_PAR2", + "LOG_PAR2A3", + "LOG_PAR2B", + "LOG_PAR2A1", + "LOG_PAR2A2" + ] + }, + "controls": [ + { + "id": "l1gl4054-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(FREQ_VU_PAR2) or FREQ_VU_PAR2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "FREQ_VU_PAR2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "las2r756", + "page": "2.422", + "label": { + "value": "Votre autre parent", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR2", + "FREQ_VU_PAR2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "2", + "label": { + "value": "Une ou plusieurs fois par semaine", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Une ou plusieurs fois par mois", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Une ou plusieurs fois par an", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Plus rarement ou jamais", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "FREQ_VU_PAR2" + } + }, + { + "id": "l1ezkbsf", + "componentType": "Radio", + "mandatory": false, + "page": "2.446", + "label": { + "value": "\"A quelle fréquence communiquez-vous avec \" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"votre autre parent\" else PRENOM_PAR2) || \" ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l1ezkbsf-l1ezs1o9", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"(téléphone, mail, SMS, appel vidéo, etc.)\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "type": "VTL", + "bindingDependencies": [ + "EXIST_PAR2", + "RPPRENOMPAR2", + "PRENOM_PAR2", + "RPANAISPAR2", + "ANAI_PAR2", + "VIV_PAR2", + "LOG_PAR2A3", + "LOG_PAR2B", + "LOG_PAR2A1", + "LOG_PAR2A2" + ] + }, + "controls": [ + { + "id": "l1ezkbsf-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(FREQ_CONT_PAR2) or FREQ_CONT_PAR2=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "FREQ_CONT_PAR2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "las2r756", + "page": "2.422", + "label": { + "value": "Votre autre parent", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR2", + "FREQ_CONT_PAR2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "2", + "label": { + "value": "Une ou plusieurs fois par semaine", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "Une ou plusieurs fois par mois", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "Une ou plusieurs fois par an", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "Plus rarement ou jamais", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "FREQ_CONT_PAR2" + } + }, + { + "id": "l445itcb", + "componentType": "Radio", + "mandatory": false, + "page": "2.447", + "label": { + "value": "\"Vivez-vous à moins d’une heure de chez \" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"votre autre parent\" else PRENOM_PAR2) || \" ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "type": "VTL", + "bindingDependencies": [ + "EXIST_PAR2", + "RPPRENOMPAR2", + "PRENOM_PAR2", + "RPANAISPAR2", + "ANAI_PAR2", + "VIV_PAR2", + "LOG_PAR2A3", + "LOG_PAR2B", + "LOG_PAR2A1", + "LOG_PAR2A2" + ] + }, + "controls": [ + { + "id": "l445itcb-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PROX_EGO_PAR2) or PROX_EGO_PAR2 =\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PROX_EGO_PAR2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "las2r756", + "page": "2.422", + "label": { + "value": "Votre autre parent", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR2", + "PROX_EGO_PAR2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PROX_EGO_PAR2" + } + }, + { + "id": "l4cjeqc0", + "componentType": "Radio", + "mandatory": false, + "page": "2.448", + "label": { + "value": "\"\" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"Votre autre parent\" else PRENOM_PAR2) || \" a-t-\" || LIBSUJETPAR2 || \" d’autres enfants que vous qui vivent à moins d’une heure de chez\" || if (SEXE_PAR2=\"2\" or isnull(SEXE_PAR2)) then \" lui ?\" else \" elle ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "type": "VTL", + "bindingDependencies": [ + "EXIST_PAR2", + "RPPRENOMPAR2", + "PRENOM_PAR2", + "RPANAISPAR2", + "ANAI_PAR2", + "VIV_PAR2", + "LOG_PAR2A3", + "LOG_PAR2B", + "LOG_PAR2A1", + "LOG_PAR2A2" + ] + }, + "controls": [ + { + "id": "l4cjeqc0-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(PROX_FRAT_PAR2) or PROX_FRAT_PAR2 =\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "PROX_FRAT_PAR2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "kwqfdovw", + "page": "2.394", + "label": { + "value": "\"VIII - \" || \"VOS PARENTS, ENCORE EN VIE OU NON\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "las2r756", + "page": "2.422", + "label": { + "value": "Votre autre parent", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PAR2", + "LIBSUJETPAR2", + "SEXE_PAR2", + "PROX_FRAT_PAR2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PROX_FRAT_PAR2" + } + }, + { + "id": "lij1g3gt", + "componentType": "Sequence", + "page": "2.449", + "label": { + "value": "\"IX - \" || \"VOTRE PARCOURS DE VIE\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lij1g3gt-llf2bmj4", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", nous allons maintenant vous interroger sur votre parcours de vie.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "true", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "lij1g3gt", + "page": "2.449", + "label": { + "value": "\"IX - \" || \"VOTRE PARCOURS DE VIE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "VAL_ANNAISS" + ] + }, + { + "id": "l473kp51", + "componentType": "InputNumber", + "mandatory": false, + "page": "2.450", + "min": 0, + "max": 20, + "decimals": 0, + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", combien de frères avez-vous eus ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l473kp51-l4omms3t", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"(vivants ou non, y compris vos demi-frères)\"", + "type": "VTL|MD" + } + }, + { + "id": "l473kp51-l8m20psg", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Si aucun, notez 0.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "true", + "type": "VTL" + }, + "controls": [ + { + "id": "l473kp51-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(NB_FRERES)) and (0>NB_FRERES or 20NB_FRERES)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "l473kp51-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NB_FRERES) or NB_FRERES=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre réponse.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NB_FRERES" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lij1g3gt", + "page": "2.449", + "label": { + "value": "\"IX - \" || \"VOTRE PARCOURS DE VIE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "NB_FRERES", + "VAL_ANNAISS" + ], + "response": { + "name": "NB_FRERES" + } + }, + { + "id": "l5ikk5zq", + "componentType": "Radio", + "mandatory": false, + "page": "2.451", + "label": { + "value": "\"Est-il encore en vie ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(NB_FRERES = 1)", + "type": "VTL", + "bindingDependencies": [ + "NB_FRERES" + ] + }, + "controls": [ + { + "id": "l5ikk5zq-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NB_FRERES_VIV1) or NB_FRERES_VIV1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NB_FRERES_VIV1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lij1g3gt", + "page": "2.449", + "label": { + "value": "\"IX - \" || \"VOTRE PARCOURS DE VIE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "NB_FRERES_VIV1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "NB_FRERES_VIV1" + } + }, + { + "id": "l4740wd1", + "componentType": "InputNumber", + "mandatory": false, + "page": "2.452", + "min": 0, + "max": 20, + "decimals": 0, + "label": { + "value": "\"Combien sont encore en vie ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(NB_FRERES > 1)", + "type": "VTL", + "bindingDependencies": [ + "NB_FRERES" + ] + }, + "controls": [ + { + "id": "l4740wd1-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(NB_FRERES_VIV)) and (0>NB_FRERES_VIV or 20NB_FRERES_VIV)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "l4740wd1-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NB_FRERES_VIV) or NB_FRERES_VIV=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre réponse.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NB_FRERES_VIV" + ] + }, + { + "id": "l4740wd1-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(nvl(NB_FRERES_VIV,0) > nvl(NB_FRERES,0))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre de frères vivants ne peut pas être supérieur au nombre total de frères.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NB_FRERES_VIV", + "NB_FRERES" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lij1g3gt", + "page": "2.449", + "label": { + "value": "\"IX - \" || \"VOTRE PARCOURS DE VIE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "NB_FRERES_VIV", + "VAL_ANNAISS" + ], + "response": { + "name": "NB_FRERES_VIV" + } + }, + { + "id": "l4742c2v", + "componentType": "InputNumber", + "mandatory": false, + "page": "2.453", + "min": 0, + "max": 20, + "decimals": 0, + "label": { + "value": "\"Combien de soeurs avez-vous eues ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4742c2v-l4omj0xx", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"(vivantes ou non, y compris vos demi-sœurs)\"", + "type": "VTL|MD" + } + }, + { + "id": "l4742c2v-l8m2azyh", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Si aucune, notez 0.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "true", + "type": "VTL" + }, + "controls": [ + { + "id": "l4742c2v-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(NB_SOEURS)) and (0>NB_SOEURS or 20NB_SOEURS)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "l4742c2v-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NB_SOEURS) or NB_SOEURS=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre réponse.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NB_SOEURS" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lij1g3gt", + "page": "2.449", + "label": { + "value": "\"IX - \" || \"VOTRE PARCOURS DE VIE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "NB_SOEURS", + "VAL_ANNAISS" + ], + "response": { + "name": "NB_SOEURS" + } + }, + { + "id": "l5ikyrbc", + "componentType": "Radio", + "mandatory": false, + "page": "2.454", + "label": { + "value": "\"Est-elle encore en vie ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(NB_SOEURS = 1)", + "type": "VTL", + "bindingDependencies": [ + "NB_SOEURS" + ] + }, + "controls": [ + { + "id": "l5ikyrbc-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NB_SOEURS_VIV1) or NB_SOEURS_VIV1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NB_SOEURS_VIV1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lij1g3gt", + "page": "2.449", + "label": { + "value": "\"IX - \" || \"VOTRE PARCOURS DE VIE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "NB_SOEURS_VIV1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "NB_SOEURS_VIV1" + } + }, + { + "id": "l473w273", + "componentType": "InputNumber", + "mandatory": false, + "page": "2.455", + "min": 0, + "max": 20, + "decimals": 0, + "label": { + "value": "\"Combien sont encore en vie ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(NB_SOEURS > 1)", + "type": "VTL", + "bindingDependencies": [ + "NB_SOEURS" + ] + }, + "controls": [ + { + "id": "l473w273-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(NB_SOEURS_VIV)) and (0>NB_SOEURS_VIV or 20NB_SOEURS_VIV)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "l473w273-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(NB_SOEURS_VIV) or NB_SOEURS_VIV=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre réponse.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NB_SOEURS_VIV" + ] + }, + { + "id": "l473w273-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(nvl(NB_SOEURS_VIV,0) > nvl(NB_SOEURS,0))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre de soeurs vivantes ne peut pas être supérieur au nombre total de soeurs.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "NB_SOEURS_VIV", + "NB_SOEURS" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lij1g3gt", + "page": "2.449", + "label": { + "value": "\"IX - \" || \"VOTRE PARCOURS DE VIE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "NB_SOEURS_VIV", + "VAL_ANNAISS" + ], + "response": { + "name": "NB_SOEURS_VIV" + } + }, + { + "id": "l1f5th3i", + "componentType": "InputNumber", + "mandatory": false, + "page": "2.456", + "min": 0, + "max": 100, + "decimals": 0, + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", à quel âge êtes-vous parti\" || (if (TYPE_QUEST=\"2\") then \"e\" else \"\") || \" de chez \" || (if (EXIST_PAR2= \"2\") then \"votre parent\" else \"vos parents\") || \" pour la première fois ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l1f5th3i-l1f5lf8v", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Ne comptez pas la pension ou l’internat comme un départ.\"", + "type": "VTL|MD" + } + }, + { + "id": "l1f5th3i-l4s7ngqv", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Indiquez 99 ans si vous n’êtes jamais parti\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \".\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "true", + "type": "VTL" + }, + "controls": [ + { + "id": "l1f5th3i-format-borne-inf-sup", + "typeOfControl": "FORMAT", + "criticality": "ERROR", + "control": { + "value": "not(not(isnull(AG_DEP_PARENT)) and (0>AG_DEP_PARENT or 100AG_DEP_PARENT)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"", + "type": "VTL|MD" + } + }, + { + "id": "l1f5th3i-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(AG_DEP_PARENT) or AG_DEP_PARENT=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’âge attendu.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AG_DEP_PARENT" + ] + }, + { + "id": "l1f5th3i-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(AG_DEP_PARENT <> 99 and not(isnull(AG_DEP_PARENT)) and not(isnull(AGE)) and cast(AG_DEP_PARENT,integer) > cast(AGE,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’âge de départ de chez vos parents ne peut pas être supérieur à votre âge.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AG_DEP_PARENT", + "AGE" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lij1g3gt", + "page": "2.449", + "label": { + "value": "\"IX - \" || \"VOTRE PARCOURS DE VIE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TYPE_QUEST", + "PRENOMREP", + "EXIST_PAR2", + "AG_DEP_PARENT", + "VAL_ANNAISS" + ], + "unit": "ans", + "response": { + "name": "AG_DEP_PARENT" + } + }, + { + "id": "l1f61fa3", + "componentType": "CheckboxGroup", + "page": "2.457", + "label": { + "value": "\"Durant votre jeunesse, jusqu’à vos 18 ans, avec qui avez-vous vécu ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l1f61fa3-l1f693hk", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Décrivez toutes les situations que vous avez connues.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "true", + "type": "VTL" + }, + "controls": [ + { + "id": "l1f61fa3-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(VECU_JEUNESSE1, false) = false and nvl(VECU_JEUNESSE2, false) = false and nvl(VECU_JEUNESSE3, false) = false and nvl(VECU_JEUNESSE4, false) = false and nvl(VECU_JEUNESSE5, false) = false and nvl(VECU_JEUNESSE6, false) = false and nvl(VECU_JEUNESSE7, false) = false ))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "VECU_JEUNESSE1", + "VECU_JEUNESSE2", + "VECU_JEUNESSE3", + "VECU_JEUNESSE4", + "VECU_JEUNESSE5", + "VECU_JEUNESSE6", + "VECU_JEUNESSE7" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lij1g3gt", + "page": "2.449", + "label": { + "value": "\"IX - \" || \"VOTRE PARCOURS DE VIE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "VECU_JEUNESSE1", + "VECU_JEUNESSE2", + "VECU_JEUNESSE3", + "VECU_JEUNESSE4", + "VECU_JEUNESSE5", + "VECU_JEUNESSE6", + "VECU_JEUNESSE7", + "VAL_ANNAISS" + ], + "responses": [ + { + "id": "l1f61fa3-QOP-llevctvx", + "label": { + "value": "Vos deux parents en couple", + "type": "VTL|MD" + }, + "response": { + "name": "VECU_JEUNESSE1" + } + }, + { + "id": "l1f61fa3-QOP-llevmlms", + "label": { + "value": "Votre mère seule", + "type": "VTL|MD" + }, + "response": { + "name": "VECU_JEUNESSE2" + } + }, + { + "id": "l1f61fa3-QOP-llevhkg9", + "label": { + "value": "Votre père seul", + "type": "VTL|MD" + }, + "response": { + "name": "VECU_JEUNESSE3" + } + }, + { + "id": "l1f61fa3-QOP-llevc737", + "label": { + "value": "Votre père et son/sa conjoint(e)", + "type": "VTL|MD" + }, + "response": { + "name": "VECU_JEUNESSE4" + } + }, + { + "id": "l1f61fa3-QOP-llevfk5v", + "label": { + "value": "Votre mère et son/sa conjoint(e)", + "type": "VTL|MD" + }, + "response": { + "name": "VECU_JEUNESSE5" + } + }, + { + "id": "l1f61fa3-QOP-llevqbyz", + "label": { + "value": "Une autre personne de votre famille", + "type": "VTL|MD" + }, + "response": { + "name": "VECU_JEUNESSE6" + } + }, + { + "id": "l1f61fa3-QOP-lleve2gb", + "label": { + "value": "En dehors de votre famille", + "type": "VTL|MD" + }, + "response": { + "name": "VECU_JEUNESSE7" + } + } + ] + }, + { + "id": "l43ttd47", + "componentType": "Radio", + "mandatory": false, + "page": "2.458", + "label": { + "value": "\"Avez-vous vécu sans vos parents, à la suite d’une décision du juge, de l’ASE ou de la DDASS (placement en foyer, famille d’accueil, chez une personne de la famille ou autre) ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "true", + "type": "VTL" + }, + "controls": [ + { + "id": "l43ttd47-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(VECU_PLACE) or VECU_PLACE=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "VECU_PLACE" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lij1g3gt", + "page": "2.449", + "label": { + "value": "\"IX - \" || \"VOTRE PARCOURS DE VIE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "VECU_PLACE", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "VECU_PLACE" + } + }, + { + "id": "l43u439h", + "componentType": "CheckboxGroup", + "page": "2.459", + "label": { + "value": "\"Quel était le type de placement ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l43u439h-l43u116f", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(VECU_PLACE =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "VECU_PLACE" + ] + }, + "controls": [ + { + "id": "l43u439h-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(TYP_PLACE1, false) = false and nvl(TYP_PLACE2, false) = false and nvl(TYP_PLACE3, false) = false and nvl(TYP_PLACE4, false) = false))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "TYP_PLACE1", + "TYP_PLACE2", + "TYP_PLACE3", + "TYP_PLACE4" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lij1g3gt", + "page": "2.449", + "label": { + "value": "\"IX - \" || \"VOTRE PARCOURS DE VIE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TYP_PLACE1", + "TYP_PLACE2", + "TYP_PLACE3", + "TYP_PLACE4", + "VAL_ANNAISS" + ], + "responses": [ + { + "id": "l43u439h-QOP-l43tpzt7", + "label": { + "value": "\"Placement en foyer\"", + "type": "VTL|MD" + }, + "response": { + "name": "TYP_PLACE1" + } + }, + { + "id": "l43u439h-QOP-l43tpqco", + "label": { + "value": "\"Placement en famille d’’accueil\"", + "type": "VTL|MD" + }, + "response": { + "name": "TYP_PLACE2" + } + }, + { + "id": "l43u439h-QOP-l43tov3w", + "label": { + "value": "\"Placement chez une personne de la famille\"", + "type": "VTL|MD" + }, + "response": { + "name": "TYP_PLACE3" + } + }, + { + "id": "l43u439h-QOP-l43trgyp", + "label": { + "value": "\"Autre type de placement\"", + "type": "VTL|MD" + }, + "response": { + "name": "TYP_PLACE4" + } + } + ] + }, + { + "id": "l1f65zkh", + "componentType": "Radio", + "mandatory": false, + "page": "2.460", + "label": { + "value": "\"Au cours de votre vie, avez-vous été hébergé\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" dans un centre d’hébergement, un hôtel social, un centre d’accueil pour demandeurs d’asile ou réfugiés, ou avez-vous vécu à la rue ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "true", + "type": "VTL" + }, + "controls": [ + { + "id": "l1f65zkh-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(HEBERG) or HEBERG=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "HEBERG" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lij1g3gt", + "page": "2.449", + "label": { + "value": "\"IX - \" || \"VOTRE PARCOURS DE VIE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TYPE_QUEST", + "HEBERG", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "HEBERG" + } + }, + { + "id": "l1g3yspz", + "componentType": "Sequence", + "page": "2.461", + "label": { + "value": "\"X - \" || \"VOS ETUDES ET VOTRE VIE PROFESSIONNELLE\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l1g3yspz-l1g3mygg", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", nous allons terminer le questionnaire en abordant vos études et votre vie professionnelle.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "true", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "l1g3yspz", + "page": "2.461", + "label": { + "value": "\"X - \" || \"VOS ETUDES ET VOTRE VIE PROFESSIONNELLE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "VAL_ANNAISS" + ] + }, + { + "id": "l1g3unwh", + "componentType": "Radio", + "mandatory": false, + "page": "2.462", + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", avez-vous terminé vos études intiales ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l1g3unwh-lletj5dq", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Ne comptez ni les années de césure ni les interruptions d’études de moins d’un an comme un arrêt.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "true", + "type": "VTL" + }, + "controls": [ + { + "id": "l1g3unwh-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(FINETU) or FINETU=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "FINETU" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "l1g3yspz", + "page": "2.461", + "label": { + "value": "\"X - \" || \"VOS ETUDES ET VOTRE VIE PROFESSIONNELLE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "FINETU", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "FINETU" + } + }, + { + "id": "l1g3yk6q", + "componentType": "Input", + "mandatory": false, + "page": "2.463", + "maxLength": 4, + "label": { + "value": "\"En quelle année les avez-vous terminées ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(FINETU=\"1\")", + "type": "VTL", + "bindingDependencies": [ + "FINETU" + ] + }, + "controls": [ + { + "id": "l1g3yk6q-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_FINETU)) and not(isnull(ANAIS)) and cast(ANNEE_FINETU,integer) < cast(ANAIS,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de fin d’études ne peut pas être antérieure à votre année de naissance.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_FINETU", + "ANAIS" + ] + }, + { + "id": "l1g3yk6q-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANAIS)) and not(isnull(ANNEE_FINETU)) and (cast(ANAIS,integer) + 12 > cast(ANNEE_FINETU,integer)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Il semble y avoir peu d’écart entre votre année de naissance et votre année de fin d’études, est-ce que vous confirmez ?\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAIS", + "ANNEE_FINETU" + ] + }, + { + "id": "l1g3yk6q-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ANNEE_FINETU) or ANNEE_FINETU=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’année attendue.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_FINETU" + ] + }, + { + "id": "l1g3yk6q-CI-3", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(ANNEE_FINETU,integer) < 1920 or cast(ANNEE_FINETU,integer) > 2024)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de fin d’études est comprise entre 1920 et 2024.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_FINETU" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "l1g3yspz", + "page": "2.461", + "label": { + "value": "\"X - \" || \"VOS ETUDES ET VOTRE VIE PROFESSIONNELLE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "ANNEE_FINETU", + "VAL_ANNAISS" + ], + "response": { + "name": "ANNEE_FINETU" + } + }, + { + "id": "l1g7pgbn", + "componentType": "Radio", + "mandatory": false, + "page": "2.464", + "label": { + "value": "\"Avez-vous déjà travaillé pendant au moins trois mois de suite, y compris en apprentissage ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "true", + "type": "VTL" + }, + "controls": [ + { + "id": "l1g7pgbn-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(DEJATRAV) or DEJATRAV=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "DEJATRAV" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "l1g3yspz", + "page": "2.461", + "label": { + "value": "\"X - \" || \"VOS ETUDES ET VOTRE VIE PROFESSIONNELLE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "DEJATRAV", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "DEJATRAV" + } + }, + { + "id": "l1g4pid1", + "componentType": "Input", + "mandatory": false, + "page": "2.465", + "maxLength": 4, + "label": { + "value": "\"En quelle année avez-vous travaillé pour la première fois ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(isnull(DEJATRAV) or DEJATRAV =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "DEJATRAV" + ] + }, + "controls": [ + { + "id": "l1g4pid1-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ANNEE_EMPLOI1) or ANNEE_EMPLOI1=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’année attendue.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_EMPLOI1" + ] + }, + { + "id": "l1g4pid1-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_EMPLOI1)) and not(isnull(ANAIS)) and cast(ANNEE_EMPLOI1,integer) < cast(ANAIS,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de votre premier emploi ne peut pas être antérieure à votre année de naissance.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_EMPLOI1", + "ANAIS" + ] + }, + { + "id": "l1g4pid1-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANAIS)) and not(isnull(ANNEE_EMPLOI1)) and (cast(ANAIS,integer) + 14 > cast(ANNEE_EMPLOI1,integer)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Il semble y avoir peu d’écart entre votre année de naissance et celle de votre premier emploi, est-ce que vous confirmez ?\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANAIS", + "ANNEE_EMPLOI1" + ] + }, + { + "id": "l1g4pid1-CI-3", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(ANNEE_EMPLOI1,integer) < 1920 or cast(ANNEE_EMPLOI1,integer) > 2024)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de votre premier emploi est comprise entre 1920 et 2024.\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_EMPLOI1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "l1g3yspz", + "page": "2.461", + "label": { + "value": "\"X - \" || \"VOS ETUDES ET VOTRE VIE PROFESSIONNELLE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "ANNEE_EMPLOI1", + "VAL_ANNAISS" + ], + "response": { + "name": "ANNEE_EMPLOI1" + } + }, + { + "id": "l445x7tq", + "componentType": "Radio", + "mandatory": false, + "page": "2.466", + "label": { + "value": "\"Travaillez-vous actuellement ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(isnull(DEJATRAV) or DEJATRAV =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "DEJATRAV" + ] + }, + "controls": [ + { + "id": "l445x7tq-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(TRAVACT) or TRAVACT=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "TRAVACT" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "l1g3yspz", + "page": "2.461", + "label": { + "value": "\"X - \" || \"VOS ETUDES ET VOTRE VIE PROFESSIONNELLE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TRAVACT", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "TRAVACT" + } + }, + { + "id": "l1g7iu0j", + "componentType": "Input", + "mandatory": false, + "page": "2.467", + "maxLength": 4, + "label": { + "value": "\"En quelle année avez-vous arrêté ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(TRAVACT=\"2\")", + "type": "VTL", + "bindingDependencies": [ + "TRAVACT" + ] + }, + "controls": [ + { + "id": "l1g7iu0j-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(isnull(ANNEE_FINEMP) or ANNEE_FINEMP=\"\")", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer l’année attendue.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_FINEMP" + ] + }, + { + "id": "l1g7iu0j-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_FINEMP)) and not(isnull(ANAIS)) and cast(ANNEE_FINEMP,integer) < cast(ANAIS,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de cessation d’activité ne peut pas être antérieure à votre année de naissance.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_FINEMP", + "ANAIS" + ] + }, + { + "id": "l1g7iu0j-CI-2", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(cast(ANNEE_FINEMP,integer) < 1920 or cast(ANNEE_FINEMP,integer) > 2024)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de cessation d’activité est comprise entre 1920 et 2024.\" ", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_FINEMP" + ] + }, + { + "id": "l1g7iu0j-CI-3", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(not(isnull(ANNEE_FINEMP)) and not(isnull(ANNEE_EMPLOI1)) and cast(ANNEE_FINEMP,integer) < cast(ANNEE_EMPLOI1,integer))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"L’année de cessation d’activité ne peut pas être antérieure à l’année de votre premier emploi.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "ANNEE_FINEMP", + "ANNEE_EMPLOI1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "l1g3yspz", + "page": "2.461", + "label": { + "value": "\"X - \" || \"VOS ETUDES ET VOTRE VIE PROFESSIONNELLE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "ANNEE_FINEMP", + "VAL_ANNAISS" + ], + "response": { + "name": "ANNEE_FINEMP" + } + }, + { + "id": "l1g7vwo6", + "componentType": "Radio", + "mandatory": false, + "page": "2.468", + "label": { + "value": "\"Depuis votre premier emploi, avez-vous toujours travaillé sans interruption ? \"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(isnull(DEJATRAV) or DEJATRAV =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "DEJATRAV" + ] + }, + "controls": [ + { + "id": "l1g7vwo6-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(INTER_TRAV1=\"\" or isnull(INTER_TRAV1))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "INTER_TRAV1" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "l1g3yspz", + "page": "2.461", + "label": { + "value": "\"X - \" || \"VOS ETUDES ET VOTRE VIE PROFESSIONNELLE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "INTER_TRAV1", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "INTER_TRAV1" + } + }, + { + "id": "lletbq7t", + "componentType": "Radio", + "mandatory": false, + "page": "2.469", + "label": { + "value": "\"Depuis votre premier emploi, avez-vous eu une ou des périodes de chômage de plus de six mois ? \"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(isnull(DEJATRAV) or DEJATRAV =\"1\") and (INTER_TRAV1 =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "DEJATRAV", + "INTER_TRAV1" + ] + }, + "controls": [ + { + "id": "lletbq7t-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(INTER_TRAV2=\"\" or isnull(INTER_TRAV2))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "INTER_TRAV2" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "l1g3yspz", + "page": "2.461", + "label": { + "value": "\"X - \" || \"VOS ETUDES ET VOTRE VIE PROFESSIONNELLE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "INTER_TRAV2", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "INTER_TRAV2" + } + }, + { + "id": "lletqevy", + "componentType": "Radio", + "mandatory": false, + "page": "2.470", + "label": { + "value": "\"Depuis votre premier emploi, avez-vous eu d’autres interruptions de plus de six mois ? \"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lletqevy-lletg3z8", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "if TYPE_QUEST=\"2\" then \"(hors congés maternité)\" else \"\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(isnull(DEJATRAV) or DEJATRAV =\"1\") and (INTER_TRAV1 =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "DEJATRAV", + "INTER_TRAV1" + ] + }, + "controls": [ + { + "id": "lletqevy-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not(INTER_TRAV3=\"\" or isnull(INTER_TRAV3))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d’indiquer votre choix.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "INTER_TRAV3" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "l1g3yspz", + "page": "2.461", + "label": { + "value": "\"X - \" || \"VOS ETUDES ET VOTRE VIE PROFESSIONNELLE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TYPE_QUEST", + "INTER_TRAV3", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "INTER_TRAV3" + } + }, + { + "id": "ljwxkrnl", + "componentType": "Radio", + "mandatory": false, + "page": "2.471", + "label": { + "value": "\"Pouvez-vous indiquer qui a répondu au questionnaire ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "true", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "l1g3yspz", + "page": "2.461", + "label": { + "value": "\"X - \" || \"VOS ETUDES ET VOTRE VIE PROFESSIONNELLE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "PRENOM_FIN", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Vous, \" || nvl(PRENOMREP,\"Madame/Monsieur\")", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Une autre personne\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PRENOM_FIN" + } + }, + { + "id": "lamjnyx4", + "componentType": "Input", + "mandatory": false, + "page": "2.472", + "maxLength": 249, + "label": { + "value": "\"Quel est votre prénom ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(PRENOM_FIN =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "PRENOM_FIN" + ] + }, + "hierarchy": { + "sequence": { + "id": "l1g3yspz", + "page": "2.461", + "label": { + "value": "\"X - \" || \"VOS ETUDES ET VOTRE VIE PROFESSIONNELLE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PROX", + "VAL_ANNAISS" + ], + "response": { + "name": "PRENOM_PROX" + } + }, + { + "id": "lm4vpka3", + "componentType": "Sequence", + "page": "2.473", + "label": { + "value": "\"XI - \" || \"AVIS SUR LE QUESTIONNAIRE\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lm4vpka3-lm50h6kg", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Nous vous remercions vivement de votre réponse. Nous vous proposons dans cette dernière partie, de donner votre avis sur ce questionnaire.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "true", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "lm4vpka3", + "page": "2.473", + "label": { + "value": "\"XI - \" || \"AVIS SUR LE QUESTIONNAIRE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "VAL_ANNAISS" + ] + }, + { + "id": "lm4w39kw", + "componentType": "Radio", + "mandatory": false, + "page": "2.474", + "label": { + "value": "nvl(PRENOMREP,\"Madame/Monsieur\") || \", vous venez de répondre à l’enquête Familles 2024. Nous vous en remercions et aimerions bénéficier de votre avis pour améliorer cette enquête en vue de sa réédition en 2025. Acceptez-vous de répondre à quelques questions ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(isnull(PRENOM_FIN) or PRENOM_FIN =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "PRENOM_FIN" + ] + }, + "hierarchy": { + "sequence": { + "id": "lm4vpka3", + "page": "2.473", + "label": { + "value": "\"XI - \" || \"AVIS SUR LE QUESTIONNAIRE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOMREP", + "TYPE_QUEST", + "AVIS_FILTRE", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Non, mais je suis \" || (if (TYPE_QUEST=\"1\") then \"prêt\" else \"prête\") || \" à vous donner mon avis sur cette enquête\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Non, je souhaite valider mon enquête et vous envoyer mes réponses\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "AVIS_FILTRE" + } + }, + { + "id": "lnbss8ix", + "componentType": "Radio", + "mandatory": false, + "page": "2.475", + "label": { + "value": "nvl(PRENOM_PROX,\"Madame/Monsieur\") || \", vous venez de répondre à l’enquête Familles 2024. Nous vous en remercions et aimerions bénéficier de votre avis pour améliorer cette enquête en vue de sa réédition en 2025. Acceptez-vous de répondre à quelques questions ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(PRENOM_FIN =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "PRENOM_FIN" + ] + }, + "hierarchy": { + "sequence": { + "id": "lm4vpka3", + "page": "2.473", + "label": { + "value": "\"XI - \" || \"AVIS SUR LE QUESTIONNAIRE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "PRENOM_PROX", + "TYPE_QUEST", + "AVIS_FILTRE_P", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Non, mais je suis \" || (if (TYPE_QUEST=\"1\") then \"prêt\" else \"prête\") || \" à vous donner mon avis sur cette enquête\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Non, je souhaite valider mon enquête et vous envoyer mes réponses\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "AVIS_FILTRE_P" + } + }, + { + "id": "lm4vxp7a", + "componentType": "Textarea", + "mandatory": false, + "page": "2.476", + "maxLength": 1500, + "label": { + "value": "\"Dans ce cas, pouvez-vous indiquer vos remarques et vos suggestions d’amélioration ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(AVIS_FILTRE =\"2\" or AVIS_FILTRE_P =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "AVIS_FILTRE", + "AVIS_FILTRE_P" + ] + }, + "hierarchy": { + "sequence": { + "id": "lm4vpka3", + "page": "2.473", + "label": { + "value": "\"XI - \" || \"AVIS SUR LE QUESTIONNAIRE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "AVIS_RMQ", + "VAL_ANNAISS" + ], + "response": { + "name": "AVIS_RMQ" + } + }, + { + "id": "lm4vudcf", + "componentType": "CheckboxGroup", + "page": "2.477", + "label": { + "value": "\"Pour quelle(s) raison(s) avez-vous accepté de répondre à cette enquête ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lm4vudcf-lm4wbzcj", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "AVIS_FILTRE", + "AVIS_FILTRE_P" + ] + }, + "hierarchy": { + "sequence": { + "id": "lm4vpka3", + "page": "2.473", + "label": { + "value": "\"XI - \" || \"AVIS SUR LE QUESTIONNAIRE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TYPE_QUEST", + "AVIS_RAISON1", + "AVIS_RAISON2", + "AVIS_RAISON3", + "AVIS_RAISON4", + "AVIS_RAISON5", + "AVIS_RAISON6", + "VAL_ANNAISS" + ], + "responses": [ + { + "id": "lm4vudcf-QOP-ln90n9fq", + "label": { + "value": "\"Le sujet m’intéresse\"", + "type": "VTL|MD" + }, + "response": { + "name": "AVIS_RAISON1" + } + }, + { + "id": "lm4vudcf-QOP-ln90ubso", + "label": { + "value": "\"C’est une enquête obligatoire\"", + "type": "VTL|MD" + }, + "response": { + "name": "AVIS_RAISON2" + } + }, + { + "id": "lm4vudcf-QOP-ln913d78", + "label": { + "value": "\"La notice donnée par l’agent recenseur m’a incité\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" à le faire\"", + "type": "VTL|MD" + }, + "response": { + "name": "AVIS_RAISON3" + } + }, + { + "id": "lm4vudcf-QOP-ln90m9r7", + "label": { + "value": "\"L’agent recenseur m’a incité\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" à le faire\"", + "type": "VTL|MD" + }, + "response": { + "name": "AVIS_RAISON4" + } + }, + { + "id": "lm4vudcf-QOP-ln90xj95", + "label": { + "value": "\"La communication de la commune sur l’enquête m’a incité\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" à le faire\"", + "type": "VTL|MD" + }, + "response": { + "name": "AVIS_RAISON5" + } + }, + { + "id": "lm4vudcf-QOP-ln911lw0", + "label": { + "value": "\"Pour une autre raison\"", + "type": "VTL|MD" + }, + "response": { + "name": "AVIS_RAISON6" + } + } + ] + }, + { + "id": "lmrsfyuh", + "componentType": "Radio", + "mandatory": false, + "page": "2.478", + "label": { + "value": "\"L’agent recenseur vous-a-t-il parlé de l’enquête Familles ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "AVIS_FILTRE", + "AVIS_FILTRE_P" + ] + }, + "hierarchy": { + "sequence": { + "id": "lm4vpka3", + "page": "2.473", + "label": { + "value": "\"XI - \" || \"AVIS SUR LE QUESTIONNAIRE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "AVIS_AR", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Non\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Sans objet, je n’ai pas vu l’agent recenseur\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "AVIS_AR" + } + }, + { + "id": "lmrscuvs", + "componentType": "Radio", + "mandatory": false, + "page": "2.479", + "label": { + "value": "\"La notice Enquête Familles qui vous a été remise vous a-t-elle été utile ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "AVIS_FILTRE", + "AVIS_FILTRE_P" + ] + }, + "hierarchy": { + "sequence": { + "id": "lm4vpka3", + "page": "2.473", + "label": { + "value": "\"XI - \" || \"AVIS SUR LE QUESTIONNAIRE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "AVIS_NOTICE", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Non\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Sans objet, je n’ai pas eu ou lu la notice\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "AVIS_NOTICE" + } + }, + { + "id": "lmrssoql", + "componentType": "Textarea", + "mandatory": false, + "page": "2.480", + "maxLength": 1500, + "label": { + "value": "\"Pouvez-vous préciser les informations que vous auriez aimé y trouver ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\") and (AVIS_NOTICE =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "AVIS_FILTRE", + "AVIS_FILTRE_P", + "AVIS_NOTICE" + ] + }, + "hierarchy": { + "sequence": { + "id": "lm4vpka3", + "page": "2.473", + "label": { + "value": "\"XI - \" || \"AVIS SUR LE QUESTIONNAIRE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "AVIS_RAIS_NOTICE", + "VAL_ANNAISS" + ], + "response": { + "name": "AVIS_RAIS_NOTICE" + } + }, + { + "id": "lmrtsn5f", + "componentType": "Radio", + "mandatory": false, + "page": "2.481", + "label": { + "value": "\"Avez-vous consulté la page internet sur insee.fr qui présente l’Enquête Familles (Accueil > Services > Répondre à une enquête de l’Insee > Enquêtes auprès des particuliers > Présentation des enquêtes auprès des particuliers > Enquête Familles 2024) (https://www.insee.fr/fr/information/6659341) ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "AVIS_FILTRE", + "AVIS_FILTRE_P" + ] + }, + "hierarchy": { + "sequence": { + "id": "lm4vpka3", + "page": "2.473", + "label": { + "value": "\"XI - \" || \"AVIS SUR LE QUESTIONNAIRE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "AVIS_SITE_NET", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui, cette page m’a donné toutes les informations nécessaires\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Oui, mais cette page n’était pas assez complète, il manquait des informations\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Non, je n’ai pas consulté cette page\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "AVIS_SITE_NET" + } + }, + { + "id": "lmrtt1a2", + "componentType": "Textarea", + "mandatory": false, + "page": "2.482", + "maxLength": 1500, + "label": { + "value": "\"Pouvez-vous préciser les informations que vous auriez aimé y trouver ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\") and (AVIS_SITE_NET =\"2\")", + "type": "VTL", + "bindingDependencies": [ + "AVIS_FILTRE", + "AVIS_FILTRE_P", + "AVIS_SITE_NET" + ] + }, + "hierarchy": { + "sequence": { + "id": "lm4vpka3", + "page": "2.473", + "label": { + "value": "\"XI - \" || \"AVIS SUR LE QUESTIONNAIRE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "AVIS_RAIS_SITE", + "VAL_ANNAISS" + ], + "response": { + "name": "AVIS_RAIS_SITE" + } + }, + { + "id": "ln912ymy", + "componentType": "Radio", + "mandatory": false, + "page": "2.483", + "label": { + "value": "\"Qui a reçu le mail vous invitant à répondre à l’enquête Familles ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "AVIS_FILTRE", + "AVIS_FILTRE_P" + ] + }, + "hierarchy": { + "sequence": { + "id": "lm4vpka3", + "page": "2.473", + "label": { + "value": "\"XI - \" || \"AVIS SUR LE QUESTIONNAIRE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "AVIS_MAIL", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"J’ai reçu le mail\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Une autre personne l’a reçu et me l’a transmis\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Je n’ai pas reçu le mail\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\"Je ne me souviens plus, je ne sais pas\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "AVIS_MAIL" + } + }, + { + "id": "ln919mtn", + "componentType": "CheckboxGroup", + "page": "2.484", + "label": { + "value": "\"Sur quel(s) support(s) avez-vous répondu à l’enquête ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "ln919mtn-lna2ddml", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "AVIS_FILTRE", + "AVIS_FILTRE_P" + ] + }, + "hierarchy": { + "sequence": { + "id": "lm4vpka3", + "page": "2.473", + "label": { + "value": "\"XI - \" || \"AVIS SUR LE QUESTIONNAIRE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "AVIS_SUPPORT1", + "AVIS_SUPPORT2", + "AVIS_SUPPORT3", + "VAL_ANNAISS" + ], + "responses": [ + { + "id": "ln919mtn-QOP-lna3guyv", + "label": { + "value": "\"Sur un smartphone\"", + "type": "VTL|MD" + }, + "response": { + "name": "AVIS_SUPPORT1" + } + }, + { + "id": "ln919mtn-QOP-lna3mhap", + "label": { + "value": "\"Sur une tablette\"", + "type": "VTL|MD" + }, + "response": { + "name": "AVIS_SUPPORT2" + } + }, + { + "id": "ln919mtn-QOP-lna3ccqm", + "label": { + "value": "\"Sur un ordinateur\"", + "type": "VTL|MD" + }, + "response": { + "name": "AVIS_SUPPORT3" + } + } + ] + }, + { + "id": "lna2b92s", + "componentType": "Radio", + "mandatory": false, + "page": "2.485", + "label": { + "value": "\"Auriez-vous préféré répondre avec un enquêteur par téléphone ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "AVIS_FILTRE", + "AVIS_FILTRE_P" + ] + }, + "hierarchy": { + "sequence": { + "id": "lm4vpka3", + "page": "2.473", + "label": { + "value": "\"XI - \" || \"AVIS SUR LE QUESTIONNAIRE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "AVIS_TEL", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui\"", + "type": "VTL|MD" + } + }, + { + "value": "2\"", + "label": { + "value": "\"Non\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Je n’ai pas d’avis, ça m’est égal\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "AVIS_TEL" + } + }, + { + "id": "lna1z5hs", + "componentType": "CheckboxGroup", + "page": "2.486", + "label": { + "value": "\"Avez-vous rencontré les difficultés suivantes ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lna1z5hs-lna2duk7", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "AVIS_FILTRE", + "AVIS_FILTRE_P" + ] + }, + "controls": [ + { + "id": "lna1z5hs-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "WARN", + "control": { + "value": "not((nvl(AVIS_DIFF1,false)=true and nvl(AVIS_DIFF8,false)=true) or (nvl(AVIS_DIFF2,false)=true and nvl(AVIS_DIFF8,false)=true) or (nvl(AVIS_DIFF3,false)=true and nvl(AVIS_DIFF8,false)=true) or (nvl(AVIS_DIFF4,false)=true and nvl(AVIS_DIFF8,false)=true) or (nvl(AVIS_DIFF5,false)=true and nvl(AVIS_DIFF8,false)=true) or (nvl(AVIS_DIFF6,false)=true and nvl(AVIS_DIFF8,false)=true) or (nvl(AVIS_DIFF7,false)=true and nvl(AVIS_DIFF8,false)=true))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Vous ne pouvez pas cocher Non et une autre réponse.\"", + "type": "VTL|MD" + }, + "bindingDependencies": [ + "AVIS_DIFF1", + "AVIS_DIFF8", + "AVIS_DIFF2", + "AVIS_DIFF3", + "AVIS_DIFF4", + "AVIS_DIFF5", + "AVIS_DIFF6", + "AVIS_DIFF7" + ] + } + ], + "hierarchy": { + "sequence": { + "id": "lm4vpka3", + "page": "2.473", + "label": { + "value": "\"XI - \" || \"AVIS SUR LE QUESTIONNAIRE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TYPE_QUEST", + "AVIS_DIFF1", + "AVIS_DIFF2", + "AVIS_DIFF3", + "AVIS_DIFF4", + "AVIS_DIFF5", + "AVIS_DIFF6", + "AVIS_DIFF7", + "AVIS_DIFF8", + "VAL_ANNAISS" + ], + "responses": [ + { + "id": "lna1z5hs-QOP-lna3g9og", + "label": { + "value": "\"J’ai eu des difficultés pour me connecter au site\"", + "type": "VTL|MD" + }, + "response": { + "name": "AVIS_DIFF1" + } + }, + { + "id": "lna1z5hs-QOP-lna3o7x6", + "label": { + "value": "\"J’ai eu des difficultés pour dérouler les listes (profession, langue, commune, pays) et/ou cliquer sur la réponse souhaitée\"", + "type": "VTL|MD" + }, + "response": { + "name": "AVIS_DIFF2" + } + }, + { + "id": "lna1z5hs-QOP-lna3atiw", + "label": { + "value": "\"J’ai eu des difficultés pour passer aux questions suivantes (je ne voyais pas le bouton, ...)\"", + "type": "VTL|MD" + }, + "response": { + "name": "AVIS_DIFF3" + } + }, + { + "id": "lna1z5hs-QOP-lna3cm7h", + "label": { + "value": "\"J’étais perdu\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" dans le questionnaire, je ne savais plus où j’en étais, sur quoi ou qui les questions portaient\"", + "type": "VTL|MD" + }, + "response": { + "name": "AVIS_DIFF4" + } + }, + { + "id": "lna1z5hs-QOP-lna3ih02", + "label": { + "value": "\"Il y avait trop de pages, il fallait trop souvent changer d’écran\"", + "type": "VTL|MD" + }, + "response": { + "name": "AVIS_DIFF5" + } + }, + { + "id": "lna1z5hs-QOP-lna3iyg6", + "label": { + "value": "\"J’ai eu des difficultés pour répondre à certaines questions (questions peu claires, auxquelles je n’avais pas la réponse…)\"", + "type": "VTL|MD" + }, + "response": { + "name": "AVIS_DIFF6" + } + }, + { + "id": "lna1z5hs-QOP-lna3n335", + "label": { + "value": "\"J’ai rencontré d’autres difficultés\"", + "type": "VTL|MD" + }, + "response": { + "name": "AVIS_DIFF7" + } + }, + { + "id": "lna1z5hs-QOP-lna38km4", + "label": { + "value": "\"Non, je n’ai pas eu de difficultés\"", + "type": "VTL|MD" + }, + "response": { + "name": "AVIS_DIFF8" + } + } + ] + }, + { + "id": "lna24vso", + "componentType": "Textarea", + "mandatory": false, + "page": "2.487", + "maxLength": 1500, + "label": { + "value": "\"Merci d’indiquer le plus précisément possible la/(les) question(s) qui vous ont posé des difficultés et les difficultés que vous avez rencontrées.\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\") and (AVIS_DIFF6)", + "type": "VTL", + "bindingDependencies": [ + "AVIS_FILTRE", + "AVIS_FILTRE_P", + "AVIS_DIFF6" + ] + }, + "hierarchy": { + "sequence": { + "id": "lm4vpka3", + "page": "2.473", + "label": { + "value": "\"XI - \" || \"AVIS SUR LE QUESTIONNAIRE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "AVIS_QUEST", + "VAL_ANNAISS" + ], + "response": { + "name": "AVIS_QUEST" + } + }, + { + "id": "lna2aygn", + "componentType": "Textarea", + "mandatory": false, + "page": "2.488", + "maxLength": 1500, + "label": { + "value": "\"Pouvez-vous préciser ces autres difficultés ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\") and (AVIS_DIFF7)", + "type": "VTL", + "bindingDependencies": [ + "AVIS_FILTRE", + "AVIS_FILTRE_P", + "AVIS_DIFF7" + ] + }, + "hierarchy": { + "sequence": { + "id": "lm4vpka3", + "page": "2.473", + "label": { + "value": "\"XI - \" || \"AVIS SUR LE QUESTIONNAIRE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "AVIS_AUTR_DIFF", + "VAL_ANNAISS" + ], + "response": { + "name": "AVIS_AUTR_DIFF" + } + }, + { + "id": "lna2jxe5", + "componentType": "Radio", + "mandatory": false, + "page": "2.489", + "label": { + "value": "\"Est-ce que cela vous a gêné que l’ordre de remplissage des questionnaires de\" || (if (TYPE_QUEST=\"1\") then \" tous les hommes majeurs\" else \" toutes les femmes majeures\") || \" de votre ménage soit imposé ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\") and (not(isnull(RPNBQUEST)) and RPNBQUEST <> \"1\")", + "type": "VTL", + "bindingDependencies": [ + "AVIS_FILTRE", + "AVIS_FILTRE_P", + "RPNBQUEST" + ] + }, + "hierarchy": { + "sequence": { + "id": "lm4vpka3", + "page": "2.473", + "label": { + "value": "\"XI - \" || \"AVIS SUR LE QUESTIONNAIRE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "TYPE_QUEST", + "AVIS_ORDRE", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "AVIS_ORDRE" + } + }, + { + "id": "lna2hnnt", + "componentType": "Radio", + "mandatory": false, + "page": "2.490", + "label": { + "value": "\"Avez-vous contacté l’assistance (par téléphone, mail) ou demandé de l’aide à l’agent recenseur ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "AVIS_FILTRE", + "AVIS_FILTRE_P" + ] + }, + "hierarchy": { + "sequence": { + "id": "lm4vpka3", + "page": "2.473", + "label": { + "value": "\"XI - \" || \"AVIS SUR LE QUESTIONNAIRE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "AVIS_ASSIST", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui, et cela m’a été utile\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Oui, mais cela ne m’a pas été utile\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Oui, mais je n’ai pas eu de réponse\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\"Non, je n’ai pas eu besoin\"", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\"Non, car je ne savais pas qu’il y avait une assistance\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "AVIS_ASSIST" + } + }, + { + "id": "lna2fkqe", + "componentType": "Radio", + "mandatory": false, + "page": "2.491", + "label": { + "value": "\"Avez-vous d’autres remarques ou suggestions pour améliorer cette enquête ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "AVIS_FILTRE", + "AVIS_FILTRE_P" + ] + }, + "hierarchy": { + "sequence": { + "id": "lm4vpka3", + "page": "2.473", + "label": { + "value": "\"XI - \" || \"AVIS SUR LE QUESTIONNAIRE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "AVIS_RMQ_FIN", + "VAL_ANNAISS" + ], + "options": [ + { + "value": "1", + "label": { + "value": "Oui", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "Non", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "AVIS_RMQ_FIN" + } + }, + { + "id": "lna2hbsx", + "componentType": "Textarea", + "mandatory": false, + "page": "2.492", + "maxLength": 1500, + "label": { + "value": "\"Pouvez-vous indiquer vos remarques sur l’enquête et vos suggestions d’amélioration ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\") and (AVIS_RMQ_FIN =\"1\")", + "type": "VTL", + "bindingDependencies": [ + "AVIS_FILTRE", + "AVIS_FILTRE_P", + "AVIS_RMQ_FIN" + ] + }, + "hierarchy": { + "sequence": { + "id": "lm4vpka3", + "page": "2.473", + "label": { + "value": "\"XI - \" || \"AVIS SUR LE QUESTIONNAIRE\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "AVIS_AUTR_RMQ", + "VAL_ANNAISS" + ], + "response": { + "name": "AVIS_AUTR_RMQ" + } + } + ], + "iterations": { + "value": "count(VAL_ANNAISS)", + "type": "VTL" + } + }, + { + "id": "l4ctrkzx", + "componentType": "Sequence", + "page": "3", + "label": { + "value": "\"XII - \" || \"FIN\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l4ctrkzx-lagud3o9", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "if (not(isnull(RPNBQUEST)) and RPNBQUEST <> \"1\") then \"Merci de votre participation !. Le questionnaire s’arrête là pour cette personne. S’il reste des personnes qui doivent répondre à l’enquête, nous allons passer au questionnaire suivant.\" else \"\"", + "type": "VTL|MD" + } + }, + { + "id": "l4ctrkzx-lagv0rul", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"\" || if (nvl(RPNBQUEST,\"0\") =\"1\") then \"Merci de votre participation !. Le questionnaire s’arrête là. Pensez-bien à le VALIDER\" else \"\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "true", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "l4ctrkzx", + "page": "3", + "label": { + "value": "\"XII - \" || \"FIN\"", + "type": "VTL|MD" + } + } + }, + "bindingDependencies": [ + "RPNBQUEST" + ] + } + ], + "variables": [ + { + "variableType": "EXTERNAL", + "name": "RPTYPEQUEST", + "value": null + }, + { + "variableType": "EXTERNAL", + "name": "RPNBQUEST", + "value": null + }, + { + "variableType": "EXTERNAL", + "name": "RPLISTEPRENOMS", + "value": null + }, + { + "variableType": "EXTERNAL", + "name": "RPPRENOMPAR1", + "value": null + }, + { + "variableType": "EXTERNAL", + "name": "RPPRENOMPAR2", + "value": null + }, + { + "variableType": "EXTERNAL", + "name": "RPANAISPAR1", + "value": null + }, + { + "variableType": "EXTERNAL", + "name": "RPANAISPAR2", + "value": null + }, + { + "variableType": "EXTERNAL", + "name": "RPSEXPAR1", + "value": null + }, + { + "variableType": "EXTERNAL", + "name": "RPSEXPAR2", + "value": null + }, + { + "variableType": "EXTERNAL", + "name": "RPPRENOMCONJ", + "value": null + }, + { + "variableType": "EXTERNAL", + "name": "RPSEXCONJ", + "value": null + }, + { + "variableType": "EXTERNAL", + "name": "RPANAISCONJ", + "value": null + }, + { + "variableType": "EXTERNAL", + "name": "RPPRENOM", + "value": null + }, + { + "variableType": "EXTERNAL", + "name": "RPANAISENQ", + "value": null + }, + { + "variableType": "COLLECTED", + "name": "VAL_ANNAISS", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "DATNAIS_X", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "COUPLE", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "RAISON_VIE_CJT", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PRECIS_VIECJT", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PRENOM_C", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "DATNAIS_C", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEXE_CH", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "LIEUNAIS_CH", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "DNAI_CH", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PNAI_CH", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "TRAV_CH", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PROF_CH1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PROF_CH2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PROF_C2H", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "STATUT_CH", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SAL_FP_CH", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SAL_ENT_CH", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEXE_CF", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "LIEUNAIS_CF", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "DNAI_CF", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PNAI_CF", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "TRAV_CF", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PROF_CF1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PROF_CF2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PROF_C2F", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "STATUT_CF", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SAL_FP_CF", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SAL_ENT_CF", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ANNEE_U", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PACS", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ANNEE_PACS", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "MARI", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ANNEE_MARI", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEPARE", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ANNEE_S", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ANNEE_D", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ENFAV_C", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NBENFAV_C", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NBENFAV_VENU_C1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NBENFAV_VENU_C", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "VECU_C", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ENF21_AUTPAR_C1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ENF21_AUTPAR_C2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ENF21_AUTPAR_C3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ENF21_AUTPAR_C4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AUT_UNION", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NB_AUT_UNION", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PRENOM_U1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEXE_U1H", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEXE_U1F", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ANNEE_U1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PACS_U1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ANNEE_PACS_U1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "MARI_U1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ANNEE_MARI_U1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEPARE_U1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ANNEE_S_U1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ANNEE_D_U1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ENFAV_C_U1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NBENFAV_C_U1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NBENFAV_C1_VENU_U1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NBENFAV_C_VENU_U1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AUT_U2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PRENOM_U2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEXE_U2H", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEXE_U2F", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ANNEE_U2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PACS_U2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ANNEE_PACS_U2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "MARI_U2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ANNEE_MARI_U2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEPARE_U2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ANNEE_S_U2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ANNEE_D_U2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ENFAV_C_U2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NBENFAV_C_U2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NBENFAV_C1_VENU_U2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NBENFAV_C_VENU_U2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ENF", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NBENF", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NBENF_ADOP1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NBENF_ADOP", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "LANGUE1_ENF", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "LANGUE2_ENF", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NBENFLOG", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "CBENFLOG", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NBENFAIL", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "CBENFAIL", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PRENOM_ENFLOG1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEXE_ENFLOG1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ANAI_ENFLOG1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NEFRANCE_ENFLOG1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_VIT_ENFLOG1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_FR_ENFLOG1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_DEP_ENFLOG1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_COM_ENFLOG1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_PAY_ENFLOG1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_FREQ_ENFLOG1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_DORT_ENFLOG1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_VECU_ENFLOG1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEP_AUT_PAR_ENFLOG1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "RESID_ENFLOG1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFLOG11", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFLOG12", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFLOG13", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFLOG14", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PRENOM_ENFLOG2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEXE_ENFLOG2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ANAI_ENFLOG2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NEFRANCE_ENFLOG2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_VIT_ENFLOG2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_FR_ENFLOG2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_DEP_ENFLOG2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_COM_ENFLOG2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_PAY_ENFLOG2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_FREQ_ENFLOG2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_DORT_ENFLOG2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_VECU_ENFLOG2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEP_AUT_PAR_ENFLOG2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "RESID_ENFLOG2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFLOG21", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFLOG22", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFLOG23", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFLOG24", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PRENOM_ENFLOG3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEXE_ENFLOG3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ANAI_ENFLOG3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NEFRANCE_ENFLOG3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_VIT_ENFLOG3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_FR_ENFLOG3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_DEP_ENFLOG3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_COM_ENFLOG3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_PAY_ENFLOG3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_FREQ_ENFLOG3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_DORT_ENFLOG3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_VECU_ENFLOG3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEP_AUT_PAR_ENFLOG3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "RESID_ENFLOG3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFLOG31", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFLOG32", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFLOG33", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFLOG34", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PRENOM_ENFLOG4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEXE_ENFLOG4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ANAI_ENFLOG4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NEFRANCE_ENFLOG4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_VIT_ENFLOG4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_FR_ENFLOG4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_DEP_ENFLOG4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_COM_ENFLOG4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_PAY_ENFLOG4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_FREQ_ENFLOG4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_DORT_ENFLOG4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_VECU_ENFLOG4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEP_AUT_PAR_ENFLOG4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "RESID_ENFLOG4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFLOG41", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFLOG42", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFLOG43", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFLOG44", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PRENOM_ENFLOG5", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEXE_ENFLOG5", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ANAI_ENFLOG5", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NEFRANCE_ENFLOG5", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_VIT_ENFLOG5", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_FR_ENFLOG5", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_DEP_ENFLOG5", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_COM_ENFLOG5", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_PAY_ENFLOG5", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_FREQ_ENFLOG5", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_DORT_ENFLOG5", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_VECU_ENFLOG5", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEP_AUT_PAR_ENFLOG5", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "RESID_ENFLOG5", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFLOG51", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFLOG52", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFLOG53", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFLOG54", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PRENOM_ENFLOG6", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEXE_ENFLOG6", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ANAI_ENFLOG6", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NEFRANCE_ENFLOG6", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_VIT_ENFLOG6", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_FR_ENFLOG6", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_DEP_ENFLOG6", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_COM_ENFLOG6", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_PAY_ENFLOG6", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_FREQ_ENFLOG6", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_DORT_ENFLOG6", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_VECU_ENFLOG6", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEP_AUT_PAR_ENFLOG6", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "RESID_ENFLOG6", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFLOG61", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFLOG62", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFLOG63", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFLOG64", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PRENOM_ENFLOG7", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEXE_ENFLOG7", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ANAI_ENFLOG7", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NEFRANCE_ENFLOG7", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_VIT_ENFLOG7", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_FR_ENFLOG7", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_DEP_ENFLOG7", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_COM_ENFLOG7", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_PAY_ENFLOG7", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_FREQ_ENFLOG7", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_DORT_ENFLOG7", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_VECU_ENFLOG7", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEP_AUT_PAR_ENFLOG7", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "RESID_ENFLOG7", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFLOG71", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFLOG72", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFLOG73", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFLOG74", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PRENOM_ENFLOG8", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEXE_ENFLOG8", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ANAI_ENFLOG8", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NEFRANCE_ENFLOG8", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_VIT_ENFLOG8", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_FR_ENFLOG8", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_DEP_ENFLOG8", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_COM_ENFLOG8", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_PAY_ENFLOG8", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_FREQ_ENFLOG8", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_DORT_ENFLOG8", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_VECU_ENFLOG8", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEP_AUT_PAR_ENFLOG8", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "RESID_ENFLOG8", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFLOG81", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFLOG82", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFLOG83", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFLOG84", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PRENOM_ENFAIL1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEXE_ENFAIL1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ANAI_ENFAIL1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NEFRANCE_ENFAIL1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_VIT_ENFAIL1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_VECU_ENFAIL1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "DC_ENFAIL1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AG_DC_ENFAIL1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AG_DEPART_ENFAIL1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_FREQ_ENFAIL1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "FR_ENFAIL1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "DEP_ENFAIL1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "COM_ENFAIL1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PAY_ENFAIL1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "LOG_ENFAIL1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AUT_PAR_ENFAIL1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "DORT_ENFAIL1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEP_AUT_PAR_ENFAIL1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "RESID_ENFAIL1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFAIL11", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFAIL12", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFAIL13", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PRENOM_ENFAIL2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEXE_ENFAIL2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ANAI_ENFAIL2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NEFRANCE_ENFAIL2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_VIT_ENFAIL2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_VECU_ENFAIL2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "DC_ENFAIL2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AG_DC_ENFAIL2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AG_DEPART_ENFAIL2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_FREQ_ENFAIL2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "FR_ENFAIL2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "DEP_ENFAIL2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "COM_ENFAIL2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PAY_ENFAIL2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "LOG_ENFAIL2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AUT_PAR_ENFAIL2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "DORT_ENFAIL2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEP_AUT_PAR_ENFAIL2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "RESID_ENFAIL2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFAIL21", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFAIL22", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFAIL23", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PRENOM_ENFAIL3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEXE_ENFAIL3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ANAI_ENFAIL3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NEFRANCE_ENFAIL3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_VIT_ENFAIL3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_VECU_ENFAIL3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "DC_ENFAIL3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AG_DC_ENFAIL3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AG_DEPART_ENFAIL3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_FREQ_ENFAIL3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "FR_ENFAIL3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "DEP_ENFAIL3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "COM_ENFAIL3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PAY_ENFAIL3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "LOG_ENFAIL3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AUT_PAR_ENFAIL3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "DORT_ENFAIL3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEP_AUT_PAR_ENFAIL3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "RESID_ENFAIL3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFAIL31", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFAIL32", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFAIL33", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PRENOM_ENFAIL4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEXE_ENFAIL4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ANAI_ENFAIL4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NEFRANCE_ENFAIL4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_VIT_ENFAIL4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_VECU_ENFAIL4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "DC_ENFAIL4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AG_DC_ENFAIL4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AG_DEPART_ENFAIL4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_FREQ_ENFAIL4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "FR_ENFAIL4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "DEP_ENFAIL4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "COM_ENFAIL4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PAY_ENFAIL4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "LOG_ENFAIL4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AUT_PAR_ENFAIL4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "DORT_ENFAIL4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEP_AUT_PAR_ENFAIL4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "RESID_ENFAIL4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFAIL41", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFAIL42", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFAIL43", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PRENOM_ENFAIL5", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEXE_ENFAIL5", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ANAI_ENFAIL5", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NEFRANCE_ENFAIL5", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_VIT_ENFAIL5", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_VECU_ENFAIL5", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "DC_ENFAIL5", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AG_DC_ENFAIL5", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AG_DEPART_ENFAIL5", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_FREQ_ENFAIL5", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "FR_ENFAIL5", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "DEP_ENFAIL5", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "COM_ENFAIL5", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PAY_ENFAIL5", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "LOG_ENFAIL5", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AUT_PAR_ENFAIL5", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "DORT_ENFAIL5", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEP_AUT_PAR_ENFAIL5", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "RESID_ENFAIL5", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFAIL51", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFAIL52", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFAIL53", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PRENOM_ENFAIL6", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEXE_ENFAIL6", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ANAI_ENFAIL6", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NEFRANCE_ENFAIL6", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_VIT_ENFAIL6", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_VECU_ENFAIL6", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "DC_ENFAIL6", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AG_DC_ENFAIL6", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AG_DEPART_ENFAIL6", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_FREQ_ENFAIL6", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "FR_ENFAIL6", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "DEP_ENFAIL6", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "COM_ENFAIL6", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PAY_ENFAIL6", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "LOG_ENFAIL6", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AUT_PAR_ENFAIL6", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "DORT_ENFAIL6", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEP_AUT_PAR_ENFAIL6", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "RESID_ENFAIL6", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFAIL61", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFAIL62", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFAIL63", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PRENOM_ENFAIL7", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEXE_ENFAIL7", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ANAI_ENFAIL7", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NEFRANCE_ENFAIL7", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_VIT_ENFAIL7", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_VECU_ENFAIL7", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "DC_ENFAIL7", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AG_DC_ENFAIL7", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AG_DEPART_ENFAIL7", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_FREQ_ENFAIL7", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "FR_ENFAIL7", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "DEP_ENFAIL7", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "COM_ENFAIL7", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PAY_ENFAIL7", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "LOG_ENFAIL7", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AUT_PAR_ENFAIL7", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "DORT_ENFAIL7", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEP_AUT_PAR_ENFAIL7", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "RESID_ENFAIL7", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFAIL71", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFAIL72", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFAIL73", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PRENOM_ENFAIL8", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEXE_ENFAIL8", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ANAI_ENFAIL8", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NEFRANCE_ENFAIL8", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_VIT_ENFAIL8", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_VECU_ENFAIL8", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "DC_ENFAIL8", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AG_DC_ENFAIL8", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AG_DEPART_ENFAIL8", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PARENT_FREQ_ENFAIL8", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "FR_ENFAIL8", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "DEP_ENFAIL8", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "COM_ENFAIL8", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PAY_ENFAIL8", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "LOG_ENFAIL8", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AUT_PAR_ENFAIL8", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "DORT_ENFAIL8", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEP_AUT_PAR_ENFAIL8", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "RESID_ENFAIL8", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFAIL81", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFAIL82", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SANTE_ENFAIL83", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PETIT_ENF", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NB_PETIT_ENF", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AG_PETIT_ENF", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "FREQ_VU_PETIT_ENF1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "FREQ_VU_PETIT_ENF2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "FREQ_VU_PETIT_ENF3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "FREQ_VU_PETIT_ENF4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "FREQ_CONT_PETIT_ENF1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "FREQ_CONT_PETIT_ENF2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "FREQ_CONT_PETIT_ENF3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "FREQ_CONT_PETIT_ENF4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AIDE_APPORT1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AIDE_APPORT2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AIDE_APPORT3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AIDE_APPORT4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AIDE_APPORT5", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "QUI_AID_APP_11", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "QUI_AID_APP_12", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "QUI_AID_APP_13", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "QUI_AID_APP_14", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "QUI_AID_APP_21", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "QUI_AID_APP_22", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "QUI_AID_APP_23", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "QUI_AID_APP_24", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "QUI_AID_APP_31", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "QUI_AID_APP_32", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "QUI_AID_APP_33", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "QUI_AID_APP_34", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "QUI_AID_APP_41", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "QUI_AID_APP_42", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "QUI_AID_APP_43", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "QUI_AID_APP_44", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AIDE_RECUE1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AIDE_RECUE2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AIDE_RECUE3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AIDE_RECUE4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "QUI_AID_REC_11", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "QUI_AID_REC_12", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "QUI_AID_REC_13", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "QUI_AID_REC_14", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "QUI_AID_REC_21", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "QUI_AID_REC_22", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "QUI_AID_REC_23", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "QUI_AID_REC_24", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "QUI_AID_REC_31", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "QUI_AID_REC_32", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "QUI_AID_REC_33", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "QUI_AID_REC_34", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "LANGUE1_ENTOU", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "LANGUE2_ENTOU", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PRENOM_PAR1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ANAI_PAR1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEXE_PAR1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NATIO_PAR1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "TRAV_PAR1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PROF_PAR1H", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PROF_PAR1F", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PROF_PAR1_2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "STATUT_PAR1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SAL_FP_PAR1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SAL_ENT_PAR1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "LANGUE1_PAR1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "LANGUE2_PAR1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "VIV_PAR1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ANNEE_DC_PAR1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "LOG_PAR1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "FR_PAR1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "DEP_PAR1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "COM_PAR1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PAY_PAR1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ETAB_PAR1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "FREQ_VU_PAR1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "FREQ_CONT_PAR1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PROX_EGO_PAR1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PROX_FRAT_PAR1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "EXIST_PAR2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PRENOM_PAR2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ANAI_PAR2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SEXE_PAR2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NATIO_PAR2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "TRAV_PAR2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PROF_PAR2H", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PROF_PAR2F", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PROF_PAR2_2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "STATUT_PAR2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SAL_FP_PAR2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "SAL_ENT_PAR2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "LANGUE1_PAR2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "LANGUE2_PAR2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "VIV_PAR2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ANNEE_DC_PAR2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "LOG_PAR2A1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "LOG_PAR2A2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "LOG_PAR2A3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "LOG_PAR2B", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "FR_PAR2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "DEP_PAR2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "COM_PAR2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PAY_PAR2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ETAB_PAR2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "FREQ_VU_PAR2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "FREQ_CONT_PAR2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PROX_EGO_PAR2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PROX_FRAT_PAR2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NB_FRERES", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NB_FRERES_VIV1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NB_FRERES_VIV", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NB_SOEURS", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NB_SOEURS_VIV1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "NB_SOEURS_VIV", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AG_DEP_PARENT", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "VECU_JEUNESSE1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "VECU_JEUNESSE2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "VECU_JEUNESSE3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "VECU_JEUNESSE4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "VECU_JEUNESSE5", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "VECU_JEUNESSE6", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "VECU_JEUNESSE7", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "VECU_PLACE", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "TYP_PLACE1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "TYP_PLACE2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "TYP_PLACE3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "TYP_PLACE4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "HEBERG", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "FINETU", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ANNEE_FINETU", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "DEJATRAV", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ANNEE_EMPLOI1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "TRAVACT", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "ANNEE_FINEMP", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "INTER_TRAV1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "INTER_TRAV2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "INTER_TRAV3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PRENOM_FIN", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "PRENOM_PROX", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AVIS_FILTRE", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AVIS_FILTRE_P", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AVIS_RMQ", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AVIS_RAISON1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AVIS_RAISON2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AVIS_RAISON3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AVIS_RAISON4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AVIS_RAISON5", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AVIS_RAISON6", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AVIS_AR", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AVIS_NOTICE", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AVIS_RAIS_NOTICE", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AVIS_SITE_NET", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AVIS_RAIS_SITE", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AVIS_MAIL", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AVIS_SUPPORT1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AVIS_SUPPORT2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AVIS_SUPPORT3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AVIS_TEL", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AVIS_DIFF1", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AVIS_DIFF2", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AVIS_DIFF3", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AVIS_DIFF4", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AVIS_DIFF5", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AVIS_DIFF6", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AVIS_DIFF7", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AVIS_DIFF8", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AVIS_QUEST", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AVIS_AUTR_DIFF", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AVIS_ORDRE", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AVIS_ASSIST", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AVIS_RMQ_FIN", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "COLLECTED", + "name": "AVIS_AUTR_RMQ", + "values": { + "PREVIOUS": [ + null + ], + "COLLECTED": [ + null + ], + "FORCED": [ + null + ], + "EDITED": [ + null + ], + "INPUTED": [ + null + ] + } + }, + { + "variableType": "CALCULATED", + "name": "LIBSEXPAR1", + "expression": { + "value": "if (isnull(SEXE_PAR1)) then \"\" else (if (SEXE_PAR1 = \"1\") then \"e\" else \"\")", + "type": "VTL" + }, + "bindingDependencies": [ + "SEXE_PAR1" + ], + "shapeFrom": "VAL_ANNAISS", + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "LIBSEXPAR2", + "expression": { + "value": "if (isnull(SEXE_PAR2)) then \"\" else (if (SEXE_PAR2 = \"1\") then \"e\" else \"\")", + "type": "VTL" + }, + "bindingDependencies": [ + "SEXE_PAR2" + ], + "shapeFrom": "VAL_ANNAISS", + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "LIBSUJETPAR1", + "expression": { + "value": "if (isnull(SEXE_PAR1)) then \"il\" else (if (SEXE_PAR1 = \"1\") then \"elle\" else \"il\")", + "type": "VTL" + }, + "bindingDependencies": [ + "SEXE_PAR1" + ], + "shapeFrom": "VAL_ANNAISS", + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "LIBSUJETPAR2", + "expression": { + "value": "if (isnull(SEXE_PAR2)) then \"il\" else (if (SEXE_PAR2 = \"1\") then \"elle\" else \"il\")", + "type": "VTL" + }, + "bindingDependencies": [ + "SEXE_PAR2" + ], + "shapeFrom": "VAL_ANNAISS", + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "LIBSEX", + "expression": { + "value": "if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")", + "type": "VTL" + }, + "bindingDependencies": [ + "TYPE_QUEST" + ], + "shapeFrom": "VAL_ANNAISS", + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "AGE", + "expression": { + "value": "2024 - ANAIS", + "type": "VTL" + }, + "shapeFrom": "VAL_ANNAISS", + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "LIBSEXCJH", + "expression": { + "value": "if (isnull(SEXE_CH)) then \"\" else (if SEXE_CH=\"1\" then \"e\" else \"\")", + "type": "VTL" + }, + "bindingDependencies": [ + "SEXE_CH" + ], + "shapeFrom": "VAL_ANNAISS", + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "ANNAISCJ", + "expression": { + "value": "substr(cast(DATNAIS_C,string),1,4)", + "type": "VTL" + }, + "bindingDependencies": [ + "DATNAIS_C" + ], + "shapeFrom": "VAL_ANNAISS", + "inFilter": "true" + }, + { + "variableType": "CALCULATED", + "name": "SEXCJREC", + "expression": { + "value": "if isnull(RPSEXCONJ) then SEXE_C else RPSEXCONJ", + "type": "VTL" + }, + "bindingDependencies": [ + "RPSEXCONJ", + "SEXE_C" + ], + "shapeFrom": "VAL_ANNAISS", + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "ANAISS", + "expression": { + "value": "if (nvl(VAL_ANNAISS,\"\") = \"2\") then substr(cast(DATNAIS_X,string),1,4) else RPANAISENQ", + "type": "VTL" + }, + "bindingDependencies": [ + "VAL_ANNAISS", + "DATNAIS_X", + "RPANAISENQ" + ], + "shapeFrom": "VAL_ANNAISS", + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "ANAIS", + "expression": { + "value": "cast(ANAISS,integer)", + "type": "VTL" + }, + "bindingDependencies": [ + "ANAISS", + "VAL_ANNAISS", + "DATNAIS_X", + "RPANAISENQ" + ], + "shapeFrom": "VAL_ANNAISS", + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "AG_ENFAIL1", + "expression": { + "value": "if isnull(ANAI_ENFAIL1) then 0 else 2024-cast(ANAI_ENFAIL1,integer)", + "type": "VTL" + }, + "bindingDependencies": [ + "ANAI_ENFAIL1" + ], + "shapeFrom": "VAL_ANNAISS", + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "AG_ENFAIL2", + "expression": { + "value": "if isnull(ANAI_ENFAIL2) then 0 else 2024-cast(ANAI_ENFAIL2,integer)", + "type": "VTL" + }, + "bindingDependencies": [ + "ANAI_ENFAIL2" + ], + "shapeFrom": "VAL_ANNAISS", + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "AG_ENFAIL3", + "expression": { + "value": "if isnull(ANAI_ENFAIL3) then 0 else 2024-cast(ANAI_ENFAIL3,integer)", + "type": "VTL" + }, + "bindingDependencies": [ + "ANAI_ENFAIL3" + ], + "shapeFrom": "VAL_ANNAISS", + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "AG_ENFAIL4", + "expression": { + "value": "if isnull(ANAI_ENFAIL4) then 0 else 2024-cast(ANAI_ENFAIL4,integer)", + "type": "VTL" + }, + "bindingDependencies": [ + "ANAI_ENFAIL4" + ], + "shapeFrom": "VAL_ANNAISS", + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "AG_ENFAIL5", + "expression": { + "value": "if isnull(ANAI_ENFAIL5) then 0 else 2024-cast(ANAI_ENFAIL5,integer)", + "type": "VTL" + }, + "bindingDependencies": [ + "ANAI_ENFAIL5" + ], + "shapeFrom": "VAL_ANNAISS", + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "AG_ENFAIL6", + "expression": { + "value": "if isnull(ANAI_ENFAIL6) then 0 else 2024-cast(ANAI_ENFAIL6,integer)", + "type": "VTL" + }, + "bindingDependencies": [ + "ANAI_ENFAIL6" + ], + "shapeFrom": "VAL_ANNAISS", + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "AG_ENFAIL7", + "expression": { + "value": "if isnull(ANAI_ENFAIL7) then 0 else 2024-cast(ANAI_ENFAIL7,integer)", + "type": "VTL" + }, + "bindingDependencies": [ + "ANAI_ENFAIL7" + ], + "shapeFrom": "VAL_ANNAISS", + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "AG_ENFAIL8", + "expression": { + "value": "if isnull(ANAI_ENFAIL8) then 0 else 2024-cast(ANAI_ENFAIL8,integer)", + "type": "VTL" + }, + "bindingDependencies": [ + "ANAI_ENFAIL8" + ], + "shapeFrom": "VAL_ANNAISS", + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "PRENOMREP", + "expression": { + "value": "RPPRENOM", + "type": "VTL" + }, + "bindingDependencies": [ + "RPPRENOM" + ], + "shapeFrom": "VAL_ANNAISS", + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "SEXE_C", + "expression": { + "value": "if TYPE_QUEST=\"1\" then SEXE_CH else SEXE_CF", + "type": "VTL" + }, + "bindingDependencies": [ + "TYPE_QUEST" + ], + "shapeFrom": "VAL_ANNAISS", + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "SEXE_U1", + "expression": { + "value": "if TYPE_QUEST=\"1\" then SEXE_U1H else SEXE_U1F", + "type": "VTL" + }, + "bindingDependencies": [ + "TYPE_QUEST" + ], + "shapeFrom": "VAL_ANNAISS", + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "SEXE_U2", + "expression": { + "value": "if TYPE_QUEST=\"1\" then SEXE_U2H else SEXE_U2F", + "type": "VTL" + }, + "bindingDependencies": [ + "TYPE_QUEST" + ], + "shapeFrom": "VAL_ANNAISS", + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "LIBSEXCJF", + "expression": { + "value": "if (isnull(SEXE_CF)) then \"\" else (if SEXE_CF=\"2\" then \"e\" else \"\")", + "type": "VTL" + }, + "bindingDependencies": [ + "SEXE_CF" + ], + "shapeFrom": "VAL_ANNAISS", + "inFilter": "false" + }, + { + "variableType": "CALCULATED", + "name": "TYPE_QUEST", + "expression": { + "value": "\"2\"", + "type": "VTL" + }, + "inFilter": "true" + } + ], + "cleaning": { + "VAL_ANNAISS": { + "DATNAIS_X": "(nvl(VAL_ANNAISS,\"\") = \"2\")" + }, + "COUPLE": { + "RAISON_VIE_CJT": "(COUPLE=\"2\")", + "PRENOM_C": "(COUPLE<>\"4\" and not(isnull(COUPLE)))", + "DATNAIS_C": "(COUPLE<>\"4\" and not(isnull(COUPLE)))", + "SEXE_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\")", + "LIEUNAIS_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))", + "DNAI_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CH =\"1\")", + "PNAI_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CH =\"2\")", + "TRAV_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))", + "PROF_CH1": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (SEXE_CH = \"2\" or isnull(SEXE_CH))", + "PROF_CH2": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (SEXE_CH =\"1\")", + "PROF_C2H": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (isnull(PROF_CH1) and isnull(PROF_CH2))", + "STATUT_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH))", + "SAL_FP_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (STATUT_CH =\"2\")", + "SAL_ENT_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (STATUT_CH =\"3\")", + "SEXE_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\")", + "LIEUNAIS_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))", + "DNAI_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CF =\"1\")", + "PNAI_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CF =\"2\")", + "TRAV_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))", + "PROF_CF1": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (SEXE_CF = \"1\" or isnull(SEXE_CF))", + "PROF_CF2": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (SEXE_CF = \"2\")", + "PROF_C2F": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (isnull(PROF_CF1) and isnull(PROF_CF2))", + "STATUT_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF))", + "SAL_FP_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (STATUT_CF =\"2\")", + "SAL_ENT_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (STATUT_CF =\"3\")", + "ANNEE_U": "(COUPLE<>\"4\" and not(isnull(COUPLE)))", + "PACS": "(COUPLE<>\"4\" and not(isnull(COUPLE)))", + "ANNEE_PACS": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (PACS =\"1\")", + "MARI": "(COUPLE<>\"4\" and not(isnull(COUPLE)))", + "ANNEE_MARI": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (MARI =\"1\")", + "SEPARE": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (COUPLE =\"3\")", + "ANNEE_S": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (COUPLE =\"3\") and (SEPARE =\"1\")", + "ANNEE_D": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (COUPLE =\"3\") and (SEPARE =\"2\")", + "ENFAV_C": "(COUPLE<>\"4\" and not(isnull(COUPLE)))", + "NBENFAV_C": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (ENFAV_C=\"1\")", + "NBENFAV_VENU_C1": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (ENFAV_C=\"1\") and (NBENFAV_C=1)", + "NBENFAV_VENU_C": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (ENFAV_C=\"1\") and (NBENFAV_C >1 or isnull(NBENFAV_C))", + "VECU_C": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (COUPLE =\"3\")", + "AUT_UNION": "(COUPLE<>\"4\" and not(isnull(COUPLE)))", + "NB_AUT_UNION": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (AUT_UNION = \"1\")", + "PRENOM_U1": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\")", + "SEXE_U1H": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\") and (TYPE_QUEST =\"1\")", + "SEXE_U1F": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\") and (TYPE_QUEST =\"2\")", + "ANNEE_U1": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\")", + "PACS_U1": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\")", + "ANNEE_PACS_U1": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\") and (PACS_U1 =\"1\")", + "MARI_U1": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\")", + "ANNEE_MARI_U1": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\") and (MARI_U1 =\"1\")", + "SEPARE_U1": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\")", + "ANNEE_S_U1": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\") and (SEPARE_U1 =\"1\")", + "ANNEE_D_U1": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\") and (SEPARE_U1 =\"2\")", + "ENFAV_C_U1": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\")", + "NBENFAV_C_U1": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\") and (ENFAV_C_U1 =\"1\")", + "NBENFAV_C1_VENU_U1": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\") and (ENFAV_C_U1 =\"1\") and (NBENFAV_C_U1=1)", + "NBENFAV_C_VENU_U1": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\") and (ENFAV_C_U1 =\"1\") and (NBENFAV_C_U1 > 1 or isnull(NBENFAV_C_U1))", + "AUT_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION))", + "PRENOM_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\")", + "SEXE_U2H": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (TYPE_QUEST =\"1\")", + "SEXE_U2F": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (TYPE_QUEST =\"2\")", + "ANNEE_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\")", + "PACS_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\")", + "ANNEE_PACS_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (PACS_U2 =\"1\")", + "MARI_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\")", + "ANNEE_MARI_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (MARI_U2 =\"1\")", + "SEPARE_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\")", + "ANNEE_S_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (SEPARE_U2 =\"1\")", + "ANNEE_D_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (SEPARE_U2 =\"2\")", + "ENFAV_C_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\")", + "NBENFAV_C_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\")", + "NBENFAV_C1_VENU_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\") and (NBENFAV_C_U2=1)", + "NBENFAV_C_VENU_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\") and (NBENFAV_C_U2 > 1 or isnull(NBENFAV_C_U2))" + }, + "RAISON_VIE_CJT": { + "PRECIS_VIECJT": "(RAISON_VIE_CJT =\"4\")" + }, + "TYPE_QUEST": { + "SEXE_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\")", + "LIEUNAIS_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))", + "DNAI_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CH =\"1\")", + "PNAI_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CH =\"2\")", + "TRAV_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))", + "PROF_CH1": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (SEXE_CH = \"2\" or isnull(SEXE_CH))", + "PROF_CH2": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (SEXE_CH =\"1\")", + "PROF_C2H": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (isnull(PROF_CH1) and isnull(PROF_CH2))", + "STATUT_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH))", + "SAL_FP_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (STATUT_CH =\"2\")", + "SAL_ENT_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (STATUT_CH =\"3\")", + "SEXE_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\")", + "LIEUNAIS_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))", + "DNAI_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CF =\"1\")", + "PNAI_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CF =\"2\")", + "TRAV_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))", + "PROF_CF1": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (SEXE_CF = \"1\" or isnull(SEXE_CF))", + "PROF_CF2": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (SEXE_CF = \"2\")", + "PROF_C2F": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (isnull(PROF_CF1) and isnull(PROF_CF2))", + "STATUT_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF))", + "SAL_FP_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (STATUT_CF =\"2\")", + "SAL_ENT_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (STATUT_CF =\"3\")", + "SEXE_U1H": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\") and (TYPE_QUEST =\"1\")", + "SEXE_U1F": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\") and (TYPE_QUEST =\"2\")", + "SEXE_U2H": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (TYPE_QUEST =\"1\")", + "SEXE_U2F": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (TYPE_QUEST =\"2\")" + }, + "PRENOM_C": { + "LIEUNAIS_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))", + "DNAI_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CH =\"1\")", + "PNAI_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CH =\"2\")", + "TRAV_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))", + "PROF_CH1": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (SEXE_CH = \"2\" or isnull(SEXE_CH))", + "PROF_CH2": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (SEXE_CH =\"1\")", + "PROF_C2H": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (isnull(PROF_CH1) and isnull(PROF_CH2))", + "STATUT_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH))", + "SAL_FP_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (STATUT_CH =\"2\")", + "SAL_ENT_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (STATUT_CH =\"3\")", + "LIEUNAIS_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))", + "DNAI_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CF =\"1\")", + "PNAI_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CF =\"2\")", + "TRAV_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))", + "PROF_CF1": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (SEXE_CF = \"1\" or isnull(SEXE_CF))", + "PROF_CF2": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (SEXE_CF = \"2\")", + "PROF_C2F": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (isnull(PROF_CF1) and isnull(PROF_CF2))", + "STATUT_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF))", + "SAL_FP_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (STATUT_CF =\"2\")", + "SAL_ENT_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (STATUT_CF =\"3\")" + }, + "RPPRENOMCONJ": { + "LIEUNAIS_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))", + "DNAI_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CH =\"1\")", + "PNAI_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CH =\"2\")", + "TRAV_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))", + "PROF_CH1": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (SEXE_CH = \"2\" or isnull(SEXE_CH))", + "PROF_CH2": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (SEXE_CH =\"1\")", + "PROF_C2H": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (isnull(PROF_CH1) and isnull(PROF_CH2))", + "STATUT_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH))", + "SAL_FP_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (STATUT_CH =\"2\")", + "SAL_ENT_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (STATUT_CH =\"3\")", + "LIEUNAIS_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))", + "DNAI_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CF =\"1\")", + "PNAI_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CF =\"2\")", + "TRAV_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))", + "PROF_CF1": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (SEXE_CF = \"1\" or isnull(SEXE_CF))", + "PROF_CF2": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (SEXE_CF = \"2\")", + "PROF_C2F": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (isnull(PROF_CF1) and isnull(PROF_CF2))", + "STATUT_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF))", + "SAL_FP_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (STATUT_CF =\"2\")", + "SAL_ENT_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (STATUT_CF =\"3\")" + }, + "RPANAISCONJ": { + "LIEUNAIS_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))", + "DNAI_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CH =\"1\")", + "PNAI_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CH =\"2\")", + "TRAV_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))", + "PROF_CH1": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (SEXE_CH = \"2\" or isnull(SEXE_CH))", + "PROF_CH2": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (SEXE_CH =\"1\")", + "PROF_C2H": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (isnull(PROF_CH1) and isnull(PROF_CH2))", + "STATUT_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH))", + "SAL_FP_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (STATUT_CH =\"2\")", + "SAL_ENT_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (STATUT_CH =\"3\")", + "LIEUNAIS_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))", + "DNAI_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CF =\"1\")", + "PNAI_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CF =\"2\")", + "TRAV_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))", + "PROF_CF1": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (SEXE_CF = \"1\" or isnull(SEXE_CF))", + "PROF_CF2": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (SEXE_CF = \"2\")", + "PROF_C2F": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (isnull(PROF_CF1) and isnull(PROF_CF2))", + "STATUT_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF))", + "SAL_FP_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (STATUT_CF =\"2\")", + "SAL_ENT_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (STATUT_CF =\"3\")" + }, + "ANNAISCJ": { + "LIEUNAIS_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))", + "DNAI_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CH =\"1\")", + "PNAI_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CH =\"2\")", + "TRAV_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))", + "PROF_CH1": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (SEXE_CH = \"2\" or isnull(SEXE_CH))", + "PROF_CH2": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (SEXE_CH =\"1\")", + "PROF_C2H": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (isnull(PROF_CH1) and isnull(PROF_CH2))", + "STATUT_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH))", + "SAL_FP_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (STATUT_CH =\"2\")", + "SAL_ENT_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (STATUT_CH =\"3\")", + "LIEUNAIS_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))", + "DNAI_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CF =\"1\")", + "PNAI_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CF =\"2\")", + "TRAV_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))", + "PROF_CF1": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (SEXE_CF = \"1\" or isnull(SEXE_CF))", + "PROF_CF2": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (SEXE_CF = \"2\")", + "PROF_C2F": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (isnull(PROF_CF1) and isnull(PROF_CF2))", + "STATUT_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF))", + "SAL_FP_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (STATUT_CF =\"2\")", + "SAL_ENT_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (STATUT_CF =\"3\")" + }, + "DATNAIS_C": { + "LIEUNAIS_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))", + "DNAI_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CH =\"1\")", + "PNAI_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CH =\"2\")", + "TRAV_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))", + "PROF_CH1": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (SEXE_CH = \"2\" or isnull(SEXE_CH))", + "PROF_CH2": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (SEXE_CH =\"1\")", + "PROF_C2H": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (isnull(PROF_CH1) and isnull(PROF_CH2))", + "STATUT_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH))", + "SAL_FP_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (STATUT_CH =\"2\")", + "SAL_ENT_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (STATUT_CH =\"3\")", + "LIEUNAIS_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))", + "DNAI_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CF =\"1\")", + "PNAI_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CF =\"2\")", + "TRAV_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))", + "PROF_CF1": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (SEXE_CF = \"1\" or isnull(SEXE_CF))", + "PROF_CF2": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (SEXE_CF = \"2\")", + "PROF_C2F": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (isnull(PROF_CF1) and isnull(PROF_CF2))", + "STATUT_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF))", + "SAL_FP_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (STATUT_CF =\"2\")", + "SAL_ENT_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (STATUT_CF =\"3\")" + }, + "LIEUNAIS_CH": { + "DNAI_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CH =\"1\")", + "PNAI_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CH =\"2\")" + }, + "TRAV_CH": { + "PROF_CH1": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (SEXE_CH = \"2\" or isnull(SEXE_CH))", + "PROF_CH2": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (SEXE_CH =\"1\")", + "PROF_C2H": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (isnull(PROF_CH1) and isnull(PROF_CH2))", + "STATUT_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH))", + "SAL_FP_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (STATUT_CH =\"2\")", + "SAL_ENT_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (STATUT_CH =\"3\")" + }, + "SEXE_CH": { + "PROF_CH1": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (SEXE_CH = \"2\" or isnull(SEXE_CH))", + "PROF_CH2": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (SEXE_CH =\"1\")" + }, + "PROF_CH1": { + "PROF_C2H": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (isnull(PROF_CH1) and isnull(PROF_CH2))" + }, + "PROF_CH2": { + "PROF_C2H": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (isnull(PROF_CH1) and isnull(PROF_CH2))" + }, + "STATUT_CH": { + "SAL_FP_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (STATUT_CH =\"2\")", + "SAL_ENT_CH": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CH =\"1\" or isnull(TRAV_CH)) and (STATUT_CH =\"3\")" + }, + "LIEUNAIS_CF": { + "DNAI_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CF =\"1\")", + "PNAI_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CF =\"2\")" + }, + "TRAV_CF": { + "PROF_CF1": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (SEXE_CF = \"1\" or isnull(SEXE_CF))", + "PROF_CF2": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (SEXE_CF = \"2\")", + "PROF_C2F": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (isnull(PROF_CF1) and isnull(PROF_CF2))", + "STATUT_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF))", + "SAL_FP_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (STATUT_CF =\"2\")", + "SAL_ENT_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (STATUT_CF =\"3\")" + }, + "SEXE_CF": { + "PROF_CF1": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (SEXE_CF = \"1\" or isnull(SEXE_CF))", + "PROF_CF2": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (SEXE_CF = \"2\")" + }, + "PROF_CF1": { + "PROF_C2F": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (isnull(PROF_CF1) and isnull(PROF_CF2))" + }, + "PROF_CF2": { + "PROF_C2F": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (isnull(PROF_CF1) and isnull(PROF_CF2))" + }, + "STATUT_CF": { + "SAL_FP_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (STATUT_CF =\"2\")", + "SAL_ENT_CF": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (TRAV_CF =\"1\" or isnull(TRAV_CF)) and (STATUT_CF =\"3\")" + }, + "PACS": { + "ANNEE_PACS": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (PACS =\"1\")" + }, + "MARI": { + "ANNEE_MARI": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (MARI =\"1\")" + }, + "SEPARE": { + "ANNEE_S": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (COUPLE =\"3\") and (SEPARE =\"1\")", + "ANNEE_D": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (COUPLE =\"3\") and (SEPARE =\"2\")" + }, + "ENFAV_C": { + "NBENFAV_C": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (ENFAV_C=\"1\")", + "NBENFAV_VENU_C1": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (ENFAV_C=\"1\") and (NBENFAV_C=1)", + "NBENFAV_VENU_C": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (ENFAV_C=\"1\") and (NBENFAV_C >1 or isnull(NBENFAV_C))" + }, + "NBENFAV_C": { + "NBENFAV_VENU_C1": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (ENFAV_C=\"1\") and (NBENFAV_C=1)", + "NBENFAV_VENU_C": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (ENFAV_C=\"1\") and (NBENFAV_C >1 or isnull(NBENFAV_C))" + }, + "AUT_UNION": { + "NB_AUT_UNION": "(COUPLE<>\"4\" and not(isnull(COUPLE))) and (AUT_UNION = \"1\")", + "PRENOM_U1": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\")", + "SEXE_U1H": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\") and (TYPE_QUEST =\"1\")", + "SEXE_U1F": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\") and (TYPE_QUEST =\"2\")", + "ANNEE_U1": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\")", + "PACS_U1": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\")", + "ANNEE_PACS_U1": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\") and (PACS_U1 =\"1\")", + "MARI_U1": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\")", + "ANNEE_MARI_U1": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\") and (MARI_U1 =\"1\")", + "SEPARE_U1": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\")", + "ANNEE_S_U1": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\") and (SEPARE_U1 =\"1\")", + "ANNEE_D_U1": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\") and (SEPARE_U1 =\"2\")", + "ENFAV_C_U1": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\")", + "NBENFAV_C_U1": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\") and (ENFAV_C_U1 =\"1\")", + "NBENFAV_C1_VENU_U1": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\") and (ENFAV_C_U1 =\"1\") and (NBENFAV_C_U1=1)", + "NBENFAV_C_VENU_U1": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\") and (ENFAV_C_U1 =\"1\") and (NBENFAV_C_U1 > 1 or isnull(NBENFAV_C_U1))", + "AUT_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION))", + "PRENOM_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\")", + "SEXE_U2H": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (TYPE_QUEST =\"1\")", + "SEXE_U2F": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (TYPE_QUEST =\"2\")", + "ANNEE_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\")", + "PACS_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\")", + "ANNEE_PACS_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (PACS_U2 =\"1\")", + "MARI_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\")", + "ANNEE_MARI_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (MARI_U2 =\"1\")", + "SEPARE_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\")", + "ANNEE_S_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (SEPARE_U2 =\"1\")", + "ANNEE_D_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (SEPARE_U2 =\"2\")", + "ENFAV_C_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\")", + "NBENFAV_C_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\")", + "NBENFAV_C1_VENU_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\") and (NBENFAV_C_U2=1)", + "NBENFAV_C_VENU_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\") and (NBENFAV_C_U2 > 1 or isnull(NBENFAV_C_U2))" + }, + "PACS_U1": { + "ANNEE_PACS_U1": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\") and (PACS_U1 =\"1\")" + }, + "MARI_U1": { + "ANNEE_MARI_U1": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\") and (MARI_U1 =\"1\")" + }, + "SEPARE_U1": { + "ANNEE_S_U1": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\") and (SEPARE_U1 =\"1\")", + "ANNEE_D_U1": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\") and (SEPARE_U1 =\"2\")" + }, + "ENFAV_C_U1": { + "NBENFAV_C_U1": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\") and (ENFAV_C_U1 =\"1\")", + "NBENFAV_C1_VENU_U1": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\") and (ENFAV_C_U1 =\"1\") and (NBENFAV_C_U1=1)", + "NBENFAV_C_VENU_U1": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\") and (ENFAV_C_U1 =\"1\") and (NBENFAV_C_U1 > 1 or isnull(NBENFAV_C_U1))" + }, + "NBENFAV_C_U1": { + "NBENFAV_C1_VENU_U1": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\") and (ENFAV_C_U1 =\"1\") and (NBENFAV_C_U1=1)", + "NBENFAV_C_VENU_U1": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (AUT_UNION = \"1\") and (ENFAV_C_U1 =\"1\") and (NBENFAV_C_U1 > 1 or isnull(NBENFAV_C_U1))" + }, + "NB_AUT_UNION": { + "AUT_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION))", + "PRENOM_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\")", + "SEXE_U2H": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (TYPE_QUEST =\"1\")", + "SEXE_U2F": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (TYPE_QUEST =\"2\")", + "ANNEE_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\")", + "PACS_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\")", + "ANNEE_PACS_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (PACS_U2 =\"1\")", + "MARI_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\")", + "ANNEE_MARI_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (MARI_U2 =\"1\")", + "SEPARE_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\")", + "ANNEE_S_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (SEPARE_U2 =\"1\")", + "ANNEE_D_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (SEPARE_U2 =\"2\")", + "ENFAV_C_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\")", + "NBENFAV_C_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\")", + "NBENFAV_C1_VENU_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\") and (NBENFAV_C_U2=1)", + "NBENFAV_C_VENU_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\") and (NBENFAV_C_U2 > 1 or isnull(NBENFAV_C_U2))" + }, + "AUT_U2": { + "PRENOM_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\")", + "SEXE_U2H": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (TYPE_QUEST =\"1\")", + "SEXE_U2F": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (TYPE_QUEST =\"2\")", + "ANNEE_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\")", + "PACS_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\")", + "ANNEE_PACS_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (PACS_U2 =\"1\")", + "MARI_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\")", + "ANNEE_MARI_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (MARI_U2 =\"1\")", + "SEPARE_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\")", + "ANNEE_S_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (SEPARE_U2 =\"1\")", + "ANNEE_D_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (SEPARE_U2 =\"2\")", + "ENFAV_C_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\")", + "NBENFAV_C_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\")", + "NBENFAV_C1_VENU_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\") and (NBENFAV_C_U2=1)", + "NBENFAV_C_VENU_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\") and (NBENFAV_C_U2 > 1 or isnull(NBENFAV_C_U2))" + }, + "PACS_U2": { + "ANNEE_PACS_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (PACS_U2 =\"1\")" + }, + "MARI_U2": { + "ANNEE_MARI_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (MARI_U2 =\"1\")" + }, + "SEPARE_U2": { + "ANNEE_S_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (SEPARE_U2 =\"1\")", + "ANNEE_D_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (SEPARE_U2 =\"2\")" + }, + "ENFAV_C_U2": { + "NBENFAV_C_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\")", + "NBENFAV_C1_VENU_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\") and (NBENFAV_C_U2=1)", + "NBENFAV_C_VENU_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\") and (NBENFAV_C_U2 > 1 or isnull(NBENFAV_C_U2))" + }, + "NBENFAV_C_U2": { + "NBENFAV_C1_VENU_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\") and (NBENFAV_C_U2=1)", + "NBENFAV_C_VENU_U2": "((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\") and (AUT_UNION =\"1\")) and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION)) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\") and (NBENFAV_C_U2 > 1 or isnull(NBENFAV_C_U2))" + }, + "ENF": { + "NBENF": "(ENF =\"1\" or isnull(ENF))", + "NBENF_ADOP1": "(ENF =\"1\" or isnull(ENF)) and (NBENF = 1)", + "NBENF_ADOP": "(ENF =\"1\" or isnull(ENF)) and (NBENF > 1)", + "LANGUE1_ENF": "(ENF =\"1\" or isnull(ENF))", + "LANGUE2_ENF": "(ENF =\"1\" or isnull(ENF)) and (LANGUE1_ENF <> \"\" or not(isnull(LANGUE1_ENF)))", + "NBENFLOG": "(ENF =\"1\" or isnull(ENF))", + "CBENFLOG": "(ENF =\"1\" or isnull(ENF)) and (NBENFLOG = \"1\" or isnull(NBENFLOG))", + "NBENFAIL": "(ENF =\"1\" or isnull(ENF)) and ((nvl(CBENFLOG,0) < nvl(NBENF,0)) or isnull(CBENFLOG) or isnull(NBENF))", + "CBENFAIL": "(ENF =\"1\" or isnull(ENF)) and ((nvl(CBENFLOG,0) < nvl(NBENF,0)) or isnull(CBENFLOG) or isnull(NBENF)) and (NBENFAIL=\"1\" or isnull(NBENFAIL))", + "PETIT_ENF": "(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\"))", + "NB_PETIT_ENF": "(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")", + "AG_PETIT_ENF": "(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")" + }, + "NBENF": { + "NBENF_ADOP1": "(ENF =\"1\" or isnull(ENF)) and (NBENF = 1)", + "NBENF_ADOP": "(ENF =\"1\" or isnull(ENF)) and (NBENF > 1)", + "NBENFAIL": "(ENF =\"1\" or isnull(ENF)) and ((nvl(CBENFLOG,0) < nvl(NBENF,0)) or isnull(CBENFLOG) or isnull(NBENF))", + "CBENFAIL": "(ENF =\"1\" or isnull(ENF)) and ((nvl(CBENFLOG,0) < nvl(NBENF,0)) or isnull(CBENFLOG) or isnull(NBENF)) and (NBENFAIL=\"1\" or isnull(NBENFAIL))" + }, + "LANGUE1_ENF": { + "LANGUE2_ENF": "(ENF =\"1\" or isnull(ENF)) and (LANGUE1_ENF <> \"\" or not(isnull(LANGUE1_ENF)))" + }, + "NBENFLOG": { + "CBENFLOG": "(ENF =\"1\" or isnull(ENF)) and (NBENFLOG = \"1\" or isnull(NBENFLOG))" + }, + "CBENFLOG": { + "NBENFAIL": "(ENF =\"1\" or isnull(ENF)) and ((nvl(CBENFLOG,0) < nvl(NBENF,0)) or isnull(CBENFLOG) or isnull(NBENF))", + "CBENFAIL": "(ENF =\"1\" or isnull(ENF)) and ((nvl(CBENFLOG,0) < nvl(NBENF,0)) or isnull(CBENFLOG) or isnull(NBENF)) and (NBENFAIL=\"1\" or isnull(NBENFAIL))", + "PRENOM_ENFLOG1": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1)", + "SEXE_ENFLOG1": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1)", + "ANAI_ENFLOG1": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1)", + "NEFRANCE_ENFLOG1": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1)", + "PARENT_VIT_ENFLOG1": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1)", + "PARENT_FR_ENFLOG1": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1) and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))", + "PARENT_DEP_ENFLOG1": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1) and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (PARENT_FR_ENFLOG1 =\"1\" or isnull(PARENT_FR_ENFLOG1))", + "PARENT_COM_ENFLOG1": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1) and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (PARENT_FR_ENFLOG1 =\"1\" or isnull(PARENT_FR_ENFLOG1))", + "PARENT_PAY_ENFLOG1": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1) and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (PARENT_FR_ENFLOG1 =\"2\")", + "PARENT_FREQ_ENFLOG1": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1) and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))", + "PARENT_DORT_ENFLOG1": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1) and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))", + "PARENT_VECU_ENFLOG1": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1) and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))", + "SEP_AUT_PAR_ENFLOG1": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1) and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))", + "RESID_ENFLOG1": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1) and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (SEP_AUT_PAR_ENFLOG1=\"1\")", + "PRENOM_ENFLOG2": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2)", + "SEXE_ENFLOG2": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2)", + "ANAI_ENFLOG2": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2)", + "NEFRANCE_ENFLOG2": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2)", + "PARENT_VIT_ENFLOG2": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2)", + "PARENT_FR_ENFLOG2": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2))", + "PARENT_DEP_ENFLOG2": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2)) and (PARENT_FR_ENFLOG2 =\"1\" or isnull(PARENT_FR_ENFLOG2))", + "PARENT_COM_ENFLOG2": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2)) and (PARENT_FR_ENFLOG2 =\"1\" or isnull(PARENT_FR_ENFLOG2))", + "PARENT_PAY_ENFLOG2": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2)) and (PARENT_FR_ENFLOG2 =\"2\")", + "PARENT_FREQ_ENFLOG2": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2))", + "PARENT_DORT_ENFLOG2": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2))", + "PARENT_VECU_ENFLOG2": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2))", + "SEP_AUT_PAR_ENFLOG2": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2))", + "RESID_ENFLOG2": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2)) and (SEP_AUT_PAR_ENFLOG2=\"1\")", + "PRENOM_ENFLOG3": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3)", + "SEXE_ENFLOG3": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3)", + "ANAI_ENFLOG3": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3)", + "NEFRANCE_ENFLOG3": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3)", + "PARENT_VIT_ENFLOG3": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3)", + "PARENT_FR_ENFLOG3": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3))", + "PARENT_DEP_ENFLOG3": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3)) and (PARENT_FR_ENFLOG3 =\"1\" or isnull(PARENT_FR_ENFLOG3))", + "PARENT_COM_ENFLOG3": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3)) and (PARENT_FR_ENFLOG3 =\"1\" or isnull(PARENT_FR_ENFLOG3))", + "PARENT_PAY_ENFLOG3": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3)) and (PARENT_FR_ENFLOG3 =\"2\")", + "PARENT_FREQ_ENFLOG3": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3))", + "PARENT_DORT_ENFLOG3": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3))", + "PARENT_VECU_ENFLOG3": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3))", + "SEP_AUT_PAR_ENFLOG3": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3))", + "RESID_ENFLOG3": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3)) and (SEP_AUT_PAR_ENFLOG3=\"1\")", + "PRENOM_ENFLOG4": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4)", + "SEXE_ENFLOG4": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4)", + "ANAI_ENFLOG4": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4)", + "NEFRANCE_ENFLOG4": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4)", + "PARENT_VIT_ENFLOG4": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4)", + "PARENT_FR_ENFLOG4": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4))", + "PARENT_DEP_ENFLOG4": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4)) and (PARENT_FR_ENFLOG4 =\"1\" or isnull(PARENT_FR_ENFLOG4))", + "PARENT_COM_ENFLOG4": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4)) and (PARENT_FR_ENFLOG4 =\"1\" or isnull(PARENT_FR_ENFLOG4))", + "PARENT_PAY_ENFLOG4": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4)) and (PARENT_FR_ENFLOG4 =\"2\")", + "PARENT_FREQ_ENFLOG4": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4))", + "PARENT_DORT_ENFLOG4": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4))", + "PARENT_VECU_ENFLOG4": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4))", + "SEP_AUT_PAR_ENFLOG4": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4))", + "RESID_ENFLOG4": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4)) and (SEP_AUT_PAR_ENFLOG4=\"1\")", + "PRENOM_ENFLOG5": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5)", + "SEXE_ENFLOG5": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5)", + "ANAI_ENFLOG5": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5)", + "NEFRANCE_ENFLOG5": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5)", + "PARENT_VIT_ENFLOG5": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5)", + "PARENT_FR_ENFLOG5": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5))", + "PARENT_DEP_ENFLOG5": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5)) and (PARENT_FR_ENFLOG5 =\"1\" or isnull(PARENT_FR_ENFLOG5))", + "PARENT_COM_ENFLOG5": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5)) and (PARENT_FR_ENFLOG5 =\"1\" or isnull(PARENT_FR_ENFLOG5))", + "PARENT_PAY_ENFLOG5": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5)) and (PARENT_FR_ENFLOG5 =\"2\")", + "PARENT_FREQ_ENFLOG5": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5))", + "PARENT_DORT_ENFLOG5": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5))", + "PARENT_VECU_ENFLOG5": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5))", + "SEP_AUT_PAR_ENFLOG5": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5))", + "RESID_ENFLOG5": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5)) and (SEP_AUT_PAR_ENFLOG5=\"1\")", + "PRENOM_ENFLOG6": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6)", + "SEXE_ENFLOG6": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6)", + "ANAI_ENFLOG6": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6)", + "NEFRANCE_ENFLOG6": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6)", + "PARENT_VIT_ENFLOG6": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6)", + "PARENT_FR_ENFLOG6": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6))", + "PARENT_DEP_ENFLOG6": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6)) and (PARENT_FR_ENFLOG6 =\"1\" or isnull(PARENT_FR_ENFLOG6))", + "PARENT_COM_ENFLOG6": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6)) and (PARENT_FR_ENFLOG6 =\"1\" or isnull(PARENT_FR_ENFLOG6))", + "PARENT_PAY_ENFLOG6": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6)) and (PARENT_FR_ENFLOG6 =\"2\")", + "PARENT_FREQ_ENFLOG6": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6))", + "PARENT_DORT_ENFLOG6": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6))", + "PARENT_VECU_ENFLOG6": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6))", + "SEP_AUT_PAR_ENFLOG6": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6))", + "RESID_ENFLOG6": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6)) and (SEP_AUT_PAR_ENFLOG6=\"1\")", + "PRENOM_ENFLOG7": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7)", + "SEXE_ENFLOG7": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7)", + "ANAI_ENFLOG7": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7)", + "NEFRANCE_ENFLOG7": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7)", + "PARENT_VIT_ENFLOG7": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7)", + "PARENT_FR_ENFLOG7": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7))", + "PARENT_DEP_ENFLOG7": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7)) and (PARENT_FR_ENFLOG7=\"1\" or isnull(PARENT_FR_ENFLOG7))", + "PARENT_COM_ENFLOG7": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7)) and (PARENT_FR_ENFLOG7=\"1\" or isnull(PARENT_FR_ENFLOG7))", + "PARENT_PAY_ENFLOG7": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7)) and (PARENT_FR_ENFLOG7=\"2\")", + "PARENT_FREQ_ENFLOG7": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7))", + "PARENT_DORT_ENFLOG7": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7))", + "PARENT_VECU_ENFLOG7": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7))", + "SEP_AUT_PAR_ENFLOG7": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7))", + "RESID_ENFLOG7": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7)) and (SEP_AUT_PAR_ENFLOG7=\"1\")", + "PRENOM_ENFLOG8": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8)", + "SEXE_ENFLOG8": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8)", + "ANAI_ENFLOG8": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8)", + "NEFRANCE_ENFLOG8": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8)", + "PARENT_VIT_ENFLOG8": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8)", + "PARENT_FR_ENFLOG8": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8))", + "PARENT_DEP_ENFLOG8": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8)) and (PARENT_FR_ENFLOG8=\"1\" or isnull(PARENT_FR_ENFLOG8))", + "PARENT_COM_ENFLOG8": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8)) and (PARENT_FR_ENFLOG8=\"1\" or isnull(PARENT_FR_ENFLOG8))", + "PARENT_PAY_ENFLOG8": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8)) and (PARENT_FR_ENFLOG8=\"2\")", + "PARENT_FREQ_ENFLOG8": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8))", + "PARENT_DORT_ENFLOG8": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8))", + "PARENT_VECU_ENFLOG8": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8))", + "SEP_AUT_PAR_ENFLOG8": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8))", + "RESID_ENFLOG8": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8)) and (SEP_AUT_PAR_ENFLOG8=\"1\")" + }, + "NBENFAIL": { + "CBENFAIL": "(ENF =\"1\" or isnull(ENF)) and ((nvl(CBENFLOG,0) < nvl(NBENF,0)) or isnull(CBENFLOG) or isnull(NBENF)) and (NBENFAIL=\"1\" or isnull(NBENFAIL))" + }, + "PARENT_VIT_ENFLOG1": { + "PARENT_FR_ENFLOG1": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1) and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))", + "PARENT_DEP_ENFLOG1": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1) and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (PARENT_FR_ENFLOG1 =\"1\" or isnull(PARENT_FR_ENFLOG1))", + "PARENT_COM_ENFLOG1": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1) and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (PARENT_FR_ENFLOG1 =\"1\" or isnull(PARENT_FR_ENFLOG1))", + "PARENT_PAY_ENFLOG1": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1) and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (PARENT_FR_ENFLOG1 =\"2\")", + "PARENT_FREQ_ENFLOG1": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1) and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))", + "PARENT_DORT_ENFLOG1": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1) and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))", + "PARENT_VECU_ENFLOG1": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1) and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))", + "SEP_AUT_PAR_ENFLOG1": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1) and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))", + "RESID_ENFLOG1": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1) and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (SEP_AUT_PAR_ENFLOG1=\"1\")" + }, + "PARENT_FR_ENFLOG1": { + "PARENT_DEP_ENFLOG1": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1) and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (PARENT_FR_ENFLOG1 =\"1\" or isnull(PARENT_FR_ENFLOG1))", + "PARENT_COM_ENFLOG1": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1) and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (PARENT_FR_ENFLOG1 =\"1\" or isnull(PARENT_FR_ENFLOG1))", + "PARENT_PAY_ENFLOG1": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1) and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (PARENT_FR_ENFLOG1 =\"2\")" + }, + "SEP_AUT_PAR_ENFLOG1": { + "RESID_ENFLOG1": "(not(isnull(CBENFLOG)) and CBENFLOG >= 1) and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (SEP_AUT_PAR_ENFLOG1=\"1\")" + }, + "PARENT_VIT_ENFLOG2": { + "PARENT_FR_ENFLOG2": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2))", + "PARENT_DEP_ENFLOG2": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2)) and (PARENT_FR_ENFLOG2 =\"1\" or isnull(PARENT_FR_ENFLOG2))", + "PARENT_COM_ENFLOG2": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2)) and (PARENT_FR_ENFLOG2 =\"1\" or isnull(PARENT_FR_ENFLOG2))", + "PARENT_PAY_ENFLOG2": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2)) and (PARENT_FR_ENFLOG2 =\"2\")", + "PARENT_FREQ_ENFLOG2": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2))", + "PARENT_DORT_ENFLOG2": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2))", + "PARENT_VECU_ENFLOG2": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2))", + "SEP_AUT_PAR_ENFLOG2": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2))", + "RESID_ENFLOG2": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2)) and (SEP_AUT_PAR_ENFLOG2=\"1\")" + }, + "PARENT_FR_ENFLOG2": { + "PARENT_DEP_ENFLOG2": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2)) and (PARENT_FR_ENFLOG2 =\"1\" or isnull(PARENT_FR_ENFLOG2))", + "PARENT_COM_ENFLOG2": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2)) and (PARENT_FR_ENFLOG2 =\"1\" or isnull(PARENT_FR_ENFLOG2))", + "PARENT_PAY_ENFLOG2": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2)) and (PARENT_FR_ENFLOG2 =\"2\")" + }, + "SEP_AUT_PAR_ENFLOG2": { + "RESID_ENFLOG2": "(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2)) and (SEP_AUT_PAR_ENFLOG2=\"1\")" + }, + "PARENT_VIT_ENFLOG3": { + "PARENT_FR_ENFLOG3": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3))", + "PARENT_DEP_ENFLOG3": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3)) and (PARENT_FR_ENFLOG3 =\"1\" or isnull(PARENT_FR_ENFLOG3))", + "PARENT_COM_ENFLOG3": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3)) and (PARENT_FR_ENFLOG3 =\"1\" or isnull(PARENT_FR_ENFLOG3))", + "PARENT_PAY_ENFLOG3": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3)) and (PARENT_FR_ENFLOG3 =\"2\")", + "PARENT_FREQ_ENFLOG3": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3))", + "PARENT_DORT_ENFLOG3": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3))", + "PARENT_VECU_ENFLOG3": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3))", + "SEP_AUT_PAR_ENFLOG3": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3))", + "RESID_ENFLOG3": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3)) and (SEP_AUT_PAR_ENFLOG3=\"1\")" + }, + "PARENT_FR_ENFLOG3": { + "PARENT_DEP_ENFLOG3": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3)) and (PARENT_FR_ENFLOG3 =\"1\" or isnull(PARENT_FR_ENFLOG3))", + "PARENT_COM_ENFLOG3": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3)) and (PARENT_FR_ENFLOG3 =\"1\" or isnull(PARENT_FR_ENFLOG3))", + "PARENT_PAY_ENFLOG3": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3)) and (PARENT_FR_ENFLOG3 =\"2\")" + }, + "SEP_AUT_PAR_ENFLOG3": { + "RESID_ENFLOG3": "(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3)) and (SEP_AUT_PAR_ENFLOG3=\"1\")" + }, + "PARENT_VIT_ENFLOG4": { + "PARENT_FR_ENFLOG4": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4))", + "PARENT_DEP_ENFLOG4": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4)) and (PARENT_FR_ENFLOG4 =\"1\" or isnull(PARENT_FR_ENFLOG4))", + "PARENT_COM_ENFLOG4": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4)) and (PARENT_FR_ENFLOG4 =\"1\" or isnull(PARENT_FR_ENFLOG4))", + "PARENT_PAY_ENFLOG4": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4)) and (PARENT_FR_ENFLOG4 =\"2\")", + "PARENT_FREQ_ENFLOG4": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4))", + "PARENT_DORT_ENFLOG4": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4))", + "PARENT_VECU_ENFLOG4": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4))", + "SEP_AUT_PAR_ENFLOG4": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4))", + "RESID_ENFLOG4": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4)) and (SEP_AUT_PAR_ENFLOG4=\"1\")" + }, + "PARENT_FR_ENFLOG4": { + "PARENT_DEP_ENFLOG4": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4)) and (PARENT_FR_ENFLOG4 =\"1\" or isnull(PARENT_FR_ENFLOG4))", + "PARENT_COM_ENFLOG4": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4)) and (PARENT_FR_ENFLOG4 =\"1\" or isnull(PARENT_FR_ENFLOG4))", + "PARENT_PAY_ENFLOG4": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4)) and (PARENT_FR_ENFLOG4 =\"2\")" + }, + "SEP_AUT_PAR_ENFLOG4": { + "RESID_ENFLOG4": "(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4)) and (SEP_AUT_PAR_ENFLOG4=\"1\")" + }, + "PARENT_VIT_ENFLOG5": { + "PARENT_FR_ENFLOG5": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5))", + "PARENT_DEP_ENFLOG5": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5)) and (PARENT_FR_ENFLOG5 =\"1\" or isnull(PARENT_FR_ENFLOG5))", + "PARENT_COM_ENFLOG5": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5)) and (PARENT_FR_ENFLOG5 =\"1\" or isnull(PARENT_FR_ENFLOG5))", + "PARENT_PAY_ENFLOG5": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5)) and (PARENT_FR_ENFLOG5 =\"2\")", + "PARENT_FREQ_ENFLOG5": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5))", + "PARENT_DORT_ENFLOG5": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5))", + "PARENT_VECU_ENFLOG5": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5))", + "SEP_AUT_PAR_ENFLOG5": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5))", + "RESID_ENFLOG5": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5)) and (SEP_AUT_PAR_ENFLOG5=\"1\")" + }, + "PARENT_FR_ENFLOG5": { + "PARENT_DEP_ENFLOG5": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5)) and (PARENT_FR_ENFLOG5 =\"1\" or isnull(PARENT_FR_ENFLOG5))", + "PARENT_COM_ENFLOG5": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5)) and (PARENT_FR_ENFLOG5 =\"1\" or isnull(PARENT_FR_ENFLOG5))", + "PARENT_PAY_ENFLOG5": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5)) and (PARENT_FR_ENFLOG5 =\"2\")" + }, + "SEP_AUT_PAR_ENFLOG5": { + "RESID_ENFLOG5": "(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5)) and (SEP_AUT_PAR_ENFLOG5=\"1\")" + }, + "PARENT_VIT_ENFLOG6": { + "PARENT_FR_ENFLOG6": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6))", + "PARENT_DEP_ENFLOG6": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6)) and (PARENT_FR_ENFLOG6 =\"1\" or isnull(PARENT_FR_ENFLOG6))", + "PARENT_COM_ENFLOG6": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6)) and (PARENT_FR_ENFLOG6 =\"1\" or isnull(PARENT_FR_ENFLOG6))", + "PARENT_PAY_ENFLOG6": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6)) and (PARENT_FR_ENFLOG6 =\"2\")", + "PARENT_FREQ_ENFLOG6": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6))", + "PARENT_DORT_ENFLOG6": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6))", + "PARENT_VECU_ENFLOG6": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6))", + "SEP_AUT_PAR_ENFLOG6": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6))", + "RESID_ENFLOG6": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6)) and (SEP_AUT_PAR_ENFLOG6=\"1\")" + }, + "PARENT_FR_ENFLOG6": { + "PARENT_DEP_ENFLOG6": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6)) and (PARENT_FR_ENFLOG6 =\"1\" or isnull(PARENT_FR_ENFLOG6))", + "PARENT_COM_ENFLOG6": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6)) and (PARENT_FR_ENFLOG6 =\"1\" or isnull(PARENT_FR_ENFLOG6))", + "PARENT_PAY_ENFLOG6": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6)) and (PARENT_FR_ENFLOG6 =\"2\")" + }, + "SEP_AUT_PAR_ENFLOG6": { + "RESID_ENFLOG6": "(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6)) and (SEP_AUT_PAR_ENFLOG6=\"1\")" + }, + "PARENT_VIT_ENFLOG7": { + "PARENT_FR_ENFLOG7": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7))", + "PARENT_DEP_ENFLOG7": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7)) and (PARENT_FR_ENFLOG7=\"1\" or isnull(PARENT_FR_ENFLOG7))", + "PARENT_COM_ENFLOG7": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7)) and (PARENT_FR_ENFLOG7=\"1\" or isnull(PARENT_FR_ENFLOG7))", + "PARENT_PAY_ENFLOG7": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7)) and (PARENT_FR_ENFLOG7=\"2\")", + "PARENT_FREQ_ENFLOG7": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7))", + "PARENT_DORT_ENFLOG7": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7))", + "PARENT_VECU_ENFLOG7": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7))", + "SEP_AUT_PAR_ENFLOG7": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7))", + "RESID_ENFLOG7": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7)) and (SEP_AUT_PAR_ENFLOG7=\"1\")" + }, + "PARENT_FR_ENFLOG7": { + "PARENT_DEP_ENFLOG7": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7)) and (PARENT_FR_ENFLOG7=\"1\" or isnull(PARENT_FR_ENFLOG7))", + "PARENT_COM_ENFLOG7": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7)) and (PARENT_FR_ENFLOG7=\"1\" or isnull(PARENT_FR_ENFLOG7))", + "PARENT_PAY_ENFLOG7": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7)) and (PARENT_FR_ENFLOG7=\"2\")" + }, + "SEP_AUT_PAR_ENFLOG7": { + "RESID_ENFLOG7": "(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7)) and (SEP_AUT_PAR_ENFLOG7=\"1\")" + }, + "PARENT_VIT_ENFLOG8": { + "PARENT_FR_ENFLOG8": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8))", + "PARENT_DEP_ENFLOG8": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8)) and (PARENT_FR_ENFLOG8=\"1\" or isnull(PARENT_FR_ENFLOG8))", + "PARENT_COM_ENFLOG8": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8)) and (PARENT_FR_ENFLOG8=\"1\" or isnull(PARENT_FR_ENFLOG8))", + "PARENT_PAY_ENFLOG8": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8)) and (PARENT_FR_ENFLOG8=\"2\")", + "PARENT_FREQ_ENFLOG8": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8))", + "PARENT_DORT_ENFLOG8": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8))", + "PARENT_VECU_ENFLOG8": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8))", + "SEP_AUT_PAR_ENFLOG8": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8))", + "RESID_ENFLOG8": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8)) and (SEP_AUT_PAR_ENFLOG8=\"1\")" + }, + "PARENT_FR_ENFLOG8": { + "PARENT_DEP_ENFLOG8": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8)) and (PARENT_FR_ENFLOG8=\"1\" or isnull(PARENT_FR_ENFLOG8))", + "PARENT_COM_ENFLOG8": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8)) and (PARENT_FR_ENFLOG8=\"1\" or isnull(PARENT_FR_ENFLOG8))", + "PARENT_PAY_ENFLOG8": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8)) and (PARENT_FR_ENFLOG8=\"2\")" + }, + "SEP_AUT_PAR_ENFLOG8": { + "RESID_ENFLOG8": "(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8)) and (SEP_AUT_PAR_ENFLOG8=\"1\")" + }, + "CBENFAIL": { + "PRENOM_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1)", + "SEXE_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1)", + "ANAI_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1)", + "NEFRANCE_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1)", + "PARENT_VIT_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1)", + "PARENT_VECU_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and (PARENT_VIT_ENFAIL1=\"2\" or PARENT_VIT_ENFAIL1=\"3\" or isnull( PARENT_VIT_ENFAIL1))", + "DC_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1)", + "AG_DC_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and (DC_ENFAIL1 =\"2\")", + "AG_DEPART_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1))", + "PARENT_FREQ_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1))", + "FR_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1))", + "DEP_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and (FR_ENFAIL1 =\"1\" or isnull(FR_ENFAIL1))", + "COM_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and (FR_ENFAIL1 =\"1\" or isnull(FR_ENFAIL1))", + "PAY_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and (FR_ENFAIL1 =\"2\")", + "LOG_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2004) and (cast(ANAI_ENFAIL1,integer) <= 2011)", + "AUT_PAR_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2004) and (PARENT_VIT_ENFAIL1<>=\"3\")", + "DORT_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2004)", + "SEP_AUT_PAR_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2004) and (PARENT_VIT_ENFAIL1<>\"3\")", + "RESID_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2004) and (PARENT_VIT_ENFAIL1<>\"3\") and (SEP_AUT_PAR_ENFAIL1 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL1))", + "PRENOM_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2)", + "SEXE_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2)", + "ANAI_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2)", + "NEFRANCE_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2)", + "PARENT_VIT_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2)", + "PARENT_VECU_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (PARENT_VIT_ENFAIL2 =\"2\" or PARENT_VIT_ENFAIL2 =\"3\" or isnull( PARENT_VIT_ENFAIL2))", + "DC_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2)", + "AG_DC_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"2\")", + "AG_DEPART_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2))", + "PARENT_FREQ_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2))", + "FR_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2))", + "DEP_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2)) and (FR_ENFAIL2 =\"1\" or isnull(FR_ENFAIL2))", + "COM_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2)) and (FR_ENFAIL2 =\"1\" or isnull(FR_ENFAIL2))", + "PAY_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2)) and (FR_ENFAIL2 =\"2\")", + "LOG_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2004) and (cast(ANAI_ENFAIL2,integer) <= 2011)", + "AUT_PAR_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2004) and (PARENT_VIT_ENFAIL2<>=\"3\")", + "DORT_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2004)", + "SEP_AUT_PAR_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2004) and (PARENT_VIT_ENFAIL2<>\"3\")", + "RESID_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2004) and (PARENT_VIT_ENFAIL2<>\"3\") and (SEP_AUT_PAR_ENFAIL2 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL2))", + "PRENOM_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3)", + "SEXE_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3)", + "ANAI_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3)", + "NEFRANCE_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3)", + "PARENT_VIT_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3)", + "PARENT_VECU_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (PARENT_VIT_ENFAIL3 =\"2\" or PARENT_VIT_ENFAIL3 =\"3\" or isnull( PARENT_VIT_ENFAIL3))", + "DC_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3)", + "AG_DC_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"2\")", + "AG_DEPART_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3))", + "PARENT_FREQ_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3))", + "FR_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3))", + "DEP_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3)) and (FR_ENFAIL3 =\"1\" or isnull(FR_ENFAIL3))", + "COM_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3)) and (FR_ENFAIL3 =\"1\" or isnull(FR_ENFAIL3))", + "PAY_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3)) and (FR_ENFAIL3 =\"2\")", + "LOG_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2004) and (cast(ANAI_ENFAIL3,integer) <= 2011)", + "AUT_PAR_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2004) and (PARENT_VIT_ENFAIL3<>=\"3\")", + "DORT_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2004)", + "SEP_AUT_PAR_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2004) and (PARENT_VIT_ENFAIL3<>\"3\")", + "RESID_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2004) and (PARENT_VIT_ENFAIL3<>\"3\") and (SEP_AUT_PAR_ENFAIL3 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL3))", + "PRENOM_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4)", + "SEXE_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4)", + "ANAI_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4)", + "NEFRANCE_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4)", + "PARENT_VIT_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4)", + "PARENT_VECU_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (PARENT_VIT_ENFAIL4 =\"2\" or PARENT_VIT_ENFAIL4 =\"3\" or isnull( PARENT_VIT_ENFAIL4))", + "DC_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4)", + "AG_DC_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"2\")", + "AG_DEPART_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4))", + "PARENT_FREQ_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4))", + "FR_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4))", + "DEP_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4)) and (FR_ENFAIL4 =\"1\" or isnull(FR_ENFAIL4))", + "COM_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4)) and (FR_ENFAIL4 =\"1\" or isnull(FR_ENFAIL4))", + "PAY_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4)) and (FR_ENFAIL4 =\"2\")", + "LOG_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2004) and (cast(ANAI_ENFAIL4,integer) <= 2011)", + "AUT_PAR_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2004) and (PARENT_VIT_ENFAIL4<>=\"3\")", + "DORT_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2004)", + "SEP_AUT_PAR_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2004) and (PARENT_VIT_ENFAIL4<>\"3\")", + "RESID_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2004) and (PARENT_VIT_ENFAIL4<>\"3\") and (SEP_AUT_PAR_ENFAIL4 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL4))", + "PRENOM_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5)", + "SEXE_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5)", + "ANAI_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5)", + "NEFRANCE_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5)", + "PARENT_VIT_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5)", + "PARENT_VECU_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (PARENT_VIT_ENFAIL5 =\"2\" or PARENT_VIT_ENFAIL5 =\"3\" or isnull( PARENT_VIT_ENFAIL5))", + "DC_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5)", + "AG_DC_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"2\")", + "AG_DEPART_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5))", + "PARENT_FREQ_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5))", + "FR_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5))", + "DEP_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5)) and (FR_ENFAIL5 =\"1\" or isnull(FR_ENFAIL5))", + "COM_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5)) and (FR_ENFAIL5 =\"1\" or isnull(FR_ENFAIL5))", + "PAY_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5)) and (FR_ENFAIL5 =\"2\")", + "LOG_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2004) and (cast(ANAI_ENFAIL5,integer) <= 2011)", + "AUT_PAR_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2004) and (PARENT_VIT_ENFAIL5<>=\"3\")", + "DORT_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2004)", + "SEP_AUT_PAR_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2004) and (PARENT_VIT_ENFAIL5<>\"3\")", + "RESID_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2004) and (PARENT_VIT_ENFAIL5<>\"3\") and (SEP_AUT_PAR_ENFAIL5 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL5))", + "PRENOM_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6)", + "SEXE_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6)", + "ANAI_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6)", + "NEFRANCE_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6)", + "PARENT_VIT_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6)", + "PARENT_VECU_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (PARENT_VIT_ENFAIL6 =\"2\" or PARENT_VIT_ENFAIL6 =\"3\" or isnull( PARENT_VIT_ENFAIL6))", + "DC_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6)", + "AG_DC_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"2\")", + "AG_DEPART_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6))", + "PARENT_FREQ_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6))", + "FR_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6))", + "DEP_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6)) and (FR_ENFAIL6 =\"1\" or isnull(FR_ENFAIL6))", + "COM_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6)) and (FR_ENFAIL6 =\"1\" or isnull(FR_ENFAIL6))", + "PAY_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6)) and (FR_ENFAIL6 =\"2\")", + "LOG_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2004) and (cast(ANAI_ENFAIL6,integer) <= 2011)", + "AUT_PAR_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2004) and (PARENT_VIT_ENFAIL6<>=\"3\")", + "DORT_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2004)", + "SEP_AUT_PAR_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2004) and (PARENT_VIT_ENFAIL6<>\"3\")", + "RESID_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2004) and (PARENT_VIT_ENFAIL6<>\"3\") and (SEP_AUT_PAR_ENFAIL6 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL6))", + "PRENOM_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7)", + "SEXE_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7)", + "ANAI_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7)", + "NEFRANCE_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7)", + "PARENT_VIT_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7)", + "PARENT_VECU_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (PARENT_VIT_ENFAIL7 =\"2\" or PARENT_VIT_ENFAIL7 =\"3\" or isnull( PARENT_VIT_ENFAIL7))", + "DC_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7)", + "AG_DC_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"2\")", + "AG_DEPART_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7))", + "PARENT_FREQ_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7))", + "FR_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7))", + "DEP_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7)) and (FR_ENFAIL7 =\"1\" or isnull(FR_ENFAIL7))", + "COM_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7)) and (FR_ENFAIL7 =\"1\" or isnull(FR_ENFAIL7))", + "PAY_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7)) and (FR_ENFAIL7 =\"2\")", + "LOG_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2004) and (cast(ANAI_ENFAIL7,integer) <= 2011)", + "AUT_PAR_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2004) and (PARENT_VIT_ENFAIL7<>=\"3\")", + "DORT_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2004)", + "SEP_AUT_PAR_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2004) and (PARENT_VIT_ENFAIL7<>\"3\")", + "RESID_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2004) and (PARENT_VIT_ENFAIL7<>\"3\") and (SEP_AUT_PAR_ENFAIL7 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL7))", + "PRENOM_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8)", + "SEXE_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8)", + "ANAI_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8)", + "NEFRANCE_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8)", + "PARENT_VIT_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8)", + "PARENT_VECU_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (PARENT_VIT_ENFAIL8 =\"2\" or PARENT_VIT_ENFAIL8 =\"3\" or isnull( PARENT_VIT_ENFAIL8))", + "DC_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8)", + "AG_DC_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"2\")", + "AG_DEPART_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8))", + "PARENT_FREQ_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8))", + "FR_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8))", + "DEP_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8)) and (FR_ENFAIL8 =\"1\" or isnull(FR_ENFAIL8))", + "COM_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8)) and (FR_ENFAIL8 =\"1\" or isnull(FR_ENFAIL8))", + "PAY_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8)) and (FR_ENFAIL8 =\"2\")", + "LOG_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2004) and (cast(ANAI_ENFAIL8,integer) <= 2011)", + "AUT_PAR_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2004) and (PARENT_VIT_ENFAIL8<>=\"3\")", + "DORT_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2004)", + "SEP_AUT_PAR_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2004) and (PARENT_VIT_ENFAIL8<>\"3\")", + "RESID_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2004) and (PARENT_VIT_ENFAIL8<>\"3\") and (SEP_AUT_PAR_ENFAIL8 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL8))" + }, + "PARENT_VIT_ENFAIL1": { + "PARENT_VECU_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and (PARENT_VIT_ENFAIL1=\"2\" or PARENT_VIT_ENFAIL1=\"3\" or isnull( PARENT_VIT_ENFAIL1))", + "AUT_PAR_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2004) and (PARENT_VIT_ENFAIL1<>=\"3\")", + "SEP_AUT_PAR_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2004) and (PARENT_VIT_ENFAIL1<>\"3\")", + "RESID_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2004) and (PARENT_VIT_ENFAIL1<>\"3\") and (SEP_AUT_PAR_ENFAIL1 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL1))" + }, + "DC_ENFAIL1": { + "AG_DC_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and (DC_ENFAIL1 =\"2\")", + "AG_DEPART_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1))", + "PARENT_FREQ_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1))", + "FR_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1))", + "DEP_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and (FR_ENFAIL1 =\"1\" or isnull(FR_ENFAIL1))", + "COM_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and (FR_ENFAIL1 =\"1\" or isnull(FR_ENFAIL1))", + "PAY_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and (FR_ENFAIL1 =\"2\")", + "LOG_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2004) and (cast(ANAI_ENFAIL1,integer) <= 2011)", + "AUT_PAR_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2004) and (PARENT_VIT_ENFAIL1<>=\"3\")", + "DORT_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2004)", + "SEP_AUT_PAR_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2004) and (PARENT_VIT_ENFAIL1<>\"3\")", + "RESID_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2004) and (PARENT_VIT_ENFAIL1<>\"3\") and (SEP_AUT_PAR_ENFAIL1 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL1))" + }, + "FR_ENFAIL1": { + "DEP_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and (FR_ENFAIL1 =\"1\" or isnull(FR_ENFAIL1))", + "COM_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and (FR_ENFAIL1 =\"1\" or isnull(FR_ENFAIL1))", + "PAY_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and (FR_ENFAIL1 =\"2\")" + }, + "ANAI_ENFAIL1": { + "LOG_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2004) and (cast(ANAI_ENFAIL1,integer) <= 2011)", + "AUT_PAR_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2004) and (PARENT_VIT_ENFAIL1<>=\"3\")", + "DORT_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2004)", + "SEP_AUT_PAR_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2004) and (PARENT_VIT_ENFAIL1<>\"3\")", + "RESID_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2004) and (PARENT_VIT_ENFAIL1<>\"3\") and (SEP_AUT_PAR_ENFAIL1 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL1))" + }, + "SEP_AUT_PAR_ENFAIL1": { + "RESID_ENFAIL1": "(not(isnull(CBENFAIL)) and CBENFAIL >= 1) and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2004) and (PARENT_VIT_ENFAIL1<>\"3\") and (SEP_AUT_PAR_ENFAIL1 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL1))" + }, + "PARENT_VIT_ENFAIL2": { + "PARENT_VECU_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (PARENT_VIT_ENFAIL2 =\"2\" or PARENT_VIT_ENFAIL2 =\"3\" or isnull( PARENT_VIT_ENFAIL2))", + "AUT_PAR_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2004) and (PARENT_VIT_ENFAIL2<>=\"3\")", + "SEP_AUT_PAR_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2004) and (PARENT_VIT_ENFAIL2<>\"3\")", + "RESID_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2004) and (PARENT_VIT_ENFAIL2<>\"3\") and (SEP_AUT_PAR_ENFAIL2 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL2))" + }, + "DC_ENFAIL2": { + "AG_DC_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"2\")", + "AG_DEPART_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2))", + "PARENT_FREQ_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2))", + "FR_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2))", + "DEP_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2)) and (FR_ENFAIL2 =\"1\" or isnull(FR_ENFAIL2))", + "COM_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2)) and (FR_ENFAIL2 =\"1\" or isnull(FR_ENFAIL2))", + "PAY_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2)) and (FR_ENFAIL2 =\"2\")", + "LOG_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2004) and (cast(ANAI_ENFAIL2,integer) <= 2011)", + "AUT_PAR_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2004) and (PARENT_VIT_ENFAIL2<>=\"3\")", + "DORT_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2004)", + "SEP_AUT_PAR_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2004) and (PARENT_VIT_ENFAIL2<>\"3\")", + "RESID_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2004) and (PARENT_VIT_ENFAIL2<>\"3\") and (SEP_AUT_PAR_ENFAIL2 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL2))" + }, + "FR_ENFAIL2": { + "DEP_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2)) and (FR_ENFAIL2 =\"1\" or isnull(FR_ENFAIL2))", + "COM_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2)) and (FR_ENFAIL2 =\"1\" or isnull(FR_ENFAIL2))", + "PAY_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2)) and (FR_ENFAIL2 =\"2\")" + }, + "ANAI_ENFAIL2": { + "LOG_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2004) and (cast(ANAI_ENFAIL2,integer) <= 2011)", + "AUT_PAR_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2004) and (PARENT_VIT_ENFAIL2<>=\"3\")", + "DORT_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2004)", + "SEP_AUT_PAR_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2004) and (PARENT_VIT_ENFAIL2<>\"3\")", + "RESID_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2004) and (PARENT_VIT_ENFAIL2<>\"3\") and (SEP_AUT_PAR_ENFAIL2 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL2))" + }, + "SEP_AUT_PAR_ENFAIL2": { + "RESID_ENFAIL2": "(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2004) and (PARENT_VIT_ENFAIL2<>\"3\") and (SEP_AUT_PAR_ENFAIL2 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL2))" + }, + "PARENT_VIT_ENFAIL3": { + "PARENT_VECU_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (PARENT_VIT_ENFAIL3 =\"2\" or PARENT_VIT_ENFAIL3 =\"3\" or isnull( PARENT_VIT_ENFAIL3))", + "AUT_PAR_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2004) and (PARENT_VIT_ENFAIL3<>=\"3\")", + "SEP_AUT_PAR_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2004) and (PARENT_VIT_ENFAIL3<>\"3\")", + "RESID_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2004) and (PARENT_VIT_ENFAIL3<>\"3\") and (SEP_AUT_PAR_ENFAIL3 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL3))" + }, + "DC_ENFAIL3": { + "AG_DC_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"2\")", + "AG_DEPART_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3))", + "PARENT_FREQ_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3))", + "FR_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3))", + "DEP_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3)) and (FR_ENFAIL3 =\"1\" or isnull(FR_ENFAIL3))", + "COM_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3)) and (FR_ENFAIL3 =\"1\" or isnull(FR_ENFAIL3))", + "PAY_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3)) and (FR_ENFAIL3 =\"2\")", + "LOG_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2004) and (cast(ANAI_ENFAIL3,integer) <= 2011)", + "AUT_PAR_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2004) and (PARENT_VIT_ENFAIL3<>=\"3\")", + "DORT_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2004)", + "SEP_AUT_PAR_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2004) and (PARENT_VIT_ENFAIL3<>\"3\")", + "RESID_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2004) and (PARENT_VIT_ENFAIL3<>\"3\") and (SEP_AUT_PAR_ENFAIL3 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL3))" + }, + "FR_ENFAIL3": { + "DEP_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3)) and (FR_ENFAIL3 =\"1\" or isnull(FR_ENFAIL3))", + "COM_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3)) and (FR_ENFAIL3 =\"1\" or isnull(FR_ENFAIL3))", + "PAY_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3)) and (FR_ENFAIL3 =\"2\")" + }, + "ANAI_ENFAIL3": { + "LOG_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2004) and (cast(ANAI_ENFAIL3,integer) <= 2011)", + "AUT_PAR_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2004) and (PARENT_VIT_ENFAIL3<>=\"3\")", + "DORT_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2004)", + "SEP_AUT_PAR_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2004) and (PARENT_VIT_ENFAIL3<>\"3\")", + "RESID_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2004) and (PARENT_VIT_ENFAIL3<>\"3\") and (SEP_AUT_PAR_ENFAIL3 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL3))" + }, + "SEP_AUT_PAR_ENFAIL3": { + "RESID_ENFAIL3": "(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2004) and (PARENT_VIT_ENFAIL3<>\"3\") and (SEP_AUT_PAR_ENFAIL3 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL3))" + }, + "PARENT_VIT_ENFAIL4": { + "PARENT_VECU_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (PARENT_VIT_ENFAIL4 =\"2\" or PARENT_VIT_ENFAIL4 =\"3\" or isnull( PARENT_VIT_ENFAIL4))", + "AUT_PAR_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2004) and (PARENT_VIT_ENFAIL4<>=\"3\")", + "SEP_AUT_PAR_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2004) and (PARENT_VIT_ENFAIL4<>\"3\")", + "RESID_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2004) and (PARENT_VIT_ENFAIL4<>\"3\") and (SEP_AUT_PAR_ENFAIL4 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL4))" + }, + "DC_ENFAIL4": { + "AG_DC_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"2\")", + "AG_DEPART_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4))", + "PARENT_FREQ_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4))", + "FR_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4))", + "DEP_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4)) and (FR_ENFAIL4 =\"1\" or isnull(FR_ENFAIL4))", + "COM_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4)) and (FR_ENFAIL4 =\"1\" or isnull(FR_ENFAIL4))", + "PAY_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4)) and (FR_ENFAIL4 =\"2\")", + "LOG_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2004) and (cast(ANAI_ENFAIL4,integer) <= 2011)", + "AUT_PAR_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2004) and (PARENT_VIT_ENFAIL4<>=\"3\")", + "DORT_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2004)", + "SEP_AUT_PAR_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2004) and (PARENT_VIT_ENFAIL4<>\"3\")", + "RESID_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2004) and (PARENT_VIT_ENFAIL4<>\"3\") and (SEP_AUT_PAR_ENFAIL4 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL4))" + }, + "FR_ENFAIL4": { + "DEP_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4)) and (FR_ENFAIL4 =\"1\" or isnull(FR_ENFAIL4))", + "COM_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4)) and (FR_ENFAIL4 =\"1\" or isnull(FR_ENFAIL4))", + "PAY_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4)) and (FR_ENFAIL4 =\"2\")" + }, + "ANAI_ENFAIL4": { + "LOG_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2004) and (cast(ANAI_ENFAIL4,integer) <= 2011)", + "AUT_PAR_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2004) and (PARENT_VIT_ENFAIL4<>=\"3\")", + "DORT_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2004)", + "SEP_AUT_PAR_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2004) and (PARENT_VIT_ENFAIL4<>\"3\")", + "RESID_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2004) and (PARENT_VIT_ENFAIL4<>\"3\") and (SEP_AUT_PAR_ENFAIL4 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL4))" + }, + "SEP_AUT_PAR_ENFAIL4": { + "RESID_ENFAIL4": "(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2004) and (PARENT_VIT_ENFAIL4<>\"3\") and (SEP_AUT_PAR_ENFAIL4 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL4))" + }, + "PARENT_VIT_ENFAIL5": { + "PARENT_VECU_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (PARENT_VIT_ENFAIL5 =\"2\" or PARENT_VIT_ENFAIL5 =\"3\" or isnull( PARENT_VIT_ENFAIL5))", + "AUT_PAR_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2004) and (PARENT_VIT_ENFAIL5<>=\"3\")", + "SEP_AUT_PAR_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2004) and (PARENT_VIT_ENFAIL5<>\"3\")", + "RESID_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2004) and (PARENT_VIT_ENFAIL5<>\"3\") and (SEP_AUT_PAR_ENFAIL5 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL5))" + }, + "DC_ENFAIL5": { + "AG_DC_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"2\")", + "AG_DEPART_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5))", + "PARENT_FREQ_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5))", + "FR_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5))", + "DEP_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5)) and (FR_ENFAIL5 =\"1\" or isnull(FR_ENFAIL5))", + "COM_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5)) and (FR_ENFAIL5 =\"1\" or isnull(FR_ENFAIL5))", + "PAY_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5)) and (FR_ENFAIL5 =\"2\")", + "LOG_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2004) and (cast(ANAI_ENFAIL5,integer) <= 2011)", + "AUT_PAR_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2004) and (PARENT_VIT_ENFAIL5<>=\"3\")", + "DORT_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2004)", + "SEP_AUT_PAR_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2004) and (PARENT_VIT_ENFAIL5<>\"3\")", + "RESID_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2004) and (PARENT_VIT_ENFAIL5<>\"3\") and (SEP_AUT_PAR_ENFAIL5 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL5))" + }, + "FR_ENFAIL5": { + "DEP_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5)) and (FR_ENFAIL5 =\"1\" or isnull(FR_ENFAIL5))", + "COM_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5)) and (FR_ENFAIL5 =\"1\" or isnull(FR_ENFAIL5))", + "PAY_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5)) and (FR_ENFAIL5 =\"2\")" + }, + "ANAI_ENFAIL5": { + "LOG_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2004) and (cast(ANAI_ENFAIL5,integer) <= 2011)", + "AUT_PAR_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2004) and (PARENT_VIT_ENFAIL5<>=\"3\")", + "DORT_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2004)", + "SEP_AUT_PAR_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2004) and (PARENT_VIT_ENFAIL5<>\"3\")", + "RESID_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2004) and (PARENT_VIT_ENFAIL5<>\"3\") and (SEP_AUT_PAR_ENFAIL5 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL5))" + }, + "SEP_AUT_PAR_ENFAIL5": { + "RESID_ENFAIL5": "(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2004) and (PARENT_VIT_ENFAIL5<>\"3\") and (SEP_AUT_PAR_ENFAIL5 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL5))" + }, + "PARENT_VIT_ENFAIL6": { + "PARENT_VECU_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (PARENT_VIT_ENFAIL6 =\"2\" or PARENT_VIT_ENFAIL6 =\"3\" or isnull( PARENT_VIT_ENFAIL6))", + "AUT_PAR_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2004) and (PARENT_VIT_ENFAIL6<>=\"3\")", + "SEP_AUT_PAR_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2004) and (PARENT_VIT_ENFAIL6<>\"3\")", + "RESID_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2004) and (PARENT_VIT_ENFAIL6<>\"3\") and (SEP_AUT_PAR_ENFAIL6 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL6))" + }, + "DC_ENFAIL6": { + "AG_DC_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"2\")", + "AG_DEPART_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6))", + "PARENT_FREQ_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6))", + "FR_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6))", + "DEP_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6)) and (FR_ENFAIL6 =\"1\" or isnull(FR_ENFAIL6))", + "COM_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6)) and (FR_ENFAIL6 =\"1\" or isnull(FR_ENFAIL6))", + "PAY_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6)) and (FR_ENFAIL6 =\"2\")", + "LOG_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2004) and (cast(ANAI_ENFAIL6,integer) <= 2011)", + "AUT_PAR_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2004) and (PARENT_VIT_ENFAIL6<>=\"3\")", + "DORT_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2004)", + "SEP_AUT_PAR_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2004) and (PARENT_VIT_ENFAIL6<>\"3\")", + "RESID_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2004) and (PARENT_VIT_ENFAIL6<>\"3\") and (SEP_AUT_PAR_ENFAIL6 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL6))" + }, + "FR_ENFAIL6": { + "DEP_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6)) and (FR_ENFAIL6 =\"1\" or isnull(FR_ENFAIL6))", + "COM_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6)) and (FR_ENFAIL6 =\"1\" or isnull(FR_ENFAIL6))", + "PAY_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6)) and (FR_ENFAIL6 =\"2\")" + }, + "ANAI_ENFAIL6": { + "LOG_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2004) and (cast(ANAI_ENFAIL6,integer) <= 2011)", + "AUT_PAR_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2004) and (PARENT_VIT_ENFAIL6<>=\"3\")", + "DORT_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2004)", + "SEP_AUT_PAR_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2004) and (PARENT_VIT_ENFAIL6<>\"3\")", + "RESID_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2004) and (PARENT_VIT_ENFAIL6<>\"3\") and (SEP_AUT_PAR_ENFAIL6 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL6))" + }, + "SEP_AUT_PAR_ENFAIL6": { + "RESID_ENFAIL6": "(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2004) and (PARENT_VIT_ENFAIL6<>\"3\") and (SEP_AUT_PAR_ENFAIL6 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL6))" + }, + "PARENT_VIT_ENFAIL7": { + "PARENT_VECU_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (PARENT_VIT_ENFAIL7 =\"2\" or PARENT_VIT_ENFAIL7 =\"3\" or isnull( PARENT_VIT_ENFAIL7))", + "AUT_PAR_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2004) and (PARENT_VIT_ENFAIL7<>=\"3\")", + "SEP_AUT_PAR_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2004) and (PARENT_VIT_ENFAIL7<>\"3\")", + "RESID_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2004) and (PARENT_VIT_ENFAIL7<>\"3\") and (SEP_AUT_PAR_ENFAIL7 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL7))" + }, + "DC_ENFAIL7": { + "AG_DC_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"2\")", + "AG_DEPART_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7))", + "PARENT_FREQ_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7))", + "FR_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7))", + "DEP_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7)) and (FR_ENFAIL7 =\"1\" or isnull(FR_ENFAIL7))", + "COM_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7)) and (FR_ENFAIL7 =\"1\" or isnull(FR_ENFAIL7))", + "PAY_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7)) and (FR_ENFAIL7 =\"2\")", + "LOG_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2004) and (cast(ANAI_ENFAIL7,integer) <= 2011)", + "AUT_PAR_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2004) and (PARENT_VIT_ENFAIL7<>=\"3\")", + "DORT_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2004)", + "SEP_AUT_PAR_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2004) and (PARENT_VIT_ENFAIL7<>\"3\")", + "RESID_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2004) and (PARENT_VIT_ENFAIL7<>\"3\") and (SEP_AUT_PAR_ENFAIL7 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL7))" + }, + "FR_ENFAIL7": { + "DEP_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7)) and (FR_ENFAIL7 =\"1\" or isnull(FR_ENFAIL7))", + "COM_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7)) and (FR_ENFAIL7 =\"1\" or isnull(FR_ENFAIL7))", + "PAY_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7)) and (FR_ENFAIL7 =\"2\")" + }, + "ANAI_ENFAIL7": { + "LOG_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2004) and (cast(ANAI_ENFAIL7,integer) <= 2011)", + "AUT_PAR_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2004) and (PARENT_VIT_ENFAIL7<>=\"3\")", + "DORT_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2004)", + "SEP_AUT_PAR_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2004) and (PARENT_VIT_ENFAIL7<>\"3\")", + "RESID_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2004) and (PARENT_VIT_ENFAIL7<>\"3\") and (SEP_AUT_PAR_ENFAIL7 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL7))" + }, + "SEP_AUT_PAR_ENFAIL7": { + "RESID_ENFAIL7": "(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2004) and (PARENT_VIT_ENFAIL7<>\"3\") and (SEP_AUT_PAR_ENFAIL7 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL7))" + }, + "PARENT_VIT_ENFAIL8": { + "PARENT_VECU_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (PARENT_VIT_ENFAIL8 =\"2\" or PARENT_VIT_ENFAIL8 =\"3\" or isnull( PARENT_VIT_ENFAIL8))", + "AUT_PAR_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2004) and (PARENT_VIT_ENFAIL8<>=\"3\")", + "SEP_AUT_PAR_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2004) and (PARENT_VIT_ENFAIL8<>\"3\")", + "RESID_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2004) and (PARENT_VIT_ENFAIL8<>\"3\") and (SEP_AUT_PAR_ENFAIL8 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL8))" + }, + "DC_ENFAIL8": { + "AG_DC_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"2\")", + "AG_DEPART_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8))", + "PARENT_FREQ_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8))", + "FR_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8))", + "DEP_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8)) and (FR_ENFAIL8 =\"1\" or isnull(FR_ENFAIL8))", + "COM_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8)) and (FR_ENFAIL8 =\"1\" or isnull(FR_ENFAIL8))", + "PAY_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8)) and (FR_ENFAIL8 =\"2\")", + "LOG_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2004) and (cast(ANAI_ENFAIL8,integer) <= 2011)", + "AUT_PAR_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2004) and (PARENT_VIT_ENFAIL8<>=\"3\")", + "DORT_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2004)", + "SEP_AUT_PAR_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2004) and (PARENT_VIT_ENFAIL8<>\"3\")", + "RESID_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2004) and (PARENT_VIT_ENFAIL8<>\"3\") and (SEP_AUT_PAR_ENFAIL8 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL8))" + }, + "FR_ENFAIL8": { + "DEP_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8)) and (FR_ENFAIL8 =\"1\" or isnull(FR_ENFAIL8))", + "COM_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8)) and (FR_ENFAIL8 =\"1\" or isnull(FR_ENFAIL8))", + "PAY_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8)) and (FR_ENFAIL8 =\"2\")" + }, + "ANAI_ENFAIL8": { + "LOG_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2004) and (cast(ANAI_ENFAIL8,integer) <= 2011)", + "AUT_PAR_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2004) and (PARENT_VIT_ENFAIL8<>=\"3\")", + "DORT_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2004)", + "SEP_AUT_PAR_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2004) and (PARENT_VIT_ENFAIL8<>\"3\")", + "RESID_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2004) and (PARENT_VIT_ENFAIL8<>\"3\") and (SEP_AUT_PAR_ENFAIL8 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL8))" + }, + "SEP_AUT_PAR_ENFAIL8": { + "RESID_ENFAIL8": "(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2004) and (PARENT_VIT_ENFAIL8<>\"3\") and (SEP_AUT_PAR_ENFAIL8 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL8))" + }, + "AGE": { + "PETIT_ENF": "(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\"))", + "NB_PETIT_ENF": "(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")", + "AG_PETIT_ENF": "(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")" + }, + "PETIT_ENF": { + "NB_PETIT_ENF": "(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")", + "AG_PETIT_ENF": "(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")" + }, + "LANGUE1_ENTOU": { + "LANGUE2_ENTOU": "(LANGUE1_ENTOU <> \"\" or not(isnull(LANGUE1_ENTOU)))" + }, + "RPPRENOMPAR1": { + "NATIO_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer))", + "TRAV_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer))", + "PROF_PAR1H": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (SEXE_PAR1=\"2\" or isnull(SEXE_PAR1))", + "PROF_PAR1F": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (SEXE_PAR1=\"1\")", + "PROF_PAR1_2": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (isnull(PROF_PAR1F) and isnull(PROF_PAR1H))", + "STATUT_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1))", + "SAL_FP_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (STATUT_PAR1 =\"2\")", + "SAL_ENT_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (STATUT_PAR1 =\"3\")", + "VIV_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer))", + "ANNEE_DC_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1 =\"2\")", + "LOG_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1))", + "FR_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))", + "DEP_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"1\" or isnull(FR_PAR1))", + "COM_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"1\" or isnull(FR_PAR1))", + "PAY_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"2\")", + "ETAB_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))", + "FREQ_VU_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))", + "FREQ_CONT_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))", + "PROX_EGO_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))", + "PROX_FRAT_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1))" + }, + "PRENOM_PAR1": { + "NATIO_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer))", + "TRAV_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer))", + "PROF_PAR1H": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (SEXE_PAR1=\"2\" or isnull(SEXE_PAR1))", + "PROF_PAR1F": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (SEXE_PAR1=\"1\")", + "PROF_PAR1_2": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (isnull(PROF_PAR1F) and isnull(PROF_PAR1H))", + "STATUT_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1))", + "SAL_FP_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (STATUT_PAR1 =\"2\")", + "SAL_ENT_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (STATUT_PAR1 =\"3\")", + "VIV_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer))", + "ANNEE_DC_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1 =\"2\")", + "LOG_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1))", + "FR_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))", + "DEP_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"1\" or isnull(FR_PAR1))", + "COM_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"1\" or isnull(FR_PAR1))", + "PAY_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"2\")", + "ETAB_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))", + "FREQ_VU_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))", + "FREQ_CONT_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))", + "PROX_EGO_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))", + "PROX_FRAT_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1))" + }, + "RPANAISPAR1": { + "NATIO_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer))", + "TRAV_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer))", + "PROF_PAR1H": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (SEXE_PAR1=\"2\" or isnull(SEXE_PAR1))", + "PROF_PAR1F": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (SEXE_PAR1=\"1\")", + "PROF_PAR1_2": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (isnull(PROF_PAR1F) and isnull(PROF_PAR1H))", + "STATUT_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1))", + "SAL_FP_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (STATUT_PAR1 =\"2\")", + "SAL_ENT_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (STATUT_PAR1 =\"3\")", + "VIV_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer))", + "ANNEE_DC_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1 =\"2\")", + "LOG_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1))", + "FR_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))", + "DEP_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"1\" or isnull(FR_PAR1))", + "COM_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"1\" or isnull(FR_PAR1))", + "PAY_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"2\")", + "ETAB_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))", + "FREQ_VU_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))", + "FREQ_CONT_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))", + "PROX_EGO_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))", + "PROX_FRAT_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1))" + }, + "ANAI_PAR1": { + "NATIO_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer))", + "TRAV_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer))", + "PROF_PAR1H": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (SEXE_PAR1=\"2\" or isnull(SEXE_PAR1))", + "PROF_PAR1F": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (SEXE_PAR1=\"1\")", + "PROF_PAR1_2": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (isnull(PROF_PAR1F) and isnull(PROF_PAR1H))", + "STATUT_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1))", + "SAL_FP_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (STATUT_PAR1 =\"2\")", + "SAL_ENT_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (STATUT_PAR1 =\"3\")", + "VIV_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer))", + "ANNEE_DC_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1 =\"2\")", + "LOG_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1))", + "FR_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))", + "DEP_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"1\" or isnull(FR_PAR1))", + "COM_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"1\" or isnull(FR_PAR1))", + "PAY_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"2\")", + "ETAB_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))", + "FREQ_VU_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))", + "FREQ_CONT_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))", + "PROX_EGO_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))", + "PROX_FRAT_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1))" + }, + "TRAV_PAR1": { + "PROF_PAR1H": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (SEXE_PAR1=\"2\" or isnull(SEXE_PAR1))", + "PROF_PAR1F": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (SEXE_PAR1=\"1\")", + "PROF_PAR1_2": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (isnull(PROF_PAR1F) and isnull(PROF_PAR1H))", + "STATUT_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1))", + "SAL_FP_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (STATUT_PAR1 =\"2\")", + "SAL_ENT_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (STATUT_PAR1 =\"3\")" + }, + "SEXE_PAR1": { + "PROF_PAR1H": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (SEXE_PAR1=\"2\" or isnull(SEXE_PAR1))", + "PROF_PAR1F": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (SEXE_PAR1=\"1\")" + }, + "PROF_PAR1F": { + "PROF_PAR1_2": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (isnull(PROF_PAR1F) and isnull(PROF_PAR1H))" + }, + "PROF_PAR1H": { + "PROF_PAR1_2": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (isnull(PROF_PAR1F) and isnull(PROF_PAR1H))" + }, + "STATUT_PAR1": { + "SAL_FP_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (STATUT_PAR1 =\"2\")", + "SAL_ENT_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (STATUT_PAR1 =\"3\")" + }, + "LANGUE1_PAR1": { + "LANGUE2_PAR1": "(LANGUE1_PAR1 <> \"\" or not(isnull(LANGUE1_PAR1)))" + }, + "VIV_PAR1": { + "ANNEE_DC_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1 =\"2\")", + "LOG_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1))", + "FR_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))", + "DEP_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"1\" or isnull(FR_PAR1))", + "COM_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"1\" or isnull(FR_PAR1))", + "PAY_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"2\")", + "ETAB_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))", + "FREQ_VU_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))", + "FREQ_CONT_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))", + "PROX_EGO_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))", + "PROX_FRAT_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1))", + "LOG_PAR2B": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"2\")" + }, + "LOG_PAR1": { + "FR_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))", + "DEP_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"1\" or isnull(FR_PAR1))", + "COM_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"1\" or isnull(FR_PAR1))", + "PAY_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"2\")", + "ETAB_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))", + "FREQ_VU_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))", + "FREQ_CONT_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))", + "PROX_EGO_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))" + }, + "FR_PAR1": { + "DEP_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"1\" or isnull(FR_PAR1))", + "COM_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"1\" or isnull(FR_PAR1))", + "PAY_PAR1": "(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"2\")" + }, + "EXIST_PAR2": { + "PRENOM_PAR2": "(EXIST_PAR2 =\"1\")", + "ANAI_PAR2": "(EXIST_PAR2 =\"1\")", + "SEXE_PAR2": "(EXIST_PAR2 =\"1\")", + "NATIO_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer))", + "TRAV_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer))", + "PROF_PAR2H": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (SEXE_PAR2 =\"2\" or isnull(SEXE_PAR2))", + "PROF_PAR2F": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (SEXE_PAR2 =\"1\")", + "PROF_PAR2_2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (isnull(PROF_PAR2F) and isnull(PROF_PAR2H))", + "STATUT_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2))", + "SAL_FP_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (STATUT_PAR2 =\"2\")", + "SAL_ENT_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (STATUT_PAR2 =\"3\")", + "LANGUE1_PAR2": "(EXIST_PAR2 =\"1\")", + "LANGUE2_PAR2": "(EXIST_PAR2 =\"1\") and (LANGUE1_PAR2 <> \"\" or not(isnull(LANGUE1_PAR2)))", + "VIV_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer))", + "ANNEE_DC_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"2\")", + "LOG_PAR2B": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"2\")", + "FR_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "DEP_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2))", + "COM_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2))", + "PAY_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"2\")", + "ETAB_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "FREQ_VU_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "FREQ_CONT_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "PROX_EGO_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "PROX_FRAT_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))" + }, + "RPPRENOMPAR2": { + "NATIO_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer))", + "TRAV_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer))", + "PROF_PAR2H": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (SEXE_PAR2 =\"2\" or isnull(SEXE_PAR2))", + "PROF_PAR2F": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (SEXE_PAR2 =\"1\")", + "PROF_PAR2_2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (isnull(PROF_PAR2F) and isnull(PROF_PAR2H))", + "STATUT_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2))", + "SAL_FP_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (STATUT_PAR2 =\"2\")", + "SAL_ENT_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (STATUT_PAR2 =\"3\")", + "VIV_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer))", + "ANNEE_DC_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"2\")", + "LOG_PAR2B": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"2\")", + "FR_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "DEP_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2))", + "COM_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2))", + "PAY_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"2\")", + "ETAB_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "FREQ_VU_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "FREQ_CONT_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "PROX_EGO_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "PROX_FRAT_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))" + }, + "PRENOM_PAR2": { + "NATIO_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer))", + "TRAV_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer))", + "PROF_PAR2H": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (SEXE_PAR2 =\"2\" or isnull(SEXE_PAR2))", + "PROF_PAR2F": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (SEXE_PAR2 =\"1\")", + "PROF_PAR2_2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (isnull(PROF_PAR2F) and isnull(PROF_PAR2H))", + "STATUT_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2))", + "SAL_FP_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (STATUT_PAR2 =\"2\")", + "SAL_ENT_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (STATUT_PAR2 =\"3\")", + "VIV_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer))", + "ANNEE_DC_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"2\")", + "LOG_PAR2B": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"2\")", + "FR_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "DEP_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2))", + "COM_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2))", + "PAY_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"2\")", + "ETAB_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "FREQ_VU_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "FREQ_CONT_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "PROX_EGO_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "PROX_FRAT_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))" + }, + "RPANAISPAR2": { + "NATIO_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer))", + "TRAV_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer))", + "PROF_PAR2H": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (SEXE_PAR2 =\"2\" or isnull(SEXE_PAR2))", + "PROF_PAR2F": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (SEXE_PAR2 =\"1\")", + "PROF_PAR2_2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (isnull(PROF_PAR2F) and isnull(PROF_PAR2H))", + "STATUT_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2))", + "SAL_FP_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (STATUT_PAR2 =\"2\")", + "SAL_ENT_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (STATUT_PAR2 =\"3\")", + "VIV_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer))", + "ANNEE_DC_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"2\")", + "LOG_PAR2B": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"2\")", + "FR_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "DEP_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2))", + "COM_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2))", + "PAY_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"2\")", + "ETAB_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "FREQ_VU_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "FREQ_CONT_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "PROX_EGO_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "PROX_FRAT_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))" + }, + "ANAI_PAR2": { + "NATIO_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer))", + "TRAV_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer))", + "PROF_PAR2H": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (SEXE_PAR2 =\"2\" or isnull(SEXE_PAR2))", + "PROF_PAR2F": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (SEXE_PAR2 =\"1\")", + "PROF_PAR2_2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (isnull(PROF_PAR2F) and isnull(PROF_PAR2H))", + "STATUT_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2))", + "SAL_FP_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (STATUT_PAR2 =\"2\")", + "SAL_ENT_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (STATUT_PAR2 =\"3\")", + "VIV_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer))", + "ANNEE_DC_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"2\")", + "LOG_PAR2B": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"2\")", + "FR_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "DEP_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2))", + "COM_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2))", + "PAY_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"2\")", + "ETAB_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "FREQ_VU_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "FREQ_CONT_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "PROX_EGO_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "PROX_FRAT_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))" + }, + "TRAV_PAR2": { + "PROF_PAR2H": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (SEXE_PAR2 =\"2\" or isnull(SEXE_PAR2))", + "PROF_PAR2F": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (SEXE_PAR2 =\"1\")", + "PROF_PAR2_2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (isnull(PROF_PAR2F) and isnull(PROF_PAR2H))", + "STATUT_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2))", + "SAL_FP_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (STATUT_PAR2 =\"2\")", + "SAL_ENT_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (STATUT_PAR2 =\"3\")" + }, + "SEXE_PAR2": { + "PROF_PAR2H": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (SEXE_PAR2 =\"2\" or isnull(SEXE_PAR2))", + "PROF_PAR2F": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (SEXE_PAR2 =\"1\")" + }, + "PROF_PAR2F": { + "PROF_PAR2_2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (isnull(PROF_PAR2F) and isnull(PROF_PAR2H))" + }, + "PROF_PAR2H": { + "PROF_PAR2_2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (isnull(PROF_PAR2F) and isnull(PROF_PAR2H))" + }, + "STATUT_PAR2": { + "SAL_FP_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (STATUT_PAR2 =\"2\")", + "SAL_ENT_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (STATUT_PAR2 =\"3\")" + }, + "LANGUE1_PAR2": { + "LANGUE2_PAR2": "(EXIST_PAR2 =\"1\") and (LANGUE1_PAR2 <> \"\" or not(isnull(LANGUE1_PAR2)))" + }, + "VIV_PAR2": { + "ANNEE_DC_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"2\")", + "LOG_PAR2B": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"2\")", + "FR_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "DEP_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2))", + "COM_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2))", + "PAY_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"2\")", + "ETAB_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "FREQ_VU_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "FREQ_CONT_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "PROX_EGO_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "PROX_FRAT_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))" + }, + "LOG_PAR2A3": { + "FR_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "DEP_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2))", + "COM_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2))", + "PAY_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"2\")", + "ETAB_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "FREQ_VU_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "FREQ_CONT_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "PROX_EGO_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "PROX_FRAT_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))" + }, + "LOG_PAR2B": { + "FR_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "DEP_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2))", + "COM_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2))", + "PAY_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"2\")", + "ETAB_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "FREQ_VU_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "FREQ_CONT_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "PROX_EGO_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "PROX_FRAT_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))" + }, + "LOG_PAR2A1": { + "FR_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "DEP_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2))", + "COM_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2))", + "PAY_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"2\")", + "ETAB_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "FREQ_VU_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "FREQ_CONT_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "PROX_EGO_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "PROX_FRAT_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))" + }, + "LOG_PAR2A2": { + "FR_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "DEP_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2))", + "COM_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2))", + "PAY_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"2\")", + "ETAB_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "FREQ_VU_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "FREQ_CONT_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "PROX_EGO_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))", + "PROX_FRAT_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))" + }, + "FR_PAR2": { + "DEP_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2))", + "COM_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2))", + "PAY_PAR2": "(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"2\")" + }, + "NB_FRERES": { + "NB_FRERES_VIV1": "(NB_FRERES = 1)", + "NB_FRERES_VIV": "(NB_FRERES > 1)" + }, + "NB_SOEURS": { + "NB_SOEURS_VIV1": "(NB_SOEURS = 1)", + "NB_SOEURS_VIV": "(NB_SOEURS > 1)" + }, + "FINETU": { + "ANNEE_FINETU": "(FINETU=\"1\")" + }, + "DEJATRAV": { + "ANNEE_EMPLOI1": "(isnull(DEJATRAV) or DEJATRAV =\"1\")", + "TRAVACT": "(isnull(DEJATRAV) or DEJATRAV =\"1\")", + "INTER_TRAV1": "(isnull(DEJATRAV) or DEJATRAV =\"1\")", + "INTER_TRAV2": "(isnull(DEJATRAV) or DEJATRAV =\"1\") and (INTER_TRAV1 =\"2\")", + "INTER_TRAV3": "(isnull(DEJATRAV) or DEJATRAV =\"1\") and (INTER_TRAV1 =\"2\")" + }, + "TRAVACT": { + "ANNEE_FINEMP": "(TRAVACT=\"2\")" + }, + "INTER_TRAV1": { + "INTER_TRAV2": "(isnull(DEJATRAV) or DEJATRAV =\"1\") and (INTER_TRAV1 =\"2\")", + "INTER_TRAV3": "(isnull(DEJATRAV) or DEJATRAV =\"1\") and (INTER_TRAV1 =\"2\")" + }, + "PRENOM_FIN": { + "PRENOM_PROX": "(PRENOM_FIN =\"2\")", + "AVIS_FILTRE": "(isnull(PRENOM_FIN) or PRENOM_FIN =\"1\")", + "AVIS_FILTRE_P": "(PRENOM_FIN =\"2\")" + }, + "AVIS_FILTRE": { + "AVIS_RMQ": "(AVIS_FILTRE =\"2\" or AVIS_FILTRE_P =\"2\")", + "AVIS_AR": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\")", + "AVIS_NOTICE": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\")", + "AVIS_RAIS_NOTICE": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\") and (AVIS_NOTICE =\"2\")", + "AVIS_SITE_NET": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\")", + "AVIS_RAIS_SITE": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\") and (AVIS_SITE_NET =\"2\")", + "AVIS_MAIL": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\")", + "AVIS_TEL": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\")", + "AVIS_QUEST": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\") and (AVIS_DIFF6)", + "AVIS_AUTR_DIFF": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\") and (AVIS_DIFF7)", + "AVIS_ORDRE": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\") and (not(isnull(RPNBQUEST)) and RPNBQUEST <> \"1\")", + "AVIS_ASSIST": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\")", + "AVIS_RMQ_FIN": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\")", + "AVIS_AUTR_RMQ": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\") and (AVIS_RMQ_FIN =\"1\")" + }, + "AVIS_FILTRE_P": { + "AVIS_RMQ": "(AVIS_FILTRE =\"2\" or AVIS_FILTRE_P =\"2\")", + "AVIS_AR": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\")", + "AVIS_NOTICE": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\")", + "AVIS_RAIS_NOTICE": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\") and (AVIS_NOTICE =\"2\")", + "AVIS_SITE_NET": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\")", + "AVIS_RAIS_SITE": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\") and (AVIS_SITE_NET =\"2\")", + "AVIS_MAIL": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\")", + "AVIS_TEL": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\")", + "AVIS_QUEST": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\") and (AVIS_DIFF6)", + "AVIS_AUTR_DIFF": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\") and (AVIS_DIFF7)", + "AVIS_ORDRE": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\") and (not(isnull(RPNBQUEST)) and RPNBQUEST <> \"1\")", + "AVIS_ASSIST": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\")", + "AVIS_RMQ_FIN": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\")", + "AVIS_AUTR_RMQ": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\") and (AVIS_RMQ_FIN =\"1\")" + }, + "AVIS_NOTICE": { + "AVIS_RAIS_NOTICE": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\") and (AVIS_NOTICE =\"2\")" + }, + "AVIS_SITE_NET": { + "AVIS_RAIS_SITE": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\") and (AVIS_SITE_NET =\"2\")" + }, + "AVIS_DIFF6": { + "AVIS_QUEST": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\") and (AVIS_DIFF6)" + }, + "AVIS_DIFF7": { + "AVIS_AUTR_DIFF": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\") and (AVIS_DIFF7)" + }, + "RPNBQUEST": { + "AVIS_ORDRE": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\") and (not(isnull(RPNBQUEST)) and RPNBQUEST <> \"1\")" + }, + "AVIS_RMQ_FIN": { + "AVIS_AUTR_RMQ": "(AVIS_FILTRE =\"1\" or AVIS_FILTRE_P =\"1\") and (AVIS_RMQ_FIN =\"1\")" + } + }, + "resizing": { + "RPNBQUEST": { + "size": "RPNBQUEST", + "variables": [ + "VAL_ANNAISS", + "DATNAIS_X", + "COUPLE", + "RAISON_VIE_CJT", + "PRECIS_VIECJT", + "PRENOM_C", + "DATNAIS_C", + "SEXE_CH", + "LIEUNAIS_CH", + "DNAI_CH", + "PNAI_CH", + "TRAV_CH", + "PROF_CH1", + "PROF_CH2", + "PROF_C2H", + "STATUT_CH", + "SAL_FP_CH", + "SAL_ENT_CH", + "SEXE_CF", + "LIEUNAIS_CF", + "DNAI_CF", + "PNAI_CF", + "TRAV_CF", + "PROF_CF1", + "PROF_CF2", + "PROF_C2F", + "STATUT_CF", + "SAL_FP_CF", + "SAL_ENT_CF", + "ANNEE_U", + "PACS", + "ANNEE_PACS", + "MARI", + "ANNEE_MARI", + "SEPARE", + "ANNEE_S", + "ANNEE_D", + "ENFAV_C", + "NBENFAV_C", + "NBENFAV_VENU_C1", + "NBENFAV_VENU_C", + "VECU_C", + "ENF21_AUTPAR_C1", + "ENF21_AUTPAR_C2", + "ENF21_AUTPAR_C3", + "ENF21_AUTPAR_C4", + "AUT_UNION", + "NB_AUT_UNION", + "PRENOM_U1", + "SEXE_U1H", + "SEXE_U1F", + "ANNEE_U1", + "PACS_U1", + "ANNEE_PACS_U1", + "MARI_U1", + "ANNEE_MARI_U1", + "SEPARE_U1", + "ANNEE_S_U1", + "ANNEE_D_U1", + "ENFAV_C_U1", + "NBENFAV_C_U1", + "NBENFAV_C1_VENU_U1", + "NBENFAV_C_VENU_U1", + "AUT_U2", + "PRENOM_U2", + "SEXE_U2H", + "SEXE_U2F", + "ANNEE_U2", + "PACS_U2", + "ANNEE_PACS_U2", + "MARI_U2", + "ANNEE_MARI_U2", + "SEPARE_U2", + "ANNEE_S_U2", + "ANNEE_D_U2", + "ENFAV_C_U2", + "NBENFAV_C_U2", + "NBENFAV_C1_VENU_U2", + "NBENFAV_C_VENU_U2", + "ENF", + "NBENF", + "NBENF_ADOP1", + "NBENF_ADOP", + "LANGUE1_ENF", + "LANGUE2_ENF", + "NBENFLOG", + "CBENFLOG", + "NBENFAIL", + "CBENFAIL", + "PRENOM_ENFLOG1", + "SEXE_ENFLOG1", + "ANAI_ENFLOG1", + "NEFRANCE_ENFLOG1", + "PARENT_VIT_ENFLOG1", + "PARENT_FR_ENFLOG1", + "PARENT_DEP_ENFLOG1", + "PARENT_COM_ENFLOG1", + "PARENT_PAY_ENFLOG1", + "PARENT_FREQ_ENFLOG1", + "PARENT_DORT_ENFLOG1", + "PARENT_VECU_ENFLOG1", + "SEP_AUT_PAR_ENFLOG1", + "RESID_ENFLOG1", + "SANTE_ENFLOG11", + "SANTE_ENFLOG12", + "SANTE_ENFLOG13", + "SANTE_ENFLOG14", + "PRENOM_ENFLOG2", + "SEXE_ENFLOG2", + "ANAI_ENFLOG2", + "NEFRANCE_ENFLOG2", + "PARENT_VIT_ENFLOG2", + "PARENT_FR_ENFLOG2", + "PARENT_DEP_ENFLOG2", + "PARENT_COM_ENFLOG2", + "PARENT_PAY_ENFLOG2", + "PARENT_FREQ_ENFLOG2", + "PARENT_DORT_ENFLOG2", + "PARENT_VECU_ENFLOG2", + "SEP_AUT_PAR_ENFLOG2", + "RESID_ENFLOG2", + "SANTE_ENFLOG21", + "SANTE_ENFLOG22", + "SANTE_ENFLOG23", + "SANTE_ENFLOG24", + "PRENOM_ENFLOG3", + "SEXE_ENFLOG3", + "ANAI_ENFLOG3", + "NEFRANCE_ENFLOG3", + "PARENT_VIT_ENFLOG3", + "PARENT_FR_ENFLOG3", + "PARENT_DEP_ENFLOG3", + "PARENT_COM_ENFLOG3", + "PARENT_PAY_ENFLOG3", + "PARENT_FREQ_ENFLOG3", + "PARENT_DORT_ENFLOG3", + "PARENT_VECU_ENFLOG3", + "SEP_AUT_PAR_ENFLOG3", + "RESID_ENFLOG3", + "SANTE_ENFLOG31", + "SANTE_ENFLOG32", + "SANTE_ENFLOG33", + "SANTE_ENFLOG34", + "PRENOM_ENFLOG4", + "SEXE_ENFLOG4", + "ANAI_ENFLOG4", + "NEFRANCE_ENFLOG4", + "PARENT_VIT_ENFLOG4", + "PARENT_FR_ENFLOG4", + "PARENT_DEP_ENFLOG4", + "PARENT_COM_ENFLOG4", + "PARENT_PAY_ENFLOG4", + "PARENT_FREQ_ENFLOG4", + "PARENT_DORT_ENFLOG4", + "PARENT_VECU_ENFLOG4", + "SEP_AUT_PAR_ENFLOG4", + "RESID_ENFLOG4", + "SANTE_ENFLOG41", + "SANTE_ENFLOG42", + "SANTE_ENFLOG43", + "SANTE_ENFLOG44", + "PRENOM_ENFLOG5", + "SEXE_ENFLOG5", + "ANAI_ENFLOG5", + "NEFRANCE_ENFLOG5", + "PARENT_VIT_ENFLOG5", + "PARENT_FR_ENFLOG5", + "PARENT_DEP_ENFLOG5", + "PARENT_COM_ENFLOG5", + "PARENT_PAY_ENFLOG5", + "PARENT_FREQ_ENFLOG5", + "PARENT_DORT_ENFLOG5", + "PARENT_VECU_ENFLOG5", + "SEP_AUT_PAR_ENFLOG5", + "RESID_ENFLOG5", + "SANTE_ENFLOG51", + "SANTE_ENFLOG52", + "SANTE_ENFLOG53", + "SANTE_ENFLOG54", + "PRENOM_ENFLOG6", + "SEXE_ENFLOG6", + "ANAI_ENFLOG6", + "NEFRANCE_ENFLOG6", + "PARENT_VIT_ENFLOG6", + "PARENT_FR_ENFLOG6", + "PARENT_DEP_ENFLOG6", + "PARENT_COM_ENFLOG6", + "PARENT_PAY_ENFLOG6", + "PARENT_FREQ_ENFLOG6", + "PARENT_DORT_ENFLOG6", + "PARENT_VECU_ENFLOG6", + "SEP_AUT_PAR_ENFLOG6", + "RESID_ENFLOG6", + "SANTE_ENFLOG61", + "SANTE_ENFLOG62", + "SANTE_ENFLOG63", + "SANTE_ENFLOG64", + "PRENOM_ENFLOG7", + "SEXE_ENFLOG7", + "ANAI_ENFLOG7", + "NEFRANCE_ENFLOG7", + "PARENT_VIT_ENFLOG7", + "PARENT_FR_ENFLOG7", + "PARENT_DEP_ENFLOG7", + "PARENT_COM_ENFLOG7", + "PARENT_PAY_ENFLOG7", + "PARENT_FREQ_ENFLOG7", + "PARENT_DORT_ENFLOG7", + "PARENT_VECU_ENFLOG7", + "SEP_AUT_PAR_ENFLOG7", + "RESID_ENFLOG7", + "SANTE_ENFLOG71", + "SANTE_ENFLOG72", + "SANTE_ENFLOG73", + "SANTE_ENFLOG74", + "PRENOM_ENFLOG8", + "SEXE_ENFLOG8", + "ANAI_ENFLOG8", + "NEFRANCE_ENFLOG8", + "PARENT_VIT_ENFLOG8", + "PARENT_FR_ENFLOG8", + "PARENT_DEP_ENFLOG8", + "PARENT_COM_ENFLOG8", + "PARENT_PAY_ENFLOG8", + "PARENT_FREQ_ENFLOG8", + "PARENT_DORT_ENFLOG8", + "PARENT_VECU_ENFLOG8", + "SEP_AUT_PAR_ENFLOG8", + "RESID_ENFLOG8", + "SANTE_ENFLOG81", + "SANTE_ENFLOG82", + "SANTE_ENFLOG83", + "SANTE_ENFLOG84", + "PRENOM_ENFAIL1", + "SEXE_ENFAIL1", + "ANAI_ENFAIL1", + "NEFRANCE_ENFAIL1", + "PARENT_VIT_ENFAIL1", + "PARENT_VECU_ENFAIL1", + "DC_ENFAIL1", + "AG_DC_ENFAIL1", + "AG_DEPART_ENFAIL1", + "PARENT_FREQ_ENFAIL1", + "FR_ENFAIL1", + "DEP_ENFAIL1", + "COM_ENFAIL1", + "PAY_ENFAIL1", + "LOG_ENFAIL1", + "AUT_PAR_ENFAIL1", + "DORT_ENFAIL1", + "SEP_AUT_PAR_ENFAIL1", + "RESID_ENFAIL1", + "SANTE_ENFAIL11", + "SANTE_ENFAIL12", + "SANTE_ENFAIL13", + "PRENOM_ENFAIL2", + "SEXE_ENFAIL2", + "ANAI_ENFAIL2", + "NEFRANCE_ENFAIL2", + "PARENT_VIT_ENFAIL2", + "PARENT_VECU_ENFAIL2", + "DC_ENFAIL2", + "AG_DC_ENFAIL2", + "AG_DEPART_ENFAIL2", + "PARENT_FREQ_ENFAIL2", + "FR_ENFAIL2", + "DEP_ENFAIL2", + "COM_ENFAIL2", + "PAY_ENFAIL2", + "LOG_ENFAIL2", + "AUT_PAR_ENFAIL2", + "DORT_ENFAIL2", + "SEP_AUT_PAR_ENFAIL2", + "RESID_ENFAIL2", + "SANTE_ENFAIL21", + "SANTE_ENFAIL22", + "SANTE_ENFAIL23", + "PRENOM_ENFAIL3", + "SEXE_ENFAIL3", + "ANAI_ENFAIL3", + "NEFRANCE_ENFAIL3", + "PARENT_VIT_ENFAIL3", + "PARENT_VECU_ENFAIL3", + "DC_ENFAIL3", + "AG_DC_ENFAIL3", + "AG_DEPART_ENFAIL3", + "PARENT_FREQ_ENFAIL3", + "FR_ENFAIL3", + "DEP_ENFAIL3", + "COM_ENFAIL3", + "PAY_ENFAIL3", + "LOG_ENFAIL3", + "AUT_PAR_ENFAIL3", + "DORT_ENFAIL3", + "SEP_AUT_PAR_ENFAIL3", + "RESID_ENFAIL3", + "SANTE_ENFAIL31", + "SANTE_ENFAIL32", + "SANTE_ENFAIL33", + "PRENOM_ENFAIL4", + "SEXE_ENFAIL4", + "ANAI_ENFAIL4", + "NEFRANCE_ENFAIL4", + "PARENT_VIT_ENFAIL4", + "PARENT_VECU_ENFAIL4", + "DC_ENFAIL4", + "AG_DC_ENFAIL4", + "AG_DEPART_ENFAIL4", + "PARENT_FREQ_ENFAIL4", + "FR_ENFAIL4", + "DEP_ENFAIL4", + "COM_ENFAIL4", + "PAY_ENFAIL4", + "LOG_ENFAIL4", + "AUT_PAR_ENFAIL4", + "DORT_ENFAIL4", + "SEP_AUT_PAR_ENFAIL4", + "RESID_ENFAIL4", + "SANTE_ENFAIL41", + "SANTE_ENFAIL42", + "SANTE_ENFAIL43", + "PRENOM_ENFAIL5", + "SEXE_ENFAIL5", + "ANAI_ENFAIL5", + "NEFRANCE_ENFAIL5", + "PARENT_VIT_ENFAIL5", + "PARENT_VECU_ENFAIL5", + "DC_ENFAIL5", + "AG_DC_ENFAIL5", + "AG_DEPART_ENFAIL5", + "PARENT_FREQ_ENFAIL5", + "FR_ENFAIL5", + "DEP_ENFAIL5", + "COM_ENFAIL5", + "PAY_ENFAIL5", + "LOG_ENFAIL5", + "AUT_PAR_ENFAIL5", + "DORT_ENFAIL5", + "SEP_AUT_PAR_ENFAIL5", + "RESID_ENFAIL5", + "SANTE_ENFAIL51", + "SANTE_ENFAIL52", + "SANTE_ENFAIL53", + "PRENOM_ENFAIL6", + "SEXE_ENFAIL6", + "ANAI_ENFAIL6", + "NEFRANCE_ENFAIL6", + "PARENT_VIT_ENFAIL6", + "PARENT_VECU_ENFAIL6", + "DC_ENFAIL6", + "AG_DC_ENFAIL6", + "AG_DEPART_ENFAIL6", + "PARENT_FREQ_ENFAIL6", + "FR_ENFAIL6", + "DEP_ENFAIL6", + "COM_ENFAIL6", + "PAY_ENFAIL6", + "LOG_ENFAIL6", + "AUT_PAR_ENFAIL6", + "DORT_ENFAIL6", + "SEP_AUT_PAR_ENFAIL6", + "RESID_ENFAIL6", + "SANTE_ENFAIL61", + "SANTE_ENFAIL62", + "SANTE_ENFAIL63", + "PRENOM_ENFAIL7", + "SEXE_ENFAIL7", + "ANAI_ENFAIL7", + "NEFRANCE_ENFAIL7", + "PARENT_VIT_ENFAIL7", + "PARENT_VECU_ENFAIL7", + "DC_ENFAIL7", + "AG_DC_ENFAIL7", + "AG_DEPART_ENFAIL7", + "PARENT_FREQ_ENFAIL7", + "FR_ENFAIL7", + "DEP_ENFAIL7", + "COM_ENFAIL7", + "PAY_ENFAIL7", + "LOG_ENFAIL7", + "AUT_PAR_ENFAIL7", + "DORT_ENFAIL7", + "SEP_AUT_PAR_ENFAIL7", + "RESID_ENFAIL7", + "SANTE_ENFAIL71", + "SANTE_ENFAIL72", + "SANTE_ENFAIL73", + "PRENOM_ENFAIL8", + "SEXE_ENFAIL8", + "ANAI_ENFAIL8", + "NEFRANCE_ENFAIL8", + "PARENT_VIT_ENFAIL8", + "PARENT_VECU_ENFAIL8", + "DC_ENFAIL8", + "AG_DC_ENFAIL8", + "AG_DEPART_ENFAIL8", + "PARENT_FREQ_ENFAIL8", + "FR_ENFAIL8", + "DEP_ENFAIL8", + "COM_ENFAIL8", + "PAY_ENFAIL8", + "LOG_ENFAIL8", + "AUT_PAR_ENFAIL8", + "DORT_ENFAIL8", + "SEP_AUT_PAR_ENFAIL8", + "RESID_ENFAIL8", + "SANTE_ENFAIL81", + "SANTE_ENFAIL82", + "SANTE_ENFAIL83", + "PETIT_ENF", + "NB_PETIT_ENF", + "AG_PETIT_ENF", + "FREQ_VU_PETIT_ENF1", + "FREQ_VU_PETIT_ENF2", + "FREQ_VU_PETIT_ENF3", + "FREQ_VU_PETIT_ENF4", + "FREQ_CONT_PETIT_ENF1", + "FREQ_CONT_PETIT_ENF2", + "FREQ_CONT_PETIT_ENF3", + "FREQ_CONT_PETIT_ENF4", + "AIDE_APPORT1", + "AIDE_APPORT2", + "AIDE_APPORT3", + "AIDE_APPORT4", + "AIDE_APPORT5", + "QUI_AID_APP_11", + "QUI_AID_APP_12", + "QUI_AID_APP_13", + "QUI_AID_APP_14", + "QUI_AID_APP_21", + "QUI_AID_APP_22", + "QUI_AID_APP_23", + "QUI_AID_APP_24", + "QUI_AID_APP_31", + "QUI_AID_APP_32", + "QUI_AID_APP_33", + "QUI_AID_APP_34", + "QUI_AID_APP_41", + "QUI_AID_APP_42", + "QUI_AID_APP_43", + "QUI_AID_APP_44", + "AIDE_RECUE1", + "AIDE_RECUE2", + "AIDE_RECUE3", + "AIDE_RECUE4", + "QUI_AID_REC_11", + "QUI_AID_REC_12", + "QUI_AID_REC_13", + "QUI_AID_REC_14", + "QUI_AID_REC_21", + "QUI_AID_REC_22", + "QUI_AID_REC_23", + "QUI_AID_REC_24", + "QUI_AID_REC_31", + "QUI_AID_REC_32", + "QUI_AID_REC_33", + "QUI_AID_REC_34", + "LANGUE1_ENTOU", + "LANGUE2_ENTOU", + "PRENOM_PAR1", + "ANAI_PAR1", + "SEXE_PAR1", + "NATIO_PAR1", + "TRAV_PAR1", + "PROF_PAR1H", + "PROF_PAR1F", + "PROF_PAR1_2", + "STATUT_PAR1", + "SAL_FP_PAR1", + "SAL_ENT_PAR1", + "LANGUE1_PAR1", + "LANGUE2_PAR1", + "VIV_PAR1", + "ANNEE_DC_PAR1", + "LOG_PAR1", + "FR_PAR1", + "DEP_PAR1", + "COM_PAR1", + "PAY_PAR1", + "ETAB_PAR1", + "FREQ_VU_PAR1", + "FREQ_CONT_PAR1", + "PROX_EGO_PAR1", + "PROX_FRAT_PAR1", + "EXIST_PAR2", + "PRENOM_PAR2", + "ANAI_PAR2", + "SEXE_PAR2", + "NATIO_PAR2", + "TRAV_PAR2", + "PROF_PAR2H", + "PROF_PAR2F", + "PROF_PAR2_2", + "STATUT_PAR2", + "SAL_FP_PAR2", + "SAL_ENT_PAR2", + "LANGUE1_PAR2", + "LANGUE2_PAR2", + "VIV_PAR2", + "ANNEE_DC_PAR2", + "LOG_PAR2A1", + "LOG_PAR2A2", + "LOG_PAR2A3", + "LOG_PAR2B", + "FR_PAR2", + "DEP_PAR2", + "COM_PAR2", + "PAY_PAR2", + "ETAB_PAR2", + "FREQ_VU_PAR2", + "FREQ_CONT_PAR2", + "PROX_EGO_PAR2", + "PROX_FRAT_PAR2", + "NB_FRERES", + "NB_FRERES_VIV1", + "NB_FRERES_VIV", + "NB_SOEURS", + "NB_SOEURS_VIV1", + "NB_SOEURS_VIV", + "AG_DEP_PARENT", + "VECU_JEUNESSE1", + "VECU_JEUNESSE2", + "VECU_JEUNESSE3", + "VECU_JEUNESSE4", + "VECU_JEUNESSE5", + "VECU_JEUNESSE6", + "VECU_JEUNESSE7", + "VECU_PLACE", + "TYP_PLACE1", + "TYP_PLACE2", + "TYP_PLACE3", + "TYP_PLACE4", + "HEBERG", + "FINETU", + "ANNEE_FINETU", + "DEJATRAV", + "ANNEE_EMPLOI1", + "TRAVACT", + "ANNEE_FINEMP", + "INTER_TRAV1", + "INTER_TRAV2", + "INTER_TRAV3", + "PRENOM_FIN", + "PRENOM_PROX", + "AVIS_FILTRE", + "AVIS_FILTRE_P", + "AVIS_RMQ", + "AVIS_RAISON1", + "AVIS_RAISON2", + "AVIS_RAISON3", + "AVIS_RAISON4", + "AVIS_RAISON5", + "AVIS_RAISON6", + "AVIS_AR", + "AVIS_NOTICE", + "AVIS_RAIS_NOTICE", + "AVIS_SITE_NET", + "AVIS_RAIS_SITE", + "AVIS_MAIL", + "AVIS_SUPPORT1", + "AVIS_SUPPORT2", + "AVIS_SUPPORT3", + "AVIS_TEL", + "AVIS_DIFF1", + "AVIS_DIFF2", + "AVIS_DIFF3", + "AVIS_DIFF4", + "AVIS_DIFF5", + "AVIS_DIFF6", + "AVIS_DIFF7", + "AVIS_DIFF8", + "AVIS_QUEST", + "AVIS_AUTR_DIFF", + "AVIS_ORDRE", + "AVIS_ASSIST", + "AVIS_RMQ_FIN", + "AVIS_AUTR_RMQ" + ] + } + } +} \ No newline at end of file diff --git a/eno-core/src/test/resources/functional/pogues/pagination/pogues-llxh9g6g.json b/eno-core/src/test/resources/functional/pogues/pagination/pogues-llxh9g6g.json new file mode 100644 index 000000000..a34892b1c --- /dev/null +++ b/eno-core/src/test/resources/functional/pogues/pagination/pogues-llxh9g6g.json @@ -0,0 +1,21155 @@ +{ + "owner": "DG75-L120", + "FlowControl": [ + { + "Description": "Arrêt car déménagement", + "Expression": "$CADR$ = \"3\"", + "id": "kks5qa53", + "IfTrue": "kb9ie1nv-kb9ie1nv" + }, + { + "Description": "Correction adresse", + "Expression": "$CADR$ = \"2\"", + "id": "kks6bbzr", + "IfTrue": "kbakywwy-kbal9dwk" + }, + { + "Description": "Filtre immeuble", + "Expression": "(not(isnull($HTLC1$)) and $HTLC1$ = \"6\")", + "id": "kks6ik7e", + "IfTrue": "kbgi5n3g-kbgi5n3g" + }, + { + "Description": "maison individuelle", + "Expression": "$HTLC1$ = \"1\" or $INDCOLL$ = \"2\"", + "id": "kks71hik", + "IfTrue": "kbgigljc-kbgim4v3" + }, + { + "Description": "Immeuble collectif", + "Expression": "$HTLC1$ = \"2\" or $INDCOLL$ = \"1\"", + "id": "kks70xeh", + "IfTrue": "kbgidvnm-kbgigafp" + }, + { + "Description": "Modification du destinataire", + "Expression": "$CHGNC$ = \"2\" and not(isnull($CHGNC$))", + "id": "kksctbwg", + "IfTrue": "kbaxq9l0-kbbzhtx3" + }, + { + "Description": "Sélection du conjoint", + "Expression": "$COUPLE$ = \"1\"", + "id": "kkseh9a5", + "IfTrue": "k2ous0uj-k2ous0uj" + }, + { + "Description": "Sélection des mères", + "Expression": "$MER1E$ = \"1\"", + "id": "kkseimcx", + "IfTrue": "kksepc3a-kksepc3a" + }, + { + "Description": "Sélection des pères", + "Expression": "$PER1E$ = \"1\"", + "id": "kksezt0g", + "IfTrue": "kksern9f-kksern9f" + }, + { + "Description": "Présence d'une mère", + "Expression": "$NBHAB$ > 1", + "id": "kkseykls", + "IfTrue": "k1qj8wj8-k1qj8wj8" + }, + { + "Description": "Présence de pères", + "Expression": "$NBHAB$ > 1", + "id": "kksektih", + "IfTrue": "kbcd99g2-kbcd99g2" + }, + { + "Description": "Filtre sur le nombre d'habitants", + "Expression": "$CADR$ = \"1\" or $CADR$ = \"2\" or isnull($CADR$)", + "id": "kkzirf74", + "IfTrue": "jruq5os5-kqa0lqp4" + }, + { + "Description": "Personne seule", + "Expression": "$NBHAB$ > 1", + "id": "kkzjgsrd", + "IfTrue": "k1qik8zs-k1qik8zs" + }, + { + "Description": "Filtre sur les autres liens (hors déménagement)", + "Expression": "$CADR$ <> \"3\"", + "id": "kkzk9swr", + "IfTrue": "kkzk15ok-kkzk15ok" + }, + { + "Description": "Filtre sur les autres liens (personne seule)", + "Expression": "$NBHAB$ > 1", + "id": "kkzkce0y", + "IfTrue": "kkzk15ok-kkzk15ok" + }, + { + "Description": "Personne seule en couple", + "Expression": "$G_NBHAB$ = 1", + "id": "kkzlquat", + "IfTrue": "kkzm1j8x-kkzm1j8x" + }, + { + "Description": "", + "Expression": "$LNAISREP$ = \"1\"", + "id": "kmomqsoe", + "IfTrue": "kmomi4wr-kmomi4wr" + }, + { + "Description": "", + "Expression": "$LNAISREP$ = \"2\"", + "id": "kmomztiy", + "IfTrue": "kmomj7mr-kmomj7mr" + }, + { + "Description": "", + "Expression": "$NATIONREP3$ = \"1\"", + "id": "kmonl23h", + "IfTrue": "kmonn9p9-kmonn9p9" + }, + { + "Description": "", + "Expression": "$LNAIS$ = \"1\"", + "id": "kmop51xx", + "IfTrue": "kmooqr3n-kmooqr3n" + }, + { + "Description": "", + "Expression": "$LNAIS$ = \"2\"", + "id": "kmooy711", + "IfTrue": "kmop4kfs-kmop4kfs" + }, + { + "Description": "", + "Expression": "$LNAIS$ =\"1\" and ($persplus18TR$=\"1\" or $persplus18AGE$=\"1\")", + "id": "kmor8e7k", + "IfTrue": "kmor2z1x-kmor2z1x" + }, + { + "Description": "", + "Expression": "$LNAIS$ = \"2\"", + "id": "kmorem6m", + "IfTrue": "kmorege9-kmorege9" + }, + { + "Description": "", + "Expression": "$NATIO1N3$ = \"1\"", + "id": "kmos1fcg", + "IfTrue": "kmork3x5-kmork3x5" + }, + { + "Description": "", + "Expression": "$NATIO1N3$ = true", + "id": "kmosdpt9", + "IfTrue": "kmos2yo6-kmos2yo6" + }, + { + "Description": "+ de 18 ans", + "Expression": "($persplus18TR$=\"1\" or $persplus18AGE$=\"1\")", + "id": "kmw65fpx", + "IfTrue": "kod271pp-kmw5h275" + }, + { + "Description": "", + "Expression": "$UNLOGREP$ = \"2\"", + "id": "kmx7uq7k", + "IfTrue": "kmukz3sq-kmx7eycd" + }, + { + "Description": "", + "Expression": "$LOGAUTREP$ = \"6\"", + "id": "kmx7tag7", + "IfTrue": "kmx7eycd-kmx7eycd" + }, + { + "Description": "", + "Expression": "$LOGCO$ = \"1\"", + "id": "kmx9lvv1", + "IfTrue": "kmx9pvyn-kmx9pvyn" + }, + { + "Description": "", + "Expression": "$DURLOG$ = \"2\" and $LOGENQ$ = \"2\" and $LOGAUT$ = \"2\"", + "id": "kmxa1kq2", + "IfTrue": "kmx9punx-kmx9im0b" + }, + { + "Description": "", + "Expression": "$GARDE$ = \"1\"", + "id": "kmx9whfa", + "IfTrue": "kmx9im0b-kmx9im0b" + }, + { + "Description": "Pas en emploi", + "Expression": "not(isnull($SITUA$)) and ($SITUA$ = \"2\" or $SITUA$ = \"3\" or $SITUA$ = \"4\" or $SITUA$ = \"5\" or $SITUA$ = \"6\" or $SITUA$ = \"7\")", + "id": "kmxfxjv6", + "IfTrue": "kmxg8ci7-kmxg8ci7" + }, + { + "Description": "Filtre sur la PCS actuelle", + "Expression": "$SITUA$ = \"1\" or $TRAVAIL$ = \"1\"", + "id": "koefwlvz", + "IfTrue": "koeg3e78-koeg3e78" + }, + { + "Description": "Filtre sur la PCS antérieure", + "Expression": "$SITUA$ <> \"1\" and $TRAVAIL$ <> \"1\"", + "id": "koeg9srd", + "IfTrue": "koeg6fw9-koeg6fw9" + }, + { + "Description": "Filtre pour les cuisine séparée", + "Expression": "$KCU1$=\"1\" and not(isnull($KCU1$))", + "id": "kkplqyr3", + "IfTrue": "jojuno0d-jojuno0d" + }, + { + "Description": "Filtre sur l'existence de pièces à usage exclusivement professionnel", + "Expression": "$HUP$=\"1\" and not(isnull($HUP$))", + "id": "kkpmvugt", + "IfTrue": "jojv1e5e-jojuz9k3" + }, + { + "Description": "Filtre sur l'existance d'au moins une pièce à usage exculsivement professionnel", + "Expression": "cast($HPP$,integer) >0 and $HUP$ =\"1\"", + "id": "kkpnat8j", + "IfTrue": "jojuz9k3-jojuz9k3" + }, + { + "Description": "Filtre sur l'existence de pièces annexes", + "Expression": "$HUA$ = \"1\" and not(isnull($HUA$))", + "id": "kkpnsz8f", + "IfTrue": "jojv3ha7-klw36l7v" + }, + { + "Description": "Filtre pour plusieurs pièces annexes", + "Expression": "$HPA$>1", + "id": "kkqomct0", + "IfTrue": "kkqo7tvp-kkqo7tvp" + }, + { + "Description": "filtre sur les propriétaires", + "Expression": "(not(isnull($STOC$)) and ($STOC$=\"1\" or $STOC$=\"2\"))", + "id": "kl9c0p6t", + "IfTrue": "jn0e3nhg-jn0e3nhg" + }, + { + "Description": "test filtre STOCA + Présence d'une personne majeur dans le logement autre que le répondant et son conjoint", + "Expression": "not(isnull($STOC1$)) and ($STOC1$=\"1\" or $STOC1$=\"2\" or $STOC1$=\"3\" or $STOC1$=\"4\") and $filtre_autrepers$=\"1\" ", + "id": "kl9hjrhm", + "IfTrue": "jo776s4d-jo776s4d" + }, + { + "Description": "Filtre STOCB pour les propriétaires", + "Expression": "$STOC$=\"1\" or $STOC$=\"2\"", + "id": "kl9hsxe3", + "IfTrue": "jo78hx1p-jo78hx1p" + }, + { + "Description": "Filtre STOCB pour les locataires et usufruitiers", + "Expression": "$STOC$=\"3\" or $STOC$=\"4\"", + "id": "kl9iaz4y", + "IfTrue": "kbtdexm5-kbtdexm5" + }, + { + "Description": "si l'installation date d'il y a 4 ans ou moins", + "Expression": " not(isnull($MAA2A$)) and (cast($MAA2A$,integer) >= cast($ANNEENQmoins4$,integer))", + "id": "kl9j48pi", + "IfTrue": "jojt16mt-jojt16mt" + }, + { + "Description": "Si le conjoint de l'occupant principal est arrivé il y a 4 ans ou moins", + "Expression": "not(isnull($MAA2AC$)) and (cast($MAA2AC$,integer) >= cast($ANNEENQmoins4$,integer)) ", + "id": "kl9kk36x", + "IfTrue": "jor73af6-jor73af6" + }, + { + "Description": "si le conjoint de l'occupant principal n'est pas arrivé en même temps que lui", + "Expression": "$MARRIVC$ = \"2\" and not(isnull($MARRIVC$ ))", + "id": "kl9kee8x", + "IfTrue": "jojtnq9z-jor73af6" + }, + { + "Description": "Si usufruitier et plus d'une personne dans le ménage", + "Expression": "$STOC1$ = \"3\" and cast($NBHAB$,integer) > 1 ", + "id": "klut1j4k", + "IfTrue": "klusnxnh-klusnxnh" + }, + { + "Description": "pièces annexes à usage personnel", + "Expression": "($HULHUI22$) and ($HULHUI21$ or $HULHUI23$)", + "id": "klw4c3tu", + "IfTrue": "jojuzbus-jojuzbus" + }, + { + "Description": "si pièce annexe réservé à un salarié", + "Expression": " ($HULHUI23$) and ($HULHUI21$ or $HULHUI22$) ", + "id": "klw4qqxo", + "IfTrue": "klv4iusu-klv4iusu" + }, + { + "Description": "A compléter avec : si plusieurs réponses à HULHUI", + "Expression": "(not(isnull($HPA$))) and (cast($HPA$,integer) >1)", + "id": "klw4u49l", + "IfTrue": "kmcdiwdv-klv4iusu" + }, + { + "Description": "si pièce annexe à usage personnel", + "Expression": "($HULHUI1$=\"2\" or ($HULHUI22$))", + "id": "klw5d4ei", + "IfTrue": "jojv5bnw-jojv5bnw" + }, + { + "Description": "si pièce annexe réservé à un salarié", + "Expression": "($HULHUI1$=\"3\" or ($HULHUI23$))", + "id": "klw50zmr", + "IfTrue": "klw36l7v-klw36l7v" + }, + { + "Description": "si au moins une pièce annexe", + "Expression": "cast($HPA$,integer) > 0", + "id": "kmd6vwnz", + "IfTrue": "kmd6o006-klw36l7v" + }, + { + "Description": "une pièce annexe", + "Expression": "cast($HPA$,integer) = 1", + "id": "kmd70jlv", + "IfTrue": "kmd6o006-kmd6o006" + }, + { + "Description": "si réponse au nombre de pièces d'habitation", + "Expression": "cast($HPH$,integer) > 1", + "id": "kmdbk7p4", + "IfTrue": "jojv4yqe-jojv4yqe" + }, + { + "Description": "Si hauteur de la pièce principale inférieur à 2.20 m", + "Expression": "$HAUT$=\"1\" and not(isnull($HAUT$))", + "id": "kmdcnpwj", + "IfTrue": "jojvphni-jojvphni" + }, + { + "Description": "Si véranda", + "Expression": "$KVE$ =\"1\" and not(isnull($KVE$))", + "id": "kmdhaodv", + "IfTrue": "jrupsr80-jrupy93h" + }, + { + "Description": "si surface du logement et de la véranda renseignées", + "Expression": "(cast($KSV$,integer)>=1) and (cast($HST$,integer)>=1)", + "id": "kmdh1qmv", + "IfTrue": "jrupy93h-jrupy93h" + }, + { + "Description": "si terrasse, balcon ou loggia", + "Expression": "$KBA$=\"1\" and not(isnull($KBA$))", + "id": "kmdhk927", + "IfTrue": "jrupx7iz-jrupx7iz" + }, + { + "Description": "si terrain et logement individuel", + "Expression": "$KJA$=\"1\" and $libHTLC$=\"individuel\"", + "id": "kmdi97hw", + "IfTrue": "jruq8x6e-jruq4was" + }, + { + "Description": "si logement collectif", + "Expression": "$libHTLC$=\"collectif\" and $KJA$=\"1\" ", + "id": "kmdifmw4", + "IfTrue": "jruq6fv0-jruq6fv0" + }, + { + "Description": "si surface du terrain non renseigné", + "Expression": "isnull($KSJPI$)", + "id": "kmdih7pd", + "IfTrue": "jruq85av-jruq85av" + }, + { + "Description": "si logement collectif ou maison individuelle en copropriété", + "Expression": "($libHTLC$ =\"collectif\") or ($ICOI$=\"1\")", + "id": "kmdjxq9q", + "IfTrue": "jruqlf39-jrusmgfq" + }, + { + "Description": "si escpaces extérieurs en tant que partie communes", + "Expression": "$KJC$=\"1\" and not(isnull($KJC$))", + "id": "kmdk0utz", + "IfTrue": "jrusmgfq-jrusmgfq" + }, + { + "Description": "si maison individuelle ou ferme", + "Expression": "$HTLC1$=\"1\"", + "id": "kmdkmmoz", + "IfTrue": "jruue197-jruubukg" + }, + { + "Description": "si logement collectif ou maison individuelle en copropriété", + "Expression": "($libHTLC$ =\"collectif\") or ($ICOI$=\"1\")", + "id": "kmdkqyyp", + "IfTrue": "jrusu349-jrusu349" + }, + { + "Description": "si eau chaude", + "Expression": "$KAO1$=\"1\"", + "id": "kmdt0gjh", + "IfTrue": "kmds8lp4-kmeswpin" + }, + { + "Description": "si au moins un appareil indépendant utilisez pour l'alimentation en eau chaude", + "Expression": "$KAO23$=\"1\"", + "id": "kmdt7u7s", + "IfTrue": "jruv1ren-kmeswpin" + }, + { + "Description": "si au moins un appareils indépendants (pour l'eau chaude)", + "Expression": "$NBAPPAR$>0", + "id": "kmeszs7e", + "IfTrue": "kmetc19u-kmeswpin" + }, + { + "Description": "si appareil indépendant électrique pour chauffer l'eau", + "Expression": "$KCEC14$=\"1\"", + "id": "kmethg1a", + "IfTrue": "kmeswpin-kmeswpin" + }, + { + "Description": "si W-C à l'intérieur du logement", + "Expression": "$KWC1$=\"1\" and not(isnull($KWC1$)) ", + "id": "kmeugwlw", + "IfTrue": "kmeu61l4-lfjel2zf" + }, + { + "Description": "si salle d'eau ou salle de bain", + "Expression": "$KBD$=\"1\"", + "id": "kmeuoann", + "IfTrue": "kksgd6fv-lfjedybr" + }, + { + "Description": "pas de salle de bain ou d'eau", + "Expression": "$KBD$=\"2\"", + "id": "kmf0rfij", + "IfTrue": "kmf0xcox-jruv164k" + }, + { + "Description": "si ni douche ni baignoire", + "Expression": "$KDLK1$=\"2\"", + "id": "kmf173ag", + "IfTrue": "jruv164k-jruv164k" + }, + { + "Description": "si eau courante", + "Expression": "$KAO1$<>\"3\" or isnull($KAO1$)", + "id": "kmf3fema", + "IfTrue": "jruva8uu-jruv164k" + }, + { + "Description": "logement indépendant hors période d'études", + "Expression": "$EPAS1$=\"1\"", + "id": "knora43u", + "IfTrue": "kppmespv-kp5vtjh4" + }, + { + "Description": "envisage un logement indépendant dans les 6 mois", + "Expression": " $EPROJ$ = \"1\" and not(isnull($EPROJ$))", + "id": "knpoah1p", + "IfTrue": "joirve2f-joirve2f" + }, + { + "Description": "n'envisage pas un logement indépendant dans les 6 mois", + "Expression": "$EPROJ$=\"2\" or $EPROJ$=\"3\"", + "id": "knpo0vz2", + "IfTrue": "joirtz3j-joirtz3j" + }, + { + "Description": "pas les moyens financiers d'obtenir un logement indépendant", + "Expression": "$EPROJB$=\"3\" or $EPROJC$=\"3\"", + "id": "knpo0kd6", + "IfTrue": "joisp3u9-joisp3u9" + }, + { + "Description": "si recherche d'un logement indépendant", + "Expression": "$EAMIF$=\"1\" and not(isnull($EAMIF$))", + "id": "knpoqpiq", + "IfTrue": "joisg9xf-joisg9xf" + }, + { + "Description": "pas les moyens d'avoir un logement indépendant", + "Expression": "not(isnull($EAMIH$)) and ($EAMIH$ =\"2\" or $EAMIH$ =\"3\")", + "id": "knpoh7h5", + "IfTrue": "joisw2ix-joisw2ix" + }, + { + "Description": "Propriétaires", + "Expression": "(not(isnull($STOC1$)) and ($STOC$=\"1\" or $STOC$=\"2\"))", + "id": "ko9tvubd", + "IfTrue": "ko9tiu0f-ko9tiu0f" + }, + { + "Description": "Usufruitier", + "Expression": "not(isnull($STOC1$)) and $STOC$=\"3\"", + "id": "ko9thgnw", + "IfTrue": "ko9r0alc-ko9r0alc" + }, + { + "Description": "locataire", + "Expression": "(not(isnull($STOC1$)) and $STOC$=\"4\" and nvl($LBA$,\"\")=\"1\")", + "id": "ko9u0wlk", + "IfTrue": "ko9t45t9-ko9t45t9" + }, + { + "Description": "logement foyer", + "Expression": "(not(isnull($HTLC1$)) and $HTLC1$ = \"3\")", + "id": "kp4bwxlx", + "IfTrue": "kp4b8f63-kp4bwrb9" + }, + { + "Description": "foyer ou résidence pour personnes agées", + "Expression": "$FOYPAGEES$=\"1\" and not(isnull($FOYPAGEES$))", + "id": "kp4c9p2y", + "IfTrue": "kp4bwrb9-kp4bwrb9" + }, + { + "Description": "Immeuble ou maison de 2006 ou plus", + "Expression": "(not(isnull($IAATC$)) and $IAATC$ = \"6\")", + "id": "kp4d9yw7", + "IfTrue": "kbghz7mp-kbghz7mp" + }, + { + "Description": "Père né à l'étranger", + "Expression": "$LNAISPERE$=\"2\" and not(isnull($LNAISPERE$))", + "id": "kp59nbi3", + "IfTrue": "kp59rmtt-kp59rmtt" + }, + { + "Description": "Mère née à l'étranger", + "Expression": "$LNAISMERE$ =\"2\" and not(isnull($LNAISMERE$))", + "id": "kp5a9vwy", + "IfTrue": "kp59nici-kp59nici" + }, + { + "Description": "Hors conjoint du répondant et hors enfants du répondant et de son conjoint", + "Expression": "($STOCA$=\"2\" and not(isnull($STOCA$))) and (($LIEN$<>\"1\" and $LIEN$<>\"3\") or isnull($LIEN$)) ", + "id": "kp5qydnb", + "IfTrue": "knoqewds-knoqewds" + }, + { + "Description": " Enfants n'ayant pas eu de logement indépendant (hors période d'étude), hors étudiants", + "Expression": "($EPAS1$=\"2\" or $EPAS1$=\"3\") ", + "id": "kp5wj6we", + "IfTrue": "joirni0x-joisp3u9" + }, + { + "Description": "MAA2A non renseigné", + "Expression": "isnull($MAA2A$)", + "id": "kp6j9dpu", + "IfTrue": "kp6iwd90-kp6iwd90" + }, + { + "Description": "Non réponse à MAA2AC", + "Expression": "isnull($MAA2AC$)", + "id": "kp6k0ap9", + "IfTrue": "kp6ja40b-kp6ja40b" + }, + { + "Description": "Arrivée de l'autre personne depuis plus ou moins 4ans", + "Expression": "not(isnull($MAA3A$)) and (cast($MAA3A$,integer) >= cast($ANNEENQmoins4$,integer)) ", + "id": "kp6kvg07", + "IfTrue": "jojtizrx-jojtizrx" + }, + { + "Description": "Autre personne arrivée avant le répondant son conjoint", + "Expression": " not(isnull($MAA3$)) and $MAA3$=\"1\"", + "id": "kp6kwnih", + "IfTrue": "jojtutyy-jojtizrx" + }, + { + "Description": "Demande HLM", + "Expression": "$OIH$ =\"1\" and not(isnull($OIH$))", + "id": "kniyw7tj", + "IfTrue": "joieg12u-joiez7o3" + }, + { + "Description": "", + "Expression": "$OIHE$=\"1\" and not(isnull($OIHE$))", + "id": "kniz8e2b", + "IfTrue": "joiez7o3-joiez7o3" + }, + { + "Description": "Demande Dalo effectuée", + "Expression": "$DALO$ =\"1\" and not(isnull($DALO$))", + "id": "knizxsf4", + "IfTrue": "joifs2y7-joifs2y7" + }, + { + "Description": "Ménages qui souhaitent ou vont être contraints de changer de logement", + "Expression": "$ODL$=\"1\" or $ODF$=\"1\"", + "id": "knj0bjpj", + "IfTrue": "joifzvkd-knk8j9xd" + }, + { + "Description": "DAG Ile de France", + "Expression": "$DAGEO$=\"1\" and not(isnull($DAGEO$))", + "id": "knj0t76j", + "IfTrue": "joigb7rg-joigb7rg" + }, + { + "Description": "contraint de quitter le logement dans les 3 ans", + "Expression": "$ODF$=\"1\" and not(isnull($ODF$))", + "id": "knj16fm1", + "IfTrue": "joifcbgf-joifcbgf" + }, + { + "Description": "Changement de département", + "Expression": "$DAGEO$ =\"2\" or $DAGEO$ =\"5\"", + "id": "knj1kqeq", + "IfTrue": "joig56ii-joigkrjq" + }, + { + "Description": "Déménagement Outr-mer", + "Expression": "$DAGEO$ = \"3\" and not(isnull($DAGEO$))", + "id": "knj29tta", + "IfTrue": "joigdh1o-joigdh1o" + }, + { + "Description": "Futurs Locataires", + "Expression": "($DST$=\"2\" or $DST$=\"3\") and not(isnull($DST$))", + "id": "knj2xj37", + "IfTrue": "joigx4x8-joigx4x8" + }, + { + "Description": "Si souhait réalisable", + "Expression": "$DDEM$<>\"4\" or isnull($DDEM$)", + "id": "knk7ofbm", + "IfTrue": "joigwfan-joigwfan" + }, + { + "Description": "Pour tous les ménages qui envisagent d’être locataires d’ici moins de 2 ans et qui n’ont pas dépose ou renouvelé de demande hlm", + "Expression": "($DST$=\"2\" or $DST$=\"3\") and (not(isnull($DDAT$)) and ($DDAT$=\"1\" or $DDAT$=\"2\" or $DDAT$=\"3\")) and ((not($OIHB1$)) or isnull($OIHB1$))", + "id": "knk96vio", + "IfTrue": "knk8j9xd-knk8j9xd" + }, + { + "Description": "Si futur logement hors structures collectives", + "Expression": "$DTL$<>\"3\" or isnull($DTL$)", + "id": "ko2y5hce", + "IfTrue": "joigyk2a-knk8j9xd" + }, + { + "Description": "Si le ménage envisage d'être propriétaire de son futur logement", + "Expression": "$DST$ = \"1\" and not(isnull($DST$))", + "id": "ko2yj754", + "IfTrue": "joigrs80-joigrs80" + }, + { + "Description": "Si VVENDL = 1 ou 2", + "Expression": "$VVENDL$ = \"1\" or $VVENDL$ = \"2\"", + "id": "koea7z4s", + "IfTrue": "jopgvwb0-jopgzovi" + }, + { + "Description": "Pour ceux qui ont emménagé il y a moins de 4 ans", + "Expression": "not(isnull($MAA1AT$)) and ($MAA1AT$ = \"1\" or $MAA1AT$ = \"2\")", + "id": "koeadjrr", + "IfTrue": "jopgzovi-jopgzovi" + }, + { + "Description": "Pour ceux qui ont acheté et vendu", + "Expression": "($VVENDL$ =\"1\" or $VVENDL$ = \"2\") and ($VACHAL$ =\"1\" or $VACHAL$ =\"2\")", + "id": "koeb4sq1", + "IfTrue": "joph9za3-joph9za3" + }, + { + "Description": "Si la personne a emménagé après le 1er moins d'enquête n-4", + "Expression": "not(isnull($MAA2AT$)) and ($MAA2AT$ = \"1\" or $MAA2AT$ =\"2\")", + "id": "koec5lwv", + "IfTrue": "jopkquw3-jopldlvn" + }, + { + "Description": "Si VLR = 3", + "Expression": "$VLR$ = \"3\" and not(isnull($VLR$))", + "id": "koec875x", + "IfTrue": "jopl7p41-joplkxrd" + }, + { + "Description": "Le logement d'il y a 4 ans était dans un pays étranger", + "Expression": "$VLR$ =\"5\" and not(isnull($VLR$))", + "id": "koecvok4", + "IfTrue": "jopldlvn-jopldlvn" + }, + { + "Description": "Il y a 4 ans occupant en titre d'un logement en métropole", + "Expression": "($VLA1$ = \"1\") and (($VLR$ = \"2\" or $VLR$ = \"3\") or ($MAA2AT$=\"3\" or $MAA2AT$=\"4\" or $MAA2AT$=\"5\" or $VLR$ = \"1\"))", + "id": "koecxjbu", + "IfTrue": "joplzrmo-joplzrmo" + }, + { + "Description": "Si la personne réside actuellement en métropole et habitait un autre logement en métropole au 1er mois d’enquête A-4 (autre qu'une collectivité ou une habitation mobile)", + "Expression": "not(isnull($VLR$)) and ($VLR$=\"2\" or $VLR$=\"3\") and ($VLA1$<>\"4\" or isnull($VLA1$) )", + "id": "koeetx88", + "IfTrue": "joprv8x6-joprv8x6" + }, + { + "Description": "Pour les ménages ayant déménagé + d'une fois", + "Expression": "cast($VND$,integer) > 1", + "id": "kovg4u51", + "IfTrue": "joptkb9d-jopuofnr" + }, + { + "Description": "", + "Expression": "$VLRD$ = \"1\" and not(isnull($VLRD$))", + "id": "kovgds1a", + "IfTrue": "jopu7wfr-jopuofnr" + }, + { + "Description": "Pour les occupants en titre", + "Expression": "$VLAB1$ = \"1\" and not(isnull($VLAB1$))", + "id": "kovghnlp", + "IfTrue": "jopua1hn-jopuofnr" + }, + { + "Description": "Si déménagement", + "Expression": "not(isnull($VND$)) and (cast($VND$,integer) > 0)", + "id": "kovjcuwj", + "IfTrue": "kovjkvfn-kovjkvfn" + }, + { + "Description": "Hors répondant", + "Expression": "$PRENOM$ <> $PRENOMREF$", + "id": "kpaux49o", + "IfTrue": "kmw4revw-kmw4revw" + }, + { + "Description": "situations difficiles de logements", + "Expression": "(not(isnull($SDL11$)) and $SDL11$) or (not(isnull($SDL12$)) and $SDL12$) or (not(isnull($SDL13$)) and $SDL13$) or (not(isnull($SDL14$)) and $SDL14$) or (not(isnull($SDL15$)) and $SDL15$) or (not(isnull($SDL16$)) and $SDL16$) or (not(isnull($SDL17$)) and $SDL17$)", + "id": "kpb8n3ho", + "IfTrue": "joio5w41-kudwrcyp" + }, + { + "Description": "Réponse aux nombres de situations", + "Expression": "($SDN1$=\"1\" or $SDN1$=\"2\") and not(isnull($SDN1$))", + "id": "kpbb6zkm", + "IfTrue": "joioebt6-joioebt6" + }, + { + "Description": "Réponse à la durée de la ou des situations difficiles de logement", + "Expression": "(not(isnull($SDT1$)))", + "id": "kpbbtt2p", + "IfTrue": "joo0yx5k-joo0yx5k" + }, + { + "Description": "Pas de communes renseignées", + "Expression": "isnull($COMMUNEPASSEE$)", + "id": "kpbdy60n", + "IfTrue": "joplihpv-joplkxrd" + }, + { + "Description": "Locataire il y a 4 ans et changement de logement ou de statut d'occupation", + "Expression": "$VSO1$=\"4\" and ((($VLR$ = \"2\" or $VLR$ = \"3\") and $VLA1$ = \"1\") or (($MAA2AT$=\"3\" or $MAA2AT$=\"4\" or $MAA2AT$=\"5\" or $VLR$ = \"1\") and $STOC$ <> \"4\"))", + "id": "kpbh29zw", + "IfTrue": "jopri4xh-joprlyql" + }, + { + "Description": "Logement d'il y a 4 ans autre qu'une collectivité ou habitation mobile", + "Expression": "$VLA1$<>\"4\" or isnull($VLA1$)", + "id": "kpbh1cku", + "IfTrue": "joprp441-joprp441" + }, + { + "Description": "En emploi", + "Expression": "(not(isnull($EMPLOI$)) and $EMPLOI$ = \"1\")", + "id": "kpboq7j6", + "IfTrue": "kp4dw3br-kvjb8q33" + }, + { + "Description": "arrivée depuis moins de 4 ans", + "Expression": "$MAA2AT$=\"1\" or $MAA2AT$=\"2\"", + "id": "kpbp18d4", + "IfTrue": "jopsqquo-jopsqquo" + }, + { + "Description": "Locataire", + "Expression": "$VDD1$=\"4\"", + "id": "kpbph9fx", + "IfTrue": "jopuofnr-jopuofnr" + }, + { + "Description": "hors structure collective", + "Expression": "($VLAB1$ <>\"4\" or isnull($VLAB1$)) and ($VLRD$=\"1\")", + "id": "kpbq1qnt", + "IfTrue": "kovgtboa-kovgtboa" + }, + { + "Description": "pas chez les parents uniquement pour les vacances, week-ends", + "Expression": "(isnull($ERETOUR$) or ($ERETOUR$<>\"1\"))", + "id": "kppmtrft", + "IfTrue": "joh8ixt2-kp5vtjh4" + }, + { + "Description": "pas en couple avec un des membres du ménage", + "Expression": "isnull($EAMID11$) or ($EAMID11$ = false)", + "id": "kpppw3yo", + "IfTrue": "kppptqlu-kqv44b8j" + }, + { + "Description": "si cave ou sous-sol", + "Expression": "$KCA$=\"1\"", + "id": "kq7od344", + "IfTrue": "jruu4ry3-jruu4ry3" + }, + { + "Description": "", + "Expression": "$LOGAUT$ = \"3\" or $LOGAUT$ = \"4\" or $LOGAUT$ = \"6\"", + "id": "kqi5icjv", + "IfTrue": "kqi4zdkk-kmx9pvyn" + }, + { + "Description": "", + "Expression": "$UNLOG$ = \"2\"", + "id": "kqi5v895", + "IfTrue": "kmx97ttc-kmx9pvyn" + }, + { + "Description": "", + "Expression": "$GRDIPA$ = \"1\" and not(isnull($GRDIPA$))", + "id": "kqi8ilmm", + "IfTrue": "kqi8s71l-kqi8s71l" + }, + { + "Description": "", + "Expression": "(not(isnull($GRDIPA$)) and $GRDIPA$ = \"8\")", + "id": "kqi8jm91", + "IfTrue": "kqi8mfos-kqi8mfos" + }, + { + "Description": "Date de naissance non renseigné", + "Expression": "nvl($DATENAIS$,\"\")=\"\"", + "id": "kqijz2uj", + "IfTrue": "kmx6w6n5-kmx6w6n5" + }, + { + "Description": "", + "Expression": "not(isnull($DAG$)) and $DAG$ = \"1\"", + "id": "kqrt233p", + "IfTrue": "joig7qe3-joigdh1o" + }, + { + "Description": "", + "Expression": "($SDL12$) and not(isnull($SDL12$))", + "id": "kqru8csa", + "IfTrue": "kqr0kx1e-kqr0kx1e" + }, + { + "Description": "", + "Expression": "($SDL14$) and not(isnull($SDL14$))", + "id": "kqrudlfb", + "IfTrue": "kpb8b0vw-kpb8b0vw" + }, + { + "Description": "Plusieurs situations difficiles d'hébergement", + "Expression": "$SDN1$ = \"2\"", + "id": "kqruowfe", + "IfTrue": "joo1m3x2-kudwrcyp" + }, + { + "Description": "Pour les ménages dans le champ", + "Expression": "$CADR$ = \"1\" or $CADR$ = \"2\" or isnull($CADR$)", + "id": "kqt2ryhm", + "IfTrue": "kqt2x3j8-kqt2x3j8" + }, + { + "Description": "Ménages hors champ", + "Expression": "$CADR$ = \"3\" or $CADR$ = \"4\" ", + "id": "kqt37brk", + "IfTrue": "kqt2y5q7-kqt2y5q7" + }, + { + "Description": "Hors champ", + "Expression": "$CADR$ = \"3\" or $CADR$ = \"4\" ", + "id": "kqt4u3fl", + "IfTrue": "kqt4puxj-kqt4puxj" + }, + { + "Description": "si déménagement", + "Expression": "$CADR$ = \"3\"", + "id": "kqwehqob", + "IfTrue": "kqwen63d-kqwen63d" + }, + { + "Description": "si connaissance du nom des nouveaux occupants", + "Expression": "$INDNVOCC$ = \"1\"", + "id": "kqwhfgbp", + "IfTrue": "kqwga16w-kr0ee3u2" + }, + { + "Description": "si deuxième destinataire", + "Expression": "(not(isnull($NOMVOUS_D2$)) or $NOMVOUS_D2$<> \"\") and (not(isnull($NOMCOLL$)) or $NOMCOLL$<> \"\") ", + "id": "kr0oafhw", + "IfTrue": "kwjivaa1-kbbzhtx3" + }, + { + "Description": "Questionnaire Web", + "Expression": "isnull($IND_TEL$) or $IND_TEL$=0", + "id": "kr1tc2yz", + "IfTrue": "krm411ky-krm411ky" + }, + { + "Description": "Questionnaire téléphonique (hors reprise)", + "Expression": "$IND_TEL$=1 and not(isnull($IND_TEL$)) and (isnull($IND_REPRISE$) or $IND_REPRISE$=0)", + "id": "kr1tke72", + "IfTrue": "krm49ctb-krm49ctb" + }, + { + "Description": "Questionnaire de reprise téléphonique", + "Expression": "$IND_TEL$=1 and not(isnull($IND_TEL$)) and (not(isnull($IND_REPRISE$)) and $IND_REPRISE$=1)", + "id": "kr1twfom", + "IfTrue": "krm45czl-krm45czl" + }, + { + "Description": "Plusieurs types de situations difficiles d'hébergement", + "Expression": "(not(isnull($filtre_SIT$)) and $filtre_SIT$=\"1\") and (not(isnull($SDN1$)) and $SDN1$ = \"2\")", + "id": "kudw8rll", + "IfTrue": "kudultmi-kudultmi" + }, + { + "Description": "Plusieurs types de situations difficiles d'hébergement", + "Expression": "$filtre_SIT$ =\"1\"", + "id": "kudwd13q", + "IfTrue": "kudvobyc-kudvobyc" + }, + { + "Description": "Si au moins une personne du ménage est en télétravail", + "Expression": "not(isnull($nbperstelet$)) and (cast($nbperstelet$,integer) >0)", + "id": "kue3m6gs", + "IfTrue": "kp6n8gha-kp6n8gha" + }, + { + "Description": "Le répondant a un conjoint", + "Expression": "$INDconj$ = \"1\"", + "id": "kue52fg6", + "IfTrue": "jojt3qxp-jor73af6" + }, + { + "Description": "Présence d'une personne majeure dans le logement autre que le répondant et son conjoint", + "Expression": "$filtre_autrepers$=\"1\"", + "id": "kue5m4qp", + "IfTrue": "jojtsgsr-jojtizrx" + }, + { + "Description": "Pas de parents déjà déclarés dans le logement", + "Expression": "not(isnull($nbpersparent$)) and (cast($nbpersparent$,integer)=0)", + "id": "kuecnxor", + "IfTrue": "kvsdstcn-kvsdstcn" + }, + { + "Description": "Au moins une personne majeure déclarée dans le logement", + "Expression": "not(isnull($nbpersmaj$)) and cast($nbpersmaj$,integer)>0", + "id": "kug1deqa", + "IfTrue": "kmxa5rqb-kmxa5rqb" + }, + { + "Description": "", + "Expression": "not(isnull($STOC1$)) and ($STOC1$=\"1\" or $STOC1$=\"2\" or $STOC1$=\"3\" or $STOC1$=\"4\") and $filtre_autrepers$=\"1\" and $filtre_HEB$=\"1\" ", + "id": "kus69gmm", + "IfTrue": "jsygk7m7-jsygk7m7" + }, + { + "Description": "Plus d'un déménagements en 4 ans", + "Expression": "not(isnull($VND$)) and (cast($VND$,integer) > 1)", + "id": "kv6pvp4x", + "IfTrue": "kovgtboa-kovgtboa" + }, + { + "Description": "si télétravail", + "Expression": "$TELET$=\"1\"", + "id": "kvjdpxin", + "IfTrue": "kvjb8q33-kvjb8q33" + }, + { + "Description": "Hors conjoint", + "Expression": "(not(isnull($LIEN$)) and $LIEN$<>\"1\") or ($PRENOM$=$PRENOMREF$)", + "id": "kvl70bp3", + "IfTrue": "kod271pp-kmw5h275" + }, + { + "Description": "Au moins une personne majeure dans le logement", + "Expression": "cast(nvl($nbpers15$,0),integer)>0", + "id": "kw0ugbm8", + "IfTrue": "joinv857-joinv857" + }, + { + "Description": "", + "Expression": "not(isnull($STOC1$)) and ($STOC1$=\"1\" or $STOC1$=\"2\" or $STOC1$=\"3\" or $STOC1$=\"4\") and $filtre_autrepers$=\"1\" and $filtre_HebEnfant$=\"1\"", + "id": "kw3tyol0", + "IfTrue": "joh85k5c-joh85k5c" + }, + { + "Description": "deuxième destinataire souhaité", + "Expression": "not(isnull($CHGNC2$)) and $CHGNC2$=\"1\"", + "id": "kwjjcr3y", + "IfTrue": "kr0fr82y-kbbzhtx3" + }, + { + "Description": "Acceuil d'enfants au titre du droit de visite et d'hébergement", + "Expression": "not(isnull($ENFDVH$)) and $ENFDVH$=\"1\"", + "id": "kwpdihoo", + "IfTrue": "kwpbyciz-kwpc0zin" + }, + { + "Description": "Si Propriétaire", + "Expression": "nvl($STOC$,\"\") =\"1\" or nvl($STOC$,\"\")= \"2\" ", + "id": "l3ykh3ck", + "IfTrue": "l3yket2i-l3yket2i" + }, + { + "Description": "des enfants dans le logement", + "Expression": "not(isnull($nbenfant$)) and (cast($nbenfant$,integer)>0)", + "id": "l3ylv9q8", + "IfTrue": "l3yli2im-l3yli2im" + }, + { + "Description": "Pas de logement collectif ni de copro", + "Expression": "(nvl($libHTLC$,\"\")<>\"collectif\") and (nvl($ICOI$,\"\")<>\"1\")", + "id": "l7j20adt", + "IfTrue": "l7j1k2un-l7j1k2un" + }, + { + "Description": "Si logement collectif ou maison individuelle en copropriété", + "Expression": "($libHTLC$=\"collectif\") or ($ICOI$=\"1\")", + "id": "l7j29yuq", + "IfTrue": "l7j1y65o-l7j1y65o" + }, + { + "Description": "Si présence d'un ami ou colocataire dans le ménage", + "Expression": "nvl($STOC1$ ,\"\") = \"4\" and cast($nbpersamiscoloc$,integer) >= 1", + "id": "l7j3tfwj", + "IfTrue": "l7j247p7-l7j247p7" + }, + { + "Description": "Pour les maisons, appartements et logements-foyer", + "Expression": "nvl($HTLC1$, \"\") = \"1\" or nvl($HTLC1$ , \"\") = \"2\" or nvl($HTLC1$, \"\") = \"3\"", + "id": "l7kasgkd", + "IfTrue": "l7kb07wt-l7kb07wt" + }, + { + "Description": "si locataire", + "Expression": "nvl($STOC1$ ,\"\") = \"4\" ", + "id": "l95f2ihe", + "IfTrue": "l95euppt-l95euppt" + }, + { + "Description": "si la personne est hébergée depuis moins de 10 ans", + "Expression": "not(nvl($EPASC$,\"\")=\"5\")", + "id": "l9cyorpy", + "IfTrue": "kp5vtjh4-kp5vtjh4" + }, + { + "Description": "si la personne est hébergée depuis moins de 10 ans", + "Expression": "not(nvl($EAMIA$,\"\")=\"5\")", + "id": "l9cyooeu", + "IfTrue": "kppptqlu-kppptqlu" + }, + { + "Description": "", + "Expression": "nvl($KSE$,0)=1", + "id": "lfjgx96a", + "IfTrue": "lfjgy3we-lfjgy3we" + }, + { + "Description": "", + "Expression": "nvl($KSE$,0)>1", + "id": "lfjgog07", + "IfTrue": "lfjedybr-lfjedybr" + }, + { + "Description": "", + "Expression": "nvl($KWCID$,0)=1", + "id": "lfjh5gud", + "IfTrue": "lfjgw27o-lfjgw27o" + }, + { + "Description": "", + "Expression": "nvl($KWCID$,0)>1", + "id": "lfjh71fo", + "IfTrue": "lfjel2zf-lfjel2zf" + }, + { + "Description": "Si le ménage comporte au moins 2 personnes de plus de 15 ans, recherche du PRACT", + "Expression": "cast(nvl($nbpers15$,0),integer) > 1 ", + "id": "lg58gb8d", + "IfTrue": "ley4go4m-ley4go4m" + }, + { + "Description": "Dès qu'un individu de plus de 15 ans se déclare PRACT, on ne pose pas la question aux individus suivants", + "Expression": "nvl($nbPRACT$,0)=0", + "id": "lg59gusp", + "IfTrue": "ley4j9vf-ley4j9vf" + }, + { + "Description": "Si aucune raison de déménagement", + "Expression": "nvl($VRAIS27$,false) = true and nvl($VRAIS36$,false) = true and nvl($VRAIS45$,false) = true", + "id": "lgnrcxzr", + "IfTrue": "lgmgi33v-lgmgi33v" + } + ], + "ComponentGroup": [ + { + "MemberReference": [ + "kb9hi4j0", + "kb9hlpdc", + "kbakywwy", + "kbal4bzb", + "kbalhn4i", + "kbal8crw", + "kbal9dwk", + "kqwen63d", + "kqweh61i", + "kqwga16w", + "kqwfswjj", + "kqwfedoy", + "kqwg9azb", + "kr0e0pav", + "kr0ee3u2", + "jruq5os5", + "kbc1b4k2", + "kmnnjaf1", + "kmnnxf2w", + "kmno1n7m", + "kmnoigj8", + "kmoo2fiy", + "kmoouamz", + "kmx6w6n5", + "kmookacu", + "kmor2z1x", + "kmorege9", + "kmort6x9", + "kmos2yo6", + "kmw3dz2a", + "kmw4revw", + "kod271pp", + "kmw5h275", + "kmukkury", + "kmx8sgeu", + "kmx97ttc", + "kmx97tz1", + "kmx93med", + "kmx9punx", + "kmx9im0b", + "kqi4zdkk", + "kmx9pvyn", + "kmxa5rqb", + "kmxfqrb1", + "kmxg8ci7", + "kmxgftfs", + "kqi8s71l", + "kqi8mfos", + "kp4dw3br", + "kvjb8q33", + "ley4go4m", + "lgmc7929", + "kvqoffs5", + "kd8qd4ou", + "l7kb07wt", + "kp4b8f63", + "kp4bwrb9", + "kbgi5n3g", + "kbgigljc", + "kbgim4v3", + "kbgidvnm", + "kbgigafp", + "kbghszh6", + "kbghz7mp", + "jn0cmg7j", + "jn0ccyw1", + "jn0cttir", + "klusnxnh", + "l7j247p7", + "l95euppt", + "jn0e3nhg", + "jo776s4d", + "ko9tiu0f", + "ko9r0alc", + "ko9t45t9", + "knoqewds", + "joh85k5c", + "joh8lowu", + "kppmespv", + "joh8ixt2", + "kcnccgjg", + "knorcs48", + "kp5vtjh4", + "joirni0x", + "joirve2f", + "joirtz3j", + "joisp3u9", + "jsygk7m7", + "joisq6l3", + "knpolbu3", + "kppptqlu", + "joismxwd", + "kqv3atis", + "kqv44b8j", + "kvsdwoef", + "jojtbo85", + "kp6iwd90", + "jojt16mt", + "jojt3qxp", + "jojtnq9z", + "kp6ja40b", + "jor73af6", + "jojtsgsr", + "jojtutyy", + "jojtizrx", + "l3yket2i", + "jojuy3c4", + "kp6n3avl", + "jojuueml", + "jojuno0d", + "kp6n8gha", + "klv34du0", + "l3io7e8f", + "kp6ni06e", + "jojuwst2", + "jojv1e5e", + "jojuz9k3", + "kp6ns6ar", + "jojv79ut", + "jojv3ha7", + "kmd6o006", + "kmcdiwdv", + "jojuzbus", + "klv4iusu", + "jojv5bnw", + "klw36l7v", + "kp6nfjxe", + "jojvgfei", + "jojv4yqe", + "jojvc0vt", + "jojv1ux1", + "kv29cjdq", + "kv852xbl", + "jrupq1i5", + "jrupsr80", + "jrupy93h", + "jrupzl7m", + "jrupx7iz", + "jruq98v2", + "jruq8x6e", + "jruq85av", + "jruq4was", + "jruq6fv0", + "jruqlf39", + "jrusmgfq", + "l3irva5g", + "jrusjpqy", + "jrut4vl7", + "jrut0i0j", + "jrusu349", + "jrutj5co", + "jruu4ry3", + "jruue197", + "jruubukg", + "kv857tu4", + "jruuncm0", + "jruv1cla", + "kmeu61l4", + "lfjgw27o", + "lfjel2zf", + "jruva8uu", + "kksgd6fv", + "lfjgy3we", + "lfjedybr", + "kmf0xcox", + "jruv164k", + "joicksrx", + "joicolgp", + "joiccm1l", + "knio1w9d", + "l7j1k2un", + "l7j1y65o", + "kninrf3p", + "knioggcs", + "l3yli2im", + "kniwyjy0", + "joidpl4s", + "joinv857", + "joio33nc", + "joinz4wo", + "kqr0kx1e", + "kpb8b0vw", + "joio5w41", + "joioebt6", + "kudultmi", + "joo0yx5k", + "joo1m3x2", + "kudvobyc", + "kudvxpft", + "kudwrcyp", + "kv86jli3", + "joo1spv3", + "joo1h434", + "joo22fbd", + "koe0u2zg", + "jopgtrq1", + "jopgvwb0", + "jopgzovi", + "koeabibm", + "joph9za3", + "jophfbfc", + "jopkquw3", + "jopl7p41", + "joplihpv", + "joplkxrd", + "jopldlvn", + "joplorns", + "joplzrmo", + "jopri4xh", + "joprsm9u", + "joprlyql", + "joprp441", + "joprv8x6", + "jopruzlo", + "jopsc29x", + "jops4c0x", + "jopsjl1n", + "kovfldqd", + "jopsiigq", + "jopsqquo", + "jopsrdb3", + "joptkb9d", + "jopu7wfr", + "jopua1hn", + "jopuofnr", + "kovgtboa", + "jopuhzbr", + "jopukm75", + "joputbjc", + "kovjkvfn", + "jopvzl28", + "kovj0a8h", + "kovirkvq", + "kovj5q33", + "lgmgi33v", + "kqa0lqp4", + "kp5apvf3", + "kp5au0iu", + "kp5bjbzg", + "kqwjjak7", + "kbamkrlv", + "kbaxq9l0", + "kr0fw3n6", + "kr0fn06f", + "kwjivaa1", + "kr0fr82y", + "kbbzjgn8", + "kbbzhtx3", + "kqwjuv1h", + "kbay0xfi", + "kp6svrg1", + "idendquest" + ], + "Label": [ + "Components for page 1" + ], + "id": "kw3x3pj7", + "Name": "PAGE_1" + } + ], + "agency": "fr.insee", + "genericName": "QUESTIONNAIRE", + "Label": [ + "VraiQuest - Enquête Logement - Séquence 1 (ENL en 2023 sur Internet)" + ], + "childQuestionnaireRef": [], + "Name": "m1", + "Variables": { + "Variable": [ + { + "Formula": "(if (isnull($NUMTH$)) then \"\" else $NUMTH$) || \" \" || (if (isnull($ADR$)) then \"\" else $ADR$) || \" \" || (if (isnull($CADRTH$)) then \"\" else $CADRTH$) || \" \" || (if (isnull($CODEPOST1$)) then \"\" else $CODEPOST1$) || \" \" || (if (isnull($LIBCOM$)) then \"\" else $LIBCOM$)", + "Label": "Adresse connue (ADRESSE)", + "id": "kcoks7di", + "type": "CalculatedVariableType", + "Name": "ADRESSE", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "255" + } + }, + { + "Formula": "if (isnull($CADR$) or $CADR$=\"1\" or $CADR$=\"3\" or $CADR$=\"4\") then $ADRESSE$ else (if (isnull($NUMTH_COLL$)) then \"\" else $NUMTH_COLL$) || \" \" || (if (isnull($ADR_COLL$)) then \"\" else $ADR_COLL$) || \" \" || (if (isnull($CADRTH_COLL$)) then \"\" else $CADRTH_COLL$) || \" \" || (if (isnull($CODEPOST1_COLL$)) then \"\" else $CODEPOST1_COLL$) || \" \" || (if (isnull($LIBCOM_COLL$)) then \"\" else $LIBCOM_COLL$)", + "Label": "Adresse finale (ADRCOLLC)", + "id": "kcolhi30", + "type": "CalculatedVariableType", + "Name": "ADRCOLLC", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "255" + } + }, + { + "Formula": "(if (isnull($CIV_D1$)) then \"\" else $CIV_D1$ || \" \") || ( if (isnull($PREN_D1$)) then \"\" else $PREN_D1$ || \" \") || (if (isnull($NOMVOUS_D1$)) then \"\" else $NOMVOUS_D1$)", + "Label": "Correspondant connu (NOMOCC1)", + "id": "kcom3tr9", + "type": "CalculatedVariableType", + "Name": "NOMOCC1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "100" + } + }, + { + "Formula": "if ($CHGNC$ = \"1\" or isnull($CHGNC$)) then $NOMOCC1$ || \", \" || $NOMOCC2$ else ($CIVCOLL$ || \" \" || $PRENOMCOLL$ || \" \" || $NOMCOLL$ || ( if (not(isnull($NOMCOLL2$)) and $NOMCOLL2$<>\"\" ) then \"\" else \", \" || $CIVCOLL2$ || \" \" || $PRENOMCOLL2$ || \" \" || $NOMCOLL2$) ) ", + "Label": "Noms destinataires (NOMCOLLC)", + "id": "kconppt9", + "type": "CalculatedVariableType", + "Name": "NOMCOLLC", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "75" + } + }, + { + "Formula": "if (isnull($SEXE$)) then \"\" else (if ($SEXE$ = \"2\") then \"e\" else \"\")", + "Scope": "kmnolkxb", + "Label": "Genre de la personne (LIB_FEM)", + "id": "kmook912", + "type": "CalculatedVariableType", + "Name": "LIB_FEM", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1" + } + }, + { + "Formula": "if ($FUTURANNIVERSAIRE$) then cast((cast($AGEMILLESIME$,integer) - 1),integer) else cast($AGEMILLESIME$,integer)", + "Scope": "kmnolkxb", + "Label": "Âge (AGE)", + "id": "kmoofc72", + "type": "CalculatedVariableType", + "Name": "AGE", + "Datatype": { + "Maximum": "125", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "if (isnull($SEXE$)) then \"Votre parent, votre beau-parent\" else (if ($SEXE$ = \"2\") then \"Votre mère, votre belle-mère\" else (if ($SEXE$ = \"1\") then \"Votre père, votre beau-père\" else \"Votre parent, votre beau-parent\"))", + "Scope": "kmnolkxb", + "Label": "Parent du répondant (LIB_PARENT)", + "id": "kmw4vrul", + "type": "CalculatedVariableType", + "Name": "LIB_PARENT", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "31" + } + }, + { + "Formula": "if (isnull($SEXE$)) then \"Votre enfant, votre bel-enfant\" else (if ($SEXE$ = \"2\") then \"Votre fille, votre belle-fille\" else (if ($SEXE$ = \"1\") then \"Votre fils, votre beau-fils\" else \"Votre enfant, votre bel-enfant\"))", + "Scope": "kmnolkxb", + "Label": "Enfant du répondant (LIB_ENFANT)", + "id": "kmw5a7qq", + "type": "CalculatedVariableType", + "Name": "LIB_ENFANT", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "30" + } + }, + { + "Formula": "if (isnull($SEXE$)) then \"Votre grand-parent, votre beau-grand-parent\" else (if ($SEXE$ = \"2\") then \"Votre grand-mère, votre belle-grand-mère\" else (if ($SEXE$ = \"1\") then \"Votre grand-père, votre beau-grand-père\" else \"Votre grand-parent, votre beau-grand-parent\"))", + "Scope": "kmnolkxb", + "Label": "Grand-parent du répondant (LIB_GDPARENT)", + "id": "kmw4w899", + "type": "CalculatedVariableType", + "Name": "LIB_GDPARENT", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "30" + } + }, + { + "Formula": "if (isnull($SEXE$)) then \"Votre petit-enfant, votre beau-petit-enfant\" else (if ($SEXE$ = \"2\") then \"Votre petite-fille, votre belle-petite-fille\" else (if ($SEXE$ = \"1\") then \"Votre petit-fils, votre beau-petit-fils\" else \"Votre petit-enfant, votre beau-petit-enfant\"))", + "Scope": "kmnolkxb", + "Label": "Petit-enfant du répondant (LIB_PTENFANT)", + "id": "kmw527m3", + "type": "CalculatedVariableType", + "Name": "LIB_PTENFANT", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "30" + } + }, + { + "Formula": "if (isnull($SEXE$)) then \"Veuf, conjoint(e) décédé(e)\" else (if ($SEXE$ = \"2\") then \"Veuve, conjoint(e) décédé(e)\" else \"Veuf, conjoint(e) décédé(e)\")", + "Scope": "kmnolkxb", + "Label": "Personne veuve (LIB_VEUF)", + "id": "kmw5hke3", + "type": "CalculatedVariableType", + "Name": "LIB_VEUF", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "40" + } + }, + { + "Formula": "if (isnull($SEXE$)) then \"il\" else (if ($SEXE$ = \"2\") then \"elle\" else \"il\")", + "Scope": "kmnolkxb", + "Label": "Pronom personnel (LIB_SUJET)", + "id": "kmx8i16l", + "type": "CalculatedVariableType", + "Name": "LIB_SUJET", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Formula": "if (isnull($SEXE$)) then \"lui\" else (if ($SEXE$ = \"2\") then \"elle\" else \"lui\")", + "Scope": "kmnolkxb", + "Label": "Pronom (LIB_PRONOM)", + "id": "kmx86dk5", + "type": "CalculatedVariableType", + "Name": "LIB_PRONOM", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Formula": "if (nvl($NBHAB$,0)=0) then 1 else cast($NBHAB$,integer) ", + "Label": "Nombre d'habitants (NHAB)", + "id": "koegmz7o", + "type": "CalculatedVariableType", + "Name": "NHAB", + "Datatype": { + "Maximum": "15", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "(if (not(isnull($MAA2AT_Q$))) then $MAA2AT_Q$ else (if (isnull($MAA2A$)) then \"\" else (if ( ( cast($MAA2A$,integer) > cast($ANNEENQmoins1$,integer) ) or ( (cast($MAA2A$,integer) = cast($ANNEENQmoins1$,integer) ) and (cast($MAA2M$,integer) > cast($MOISENQ$,integer)) and not(isnull($MAA2M$)) ) or ( (cast($MAA2A$,integer) = cast($ANNEENQmoins1$,integer)) and isnull($MAA2M$) and (cast($MOISENQ$,integer) <=6) )) then \"1\" else (if ( ( cast($MAA2A$,integer) > cast($ANNEENQmoins4$,integer) ) or ( (cast($MAA2A$,integer) = cast($ANNEENQmoins4$,integer)) and (cast($MAA2M$,integer) > cast($MOISENQ$,integer)) and not(isnull($MAA2M$)) ) or ( (cast($MAA2A$,integer) = cast($ANNEENQmoins4$,integer)) and isnull($MAA2M$) and (cast($MOISENQ$,integer)<=6) )) then \"2\" else (if ( cast($MAA2A$,integer) > cast($ANNEENQmoins8$,integer) ) then \"3\" else (if ( cast($MAA2A$,integer) > cast($ANNEENQmoins12$,integer)) then \"4\" else (if (not(isnull($MAA2A$))) then \"5\" else \"\")))))))", + "Label": "MAA2AT", + "id": "kbjjncl4", + "type": "CalculatedVariableType", + "Name": "MAA2AT", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1" + } + }, + { + "Formula": "if ( not(isnull($MARRIVC$)) and $MARRIVC$= \"1\") then $MAA2AT$ else (if (not(isnull($MAA2ATC_Q$))) then $MAA2ATC_Q$ else (if (isnull($MAA2AC$)) then \"\" else (if ( ( cast($MAA2AC$,integer) > cast($ANNEENQmoins1$,integer)) or ( (cast($MAA2AC$,integer) = cast($ANNEENQmoins1$,integer)) and (cast($MAA2MC$,integer) > cast($MOISENQ$,integer)) and not(isnull($MAA2MC$)) ) or ( (cast($MAA2AC$,integer) =cast($ANNEENQmoins1$,integer)) and isnull($MAA2MC$) and (cast($MOISENQ$,integer)<=6) )) then \"1\" else (if ( ( cast($MAA2AC$,integer) > cast($ANNEENQmoins4$,integer) ) or ( (cast($MAA2AC$,integer) = cast($ANNEENQmoins4$,integer)) and (cast($MAA2MC$,integer) > cast($MOISENQ$,integer)) and not(isnull($MAA2MC$)) ) or ( (cast($MAA2AC$,integer) = cast($ANNEENQmoins4$,integer)) and isnull($MAA2MC$) and (cast($MOISENQ$,integer)<=6) )) then \"2\" else (if ( cast($MAA2AC$,integer) > cast($ANNEENQmoins8$,integer) ) then \"3\" else (if ( cast($MAA2AC$,integer) > cast($ANNEENQmoins12$,integer) ) then \"4\" else (if (not(isnull($MAA2AC$))) then \"5\" else \"\")))))))", + "Label": "MAA2ATC", + "id": "kbkesufu", + "type": "CalculatedVariableType", + "Name": "MAA2ATC", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1" + } + }, + { + "Formula": "if (isnull($MAA3A$)) then \"\" else (if ( (cast($MAA3A$,integer) > cast($ANNEENQmoins1$,integer)) or ( (cast($MAA3A$,integer) = cast($ANNEENQmoins1$,integer)) and (cast($MAA3M$,integer) > cast($MOISENQ$,integer)) and not(isnull($MAA3M$)) ) or ( (cast($MAA3A$,integer) = cast($ANNEENQmoins1$,integer)) and isnull($MAA3M$) and (cast($MOISENQ$,integer)<=6) )) then \"1\" else (if ( (cast($MAA3A$,integer) > cast($ANNEENQmoins4$,integer)) or ( (cast($MAA3A$,integer) = cast($ANNEENQmoins4$,integer)) and (cast($MAA3M$,integer) > cast($MOISENQ$,integer)) and not(isnull($MAA3M$)) ) or ( (cast($MAA3A$,integer) = cast($ANNEENQmoins4$,integer)) and isnull($MAA3M$) and (cast($MOISENQ$,integer)<=6) )) then \"2\" else (if ( cast($MAA3A$,integer) > cast($ANNEENQmoins8$,integer) ) then \"3\" else (if ( cast($MAA3A$,integer) > cast($ANNEENQmoins12$,integer)) then \"4\" else (if (not(isnull($MAA3A$))) then \"5\" else \"\")))))", + "Label": "MAA3AT", + "id": "kbkispr8", + "type": "CalculatedVariableType", + "Name": "MAA3AT", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1" + } + }, + { + "Formula": "if (not(isnull($MAA2AT$)) and isnull($MAA2ATC$) and isnull($MAA3AT$) ) then $MAA2AT$ else (if (not(isnull($MAA2AT$)) and not(isnull($MAA2ATC$)) and isnull($MAA3AT$) ) then (if ((cast($MAA2AT$,integer)cast($MAA2AT$,integer)) then \"l'arrivée de votre conjoint(e)\" else (if (not(isnull($MAA2A$))) then \"votre arrivée en \" || cast($MAA2A$,string) else \"votre arrivée\"))", + "Label": "libMAA3", + "id": "kcotuys2", + "type": "CalculatedVariableType", + "Name": "libMAA3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "255" + } + }, + { + "Formula": "if (isnull($HPP$)) then \"vos pièces\" else ( if (cast($HPP$,integer) = 1) then \"votre pièce\" else \"vos pièces\")", + "Label": "libHSP", + "id": "kcp0yph2", + "type": "CalculatedVariableType", + "Name": "libHSP", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Formula": "if (isnull($HPI1$) and isnull($HPA$)) then \"ces pièces annexes réservées\" else (if (isnull($HPI1$) and not(isnull($HULHUI22$)) and ($HULHUI22$)) then \"ces pièces annexes réservées\" else (if ((cast($HPI1$,integer) = 1) or (cast($HPA$,integer) = 1)) then \"cette pièce annexe réservée\" else (if (cast($HPI1$,integer)>0) then \"ces \" || cast($HPI1$,string) || \" pièces annexes réservées\" else \"ces pièces annexes réservées\")))", + "Label": "libHSI1", + "id": "kd4q6heg", + "type": "CalculatedVariableType", + "Name": "libHSI1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "30" + } + }, + { + "Formula": "if (isnull($HUA$)) then \"\" else if ($HUA$=\"1\") then \"pièce annexe, \" else \"\"", + "Label": "libHPHa", + "id": "kd5x12n1", + "type": "CalculatedVariableType", + "Name": "libHPHa", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Formula": "if (isnull($HUP$)) then \"\" else (if ($HUP$=\"1\") then \"pièce exclusivement professionnelle, \" else \"\")", + "Label": "libHPHp", + "id": "kd5wsv3n", + "type": "CalculatedVariableType", + "Name": "libHPHp", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "50" + } + }, + { + "Formula": "if (isnull($KCU1$)) then \"\" else if ($KCU1$=\"1\") then \"cuisine, \" else \"\"", + "Label": "libHPHc", + "id": "kd5x03yf", + "type": "CalculatedVariableType", + "Name": "libHPHc", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "10" + } + }, + { + "Formula": "if (isnull($HPP$) and isnull($HPA$)) then \" \" else (if (not(isnull($HPP$)) and not(isnull($HPA$))) then \", en dehors \" || $libHSTp$ || \" et \" || $libHSTa$ else (if (not(isnull($HPP$))) then \", en dehors \" || $libHSTp$ else ( if (not(isnull($HPA$))) then \", en dehors \" || $libHSTa$ else \" \")))", + "Label": "libHST", + "id": "kd5xwi4p", + "type": "CalculatedVariableType", + "Name": "libHST", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "100" + } + }, + { + "Formula": "round( (cast($HST$,integer) / cast($HPH$,integer)) )", + "Label": "libHSTmoy", + "id": "kd7fq6ld", + "type": "CalculatedVariableType", + "Name": "libHSTmoy", + "Datatype": { + "Maximum": "1000", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "0" + } + }, + { + "Formula": "round( (cast($HST$,integer) / (cast($HPH$,integer) +1)) ) ", + "Label": "libHSTmoy2", + "id": "kd7h7u8j", + "type": "CalculatedVariableType", + "Name": "libHSTmoy2", + "Datatype": { + "Maximum": "1000", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "0" + } + }, + { + "Formula": "if (isnull($libHTLC$)) then \"\" else (if (cast($libHTLC$,string)=\"collectif\")\r\n then \", des terrasses\" else \"\")", + "Label": "libKBA", + "id": "kd8qhmj5", + "type": "CalculatedVariableType", + "Name": "libKBA", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Formula": "if (isnull($HTLC1$)) then \"Avez-vous\" else (if ($HTLC1$=\"2\") then \"Dans votre résidence, avez-vous\" else \"Avez-vous\")", + "Label": "libKJA", + "id": "kd8qo38q", + "type": "CalculatedVariableType", + "Name": "libKJA", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "30" + } + }, + { + "Formula": "if (isnull($HTLC1$) and isnull($HTLC1$) and isnull($INDCOLL$)) then \"votre logement\" else (if (($HTLC1$=\"1\" and not(isnull($HTLC1$))) or ($HTLC1$=\"5\" and not(isnull($HTLC1$))) or ($INDCOLL$=\"2\" and not(isnull($INDCOLL$))) ) then \"la propriété\" else \"l'immeuble\")", + "Label": "libHTLC2", + "id": "kd8yarle", + "type": "CalculatedVariableType", + "Name": "libHTLC2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Formula": "if (isnull($ICOI$)) then \"l'immeuble\" else (if ($ICOI$=\"1\") then \"la copropriété\" else \"l'immeuble\")", + "Label": "libKVELO", + "id": "kd91m689", + "type": "CalculatedVariableType", + "Name": "libKVELO", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Formula": "if (isnull($HUA$)) then \"\" else if ($HUA$=\"1\" and isnull($HULHUI1$) and isnull($HULHUI22$) and isnull($HULHUI23$) ) then \"\" else if ($HUA$=\"1\" and ($HULHUI1$ =\"2\" or $HULHUI1$ =\"3\")) then \"Sans oublier la pièce annexe\" else if ($HUA$=\"1\" and (nvl($HULHUI22$,false)=true or nvl($HULHUI23$,false)=true)) then \"Sans oublier les pièces annexes.\" else \"\"", + "Label": "libKAO", + "id": "kd9dm2z8", + "type": "CalculatedVariableType", + "Name": "libKAO", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "40" + } + }, + { + "Formula": "if (isnull($SEXE$)) then \"er\" else (if ($SEXE$ =\"2\") then \"ère\" else \"er\")", + "Scope": "kmnolkxb", + "Label": "LIB_FEM2", + "id": "kf5dz367", + "type": "CalculatedVariableType", + "Name": "LIB_FEM2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "3" + } + }, + { + "Formula": "if (isnull($STOC2$)) then $STOC1$ else (if ($STOC2$ = \"1\") then \"1\" else (if ($STOC2$ = \"2\") then \"2\" else $STOC1$))", + "Label": "STOC", + "id": "klutbpfw", + "type": "CalculatedVariableType", + "Name": "STOC", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1" + } + }, + { + "Formula": "if (isnull($HPI2$) and isnull($HPA$)) then \"ces pièces annexes réservées\" else (if (isnull($HPI2$) and not(isnull($HULHUI23$))) then \"ces pièces annexes réservées\" else (if ((cast($HPI2$,integer) = 1) or (cast($HPA$,integer) = 1)) then \"cette pièce annexe réservée\" else (if (cast($HPI2$,integer)>0) then \"ces \" || cast($HPI2$,string) || \" pièces annexes réservées\" else \"ces pièces annexes réservées\")))", + "Label": "libHSI2", + "id": "klw3bb9m", + "type": "CalculatedVariableType", + "Name": "libHSI2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "60" + } + }, + { + "Formula": "if (isnull($KCU1$)) then \"\" else if ($KCU1$=\"2\" or $KCU1$=\"3\") then \"Compter comme une pièce votre salon si la cuisine est ouverte (cuisine américaine).\" else \"\"", + "Label": "liHPHc2", + "id": "kmdb0l68", + "type": "CalculatedVariableType", + "Name": "liHPHc2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "100" + } + }, + { + "Formula": "if (isnull($HPA$)) then \"\" else (if (cast($HPA$,integer)=1) then \"de la pièce annexe\" else (if (cast($HPA$,integer)>1) then \"des pièces annexes\" else \"\"))", + "Label": "libHSTa", + "id": "kmdbjrqx", + "type": "CalculatedVariableType", + "Name": "libHSTa", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Formula": "if (isnull($HPP$)) then \"\" else (if (cast($HPP$,integer)=1) then \"de la pièce professionnelle\" else (if (cast($HPP$,integer)>1) then \"des pièces professionnelles\" else \"\"))", + "Label": "libHSTp", + "id": "kmdc1r1x", + "type": "CalculatedVariableType", + "Name": "libHSTp", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 255 + } + }, + { + "Formula": "if (isnull($KCU1$)) then \"\" else (if ($KCU1$=\"1\") then \"(et une cuisine)\" else \"\")", + "Label": "libHSTc", + "id": "kmddimy7", + "type": "CalculatedVariableType", + "Name": "libHSTc", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Formula": "if (isnull($HTLC1$)) then \"\" else (if ($HTLC1$=\"1\" or $HTLC1$=\"5\" or ($INDCOLL$=\"2\" and not(isnull($INDCOLL$))) ) then \"individuel\" else ( if ($HTLC1$=\"2\" or $HTLC1$=\"3\" or $HTLC1$=\"4\" or ($INDCOLL$=\"1\" and not(isnull($INDCOLL$))) ) then \"collectif\" else \"\"))", + "Label": "libHTLC", + "id": "kmdi456r", + "type": "CalculatedVariableType", + "Name": "libHTLC", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "10" + } + }, + { + "Formula": "if (isnull($KVE$)) then \" et de la véranda\" else if ($KVE$<>\"2\") then \" et de la véranda\" else \"\"", + "Label": "libKSMI", + "id": "kmdiz1lc", + "type": "CalculatedVariableType", + "Name": "libKSMI", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 255 + } + }, + { + "Formula": "if (isnull($HUP$)) then \"\" else if ($HUP$=\"1\") then \"(sans usage exclusivement professionnel) \" else \"\"", + "Label": "libKSJPI", + "id": "kmdjrrtc", + "type": "CalculatedVariableType", + "Name": "libKSJPI", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "50" + } + }, + { + "Formula": "if (isnull($NBHAB$)) then \"Un ménage peut être composé d'une seule personne.\" else (if (cast($NBHAB$,integer) < 2) then \"Un ménage peut être composé d'une seule personne.\" else \"\")", + "Label": "libSTOC1", + "id": "knomuvz7", + "type": "CalculatedVariableType", + "Name": "libSTOC1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "50" + } + }, + { + "Formula": "if (isnull($MOISENQ$)) then \"\" else (if ($MOISENQ$=\"01\") then \"janvier\" else (if ($MOISENQ$=\"02\") then \"février\" else (if ($MOISENQ$=\"03\") then \"mars\" else (if ($MOISENQ$=\"04\") then \"avril\" else (if ($MOISENQ$=\"05\") then \"mai\" else (if ($MOISENQ$=\"06\") then \"juin\" else (if ($MOISENQ$=\"07\") then \"juillet\" else (if ($MOISENQ$=\"08\") then \"août\" else (if ($MOISENQ$=\"09\") then \"septembre\" else (if ($MOISENQ$=\"10\") then \"octobre\" else (if ($MOISENQ$=\"11\") then \"novembre\" else (if ($MOISENQ$=\"12\") then \"décembre\" else \"\" ))))))))))))", + "Label": "libMOISENQ", + "id": "ko9vg9v8", + "type": "CalculatedVariableType", + "Name": "libMOISENQ", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "10" + } + }, + { + "Formula": "if ((not(isnull($persplus18AGE$)) and $persplus18AGE$=\"1\") or (not(isnull($persplus18TR$)) and $persplus18TR$=\"1\")) then 1 else 0", + "Scope": "kmnolkxb", + "Label": "persmaj", + "id": "ko9w77fo", + "type": "CalculatedVariableType", + "Name": "persmaj", + "Datatype": { + "Maximum": "1", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "(cast($ANNEENQ$,integer)) - 4", + "Label": "ANNEENQmoins4", + "id": "kocm65ii", + "type": "CalculatedVariableType", + "Name": "ANNEENQmoins4", + "Datatype": { + "Maximum": "3000", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "if ((not(isnull($KVE$)) and $KVE$=\"1\") or (not(isnull($KBA$)) and $KBA$=\"1\") or (not(isnull($KJA$)) and $KJA$=\"1\") or (not(isnull($KJC$)) and $KJC$=\"1\") or (nvl($KGA1$,false)=true) or (nvl($KGA2$,false)=true) or (nvl($KGA3$,false)=true) or (not(isnull($KCA$)) and $KCA$=\"1\") or (not(isnull($KVELO$)) and $KVELO$=\"1\") or (not(isnull($KGRA$)) and $KGRA$=\"1\") or (not(isnull($KSOA$)) and $KSOA$=\"1\") or (not(isnull($KGRAA$)) and $KGRAA$=\"1\") or (not(isnull($KPISC$)) and $KPISC$=\"1\")) then \"1\" else \"0\"", + "Label": "iDEPENDANCE", + "id": "kowl65lm", + "type": "CalculatedVariableType", + "Name": "iDEPENDANCE", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1" + } + }, + { + "Formula": "if (isnull($HTLC1$)) then \"du logement\" else (if ($HTLC1$=\"1\" or $HTLC1$=\"5\" or ($INDCOLL$=\"2\" and not(isnull($INDCOLL$)))) then \"de la maison\" else ( if ($HTLC1$=\"2\" or $HTLC1$=\"3\" or $HTLC1$=\"4\" or ($INDCOLL$=\"1\" and not(isnull($INDCOLL$)))) then \"de l'immeuble\" else \"du logement\"))\n ", + "Label": "libIAATC", + "id": "kp4cwk1f", + "type": "CalculatedVariableType", + "Name": "libIAATC", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Formula": "if (nvl($LIEN$,\"\")=\"\") then 0 else (if ($LIEN$=\"1\") then 1 else 0)", + "Scope": "kmnolkxb", + "Label": "Conjoint du répondant (persconj)", + "id": "kp58o9de", + "type": "CalculatedVariableType", + "Name": "persconj", + "Datatype": { + "Maximum": "1", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "if (nvl($LIEN$,\"\")=\"\") then 0 else (if ($LIEN$=\"2\") then 1 else 0)", + "Scope": "kmnolkxb", + "Label": "Parents du répondant (persparent)", + "id": "kp5a9j4t", + "type": "CalculatedVariableType", + "Name": "persparent", + "Datatype": { + "Maximum": "1", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "if (isnull($STOCC$)) then \"9\" else (if (isnull($STOCA12$) and isnull($STOCA3$) and isnull($STOCA4$)) then \"9\" else (if (($STOCA12$=\"1\" and not(isnull($STOCA12$))) or ($STOCA3$=\"1\" and not(isnull($STOCA3$))) or ($STOCA4$=\"1\" and not(isnull($STOCA4$)))) then \"1\" else \"2\"))", + "Scope": "kmnolkxb", + "Label": "STOCA", + "id": "kp5n3jf8", + "type": "CalculatedVariableType", + "Name": "STOCA", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1" + } + }, + { + "Formula": "if (($persplus25TR$=\"1\" or $persplus25AGE$=\"1\") and ($STOCA$=\"2\" and not(isnull($STOCA$))) and (isnull($STOCB1$) or $STOCB1$<>\"1\") and (($LIEN$=\"3\" or $LIEN$=\"5\") and not(isnull($LIEN$)) ) and (isnull($LOGENQ$) or $LOGENQ$<>\"5\") and (isnull($LOGAUT$) or $LOGAUT$<>\"1\") and (isnull($DURLOG$) or $DURLOG$<>\"3\") ) then 1 else 0", + "Scope": "kmnolkxb", + "Label": "HebEnfant", + "id": "kp5scxxo", + "type": "CalculatedVariableType", + "Name": "HebEnfant", + "Datatype": { + "Maximum": "1", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "if (isnull($TRAGE$) or $TRAGE$ = \"1\" or $TRAGE$ = \"2\" or $TRAGE$ = \"4\") then \"0\" else \"1\"", + "Scope": "kmnolkxb", + "Label": "TRANCHE AGE Personne de plus de 25 ans (persplus25TR)", + "id": "kp5skfkj", + "type": "CalculatedVariableType", + "Name": "persplus25TR", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1" + } + }, + { + "Formula": "if ($PRENOM$<>$PRENOMREF$ and (cast($persmaj$,integer)=1) and (not(isnull($STOCA$)) and $STOCA$=\"2\") and ($STOCB1$<>\"1\" or isnull($STOCB1$)) and (nvl($LIEN$,\"\")=\"\" or ($LIEN$<>\"1\" and $LIEN$<>\"3\" and $LIEN$<>\"5\")) and (isnull($SITUA$) or $SITUA$<>\"5\") and (isnull($LOGENQ$) or $LOGENQ$<>\"5\") and (isnull($LOGAUT$) or $LOGAUT$<>\"1\") and (isnull($DURLOG$) or $DURLOG$<>\"3\")) then 1 else 0", + "Scope": "kmnolkxb", + "Label": "HEB", + "id": "kp5y6ung", + "type": "CalculatedVariableType", + "Name": "HEB", + "Datatype": { + "Maximum": "1", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "if (isnull($VVENDL$)) then \"L'un de ces logements maintenant vendus\" else ( if ($VVENDL$ = \"1\") then \"Ce logement maintenant vendu\" else \"L'un de ces logements maintenant vendus\")", + "Label": "libVFLA", + "id": "koead7in", + "type": "CalculatedVariableType", + "Name": "libVFLA", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "30" + } + }, + { + "Formula": "if (isnull($VVENDL$)) then \"\" else if ($VVENDL$ =\"2\") then \"Considérer le logement vendu pour le prix le plus élevé.\" else \"\"", + "Label": "libVFFH", + "id": "koea9dru", + "type": "CalculatedVariableType", + "Name": "libVFFH", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "60" + } + }, + { + "Formula": "if (isnull($VVENDL$)) then \"logement vendu\" else (if ($VVENDL$=\"2\") then \"total des logements vendus\" else \"logement vendu\")", + "Label": "libVBILLOG1", + "id": "koeauvkr", + "type": "CalculatedVariableType", + "Name": "libVBILLOG1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "30" + } + }, + { + "Formula": "if (isnull($VACHAL$)) then \"logement acheté\" else (if ($VACHAL$=\"2\") then \"total des logements achetés\" else \"logement acheté\")", + "Label": "libVBILLOG2", + "id": "koeb5lcn", + "type": "CalculatedVariableType", + "Name": "libVBILLOG2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "30" + } + }, + { + "Formula": "first_value($G_PRENOM$ over())", + "Label": "Prenom de référence (PRENOMREF)", + "id": "kpauiid9", + "type": "CalculatedVariableType", + "Name": "PRENOMREF", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Formula": "if (isnull($SDN1$)) then \"ces situations\" else if ($SDN1$=\"1\") then \"cette situation\" else \"ces situations\"", + "Scope": "kmnolkxb", + "Label": "cette ou ces situations (libSDT)", + "id": "kpbaad5q", + "type": "CalculatedVariableType", + "Name": "libSDT", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Formula": "if (isnull($nbpersconj$)) then \"0\" else (if (cast($nbpersconj$,integer)>0) then \"1\" else \"0\")", + "Label": "INDconj ", + "id": "kpcqbqrk", + "type": "CalculatedVariableType", + "Name": "INDconj", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1" + } + }, + { + "Formula": "if (isnull($CADR$)) then \"pour transmettre votre questionnaire à l'Insee.\" else ( if ($CADR$=\"3\" or $CADR$=\"4\") then \"pour transmettre cette information à l'Insee afin que vous ne soyez pas relancés.\" else \"pour transmettre votre questionnaire à l'Insee.\")", + "Label": "consigne bouton envoi (libENVS1)", + "id": "kpo86epq", + "type": "CalculatedVariableType", + "Name": "libENVS1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Formula": "if (isnull($CADR$)) then \"Vous êtes arrivés à la fin de ce questionnaire.\" else (if ($CADR$=\"3\" or $CADR$=\"4\") then \"Nous vous remercions de votre participation, mais l’enquête se termine ici, puisque vous n’habitez pas dans le logement enquêté.\" else \"Vous êtes arrivés à la fin de ce questionnaire. Nous vous remercions de votre participation.\")", + "Label": "libFINS1", + "id": "kpo88v55", + "type": "CalculatedVariableType", + "Name": "libFINS1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Formula": "if (isnull($CADR$)) then \"Vous serez contactés à nouveau dans quelques semaines pour participer à l’enquête, consacrée aux coûts du logement.\" else if ($CADR$=\"3\" or $CADR$=\"4\") then \"\" else \"Vous serez contactés à nouveau dans quelques semaines pour participer à la deuxième partie de l’enquête, consacrée aux coûts du logement.\"", + "Label": "libFINS12", + "id": "kpo8i6mz", + "type": "CalculatedVariableType", + "Name": "libFINS12", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Formula": "if (isnull($CADR$) or $CADR$= \"1\" or $CADR$= \"2\") then \"0\" else \"1\"", + "Label": "HC", + "id": "kpolrd46", + "type": "CalculatedVariableType", + "Name": "HC", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1" + } + }, + { + "Formula": "if (isnull($G_PRENOM$)) then $PRENOMVIDE$ else $G_PRENOM$", + "Scope": "kmnolkxb", + "Label": "PRENOM", + "id": "kq7uo7yd", + "type": "CalculatedVariableType", + "Name": "PRENOM", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Formula": "sum(cast($persmaj$,integer))", + "Label": "nbpersmaj", + "id": "kq98eqln", + "type": "CalculatedVariableType", + "Name": "nbpersmaj", + "Datatype": { + "Maximum": "15", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "sum(cast($persconj$,integer))", + "Label": "nbpersconj", + "id": "kq98c6z3", + "type": "CalculatedVariableType", + "Name": "nbpersconj", + "Datatype": { + "Maximum": "15", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "sum(cast($persparent$,integer))", + "Label": "nbpersparent", + "id": "kq9a8xpe", + "type": "CalculatedVariableType", + "Name": "nbpersparent", + "Datatype": { + "Maximum": "15", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "if (isnull($NBHAB$) or (cast($NBHAB$,integer)<2)) then \"Nous allons vous interroger sur votre état civil, votre situation familiale et professionnelle avant de passer à la description de votre logement.\" else \"En commençant par vous, indiquez les prénoms des habitants du logement.\"", + "Label": "libINTROPRENOM", + "id": "kq9m5zgb", + "type": "CalculatedVariableType", + "Name": "libINTROPRENOM", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Formula": "if (isnull($NBHAB$) or (cast($NBHAB$,integer)<2)) then \"\" else \"Si des personnes portent le même prénom, ajoutez un chiffre pour les distinguer.\"", + "Label": "libINTROPRENOM2", + "id": "kq9lw5x7", + "type": "CalculatedVariableType", + "Name": "libINTROPRENOM2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Formula": "sum(cast($HebEnfant$,integer))", + "Label": "nb_HebEnfant", + "id": "kq9wr9le", + "type": "CalculatedVariableType", + "Name": "nb_HebEnfant", + "Datatype": { + "Maximum": "15", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": " sum(cast($HEB$,integer))", + "Label": "nb_HEB", + "id": "kq9x0bof", + "type": "CalculatedVariableType", + "Name": "nb_HEB", + "Datatype": { + "Maximum": "15", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "if (isnull($DATENAIS$)) then 0 else (if (not(isnull($PRENOM$)) and $PRENOM$=\"PRÉNOM\") then 0 else (if (not(isnull($PRENOM$)) and $PRENOM$=$PRENOMREF$ and ( isnull($SITUA$) or (($SITUA$<>\"3\") and ($SITUA$<>\"6\")) ) and (not(isnull($DATENAIS$)) and cast($AGE$,integer)>60 ) ) then 1 else (if ($LIEN$=\"1\" and not(isnull($LIEN$)) and ( isnull($SITUA$) or (($SITUA$<>\"3\") and ($SITUA$<>\"6\")) ) and (not(isnull($DATENAIS$)) and cast($AGE$,integer)>60 ) ) then 1 else 0)))\n", + "Scope": "kmnolkxb", + "Label": "pour S3 (persXRP)", + "id": "kq9z7frj", + "type": "CalculatedVariableType", + "Name": "persXRP", + "Datatype": { + "Maximum": "1", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "sum(cast($persXRP$,integer))", + "Label": "nbpersXRP", + "id": "kq9z3mja", + "type": "CalculatedVariableType", + "Name": "nbpersXRP", + "Datatype": { + "Maximum": "15", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "if (isnull($nbpersXRP$)) then \"0\" else (if (cast($nbpersXRP$,integer)>=1) then \"1\" else \"0\")", + "Label": "filtre_XRP", + "id": "kq9zfu8d", + "type": "CalculatedVariableType", + "Name": "filtre_XRP", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1" + } + }, + { + "Formula": "(cast(($MOISENQ$ || $JOURENQ$),integer) < cast(substr(cast($DATENAIS$,string),6,2) || substr(cast($DATENAIS$,string),9,2),integer))", + "Scope": "kmnolkxb", + "Label": "booleen anniversaire à venir dans l'annee (FUTURANNIVERSAIRE)", + "id": "kqgra7ib", + "type": "CalculatedVariableType", + "Name": "FUTURANNIVERSAIRE", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Formula": "(cast($ANNEENQ$,integer) - cast(substr(cast($DATENAIS$,string),1,4),integer))", + "Scope": "kmnolkxb", + "Label": "Age en millesime (AGEMILLESIME)", + "id": "kqgr5vey", + "type": "CalculatedVariableType", + "Name": "AGEMILLESIME", + "Datatype": { + "Maximum": "125", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "if (isnull($SITUA$)) then \"0\" else (if ($SITUA$ =\"1\") then \"1\" else (if (isnull($TRAVAIL$)) then \"0\" else (if ($TRAVAIL$ = \"1\") then \"1\" else \"0\")))", + "Scope": "kmnolkxb", + "Label": "Personne en emploi (EMPLOI)", + "id": "kqi7gwzb", + "type": "CalculatedVariableType", + "Name": "EMPLOI", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1" + } + }, + { + "Formula": "if (nvl($DATENAIS$,\"\")=\"\" or cast($AGE$,integer) < 25) then \"0\" else \"1\"", + "Scope": "kmnolkxb", + "Label": "AGE Personne de plus de 25 ans (persplus25AGE)", + "id": "kqqit5hr", + "type": "CalculatedVariableType", + "Name": "persplus25AGE", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1" + } + }, + { + "Formula": "if (isnull($NOMVOUS_D2$) or $NOMVOUS_D2$=\"\") then $NOMOCC1$ else $NOMOCC1$ || \" et \" || $NOMOCC2$", + "Label": "libCHGNC", + "id": "kr0o550i", + "type": "CalculatedVariableType", + "Name": "libCHGNC", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Formula": "if (isnull($TRAGE$) or $TRAGE$ = \"1\" or $TRAGE$ = \"4\") then \"0\" else \"1\"", + "Scope": "kmnolkxb", + "Label": "tranche age personne majeur (persplus18TR)", + "id": "krd6p7hy", + "type": "CalculatedVariableType", + "Name": "persplus18TR", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1" + } + }, + { + "Formula": "if (nvl($DATENAIS$,\"\")=\"\" or (cast($AGE$,integer) < 18)) then \"0\" else \"1\"", + "Scope": "kmnolkxb", + "Label": "AGE personne de plus de 18 ans (persplus18AGE)", + "id": "krd6rkdl", + "type": "CalculatedVariableType", + "Name": "persplus18AGE", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1" + } + }, + { + "Formula": "sum(cast($perstelet$,integer))", + "Label": "nbperstelet", + "id": "krdj37bc", + "type": "CalculatedVariableType", + "Name": "nbperstelet", + "Datatype": { + "Maximum": "15", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "\"PRÉNOM\"", + "Label": "PRENOMVIDE", + "id": "krnngsmd", + "type": "CalculatedVariableType", + "Name": "PRENOMVIDE", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "6" + } + }, + { + "Formula": "(cast($ANNEENQ$,integer)) - 1", + "Label": "ANNEENQmoins1", + "id": "krux4bjr", + "type": "CalculatedVariableType", + "Name": "ANNEENQmoins1", + "Datatype": { + "Maximum": "3000", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "(cast($ANNEENQ$,integer)) - 8", + "Label": "ANNEENQmoins8", + "id": "kruxbmdg", + "type": "CalculatedVariableType", + "Name": "ANNEENQmoins8", + "Datatype": { + "Maximum": "3000", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "(cast($ANNEENQ$,integer)) - 12", + "Label": "ANNEENQmoins12", + "id": "kruxdj1k", + "type": "CalculatedVariableType", + "Name": "ANNEENQmoins12", + "Datatype": { + "Maximum": "3000", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "first_value($SEXE$ over())", + "Label": "Sexe de la personne de référence (SEXEREF)", + "id": "kryp58r5", + "type": "CalculatedVariableType", + "Name": "SEXEREF", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1" + } + }, + { + "Formula": "if (isnull($DATENAIS$) or (cast($AGE$,integer) < 15)) then \"0\" else \"1\"", + "Scope": "kmnolkxb", + "Label": "persplus15AGE", + "id": "ksew6khf", + "type": "CalculatedVariableType", + "Name": "persplus15AGE", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1" + } + }, + { + "Formula": "if (isnull($STOC$)) then \"0\" else $STOC$", + "Scope": "kmnolkxb", + "Label": "STOCC", + "id": "ksyg41dk", + "type": "CalculatedVariableType", + "Name": "STOCC", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1" + } + }, + { + "Formula": "if ((nvl($SDL11$,false)=false and nvl($SDL12$,false)=false and nvl($SDL13$,false)=false and nvl($SDL14$,false)=false and nvl($SDL15$,false)=false and nvl($SDL16$,false)=false) or (nvl($SDL12$,false)=false and nvl($SDL13$,false)=false and nvl($SDL14$,false)=false and nvl($SDL15$,false)=false and nvl($SDL16$,false)=false and nvl($SDL17$,false)=false) or (nvl($SDL11$,false)=false and nvl($SDL13$,false)=false and nvl($SDL14$,false)=false and nvl($SDL15$,false)=false and nvl($SDL16$,false)=false and nvl($SDL17$,false)=false) or (nvl($SDL11$,false)=false and nvl($SDL12$,false)=false and nvl($SDL14$,false)=false and nvl($SDL15$,false)=false and nvl($SDL16$,false)=false and nvl($SDL17$,false)=false) or (nvl($SDL11$,false)=false and nvl($SDL12$,false)=false and nvl($SDL13$,false)=false and nvl($SDL15$,false)=false and nvl($SDL16$,false)=false and nvl($SDL17$,false)=false) or (nvl($SDL11$,false)=false and nvl($SDL12$,false)=false and nvl($SDL13$,false)=false and nvl($SDL14$,false)=false and nvl($SDL16$,false)=false and nvl($SDL17$,false)=false) or (nvl($SDL11$,false)=false and nvl($SDL12$,false)=false and nvl($SDL13$,false)=false and nvl($SDL14$,false)=false and nvl($SDL15$,false)=false and nvl($SDL17$,false)=false)) then \"0\" else \"1\"", + "Scope": "kmnolkxb", + "Label": "filtre_SIT", + "id": "kudv8i2p", + "type": "CalculatedVariableType", + "Name": "filtre_SIT", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1" + } + }, + { + "Formula": "if (isnull($TELET$) or $TELET$=\"2\") then 0 else 1", + "Scope": "kmnolkxb", + "Label": "perstelet", + "id": "kue3s3bo", + "type": "CalculatedVariableType", + "Name": "perstelet", + "Datatype": { + "Maximum": "1", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "if (isnull($INDconj$) or $INDconj$=\"0\") then ( if (cast($nbpersmaj$,integer) > 1) then \"1\" else \"0\" ) else ( if (cast($nbpersmaj$,integer) > 2) then \"1\" else \"0\" )", + "Label": "filtre_autrepers", + "id": "kue5ccwr", + "type": "CalculatedVariableType", + "Name": "filtre_autrepers", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1" + } + }, + { + "Formula": "(if (isnull($CIV_D2$)) then \"\" else $CIV_D2$ || \" \") || ( if (isnull($PREN_D2$)) then \"\" else $PREN_D2$ || \" \") || (if (isnull($NOMVOUS_D2$)) then \"\" else $NOMVOUS_D2$)", + "Label": "NOMOCC2", + "id": "kuh4aklr", + "type": "CalculatedVariableType", + "Name": "NOMOCC2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "100" + } + }, + { + "Formula": "if (($PRENOM$=$PRENOMREF$) and ((not(isnull($SITUA$)) and $SITUA$=\"1\") or (not(isnull($TRAVAIL$)) and $TRAVAIL$=\"1\"))) then 1 else 0", + "Scope": "kmnolkxb", + "Label": "persACTIF_REF", + "id": "kvqulqx8", + "type": "CalculatedVariableType", + "Name": "persACTIF_REF", + "Datatype": { + "Maximum": "1", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "if (not(isnull($LIEN$)) and $LIEN$=\"1\" and ((not(isnull($SITUA$)) and $SITUA$=\"1\") or (not(isnull($TRAVAIL$)) and $TRAVAIL$=\"1\"))) then 1 else 0", + "Scope": "kmnolkxb", + "Label": "persACTIF_REFCJ", + "id": "kvqvwwch", + "type": "CalculatedVariableType", + "Name": "persACTIF_REFCJ", + "Datatype": { + "Maximum": "1", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "sum(cast($persACTIF_REFCJ$,integer))", + "Label": "nbACTIF_REFCJ", + "id": "kvqvxps1", + "type": "CalculatedVariableType", + "Name": "nbACTIF_REFCJ", + "Datatype": { + "Maximum": "15", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "if (not(isnull($nbACTIF_REFCJ$)) and cast($nbACTIF_REFCJ$,integer)>0) then \"1\" else \"0\"", + "Label": "ACTIF_REFCJ", + "id": "kvqwkeg7", + "type": "CalculatedVariableType", + "Name": "ACTIF_REFCJ", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1" + } + }, + { + "Formula": "sum(cast($persACTIF_REF$,integer))", + "Label": "nbACTIF_REF", + "id": "kvqxk7tg", + "type": "CalculatedVariableType", + "Name": "nbACTIF_REF", + "Datatype": { + "Maximum": "15", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "if (not(isnull($nbACTIF_REF$)) and cast($nbACTIF_REF$,integer)>0) then \"1\" else \"0\"", + "Label": "ACTIF_REF", + "id": "kvqxfkc8", + "type": "CalculatedVariableType", + "Name": "ACTIF_REF", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1" + } + }, + { + "Formula": "if (isnull($NBHAB$)) then \"le statut d'occupation de votre ménage\" else (if (cast($NBHAB$,integer)=1) then \"votre statut d'occupation\" else (if (not(isnull($nbpersmaj$)) and cast($nbpersmaj$,integer)>1) then \"le statut d'occupation de votre ménage, les statuts d'occupation individuels des occupants du logement\" else \"le statut d'occupation de votre ménage\" ) )", + "Label": "intro_STOC", + "id": "kw0tn1tp", + "type": "CalculatedVariableType", + "Name": "intro_STOC", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Formula": "if (not(isnull($nb_HebEnfant$)) and cast($nb_HebEnfant$,integer)>0 ) then \"1\" else \"0\"", + "Label": "filtre_HebEnfant", + "id": "kw3s7rxu", + "type": "CalculatedVariableType", + "Name": "filtre_HebEnfant", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1" + } + }, + { + "Formula": "if (not(isnull($nb_HEB$)) and cast($nb_HEB$,integer)>0 ) then \"1\" else \"0\"", + "Label": "filtre_HEB", + "id": "kw3shdld", + "type": "CalculatedVariableType", + "Name": "filtre_HEB", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1" + } + }, + { + "Formula": "if (nvl($LIEN$,\"\")=\"1\") then (if (nvl($SEXE$,\"\")=\"1\") then 1 else 0) else 0", + "Scope": "kmnolkxb", + "Label": "INDSEXECJ1", + "id": "kwnvdyzo", + "type": "CalculatedVariableType", + "Name": "INDSEXECJ1", + "Datatype": { + "Maximum": "1", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "if (nvl($LIEN$,\"\")=\"1\") then (if (nvl($SEXE$,\"\")=\"2\") then 1 else 0) else 0", + "Scope": "kmnolkxb", + "Label": "INDSEXECJ2", + "id": "kwnviscn", + "type": "CalculatedVariableType", + "Name": "INDSEXECJ2", + "Datatype": { + "Maximum": "1", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "sum(cast($INDSEXECJ1$,integer))", + "Label": "SEXECJ1", + "id": "kwnvruc5", + "type": "CalculatedVariableType", + "Name": "SEXECJ1", + "Datatype": { + "Maximum": "15", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "sum(cast($INDSEXECJ2$,integer))", + "Label": "SEXECJ2", + "id": "kwnw94o4", + "type": "CalculatedVariableType", + "Name": "SEXECJ2", + "Datatype": { + "Maximum": "15", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "if (cast($SEXECJ2$,integer)>0) then \"e\" else (if (cast($SEXECJ1$,integer)>0) then \"\" else \"(e)\")", + "Label": "SEXECJ_E", + "id": "kwnwikvh", + "type": "CalculatedVariableType", + "Name": "SEXECJ_E", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1" + } + }, + { + "Formula": "if (cast($SEXECJ2$,integer)>0) then \"elle\" else (if (cast($SEXECJ1$,integer)>0) then \"il\" else \"il/elle\")", + "Label": "SEXECJ_IEL", + "id": "kwnxlh9z", + "type": "CalculatedVariableType", + "Name": "SEXECJ_IEL", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1" + } + }, + { + "Formula": "if (isnull($nbpersenf$)) then \"0\" else (if (cast($nbpersenf$,integer)>0) then \"1\" else \"0\")", + "Label": "INDENF", + "id": "kwpbocnz", + "type": "CalculatedVariableType", + "Name": "INDENF", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1" + } + }, + { + "Formula": "sum(cast($persenf$,integer))", + "Label": "nbpersenf", + "id": "kwpbdw81", + "type": "CalculatedVariableType", + "Name": "nbpersenf", + "Datatype": { + "Maximum": "15", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "if (nvl($LIEN$,\"\")=\"\") then 0 else (if ($LIEN$=\"3\") then 1 else 0)", + "Scope": "kmnolkxb", + "Label": "persenf", + "id": "kwpbfyg6", + "type": "CalculatedVariableType", + "Name": "persenf", + "Datatype": { + "Maximum": "1", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "cast(current_date(),string,\"DD\")", + "Label": "JOURENQ", + "id": "kybu3ze7", + "type": "CalculatedVariableType", + "Name": "JOURENQ", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "2" + } + }, + { + "Formula": "if (isnull($INDconj$)) then \"\" else (if($INDconj$=\"1\") then \", vous ou votre conjoint,\" else \"\")", + "Label": "libSDEJA", + "id": "l3ykn00w", + "type": "CalculatedVariableType", + "Name": "libSDEJA", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "24" + } + }, + { + "Formula": "if (nvl($LIEN$,\"\")=\"\") then 0 else (if ($LIEN$=\"3\" or $LIEN$=\"5\") then 1 else 0)", + "Scope": "kmnolkxb", + "Label": "avecenfant", + "id": "l3yldwrr", + "type": "CalculatedVariableType", + "Name": "avecenfant", + "Datatype": { + "Maximum": "1", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "sum(cast($avecenfant$,integer))", + "Label": "nbenfant", + "id": "l3yln6g1", + "type": "CalculatedVariableType", + "Name": "nbenfant", + "Datatype": { + "Maximum": "15", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "if (nvl($LIEN$,\"\")=\"\") then 0 else (if ($LIEN$=\"7\") then 1 else 0)", + "Scope": "kmnolkxb", + "Label": "persamiscoloc", + "id": "l7j3cepd", + "type": "CalculatedVariableType", + "Name": "persamiscoloc", + "Datatype": { + "Maximum": "1", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "sum(cast($persamiscoloc$,integer))", + "Label": "nbpersamiscoloc", + "id": "l7j3nlde", + "type": "CalculatedVariableType", + "Name": "nbpersamiscoloc", + "Datatype": { + "Maximum": "20", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "sum(cast($persplus15$,integer))", + "Label": "nbpers15", + "id": "lftfquwn", + "type": "CalculatedVariableType", + "Name": "nbpers15", + "Datatype": { + "Maximum": "15", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "if (isnull($TRAGE$) or $TRAGE$ = \"4\") then \"0\" else \"1\"", + "Scope": "kmnolkxb", + "Label": "TRANCHE AGE Personne de plus de 15 ans (persplus15TR)", + "id": "lfwlwjes", + "type": "CalculatedVariableType", + "Name": "persplus15TR", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1" + } + }, + { + "Formula": "if ((not(isnull($persplus15AGE$)) and $persplus15AGE$=\"1\") or (not(isnull($persplus15TR$)) and $persplus15TR$=\"1\")) then 1 else 0", + "Scope": "kmnolkxb", + "Label": "persplus15", + "id": "lg0s2yxc", + "type": "CalculatedVariableType", + "Name": "persplus15", + "Datatype": { + "Maximum": "1", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Label": "Numéro de rue (NUMTH)", + "id": "kr0yx2co", + "type": "ExternalVariableType", + "Name": "NUMTH", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "10" + } + }, + { + "Label": "Libellé de l'adresse (ADR)", + "id": "kr0yud7y", + "type": "ExternalVariableType", + "Name": "ADR", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "50" + } + }, + { + "Label": "Complément d'adresse (CADRTH)", + "id": "kr0z63cm", + "type": "ExternalVariableType", + "Name": "CADRTH", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "50" + } + }, + { + "Label": "Code postal (CODEPOST1)", + "id": "kr0ytbep", + "type": "ExternalVariableType", + "Name": "CODEPOST1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "5" + } + }, + { + "Label": "Nom de la commune (LIBCOM)", + "id": "kr0ysp9q", + "type": "ExternalVariableType", + "Name": "LIBCOM", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "100" + } + }, + { + "Label": "Civilité correspondant (CIV_D1)", + "id": "kr0z91yq", + "type": "ExternalVariableType", + "Name": "CIV_D1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "8" + } + }, + { + "Label": "Prénom correspondant (PREN_D1)", + "id": "kr0ytkz0", + "type": "ExternalVariableType", + "Name": "PREN_D1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Label": "Nom correspondant (NOMVOUS_D1)", + "id": "kr0ypa5a", + "type": "ExternalVariableType", + "Name": "NOMVOUS_D1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "50" + } + }, + { + "Label": "Civilité correspondant (CIV_D2)", + "id": "kr1twdtu", + "type": "ExternalVariableType", + "Name": "CIV_D2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "8" + } + }, + { + "Label": "Prénom correspondant (PREN_D2)", + "id": "kr1u63qm", + "type": "ExternalVariableType", + "Name": "PREN_D2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Label": "Nom correspondant (NOMVOUS_D2)", + "id": "kr1tph4j", + "type": "ExternalVariableType", + "Name": "NOMVOUS_D2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "50" + } + }, + { + "Label": "CADR label", + "id": "krm7ey4p", + "type": "CollectedVariableType", + "CodeListReference": "kb9ht98f", + "Name": "CADR", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "NUMTH_COLL label", + "id": "kqgn61x8", + "type": "CollectedVariableType", + "Name": "NUMTH_COLL", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "10" + } + }, + { + "Label": "ADR_COLL label", + "id": "kqgn79pg", + "type": "CollectedVariableType", + "Name": "ADR_COLL", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "50" + } + }, + { + "Label": "CADRTH_COLL label", + "id": "kqgolu9w", + "type": "CollectedVariableType", + "Name": "CADRTH_COLL", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "50" + } + }, + { + "Label": "CODEPOST1_COLL label", + "id": "kqgn9je2", + "type": "CollectedVariableType", + "Name": "CODEPOST1_COLL", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "5" + } + }, + { + "Label": "LIBCOM_COLL label", + "id": "kqgn4sa3", + "type": "CollectedVariableType", + "Name": "LIBCOM_COLL", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "100" + } + }, + { + "Label": "INDNVOCC label", + "id": "kr0ppql7", + "type": "CollectedVariableType", + "CodeListReference": "ko8uzwua", + "Name": "INDNVOCC", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "NOMNVOCC1 label", + "id": "kr0p6ln7", + "type": "CollectedVariableType", + "Name": "NOMNVOCC1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "40" + } + }, + { + "Label": "PRENOMNVOCC1 label", + "id": "kr0pg9pm", + "type": "CollectedVariableType", + "Name": "PRENOMNVOCC1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Label": "NOMNVOCC2 label", + "id": "kr0pbcxz", + "type": "CollectedVariableType", + "Name": "NOMNVOCC2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "40" + } + }, + { + "Label": "PRENOMNVOCC2 label", + "id": "kr0po7ze", + "type": "CollectedVariableType", + "Name": "PRENOMNVOCC2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Label": "TELNVOCC label", + "id": "kr0pk1f6", + "type": "CollectedVariableType", + "Name": "TELNVOCC", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "10" + } + }, + { + "Label": "MAILNVOCC label", + "id": "kr0pdobs", + "type": "CollectedVariableType", + "Name": "MAILNVOCC", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Label": "Nombre d'habitants déclaré (NBHAB)", + "id": "km0sy84b", + "type": "CollectedVariableType", + "Name": "NBHAB", + "Datatype": { + "Maximum": "15", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Scope": "kmnolkxb", + "Label": "G_PRENOM label", + "id": "kq96og1u", + "type": "CollectedVariableType", + "Name": "G_PRENOM", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "kmnolkxb", + "Label": "SEXE label", + "id": "ks4f5ex4", + "type": "CollectedVariableType", + "CodeListReference": "kmolikl4", + "Name": "SEXE", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "DATENAIS label", + "id": "kwf0tev6", + "type": "CollectedVariableType", + "Name": "DATENAIS", + "Datatype": { + "Maximum": "2022-12-31", + "Minimum": "1900-01-01", + "Format": "YYYY-MM-DD", + "typeName": "DATE", + "type": "DateDatatypeType" + } + }, + { + "Scope": "kmnolkxb", + "Label": "Tranche d'âge (TRAGE)", + "id": "kqi4mcwj", + "type": "CollectedVariableType", + "CodeListReference": "kmx6szo6", + "Name": "TRAGE", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "Lieu de naissance (LNAIS)", + "id": "kmoopvvz", + "type": "CollectedVariableType", + "CodeListReference": "kmomiwx3", + "Name": "LNAIS", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "DEPNAIS label", + "id": "lgrk002o", + "type": "CollectedVariableType", + "Name": "DEPNAIS", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "kmnolkxb", + "Label": "PAYSNAIS label", + "id": "lgrjly7i", + "type": "CollectedVariableType", + "Name": "PAYSNAIS", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "kmnolkxb", + "Label": "Française de naissance (NATIO1N1)", + "id": "kmosbfeg", + "type": "CollectedVariableType", + "Name": "NATIO1N1", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "kmnolkxb", + "Label": "Française par naturalisation (NATIO1N2)", + "id": "kmoryx4q", + "type": "CollectedVariableType", + "Name": "NATIO1N2", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "kmnolkxb", + "Label": "Étrangère (NATIO1N3)", + "id": "kmos0mpz", + "type": "CollectedVariableType", + "Name": "NATIO1N3", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "kmnolkxb", + "Label": "Apatride (NATIO1N4)", + "id": "kmosao80", + "type": "CollectedVariableType", + "Name": "NATIO1N4", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "kmnolkxb", + "Label": "NATIO2N label", + "id": "lgrjwuys", + "type": "CollectedVariableType", + "Name": "NATIO2N", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "kmnolkxb", + "Label": "LIEN label", + "id": "lerah1nk", + "type": "CollectedVariableType", + "CodeListReference": "kmw56gjz", + "Name": "LIEN", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "Vie en couple (COUPLE)", + "id": "kod281bk", + "type": "CollectedVariableType", + "CodeListReference": "kod1mvxo", + "Name": "COUPLE", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "Personne mariée (SITUMATRI1)", + "id": "kqi0kw9s", + "type": "CollectedVariableType", + "Name": "SITUMATRI1", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "kmnolkxb", + "Label": "Personne pacsée (SITUMATRI2)", + "id": "kqi0xs8k", + "type": "CollectedVariableType", + "Name": "SITUMATRI2", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "kmnolkxb", + "Label": "Personne en union libre (SITUMATRI3)", + "id": "kqi0ncqs", + "type": "CollectedVariableType", + "Name": "SITUMATRI3", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "kmnolkxb", + "Label": "Personne veuve (SITUMATRI4)", + "id": "kqi0zud6", + "type": "CollectedVariableType", + "Name": "SITUMATRI4", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "kmnolkxb", + "Label": "Personne en rupture du conjoint (SITUMATRI5)", + "id": "kqi0j9jx", + "type": "CollectedVariableType", + "Name": "SITUMATRI5", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "kmnolkxb", + "Label": "Personne célibataire (SITUMATRI6)", + "id": "kqi0ysi5", + "type": "CollectedVariableType", + "Name": "SITUMATRI6", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "kmnolkxb", + "Label": "Unicité logement (UNLOG)", + "id": "kn8zw3tw", + "type": "CollectedVariableType", + "CodeListReference": "kn8zodpk", + "Name": "UNLOG", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "Durée d'occupation (DURLOG)", + "id": "kmx992cg", + "type": "CollectedVariableType", + "CodeListReference": "kmukmzpq", + "Name": "DURLOG", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "LOGENQ label", + "id": "kx4xtdg6", + "type": "CollectedVariableType", + "CodeListReference": "kmx96qdc", + "Name": "LOGENQ", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "LOGAUT label", + "id": "kx4y82og", + "type": "CollectedVariableType", + "CodeListReference": "kmx9jj4a", + "Name": "LOGAUT", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "Enfant en garde alternée (GARDE)", + "id": "kmx9sdps", + "type": "CollectedVariableType", + "CodeListReference": "k1qjtfk1", + "Name": "GARDE", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "Nuitée (DORM)", + "id": "kna1wd13", + "type": "CollectedVariableType", + "CodeListReference": "kna1qses", + "Name": "DORM", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "Chambre en structure collective (LOGCO)", + "id": "kqi5s6xp", + "type": "CollectedVariableType", + "CodeListReference": "k1qjtfk1", + "Name": "LOGCO", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "Structure collective (TYPLOGCO)", + "id": "kmx9o0jb", + "type": "CollectedVariableType", + "CodeListReference": "kmx7yjsk", + "Name": "TYPLOGCO", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "SITUA label", + "id": "kmxflats", + "type": "CollectedVariableType", + "CodeListReference": "kmxfw3sx", + "Name": "SITUA", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "TRAVAIL label", + "id": "kmxftept", + "type": "CollectedVariableType", + "CodeListReference": "k1qjtfk1", + "Name": "TRAVAIL", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "Niveau de diplôme (GRDIPA)", + "id": "kqi82iu1", + "type": "CollectedVariableType", + "CodeListReference": "kmxf03ss", + "Name": "GRDIPA", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "Faible niveau d'études (GRDIPB)", + "id": "kqi8s2pw", + "type": "CollectedVariableType", + "CodeListReference": "kqi895gg", + "Name": "GRDIPB", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "Hautes études (GRDIPC)", + "id": "kqi8cva7", + "type": "CollectedVariableType", + "CodeListReference": "kqi8rie2", + "Name": "GRDIPC", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "TELET label", + "id": "kvjb5etp", + "type": "CollectedVariableType", + "CodeListReference": "ko8uzwua", + "Name": "TELET", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "TELETNJ label", + "id": "kwkcn7zn", + "type": "CollectedVariableType", + "Name": "TELETNJ", + "Datatype": { + "Maximum": "7", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/jour", + "type": "NumericDatatypeType", + "Decimals": "1" + } + }, + { + "Label": "PRACT_NOM label", + "id": "lgmchql7", + "type": "CollectedVariableType", + "Name": "PRACT_NOM", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Label": "HTLC1 label", + "id": "kmdnmxfj", + "type": "CollectedVariableType", + "CodeListReference": "kd8q4yja", + "Name": "HTLC1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "NIVEAU label", + "id": "l7kayr4b", + "type": "CollectedVariableType", + "Name": "NIVEAU", + "Datatype": { + "Maximum": "99", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Label": "FOYPAGEES label", + "id": "kp4bi87b", + "type": "CollectedVariableType", + "CodeListReference": "ko8uzwua", + "Name": "FOYPAGEES", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "RESAUTO label", + "id": "kp4bp50q", + "type": "CollectedVariableType", + "CodeListReference": "kp4bs9c4", + "Name": "RESAUTO", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "Logement dans immeuble", + "id": "kbgifaaz", + "type": "CollectedVariableType", + "CodeListReference": "k1qjtfk1", + "Name": "INDCOLL", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "Type maison", + "id": "kbgijjye", + "type": "CollectedVariableType", + "CodeListReference": "kbgi2ogb", + "Name": "IMI", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "Maison en résidence", + "id": "kbgifbcr", + "type": "CollectedVariableType", + "CodeListReference": "k1qjtfk1", + "Name": "ICOI", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "Présence d'ascenseur", + "id": "kbgifxoq", + "type": "CollectedVariableType", + "CodeListReference": "k1qjtfk1", + "Name": "IAS", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "Numéro étage", + "id": "kbgikmsh", + "type": "CollectedVariableType", + "Name": "IEL", + "Datatype": { + "Maximum": "99", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Label": "Période d'achèvement", + "id": "kbghyaq0", + "type": "CollectedVariableType", + "CodeListReference": "kbgiawbm", + "Name": "IAATC", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "IAATCD label", + "id": "lgqots96", + "type": "CollectedVariableType", + "Name": "IAATCD", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Label": "STOC1 label", + "id": "klut3nax", + "type": "CollectedVariableType", + "CodeListReference": "jn0cd476", + "Name": "STOC1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "STOC2 label", + "id": "klutbmso", + "type": "CollectedVariableType", + "CodeListReference": "klut8zly", + "Name": "STOC2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "COLOC label", + "id": "l7j27kvr", + "type": "CollectedVariableType", + "CodeListReference": "ko8uzwua", + "Name": "COLOC", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "LBA label", + "id": "l95eveg6", + "type": "CollectedVariableType", + "CodeListReference": "ko8uzwua", + "Name": "LBA", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "STOCP label", + "id": "jn0e3lhq", + "type": "CollectedVariableType", + "CodeListReference": "jn0dummd", + "Name": "STOCP", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "STOCA12 label", + "id": "ko9tk25n", + "type": "CollectedVariableType", + "CodeListReference": "ko8uzwua", + "Name": "STOCA12", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "STOCA3 label", + "id": "ko9t8lr0", + "type": "CollectedVariableType", + "CodeListReference": "ko8uzwua", + "Name": "STOCA3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "STOCA4 label", + "id": "ko9tmcu8", + "type": "CollectedVariableType", + "CodeListReference": "ko8uzwua", + "Name": "STOCA4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "STOCB1 label", + "id": "knoq3j67", + "type": "CollectedVariableType", + "CodeListReference": "knoq1iew", + "Name": "STOCB1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "EPAS1 label", + "id": "kp5x078b", + "type": "CollectedVariableType", + "CodeListReference": "kp5vfffj", + "Name": "EPAS1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "ERETOUR label", + "id": "kppmk0mg", + "type": "CollectedVariableType", + "CodeListReference": "jncy00q3", + "Name": "ERETOUR", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "EPASB label", + "id": "joh9hbxn", + "type": "CollectedVariableType", + "CodeListReference": "joh8kni7", + "Name": "EPASB", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "EPASC label", + "id": "kcncj70c", + "type": "CollectedVariableType", + "CodeListReference": "joh9gxwq", + "Name": "EPASC", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "1 - Changement de situation professionnelle (lieu de travail, perte d'emploi...)", + "id": "kwqkp3p2", + "type": "CollectedVariableType", + "Name": "ERET11", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "kmnolkxb", + "Label": "2 - Séparations familiales", + "id": "kwqkm2qv", + "type": "CollectedVariableType", + "Name": "ERET12", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "kmnolkxb", + "Label": "3 - Difficultés financières", + "id": "kwqkmpb9", + "type": "CollectedVariableType", + "Name": "ERET13", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "kmnolkxb", + "Label": "4 - Fin des études ou études en cours", + "id": "kwqkbr0b", + "type": "CollectedVariableType", + "Name": "ERET14", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "kmnolkxb", + "Label": "5 - Raisons de santé ou pour s'occuper d'un membre du ménage", + "id": "kwqkay07", + "type": "CollectedVariableType", + "Name": "ERET15", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "kmnolkxb", + "Label": "6 - Autre", + "id": "kwqksrzu", + "type": "CollectedVariableType", + "Name": "ERET16", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "kmnolkxb", + "Label": "ECOVID label", + "id": "kp5vtv99", + "type": "CollectedVariableType", + "CodeListReference": "jncy00q3", + "Name": "ECOVID", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "EPROJ label", + "id": "knpntilb", + "type": "CollectedVariableType", + "CodeListReference": "joirusc3", + "Name": "EPROJ", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "EPROJB label", + "id": "joirtq9l", + "type": "CollectedVariableType", + "CodeListReference": "joirox38", + "Name": "EPROJB", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "EPROJC label", + "id": "jois2zfa", + "type": "CollectedVariableType", + "CodeListReference": "joirox38", + "Name": "EPROJC", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "EPROJD label", + "id": "joit0351", + "type": "CollectedVariableType", + "CodeListReference": "joisst25", + "Name": "EPROJD", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "EAMIA label", + "id": "joisc9ua", + "type": "CollectedVariableType", + "CodeListReference": "joh9gxwq", + "Name": "EAMIA", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "1 - En couple avec l'un des membres du ménage", + "id": "l3d7qp26", + "type": "CollectedVariableType", + "Name": "EAMID11", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "kmnolkxb", + "Label": "2 - Changement de situation professionnelle (lieu de travail, perte d'emploi...)", + "id": "l3d7wr74", + "type": "CollectedVariableType", + "Name": "EAMID12", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "kmnolkxb", + "Label": "3 - Séparation familiale", + "id": "l3d7id7m", + "type": "CollectedVariableType", + "Name": "EAMID13", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "kmnolkxb", + "Label": "4 - Difficultés financières", + "id": "l3d7qlgr", + "type": "CollectedVariableType", + "Name": "EAMID14", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "kmnolkxb", + "Label": "7 - Fin des études ou études en cours", + "id": "l3d7yqxt", + "type": "CollectedVariableType", + "Name": "EAMID15", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "kmnolkxb", + "Label": "5 - Raisons de santé ou pour s'occuper d'un membre du ménage", + "id": "l3d7hb7k", + "type": "CollectedVariableType", + "Name": "EAMID16", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "kmnolkxb", + "Label": "6 - Je rends service à quelqu'un qui n'a pas d'autre solution d'hébergement", + "id": "l3d7jgv0", + "type": "CollectedVariableType", + "Name": "EAMID17", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "kmnolkxb", + "Label": "ECOVID2 label", + "id": "kpppx8tb", + "type": "CollectedVariableType", + "CodeListReference": "jncy00q3", + "Name": "ECOVID2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "EAMIH label", + "id": "kcnjw6pt", + "type": "CollectedVariableType", + "CodeListReference": "joirusc3", + "Name": "EAMIH", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "EAMIK label", + "id": "kqv44ftz", + "type": "CollectedVariableType", + "CodeListReference": "kqv3pa7u", + "Name": "EAMIK", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "EAMIL label", + "id": "kqv468d5", + "type": "CollectedVariableType", + "CodeListReference": "ko8uzwua", + "Name": "EAMIL", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "MAA2A label", + "id": "lgp3bfj8", + "type": "CollectedVariableType", + "Name": "MAA2A", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Label": "MAA2AT_Q label", + "id": "kp6iwknx", + "type": "CollectedVariableType", + "CodeListReference": "kp6iy3xk", + "Name": "MAA2AT_Q", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "MAA2M label", + "id": "kf71mrxw", + "type": "CollectedVariableType", + "CodeListReference": "kf71urf1", + "Name": "MAA2M", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "MARRIVC label", + "id": "jojtmmcp", + "type": "CollectedVariableType", + "CodeListReference": "jncy00q3", + "Name": "MARRIVC", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "MAA2AC label", + "id": "lgp3974g", + "type": "CollectedVariableType", + "Name": "MAA2AC", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Label": "MAA2ATC_Q label", + "id": "kp6karsm", + "type": "CollectedVariableType", + "CodeListReference": "kp6iy3xk", + "Name": "MAA2ATC_Q", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "MAA2MC label", + "id": "kf722urp", + "type": "CollectedVariableType", + "CodeListReference": "kf71urf1", + "Name": "MAA2MC", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "MAA3 label", + "id": "jojtd97l", + "type": "CollectedVariableType", + "CodeListReference": "jncy00q3", + "Name": "MAA3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "MAA3A label", + "id": "lgp3qwcx", + "type": "CollectedVariableType", + "Name": "MAA3A", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Label": "MAA3M label", + "id": "kf71lvot", + "type": "CollectedVariableType", + "CodeListReference": "kf71urf1", + "Name": "MAA3M", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "SDEJA label", + "id": "l3ykbe8f", + "type": "CollectedVariableType", + "CodeListReference": "ko8uzwua", + "Name": "SDEJA", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "KCU1 label", + "id": "km24than", + "type": "CollectedVariableType", + "CodeListReference": "jojv0g6x", + "Name": "KCU1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "KCU2 label", + "id": "jojupxj3", + "type": "CollectedVariableType", + "CodeListReference": "jojum3uu", + "Name": "KCU2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "HUTCOND label", + "id": "l3ioimd4", + "type": "CollectedVariableType", + "Name": "HUTCOND", + "Datatype": { + "Maximum": "10", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Label": "1 - Bruit", + "id": "l3ioi4z8", + "type": "CollectedVariableType", + "CodeListReference": "ko8uzwua", + "Name": "HUTDEF1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "2 - Absence d'une pièce dédiée au télétravail", + "id": "l3io8xk7", + "type": "CollectedVariableType", + "CodeListReference": "ko8uzwua", + "Name": "HUTDEF2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "3 - Manque de place", + "id": "l3io3i1z", + "type": "CollectedVariableType", + "CodeListReference": "ko8uzwua", + "Name": "HUTDEF3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "4 - Problème de connexion Internet", + "id": "l3iohmbv", + "type": "CollectedVariableType", + "CodeListReference": "ko8uzwua", + "Name": "HUTDEF4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "HUP label", + "id": "jojuqqg0", + "type": "CollectedVariableType", + "CodeListReference": "jncy00q3", + "Name": "HUP", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "HPP label", + "id": "jojuunvc", + "type": "CollectedVariableType", + "Name": "HPP", + "Datatype": { + "Maximum": "9", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "0" + } + }, + { + "Label": "HSP label", + "id": "kwkd92gt", + "type": "CollectedVariableType", + "Name": "HSP", + "Datatype": { + "Maximum": "997", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/metrecarre", + "type": "NumericDatatypeType", + "Decimals": "2" + } + }, + { + "Label": "HUA label", + "id": "jojusauf", + "type": "CollectedVariableType", + "CodeListReference": "jncy00q3", + "Name": "HUA", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "HPA label", + "id": "kkqp2j1d", + "type": "CollectedVariableType", + "Name": "HPA", + "Datatype": { + "Maximum": "9", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "0" + } + }, + { + "Label": "HULHUI1 label", + "id": "kmd71wle", + "type": "CollectedVariableType", + "CodeListReference": "kmd70xef", + "Name": "HULHUI1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "1 - Louées, sous-louées ou prêtées à des tiers.", + "id": "kmd80s25", + "type": "CollectedVariableType", + "Name": "HULHUI21", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "2 - Réservées à votre usage personnel", + "id": "kmd84vg3", + "type": "CollectedVariableType", + "Name": "HULHUI22", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "3 - À l'usage d'un salarié à votre service (employé, jeune au pair..)", + "id": "kmd7sxny", + "type": "CollectedVariableType", + "Name": "HULHUI23", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "HPI1 label", + "id": "klv4iu5l", + "type": "CollectedVariableType", + "Name": "HPI1", + "Datatype": { + "Maximum": "9", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "0" + } + }, + { + "Label": "HPI2 label", + "id": "klv4t7se", + "type": "CollectedVariableType", + "Name": "HPI2", + "Datatype": { + "Maximum": "9", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "0" + } + }, + { + "Label": "HSI1 label", + "id": "kycvsbre", + "type": "CollectedVariableType", + "Name": "HSI1", + "Datatype": { + "Maximum": "999", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/metrecarre", + "type": "NumericDatatypeType", + "Decimals": "2" + } + }, + { + "Label": "HSI2 label", + "id": "kycvrlft", + "type": "CollectedVariableType", + "Name": "HSI2", + "Datatype": { + "Maximum": "999", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/metrecarre", + "type": "NumericDatatypeType", + "Decimals": "2" + } + }, + { + "Label": "HPH label", + "id": "kycvr8qf", + "type": "CollectedVariableType", + "Name": "HPH", + "Datatype": { + "Maximum": "100", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "0" + } + }, + { + "Label": "HCHA label", + "id": "kycvqn8e", + "type": "CollectedVariableType", + "Name": "HCHA", + "Datatype": { + "Maximum": "100", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "0" + } + }, + { + "Label": "HST label", + "id": "kwkduxho", + "type": "CollectedVariableType", + "Name": "HST", + "Datatype": { + "Maximum": "1000", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/metrecarre", + "type": "NumericDatatypeType", + "Decimals": "2" + } + }, + { + "Label": "HPEUP label", + "id": "jojve9fu", + "type": "CollectedVariableType", + "CodeListReference": "jojvev63", + "Name": "HPEUP", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "HAUT label", + "id": "kv29e4km", + "type": "CollectedVariableType", + "CodeListReference": "jojvm75x", + "Name": "HAUT", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "KVE label", + "id": "jrupwwi7", + "type": "CollectedVariableType", + "CodeListReference": "jncy00q3", + "Name": "KVE", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "KSV label", + "id": "kycvstc6", + "type": "CollectedVariableType", + "Name": "KSV", + "Datatype": { + "Maximum": "999", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/metrecarre", + "type": "NumericDatatypeType", + "Decimals": "2" + } + }, + { + "Label": "KSV1 label", + "id": "jrupxrwb", + "type": "CollectedVariableType", + "CodeListReference": "jncy00q3", + "Name": "KSV1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "KBA label", + "id": "jrupt0ur", + "type": "CollectedVariableType", + "CodeListReference": "jncy00q3", + "Name": "KBA", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "KSB label", + "id": "kycvqfbg", + "type": "CollectedVariableType", + "Name": "KSB", + "Datatype": { + "Maximum": "999", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/metrecarre", + "type": "NumericDatatypeType", + "Decimals": "2" + } + }, + { + "Label": "KJA label", + "id": "jrupwd1k", + "type": "CollectedVariableType", + "CodeListReference": "jncy00q3", + "Name": "KJA", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "KSJPI label", + "id": "kycw6iix", + "type": "CollectedVariableType", + "Name": "KSJPI", + "Datatype": { + "Maximum": "100000", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/metrecarre", + "type": "NumericDatatypeType", + "Decimals": "2" + } + }, + { + "Label": "KSJPIT label", + "id": "kd8v17b1", + "type": "CollectedVariableType", + "CodeListReference": "jruq09km", + "Name": "KSJPIT", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "KSMI label", + "id": "kycx9mkh", + "type": "CollectedVariableType", + "Name": "KSMI", + "Datatype": { + "Maximum": "99999", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/metrecarre", + "type": "NumericDatatypeType", + "Decimals": "2" + } + }, + { + "Label": "KSJPC label", + "id": "kycxer12", + "type": "CollectedVariableType", + "Name": "KSJPC", + "Datatype": { + "Maximum": "99999", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/metrecarre", + "type": "NumericDatatypeType", + "Decimals": "2" + } + }, + { + "Label": "KJC label", + "id": "jruqlp4e", + "type": "CollectedVariableType", + "CodeListReference": "jncy00q3", + "Name": "KJC", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "KSJC label", + "id": "kd8wl7m1", + "type": "CollectedVariableType", + "CodeListReference": "jruscsna", + "Name": "KSJC", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "GVOIT label", + "id": "l3irm90u", + "type": "CollectedVariableType", + "CodeListReference": "l3is40qi", + "Name": "GVOIT", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "1 - Oui, un garage ou u nbox", + "id": "jrusrp45", + "type": "CollectedVariableType", + "Name": "KGA1", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "2 - Oui, un parking souterrain", + "id": "jrusyukj", + "type": "CollectedVariableType", + "Name": "KGA2", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "3 - Oui, un parking en plein air", + "id": "jruspgnz", + "type": "CollectedVariableType", + "Name": "KGA3", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "4 - Non, ni garage, ni box, ni parking", + "id": "jruswkr3", + "type": "CollectedVariableType", + "Name": "KGA4", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "1 - Oui, un garage ou un box", + "id": "jrusz90d", + "type": "CollectedVariableType", + "Name": "KGA11", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "2 - Oui, un parking souterrain", + "id": "jrusxk5i", + "type": "CollectedVariableType", + "Name": "KGA12", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "3 - Oui, un parking en plein air", + "id": "jrut5rs4", + "type": "CollectedVariableType", + "Name": "KGA13", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "4 - Non, ni garage, ni box, ni parking", + "id": "jrusvxw1", + "type": "CollectedVariableType", + "Name": "KGA14", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "KCA label", + "id": "jrutat73", + "type": "CollectedVariableType", + "CodeListReference": "jncy00q3", + "Name": "KCA", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "KVELO label", + "id": "kmdllzgd", + "type": "CollectedVariableType", + "CodeListReference": "joirusc3", + "Name": "KVELO", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "KGRA label", + "id": "koiozi77", + "type": "CollectedVariableType", + "CodeListReference": "jncy00q3", + "Name": "KGRA", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "KSOA label", + "id": "jrutqxjn", + "type": "CollectedVariableType", + "CodeListReference": "jncy00q3", + "Name": "KSOA", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "KPISC label", + "id": "jruul7hb", + "type": "CollectedVariableType", + "CodeListReference": "jncy00q3", + "Name": "KPISC", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "KGRAA label", + "id": "jruu4qwz", + "type": "CollectedVariableType", + "CodeListReference": "jncy00q3", + "Name": "KGRAA", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "KAO1 label", + "id": "kmdsauvj", + "type": "CollectedVariableType", + "CodeListReference": "kmdsf01l", + "Name": "KAO1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "KWC1 label", + "id": "kdabf33q", + "type": "CollectedVariableType", + "CodeListReference": "jruv7r7y", + "Name": "KWC1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "KWCID label", + "id": "lfjeifdt", + "type": "CollectedVariableType", + "Name": "KWCID", + "Datatype": { + "Maximum": "9", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Label": "KWCIDB label", + "id": "lfjgozaz", + "type": "CollectedVariableType", + "CodeListReference": "ko8uzwua", + "Name": "KWCIDB", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "KWCID2 label", + "id": "lfjeehxy", + "type": "CollectedVariableType", + "Name": "KWCID2", + "Datatype": { + "Maximum": "9", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Label": "KBD label", + "id": "jruvg7ju", + "type": "CollectedVariableType", + "CodeListReference": "jncy00q3", + "Name": "KBD", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "KSE label", + "id": "lfjenaet", + "type": "CollectedVariableType", + "Name": "KSE", + "Datatype": { + "Maximum": "9", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Label": "KSEB label", + "id": "lfjgt4a1", + "type": "CollectedVariableType", + "CodeListReference": "ko8uzwua", + "Name": "KSEB", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "KSE2 label", + "id": "lfjeoa22", + "type": "CollectedVariableType", + "Name": "KSE2", + "Datatype": { + "Maximum": "9", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Label": "KDLK1 label", + "id": "kmf0ywla", + "type": "CollectedVariableType", + "CodeListReference": "jncy00q3", + "Name": "KDLK1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "KDLK2 label", + "id": "kmf0znd7", + "type": "CollectedVariableType", + "CodeListReference": "jruvifd2", + "Name": "KDLK2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "OLA label", + "id": "kcui3ym0", + "type": "CollectedVariableType", + "CodeListReference": "joico0rb", + "Name": "OLA", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "OLAD label", + "id": "joicxlh4", + "type": "CollectedVariableType", + "Name": "OLAD", + "Datatype": { + "Maximum": "10", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Label": "1 - Pas d'eau chaude", + "id": "l8bcd93y", + "type": "CollectedVariableType", + "CodeListReference": "joidufam", + "Name": "OLAR11", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "2 - Pas de chauffage central ou électrique", + "id": "l8bcdwlk", + "type": "CollectedVariableType", + "CodeListReference": "joidufam", + "Name": "OLAR12", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "3 - Toit percé, humidité, infiltrations", + "id": "l8bc5gu4", + "type": "CollectedVariableType", + "CodeListReference": "joidufam", + "Name": "OLAR13", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "4 - Logement bruyant", + "id": "l8bc5mej", + "type": "CollectedVariableType", + "CodeListReference": "joidufam", + "Name": "OLAR14", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "1 - pour accéder au logement ou s’y déplacer ?", + "id": "l7j1r0z9", + "type": "CollectedVariableType", + "CodeListReference": "ko8uzwua", + "Name": "OLAR1DIF1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "2 - pour accomplir les tâches du quotidien dans leur logement (cuisiner, se laver, fermer les volets, etc.) ?", + "id": "l7j1iifa", + "type": "CollectedVariableType", + "CodeListReference": "ko8uzwua", + "Name": "OLAR1DIF2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "1 - pour accéder au logement ou s’y déplacer ?", + "id": "l7j1si95", + "type": "CollectedVariableType", + "CodeListReference": "ko8uzwua", + "Name": "OLAR1DIFCO1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "2 - pour accomplir les tâches du quotidien dans leur logement (cuisiner, se laver, fermer les volets, etc.) ?", + "id": "l7j1ye16", + "type": "CollectedVariableType", + "CodeListReference": "ko8uzwua", + "Name": "OLAR1DIFCO2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "3 - pour accéder aux parties communes de l’immeuble ?", + "id": "l7j1utvh", + "type": "CollectedVariableType", + "CodeListReference": "ko8uzwua", + "Name": "OLAR1DIFCO3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "1 - Trop sombre", + "id": "ko3w2bxw", + "type": "CollectedVariableType", + "CodeListReference": "joidufam", + "Name": "OLAR21", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "2 - Trop petit", + "id": "ko3vokyj", + "type": "CollectedVariableType", + "CodeListReference": "joidufam", + "Name": "OLAR22", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "3 - Trop difficile ou trop coûteux à chauffer", + "id": "ko3vwv7a", + "type": "CollectedVariableType", + "CodeListReference": "joidufam", + "Name": "OLAR23", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "4 - Trop chaud (trop difficile ou coûteux à climatiser)", + "id": "ko3w348b", + "type": "CollectedVariableType", + "CodeListReference": "joidufam", + "Name": "OLAR24", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "5 - Trop cher", + "id": "ko3w0jql", + "type": "CollectedVariableType", + "CodeListReference": "joidufam", + "Name": "OLAR25", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "1 - Problèmes de pollution", + "id": "l7kggzyr", + "type": "CollectedVariableType", + "CodeListReference": "joidufam", + "Name": "OLAR31", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "2 - Problèmes de délinquance, violence ou vandalisme dans les environs", + "id": "l7kgfi7w", + "type": "CollectedVariableType", + "CodeListReference": "joidufam", + "Name": "OLAR32", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "3 - Services médicaux insuffisants", + "id": "l7kg4e0c", + "type": "CollectedVariableType", + "CodeListReference": "joidufam", + "Name": "OLAR33", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "4 - Services publics insuffisants", + "id": "l7kgku7a", + "type": "CollectedVariableType", + "CodeListReference": "joidufam", + "Name": "OLAR34", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "5 - Manque de végétation", + "id": "l7kg81bv", + "type": "CollectedVariableType", + "CodeListReference": "joidufam", + "Name": "OLAR35", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "OLAR4 label", + "id": "l3yl99ds", + "type": "CollectedVariableType", + "CodeListReference": "ko8uzwua", + "Name": "OLAR4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "OQA label", + "id": "ks4l98bk", + "type": "CollectedVariableType", + "CodeListReference": "joirusc3", + "Name": "OQA", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "OQAD label", + "id": "kniwsz0y", + "type": "CollectedVariableType", + "Name": "OQAD", + "Datatype": { + "Maximum": "10", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "0" + } + }, + { + "Scope": "kmnolkxb", + "Label": "1 - Hébergement contraint chez d'autres personnes", + "id": "ljvx2z41", + "type": "CollectedVariableType", + "Name": "SDL11", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "kmnolkxb", + "Label": "2 - Chambre d’hôtel (hors tourisme)", + "id": "ljvxagy6", + "type": "CollectedVariableType", + "Name": "SDL12", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "kmnolkxb", + "Label": "3 - Logement payé par une association ou un organisme d’aide", + "id": "ljvx7dgb", + "type": "CollectedVariableType", + "Name": "SDL13", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "kmnolkxb", + "Label": "4 - Séjour en centre d'hébergement (Centre d'hébergement d'urgence, CHRS, centre maternel, centre d'hébergement pour demandeurs d'asile ou réfugiés...Foyers ou hébergements de la DDASS, DDCS, ASE, PJJ...)", + "id": "ljvx2686", + "type": "CollectedVariableType", + "Name": "SDL14", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "kmnolkxb", + "Label": "5 - Séjour dans un logement sans autorisation du propriétaire (squat)", + "id": "ljvx4oqr", + "type": "CollectedVariableType", + "Name": "SDL15", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "kmnolkxb", + "Label": "6 - Séjour dans un lieu non prévu pour l’habitation (rue, véhicule, abri de fortune...)", + "id": "ljvwqn5l", + "type": "CollectedVariableType", + "Name": "SDL16", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "kmnolkxb", + "Label": "7 - Logement contraint en habitation mobile (caravane, péniche) hors tourisme", + "id": "ljvwqe7r", + "type": "CollectedVariableType", + "Name": "SDL17", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "kmnolkxb", + "Label": "8 - Aucune de ces situations", + "id": "ljvx7dtp", + "type": "CollectedVariableType", + "Name": "SDL18", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "kmnolkxb", + "Label": "SDL2 label", + "id": "kqr1gig2", + "type": "CollectedVariableType", + "CodeListReference": "kqr0x5ml", + "Name": "SDL2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "SDL4 label", + "id": "kpb8rrpp", + "type": "CollectedVariableType", + "CodeListReference": "jncy00q3", + "Name": "SDL4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "SDN1 label", + "id": "kpb8odq8", + "type": "CollectedVariableType", + "CodeListReference": "kpb8y2tb", + "Name": "SDN1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "SDT1 label", + "id": "kzfuty83", + "type": "CollectedVariableType", + "CodeListReference": "joiodz52", + "Name": "SDT1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "SDL_SIT1 label", + "id": "kw10ohak", + "type": "CollectedVariableType", + "CodeListReference": "kw10q170", + "Name": "SDL_SIT1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "SDTAD label", + "id": "lgp3idvc", + "type": "CollectedVariableType", + "Name": "SDTAD", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "kmnolkxb", + "Label": "SDT2 label", + "id": "kpbcfjwd", + "type": "CollectedVariableType", + "CodeListReference": "joiodz52", + "Name": "SDT2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "SDL_SIT2 label", + "id": "kw10kba9", + "type": "CollectedVariableType", + "CodeListReference": "kw10q170", + "Name": "SDL_SIT2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "kmnolkxb", + "Label": "SDTAD_SIT2 label", + "id": "lgp3kba4", + "type": "CollectedVariableType", + "Name": "SDTAD_SIT2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "kmnolkxb", + "Label": "SDT2_SIT2 label", + "id": "kuguebox", + "type": "CollectedVariableType", + "CodeListReference": "joiodz52", + "Name": "SDT2_SIT2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "1 - Arrivée d'un ou plusieurs enfants", + "id": "kx6danaj", + "type": "CollectedVariableType", + "Name": "VMODM1", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "2 - Survenue d'un ou plusieurs décès", + "id": "kx6d9hz0", + "type": "CollectedVariableType", + "Name": "VMODM2", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "3 - Départ d'un ou plusieurs enfants", + "id": "kx6dmkot", + "type": "CollectedVariableType", + "Name": "VMODM3", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "4 - Arrivée d'une ou plusieurs personnes du fait d'une mise en couple", + "id": "kx6ds7l5", + "type": "CollectedVariableType", + "Name": "VMODM4", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "5 - Départ d'une ou plusieurs personnes du fait d'une séparation ", + "id": "kx6dbabe", + "type": "CollectedVariableType", + "Name": "VMODM5", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "6 - Autre évolution de la composition du ménage", + "id": "kx6dpiga", + "type": "CollectedVariableType", + "Name": "VMODM6", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "7 - Aucune modification", + "id": "kx6dl3wb", + "type": "CollectedVariableType", + "Name": "VMODM7", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "3 - Entrée en activité ou reprise d’activité", + "id": "lex4d3r3", + "type": "CollectedVariableType", + "Name": "VMODP11", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "1 - Perte de son emploi", + "id": "lex4isof", + "type": "CollectedVariableType", + "Name": "VMODP12", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "2 - Passage à la retraite, préretraite ou décision d’arrêter de travailler", + "id": "lex4lx0t", + "type": "CollectedVariableType", + "Name": "VMODP13", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "4 - Aucune modification de ce type", + "id": "lex48qey", + "type": "CollectedVariableType", + "Name": "VMODP14", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "1 - Changement d’entreprise ou d’employeur", + "id": "koe0hkq6", + "type": "CollectedVariableType", + "Name": "VMODP21", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "2 - Changement d’établissement au sein de la même entreprise", + "id": "koe0tx5v", + "type": "CollectedVariableType", + "Name": "VMODP22", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "3 - Aucune modification de ce type", + "id": "koe0kdpd", + "type": "CollectedVariableType", + "Name": "VMODP23", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "VVENDL label", + "id": "joph55si", + "type": "CollectedVariableType", + "CodeListReference": "joph1lnb", + "Name": "VVENDL", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "VFFH label", + "id": "jopgywd6", + "type": "CollectedVariableType", + "CodeListReference": "jopgr6lb", + "Name": "VFFH", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "VFLA label", + "id": "kpbdceom", + "type": "CollectedVariableType", + "CodeListReference": "jncy00q3", + "Name": "VFLA", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "VACHAL label", + "id": "koeaf3w8", + "type": "CollectedVariableType", + "CodeListReference": "joph1lnb", + "Name": "VACHAL", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "VBILLOG label", + "id": "jophl1ay", + "type": "CollectedVariableType", + "CodeListReference": "joph7hjs", + "Name": "VBILLOG", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "VLR label", + "id": "kwzcaigg", + "type": "CollectedVariableType", + "CodeListReference": "jopkxxc6", + "Name": "VLR", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "COMMUNEPASSEE label", + "id": "lgrk1tun", + "type": "CollectedVariableType", + "Name": "COMMUNEPASSEE", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Label": "DEPART label", + "id": "lgrjlmvu", + "type": "CollectedVariableType", + "Name": "DEPART", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Label": "VCRCOM label", + "id": "koebzx5n", + "type": "CollectedVariableType", + "Name": "VCRCOM", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "30" + } + }, + { + "Label": "VPRA label", + "id": "lgrk2ip4", + "type": "CollectedVariableType", + "Name": "VPRA", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Label": "VLA1 label", + "id": "kpbflvzr", + "type": "CollectedVariableType", + "CodeListReference": "joplgdcw", + "Name": "VLA1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "VSO1 label", + "id": "kv6q8dbw", + "type": "CollectedVariableType", + "CodeListReference": "joplsxki", + "Name": "VSO1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "VSY label", + "id": "joprwp5e", + "type": "CollectedVariableType", + "CodeListReference": "joprlb0a", + "Name": "VSY", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "VLOYER label", + "id": "kw2gkwc0", + "type": "CollectedVariableType", + "Name": "VLOYER", + "Datatype": { + "Maximum": "1000000", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/euro", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Label": "VAID label", + "id": "jops6h5f", + "type": "CollectedVariableType", + "CodeListReference": "joidufam", + "Name": "VAID", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "VIN label", + "id": "jops1khv", + "type": "CollectedVariableType", + "Name": "VIN", + "Datatype": { + "Maximum": "24", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Label": "VTL1 label", + "id": "kpbnb2ji", + "type": "CollectedVariableType", + "CodeListReference": "joprub8u", + "Name": "VTL1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "VSURF label", + "id": "kyd74l5b", + "type": "CollectedVariableType", + "Name": "VSURF", + "Datatype": { + "Maximum": "999", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/metrecarre", + "type": "NumericDatatypeType", + "Decimals": "2" + } + }, + { + "Label": "VPI label", + "id": "kwqppd2c", + "type": "CollectedVariableType", + "Name": "VPI", + "Datatype": { + "Maximum": "20", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Label": "VANCIEN label", + "id": "kwf30i1n", + "type": "CollectedVariableType", + "Name": "VANCIEN", + "Datatype": { + "Maximum": "100", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/annee", + "type": "NumericDatatypeType", + "Decimals": "1" + } + }, + { + "Label": "VOP label", + "id": "jopspcqh", + "type": "CollectedVariableType", + "CodeListReference": "jopsh9ng", + "Name": "VOP", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "VND label", + "id": "kovfq1kr", + "type": "CollectedVariableType", + "Name": "VND", + "Datatype": { + "Maximum": "9", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Label": "VLRD label", + "id": "kovg7s7r", + "type": "CollectedVariableType", + "CodeListReference": "joptnagd", + "Name": "VLRD", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "VLAB1 label", + "id": "kovgkxii", + "type": "CollectedVariableType", + "CodeListReference": "jopu65h0", + "Name": "VLAB1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "VDD1 label", + "id": "kw2gvhjo", + "type": "CollectedVariableType", + "CodeListReference": "joplsxki", + "Name": "VDD1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "VDSY label", + "id": "jopuhwhs", + "type": "CollectedVariableType", + "CodeListReference": "jopur3k1", + "Name": "VDSY", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "VTLD1 label", + "id": "kx35g3oc", + "type": "CollectedVariableType", + "CodeListReference": "joprub8u", + "Name": "VTLD1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "VSURFD label", + "id": "kwkeb00s", + "type": "CollectedVariableType", + "Name": "VSURFD", + "Datatype": { + "Maximum": "997", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/metrecarre", + "type": "NumericDatatypeType", + "Decimals": "2" + } + }, + { + "Label": "VPID label", + "id": "kovhaucj", + "type": "CollectedVariableType", + "Name": "VPID", + "Datatype": { + "Maximum": "20", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Label": "VRAIS1 label", + "id": "l3isg7nm", + "type": "CollectedVariableType", + "CodeListReference": "kovj0vbo", + "Name": "VRAIS1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "1 - Oui, mise en couple ou mariage", + "id": "lgqrcqfr", + "type": "CollectedVariableType", + "Name": "VRAIS21", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "2 - Oui, naissance", + "id": "lgqrccma", + "type": "CollectedVariableType", + "Name": "VRAIS22", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "3 - Oui, séparation, divorce, veuvage", + "id": "lgqrd9wl", + "type": "CollectedVariableType", + "Name": "VRAIS23", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "4 - Oui, départ de chez vos parents", + "id": "lgqre9xa", + "type": "CollectedVariableType", + "Name": "VRAIS24", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "5 - Oui, départ des enfants ", + "id": "lgqrl4yl", + "type": "CollectedVariableType", + "Name": "VRAIS25", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "6 - Oui, en raison d'un problème de santé, d'un handicap ou d'une perte d'autonomie au sein du ménage", + "id": "lgqrrxaf", + "type": "CollectedVariableType", + "Name": "VRAIS26", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "7 - Non, aucune de ces situations", + "id": "lgqrgiwu", + "type": "CollectedVariableType", + "Name": "VRAIS27", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "1 - Oui, pour avoir un logement de meilleure qualité", + "id": "koviwqxd", + "type": "CollectedVariableType", + "Name": "VRAIS31", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "2 - Oui, pour avoir un logement plus grand ou plus petit", + "id": "kovj5fdc", + "type": "CollectedVariableType", + "Name": "VRAIS32", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "3 - Oui, pour avoir un logement plus adapté à la perte d'autonomie ou au handicap", + "id": "kovj7be1", + "type": "CollectedVariableType", + "Name": "VRAIS33", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "4 - Oui, pour changer d'environnement", + "id": "kovj8j8m", + "type": "CollectedVariableType", + "Name": "VRAIS34", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "5 - Oui, pour avoir un loyer plus bas ou un logement moins cher à entretenir", + "id": "kovj6qby", + "type": "CollectedVariableType", + "Name": "VRAIS35", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "6 - Non, aucune de ces situations", + "id": "kovjbr8b", + "type": "CollectedVariableType", + "Name": "VRAIS36", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "1 - Oui, de votre lieu de travail ou du lieu de travail d'une personne du ménage", + "id": "kovjbzl4", + "type": "CollectedVariableType", + "Name": "VRAIS41", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "2 - Oui, de l'école des enfants", + "id": "kovjdxc0", + "type": "CollectedVariableType", + "Name": "VRAIS42", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "3 - Oui, des commerces, des centres de santé, de la gare, ...", + "id": "kovj2w62", + "type": "CollectedVariableType", + "Name": "VRAIS43", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "4 - Oui, de la famille, des amis ou de la région d'origine", + "id": "kovj476f", + "type": "CollectedVariableType", + "Name": "VRAIS44", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "5 - Non, aucune de ces situations", + "id": "kovj0swx", + "type": "CollectedVariableType", + "Name": "VRAIS45", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Label": "VRAIS5 label", + "id": "lgnvgzaa", + "type": "CollectedVariableType", + "CodeListReference": "lgmga7g1", + "Name": "VRAIS5", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "TELFIXE label", + "id": "kp5b57zt", + "type": "CollectedVariableType", + "CodeListReference": "kp5afd7f", + "Name": "TELFIXE", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "TELMOB label", + "id": "kp5bkum2", + "type": "CollectedVariableType", + "CodeListReference": "kp5b81ae", + "Name": "TELMOB", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "UWEB label", + "id": "kp5bf8kw", + "type": "CollectedVariableType", + "CodeListReference": "kp5bdcd2", + "Name": "UWEB", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "Destinataire du courrier", + "id": "kbamo67f", + "type": "CollectedVariableType", + "CodeListReference": "k1qjtfk1", + "Name": "CHGNC", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "CIVCOLL label", + "id": "kuh4iw0i", + "type": "CollectedVariableType", + "CodeListReference": "kneexxy3", + "Name": "CIVCOLL", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "Prénom destinataire", + "id": "kr0g0725", + "type": "CollectedVariableType", + "Name": "PRENOMCOLL", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Label": "Nom destinataire", + "id": "kr0fw68t", + "type": "CollectedVariableType", + "Name": "NOMCOLL", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "40" + } + }, + { + "Label": "CHGNC2 label", + "id": "kwjjwc87", + "type": "CollectedVariableType", + "CodeListReference": "ko8uzwua", + "Name": "CHGNC2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "CIVCOLL2 label", + "id": "kuh49jbb", + "type": "CollectedVariableType", + "CodeListReference": "kneexxy3", + "Name": "CIVCOLL2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Label": "PRENOMCOLL2 label", + "id": "kr0fk106", + "type": "CollectedVariableType", + "Name": "PRENOMCOLL2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Label": "NOMCOLL2 label", + "id": "kr0fuxdc", + "type": "CollectedVariableType", + "Name": "NOMCOLL2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "40" + } + }, + { + "Label": "NOTELCOLL label", + "id": "kqwjplxa", + "type": "CollectedVariableType", + "Name": "NOTELCOLL", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "10" + } + } + ] + }, + "lastUpdatedDate": "Fri Oct 27 2023 16:27:50 GMT+0200 (heure d’été d’Europe centrale)", + "DataCollection": [ + { + "id": "eec-dc1-2017", + "uri": "http://ddi:fr.insee:DataCollection.eec-dc1-2017" + } + ], + "final": false, + "flowLogic": "FILTER", + "id": "llxh9g6g", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "CodeLists": { + "CodeList": [ + { + "Label": "L_CADR", + "id": "kb9ht98f", + "Code": [ + { + "Parent": "", + "Label": "Oui, j'habite toujours à cette adresse et l'adresse est correcte et complète", + "Value": "1" + }, + { + "Parent": "", + "Label": "Oui, j'habite toujours à cette adresse, mais l'adresse est incorrecte ou incomplète", + "Value": "2" + }, + { + "Parent": "", + "Label": "Non, j'ai déménagé et habite à une autre adresse", + "Value": "3" + }, + { + "Parent": "", + "Label": "Non, je n’ai jamais habité à cette adresse", + "Value": "4" + } + ], + "Name": "" + }, + { + "Label": "OUINON", + "id": "ko8uzwua", + "Code": [ + { + "Parent": "", + "Label": "Oui", + "Value": "1" + }, + { + "Parent": "", + "Label": "Non", + "Value": "2" + } + ], + "Name": "" + }, + { + "Label": "L_SEXE", + "id": "kmolikl4", + "Code": [ + { + "Parent": "", + "Label": "Masculin", + "Value": "1" + }, + { + "Parent": "", + "Label": "Féminin", + "Value": "2" + } + ], + "Name": "" + }, + { + "Label": "L_TRAGE", + "id": "kmx6szo6", + "Code": [ + { + "Parent": "", + "Label": "Moins de 15 ans", + "Value": "4" + }, + { + "Parent": "", + "Label": "De 15 à 18 ans", + "Value": "1" + }, + { + "Parent": "", + "Label": "De 18 à 25 ans", + "Value": "2" + }, + { + "Parent": "", + "Label": "Plus de 25 ans", + "Value": "3" + } + ], + "Name": "" + }, + { + "Label": "L_LNAIS", + "id": "kmomiwx3", + "Code": [ + { + "Parent": "", + "Label": "En France (y compris outre-mer)", + "Value": "1" + }, + { + "Parent": "", + "Label": "À l'étranger", + "Value": "2" + } + ], + "Name": "" + }, + { + "Label": "L_NATIO1N", + "id": "kmos765d", + "Code": [ + { + "Parent": "", + "Label": "Française de naissance ou par réintégration", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"Française par déclaration, naturalisation, option à \" || if ($PRENOM$=$PRENOMREF$) then \"votre majorité\" else \"sa majorité\" ", + "Value": "2" + }, + { + "Parent": "", + "Label": "Étrangère", + "Value": "3" + }, + { + "Parent": "", + "Label": "Apatride (pas de nationalité)", + "Value": "4" + } + ], + "Name": "" + }, + { + "Label": "L_LIEN", + "id": "kmw56gjz", + "Code": [ + { + "Parent": "", + "Label": "\"Votre conjoint\"||$LIB_FEM$", + "Value": "1" + }, + { + "Parent": "", + "Label": "$LIB_PARENT$", + "Value": "2" + }, + { + "Parent": "", + "Label": "$LIB_ENFANT$", + "Value": "3" + }, + { + "Parent": "", + "Label": "if (nvl($SEXE$,\"\")=\"\") then \"Votre frère, votre sœur, votre demi-frère, votre demi-soeur\" else (if ($SEXE$ = \"2\") then \"Votre soeur, votre demi-soeur\" else (if ($SEXE$ = \"1\") then \"Votre frère, votre demi-frère \" else \"Votre frère, votre sœur, votre demi-frère, votre demi-sœur\"))", + "Value": "8" + }, + { + "Parent": "", + "Label": "$LIB_GDPARENT$", + "Value": "4" + }, + { + "Parent": "", + "Label": "$LIB_PTENFANT$", + "Value": "5" + }, + { + "Parent": "", + "Label": "Un autre membre de votre famille", + "Value": "6" + }, + { + "Parent": "", + "Label": "\"Une autre personne (ami\"||$LIB_FEM$||\", colocataire...)\"", + "Value": "7" + } + ], + "Name": "" + }, + { + "Label": "L_COUPLE", + "id": "kod1mvxo", + "Code": [ + { + "Parent": "", + "Label": "Oui, avec une personne qui vit dans le logement", + "Value": "1" + }, + { + "Parent": "", + "Label": "Oui, avec une personne qui ne vit pas dans le logement", + "Value": "2" + }, + { + "Parent": "", + "Label": "Non", + "Value": "3" + } + ], + "Name": "" + }, + { + "Label": "L_SITUMATRIAUT", + "id": "kmw5u1pk", + "Code": [ + { + "Parent": "", + "Label": "\"Marié\"||$LIB_FEM$", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"Pacsé\"||$LIB_FEM$", + "Value": "2" + }, + { + "Parent": "", + "Label": "En concubinage ou union libre", + "Value": "3" + }, + { + "Parent": "", + "Label": "$LIB_VEUF$", + "Value": "4" + }, + { + "Parent": "", + "Label": "\"Divorcé\"||$LIB_FEM$||\", dépacsé\"||$LIB_FEM$||\", rupture d'union libre\"", + "Value": "5" + }, + { + "Parent": "", + "Label": "Célibataire", + "Value": "6" + } + ], + "Name": "" + }, + { + "Label": "L_UNLOG", + "id": "kn8zodpk", + "Code": [ + { + "Parent": "", + "Label": "if ($PRENOM$=$PRENOMREF$) then \"Vous vivez uniquement dans ce logement\" else $PRENOM$ || \" vit uniquement dans ce logement\"", + "Value": "1" + }, + { + "Parent": "", + "Label": "if ($PRENOM$=$PRENOMREF$) then \"Vous vivez aussi dans un autre logement\" else $PRENOM$ || \" vit aussi dans un autre logement\"", + "Value": "2" + } + ], + "Name": "" + }, + { + "Label": "L_DURLOG", + "id": "kmukmzpq", + "Code": [ + { + "Parent": "", + "Label": "Plus de la moitié du temps", + "Value": "1" + }, + { + "Parent": "", + "Label": "La moitié du temps", + "Value": "2" + }, + { + "Parent": "", + "Label": "Moins de la moitié du temps", + "Value": "3" + } + ], + "Name": "" + }, + { + "Label": "L_LOGENQ", + "id": "kmx96qdc", + "Code": [ + { + "Parent": "", + "Label": "if ($PRENOM$=$PRENOMREF$) then \"Votre résidence principale\" else \"Sa résidence principale\"", + "Value": "1" + }, + { + "Parent": "", + "Label": "if ($PRENOM$=$PRENOMREF$) then \"Le logement de vos parents ou de l’un d'entre eux\" else \"Le logement de ses parents ou de l’un d'entre eux\"", + "Value": "2" + }, + { + "Parent": "", + "Label": "if ($PRENOM$=$PRENOMREF$) then \"Un logement occupé pour vos études\" else \"Un logement occupé pour ses études\"", + "Value": "3" + }, + { + "Parent": "", + "Label": "if ($PRENOM$=$PRENOMREF$) then \"Un logement occupé pour votre travail ou une formation professionnelle\" else \"Un logement occupé pour son travail ou une formation professionnelle\" ", + "Value": "4" + }, + { + "Parent": "", + "Label": "if ($PRENOM$=$PRENOMREF$) then \"Une résidence secondaire, un logement occupé pour vos vacances ou vos loisirs\" else \"Une résidence secondaire, un logement occupé pour ses vacances ou ses loisirs\"", + "Value": "5" + }, + { + "Parent": "", + "Label": "Un logement occupé pour une autre raison", + "Value": "6" + } + ], + "Name": "" + }, + { + "Label": "L_LOGAUT", + "id": "kmx9jj4a", + "Code": [ + { + "Parent": "", + "Label": "if ($PRENOM$=$PRENOMREF$) then \"Votre résidence principale\" else \"Sa résidence principale\"", + "Value": "1" + }, + { + "Parent": "", + "Label": "if ($PRENOM$=$PRENOMREF$) then \"Le logement de vos parents ou de l'un d'entre eux\" else \"Le logement de ses parents ou de l'un d'entre eux\"", + "Value": "2" + }, + { + "Parent": "", + "Label": "if ($PRENOM$=$PRENOMREF$) then \"Un logement occupé pour vos études\" else \"Un logement occupé pour ses études\"", + "Value": "3" + }, + { + "Parent": "", + "Label": "if ($PRENOM$=$PRENOMREF$) then \"Un logement occupé pour votre travail ou une formation professionnelle\" else \"Un logement occupé pour son travail ou une formation professionnelle\"", + "Value": "4" + }, + { + "Parent": "", + "Label": "if ($PRENOM$=$PRENOMREF$) then \"Une résidence secondaire, un logement occupé pour vos vacances ou loisirs\" else \"Une résidence secondaire, un logement occupé pour ses vacances ou loisirs\"", + "Value": "5" + }, + { + "Parent": "", + "Label": "Un logement occupé pour une autre raison", + "Value": "6" + } + ], + "Name": "" + }, + { + "Label": "L_OUINON", + "id": "k1qjtfk1", + "Code": [ + { + "Parent": "", + "Label": "Oui", + "Value": "1" + }, + { + "Parent": "", + "Label": "Non", + "Value": "2" + } + ], + "Name": "" + }, + { + "Label": "L_DORM", + "id": "kna1qses", + "Code": [ + { + "Parent": "", + "Label": "\"Dans ce logement situé à l'adresse : \" || $ADRCOLLC$", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"Dans le logement de \" || (if ($PRENOM$=$PRENOMREF$) then \"votre\" else \"son\") || \" autre parent\"", + "Value": "2" + } + ], + "Name": "" + }, + { + "Label": "L_TYPLOGCO", + "id": "kmx7yjsk", + "Code": [ + { + "Parent": "", + "Label": "Un internat, une résidence étudiante ou un foyer d’étudiants", + "Value": "1" + }, + { + "Parent": "", + "Label": "Un établissement pour personnes âgées (maison de retraite, Ehpad)", + "Value": "2" + }, + { + "Parent": "", + "Label": "Un foyer ou une résidence sociale (CADA, structures gérées par Adoma…), foyer de réinsertion ou foyer de travailleurs", + "Value": "3" + }, + { + "Parent": "", + "Label": "Une structure d’aide sociale à l’enfance ou de protection judiciaire", + "Value": "4" + }, + { + "Parent": "", + "Label": "Une structure pour personne nécessitant des soins médicaux (hôpital, maison de repos, centre de rééducation)", + "Value": "5" + }, + { + "Parent": "", + "Label": "Une caserne, un camp militaire", + "Value": "6" + }, + { + "Parent": "", + "Label": "Une autre structure (prison, communauté religieuse, hébergement d’urgence...)", + "Value": "7" + } + ], + "Name": "" + }, + { + "Label": "L_SITUA", + "id": "kmxfw3sx", + "Code": [ + { + "Parent": "", + "Label": "En emploi", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"Au chômage (inscrit\"|| $LIB_FEM$ ||\" ou non à Pôle emploi)\"", + "Value": "2" + }, + { + "Parent": "", + "Label": "\"Retraité\"||$LIB_FEM$||\", préretraité\"||$LIB_FEM$", + "Value": "3" + }, + { + "Parent": "", + "Label": "En incapacité de travailler en raison d'un handicap ou d'un problème de santé durable", + "Value": "4" + }, + { + "Parent": "", + "Label": "En études", + "Value": "5" + }, + { + "Parent": "", + "Label": "if (isnull($SEXE$)) then \"Femme ou homme au foyer\" else (if ($SEXE$ = \"2\") then \"Femme au foyer\" else \"Homme au foyer\")", + "Value": "6" + }, + { + "Parent": "", + "Label": "Dans une autre situation", + "Value": "7" + } + ], + "Name": "" + }, + { + "Label": "L_NIVDIP", + "id": "kmxf03ss", + "Code": [ + { + "Parent": "", + "Label": "Aucun diplôme", + "Value": "1" + }, + { + "Parent": "", + "Label": "CEP (certificat d'études primaires)", + "Value": "2" + }, + { + "Parent": "", + "Label": "BEPC, brevet élémentaire, brevet des collèges, DNB", + "Value": "3" + }, + { + "Parent": "", + "Label": "CAP, BEP ou diplôme de niveau équivalent", + "Value": "4" + }, + { + "Parent": "", + "Label": "Baccalauréat (général, technologique ou professionnel), brevet supérieur, brevet professionnel, de technicien ou d’enseignement ou diplôme équivalent", + "Value": "5" + }, + { + "Parent": "", + "Label": "Capacité en droit, DAEU, ESEU", + "Value": "6" + }, + { + "Parent": "", + "Label": "BTS, DUT, Deug, Deust, diplôme de la santé ou du social de niveau bac+2 ou diplôme équivalent", + "Value": "7" + }, + { + "Parent": "", + "Label": "Diplôme de niveau supérieur à bac+2 (licence, licence pro, maîtrise, master, DESS, DEA, doctorat, diplôme d’une grande école)", + "Value": "8" + } + ], + "Name": "" + }, + { + "Label": "L_GRDIPB", + "id": "kqi895gg", + "Code": [ + { + "Parent": "", + "Label": "N’a jamais été à l’école ou l’a quittée avant la fin du primaire", + "Value": "1" + }, + { + "Parent": "", + "Label": "Scolarité jusqu’à la fin du primaire ou avant la fin du collège", + "Value": "2" + }, + { + "Parent": "", + "Label": "Scolarité jusqu’à la fin du collège ou au-delà", + "Value": "3" + } + ], + "Name": "" + }, + { + "Label": "L_GRDIPC", + "id": "kqi8rie2", + "Code": [ + { + "Parent": "", + "Label": "Licence, licence pro, maîtrise ou diplôme équivalent de niveau bac+3 ou bac+4", + "Value": "1" + }, + { + "Parent": "", + "Label": "Master, DEA, DESS, diplôme de grande école de niveau bac+5, doctorat de santé (médecine, pharmacie, dentaire...)", + "Value": "2" + }, + { + "Parent": "", + "Label": "Doctorat de recherche (hors doctorat de santé)", + "Value": "3" + } + ], + "Name": "" + }, + { + "Label": "HTLC", + "id": "kd8q4yja", + "Code": [ + { + "Parent": "", + "Label": "Maison\n\n​", + "Value": "1" + }, + { + "Parent": "", + "Label": "Appartement\n\n​", + "Value": "2" + }, + { + "Parent": "", + "Label": "[Logement-foyer](. \"Par exemple : résidence services ou résidence autonomie\")\n\n​", + "Value": "3" + }, + { + "Parent": "", + "Label": "Chambre d'hôtel\n\n​", + "Value": "4" + }, + { + "Parent": "", + "Label": "Habitation de fortune (construction précaire)\n\n​", + "Value": "5" + }, + { + "Parent": "", + "Label": "Pièce indépendante (ayant sa propre entrée)\n\n​", + "Value": "6" + } + ], + "Name": "" + }, + { + "Label": "RESAUTO", + "id": "kp4bs9c4", + "Code": [ + { + "Parent": "", + "Label": "[Résidence \"autonomie\"](. \"Établissement médico-social géré par un centre communal d'action sociale (CCAS) ou par une association par exemple\")", + "Value": "1" + }, + { + "Parent": "", + "Label": "[Résidence \"services\" ](. \"Autres résidences comportant des logements individuels et privatifs et des espaces communs dédiés à la vie collective\")", + "Value": "2" + } + ], + "Name": "" + }, + { + "Label": "L_MAISON", + "id": "kbgi2ogb", + "Code": [ + { + "Parent": "", + "Label": "Isolée (sans mur mitoyen)", + "Value": "1" + }, + { + "Parent": "", + "Label": "Jumelée (avec un mur mitoyen)", + "Value": "2" + } + ], + "Name": "" + }, + { + "Label": "L_PERIODECONSTR", + "id": "kbgiawbm", + "Code": [ + { + "Parent": "", + "Label": "Avant 1919", + "Value": "1" + }, + { + "Parent": "", + "Label": "De 1919 à 1945", + "Value": "2" + }, + { + "Parent": "", + "Label": "De 1946 à 1970", + "Value": "3" + }, + { + "Parent": "", + "Label": "De 1971 à 1990", + "Value": "4" + }, + { + "Parent": "", + "Label": "De 1991 à 2005", + "Value": "5" + }, + { + "Parent": "", + "Label": "\"2006 ou après\"", + "Value": "6" + } + ], + "Name": "" + }, + { + "Label": "STOC", + "id": "jn0cd476", + "Code": [ + { + "Parent": "", + "Label": "[Propriétaire accédant (remboursement d'emprunt en cours)](. \"Ménages ayant encore des charges de remboursement d'emprunt pour l'achat de leur logement. Y compris en SCI ou en indivision.\")", + "Value": "1" + }, + { + "Parent": "", + "Label": "[Propriétaire non accédant (ne remboursant plus d'emprunt)](. \"Ménages qui ne remboursent plus d'emprunt lié à l'achat de leur logement. Y compris en SCI ou en indivision.\")", + "Value": "2" + }, + { + "Parent": "", + "Label": "[Usufruitier, y compris en viager](. \"Qui a le droit d'utiliser le logement et d'en percevoir les fruits (loyers), sans la nue-propriété (le droit de vendre ou de donner le logement).\")\r\n", + "Value": "3" + }, + { + "Parent": "", + "Label": "[Locataire ou sous-locataire](. \"Devant payer un loyer, même si ce loyer est payé par une personne extérieure au ménage.\")", + "Value": "4" + }, + { + "Parent": "", + "Label": "[Logé gratuitement, avec un paiement éventuel de charges](. \"N'ayant pas à acquitter de loyer. Cela peut-être le cas si le logement a été vendu en viager.\")", + "Value": "5" + } + ], + "Name": "" + }, + { + "Label": "STOC2", + "id": "klut8zly", + "Code": [ + { + "Parent": "", + "Label": "Oui, propriétaire accédant (remboursement d'emprunt en cours)", + "Value": "1" + }, + { + "Parent": "", + "Label": "Oui, propriétaire non accédant (ne remboursant plus d'emprunt)", + "Value": "2" + }, + { + "Parent": "", + "Label": "Non", + "Value": "3" + } + ], + "Name": "" + }, + { + "Label": "STOCP", + "id": "jn0dummd", + "Code": [ + { + "Parent": "", + "Label": "En pleine propriété : votre ménage se partage la totalité de la propriété du logement", + "Value": "1" + }, + { + "Parent": "", + "Label": "En propriété partielle : en indivision avec des personnes extérieures au ménage", + "Value": "2" + } + ], + "Name": "" + }, + { + "Label": "L_STOCB1", + "id": "knoq1iew", + "Code": [ + { + "Parent": "", + "Label": "Oui", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"Non, \" || (if ($PRENOM$=$PRENOMREF$) then \"vous êtes\" else ($PRENOM$ || \" est\")) || \" accueilli\" || $LIB_FEM$ || \" dans ce logement\"", + "Value": "2" + } + ], + "Name": "" + }, + { + "Label": "EPAS", + "id": "kp5vfffj", + "Code": [ + { + "Parent": "", + "Label": "Oui, en dehors de la période de ses études", + "Value": "1" + }, + { + "Parent": "", + "Label": "Oui, uniquement pendant la période de ses études", + "Value": "2" + }, + { + "Parent": "", + "Label": "Non", + "Value": "3" + } + ], + "Name": "" + }, + { + "Label": "OUINON", + "id": "jncy00q3", + "Code": [ + { + "Parent": "", + "Label": "Oui", + "Value": "1" + }, + { + "Parent": "", + "Label": "Non", + "Value": "2" + } + ], + "Name": "" + }, + { + "Label": "EPASB", + "id": "joh8kni7", + "Code": [ + { + "Parent": "", + "Label": " Moins de 6 mois ", + "Value": "1" + }, + { + "Parent": "", + "Label": "De 6 mois à moins de 1 an", + "Value": "2" + }, + { + "Parent": "", + "Label": "De 1 an à moins de 2 ans ", + "Value": "3" + }, + { + "Parent": "", + "Label": "De 2 ans à moins de 5 ans", + "Value": "4" + }, + { + "Parent": "", + "Label": "Plus de 5 ans", + "Value": "5" + } + ], + "Name": "" + }, + { + "Label": "EPASC", + "id": "joh9gxwq", + "Code": [ + { + "Parent": "", + "Label": "Depuis moins de 6 mois ", + "Value": "1" + }, + { + "Parent": "", + "Label": "Entre 6 mois et moins de 1 an", + "Value": "2" + }, + { + "Parent": "", + "Label": "Entre 1 an et moins de 3 ans ", + "Value": "3" + }, + { + "Parent": "", + "Label": "De 3 ans à moins de 10 ans ", + "Value": "4" + }, + { + "Parent": "", + "Label": "Depuis 10 ans ou plus", + "Value": "5" + } + ], + "Name": "" + }, + { + "Label": "L_ERET1", + "id": "knorkwv0", + "Code": [ + { + "Parent": "", + "Label": "Changement de situation professionnelle (lieu de travail, perte d'emploi...)", + "Value": "1" + }, + { + "Parent": "", + "Label": "Séparation familiale", + "Value": "2" + }, + { + "Parent": "", + "Label": "Difficultés financières", + "Value": "3" + }, + { + "Parent": "", + "Label": "Fin des études ou études en cours", + "Value": "4" + }, + { + "Parent": "", + "Label": "Raisons de santé ou pour s'occuper d'un membre du ménage", + "Value": "5" + }, + { + "Parent": "", + "Label": "Autre", + "Value": "6" + } + ], + "Name": "" + }, + { + "Label": "OUI_NON_NSP", + "id": "joirusc3", + "Code": [ + { + "Parent": "", + "Label": "Oui", + "Value": "1" + }, + { + "Parent": "", + "Label": "Non", + "Value": "2" + }, + { + "Parent": "", + "Label": "Vous ne savez pas", + "Value": "3" + } + ], + "Name": "" + }, + { + "Label": "EPROJB", + "id": "joirox38", + "Code": [ + { + "Parent": "", + "Label": "Oui, par ses propres moyens", + "Value": "1" + }, + { + "Parent": "", + "Label": "Oui, mais seulement grâce à l'aide de sa famille", + "Value": "2" + }, + { + "Parent": "", + "Label": "Non", + "Value": "3" + }, + { + "Parent": "", + "Label": "Vous ne savez pas", + "Value": "4" + } + ], + "Name": "" + }, + { + "Label": "EPROJD", + "id": "joisst25", + "Code": [ + { + "Parent": "", + "Label": " Oui ", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"Non, \" || $LIB_SUJET$ || \" ne le souhaite pas\"", + "Value": "2" + }, + { + "Parent": "", + "Label": "\"Non, \" || $LIB_SUJET$|| \" ne le peut pas\"", + "Value": "3" + }, + { + "Parent": "", + "Label": "Vous ne savez pas", + "Value": "4" + } + ], + "Name": "" + }, + { + "Label": "EAMID1", + "id": "kqs7ptde", + "Code": [ + { + "Parent": "", + "Label": "En couple avec l'un des membres du ménage", + "Value": "1" + }, + { + "Parent": "", + "Label": "Changement de situation professionnelle (lieu de travail, perte d'emploi...)", + "Value": "2" + }, + { + "Parent": "", + "Label": "Séparation familiale", + "Value": "3" + }, + { + "Parent": "", + "Label": "Difficultés financières", + "Value": "4" + }, + { + "Parent": "", + "Label": "Fin des études ou études en cours", + "Value": "7" + }, + { + "Parent": "", + "Label": "Raisons de santé ou pour s'occuper d'un membre du ménage", + "Value": "5" + }, + { + "Parent": "", + "Label": "Je rends service à quelqu'un qui n'a pas d'autre solution d'hébergement", + "Value": "6" + } + ], + "Name": "" + }, + { + "Label": "OuiUnpeuNon", + "id": "kqv3pa7u", + "Code": [ + { + "Parent": "", + "Label": "Oui, beaucoup", + "Value": "1" + }, + { + "Parent": "", + "Label": "Oui, un peu", + "Value": "2" + }, + { + "Parent": "", + "Label": "Non", + "Value": "3" + } + ], + "Name": "" + }, + { + "Label": "MAA2AT_Q", + "id": "kp6iy3xk", + "Code": [ + { + "Parent": "", + "Label": "Moins d'un an", + "Value": "1" + }, + { + "Parent": "", + "Label": "De 1 an à moins de 4 ans", + "Value": "2" + }, + { + "Parent": "", + "Label": "De 4 ans à moins de 8 ans", + "Value": "3" + }, + { + "Parent": "", + "Label": "De 8 ans à moins de 12 ans", + "Value": "4" + }, + { + "Parent": "", + "Label": "\"12 ans et plus\"", + "Value": "5" + } + ], + "Name": "" + }, + { + "Label": "MOIS", + "id": "kf71urf1", + "Code": [ + { + "Parent": "", + "Label": "Janvier - 01", + "Value": "1" + }, + { + "Parent": "", + "Label": "Février - 02", + "Value": "2" + }, + { + "Parent": "", + "Label": "Mars - 03", + "Value": "3" + }, + { + "Parent": "", + "Label": "Avril - 04", + "Value": "4" + }, + { + "Parent": "", + "Label": "Mai - 05", + "Value": "5" + }, + { + "Parent": "", + "Label": "Juin - 06", + "Value": "6" + }, + { + "Parent": "", + "Label": "Juillet - 07", + "Value": "7" + }, + { + "Parent": "", + "Label": "Août - 08", + "Value": "8" + }, + { + "Parent": "", + "Label": "Septembre - 09", + "Value": "9" + }, + { + "Parent": "", + "Label": "Octobre - 10", + "Value": "10" + }, + { + "Parent": "", + "Label": "Novembre - 11", + "Value": "11" + }, + { + "Parent": "", + "Label": "Décembre - 12", + "Value": "12" + } + ], + "Name": "" + }, + { + "Label": "KCU1", + "id": "jojv0g6x", + "Code": [ + { + "Parent": "", + "Label": "Oui, une cuisine séparée", + "Value": "1" + }, + { + "Parent": "", + "Label": "Oui, une cuisine ouverte ou américaine", + "Value": "2" + }, + { + "Parent": "", + "Label": "Seulement une petite installation pour faire la cuisine (avec évacuation des eaux usées)", + "Value": "3" + }, + { + "Parent": "", + "Label": "Non, pas d'installation pour faire la cuisine ", + "Value": "4" + } + ], + "Name": "" + }, + { + "Label": "KCU2", + "id": "jojum3uu", + "Code": [ + { + "Parent": "", + "Label": " Moins de 4 m² ", + "Value": "1" + }, + { + "Parent": "", + "Label": "De 4 m² à moins de 7 m² ", + "Value": "2" + }, + { + "Parent": "", + "Label": "De 7 m² à moins de 12 m² ", + "Value": "3" + }, + { + "Parent": "", + "Label": "Plus de 12 m²", + "Value": "4" + } + ], + "Name": "" + }, + { + "Label": "HUTDEF", + "id": "l3iobv03", + "Code": [ + { + "Parent": "", + "Label": "Bruit", + "Value": "1" + }, + { + "Parent": "", + "Label": "Absence d'une pièce dédiée au télétravail", + "Value": "2" + }, + { + "Parent": "", + "Label": "Manque de place", + "Value": "3" + }, + { + "Parent": "", + "Label": "Problème de connexion Internet", + "Value": "4" + } + ], + "Name": "" + }, + { + "Label": "HULHUI1", + "id": "kmd70xef", + "Code": [ + { + "Parent": "", + "Label": "Louée, sous-louée ou prêtée à des tiers", + "Value": "1" + }, + { + "Parent": "", + "Label": "Réservée à votre usage personnel", + "Value": "2" + }, + { + "Parent": "", + "Label": "À l'usage d'un salarié à votre service (employé, jeune au pair...)", + "Value": "3" + } + ], + "Name": "" + }, + { + "Label": "HUL_HUI2", + "id": "kkqw9mkz", + "Code": [ + { + "Parent": "", + "Label": "Louées, sous-louées ou prêtées à des tiers.", + "Value": "1" + }, + { + "Parent": "", + "Label": "Réservées à votre usage personnel", + "Value": "2" + }, + { + "Parent": "", + "Label": "À l'usage d'un salarié à votre service (employé, jeune au pair..)", + "Value": "3" + } + ], + "Name": "" + }, + { + "Label": "HPEUP", + "id": "jojvev63", + "Code": [ + { + "Parent": "", + "Label": "Très insuffisant ", + "Value": "1" + }, + { + "Parent": "", + "Label": "Insuffisant ", + "Value": "2" + }, + { + "Parent": "", + "Label": "Correct ", + "Value": "3" + }, + { + "Parent": "", + "Label": "Supérieur à vos besoins ", + "Value": "4" + }, + { + "Parent": "", + "Label": "Très supérieur à vos besoins ", + "Value": "5" + } + ], + "Name": "" + }, + { + "Label": "HAUT", + "id": "jojvm75x", + "Code": [ + { + "Parent": "", + "Label": "Moins de 2,20 mètres ", + "Value": "1" + }, + { + "Parent": "", + "Label": "Entre 2,20 mètres et 2,50 mètres", + "Value": "2" + }, + { + "Parent": "", + "Label": "Plus de 2,50 mètres", + "Value": "3" + } + ], + "Name": "" + }, + { + "Label": "KSJPIT", + "id": "jruq09km", + "Code": [ + { + "Parent": "", + "Label": "Inférieur à 300 m²", + "Value": "1" + }, + { + "Parent": "", + "Label": "De 300 à moins de 500 m²", + "Value": "2" + }, + { + "Parent": "", + "Label": "De 500 à moins de 1 000 m²", + "Value": "3" + }, + { + "Parent": "", + "Label": "De 1 000 à moins de 1 500m²", + "Value": "4" + }, + { + "Parent": "", + "Label": "\"1 500 m² ou plus\"", + "Value": "5" + } + ], + "Name": "" + }, + { + "Label": "KSJC", + "id": "jruscsna", + "Code": [ + { + "Parent": "", + "Label": "Moins de 200 m²", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"200 à moins de 1 000 m²\"", + "Value": "2" + }, + { + "Parent": "", + "Label": "\"1 000 m² ou plus\"", + "Value": "3" + } + ], + "Name": "" + }, + { + "Label": "NBVOIT", + "id": "l3is40qi", + "Code": [ + { + "Parent": "", + "Label": "Une", + "Value": "1" + }, + { + "Parent": "", + "Label": "Deux", + "Value": "2" + }, + { + "Parent": "", + "Label": "Trois ou plus", + "Value": "3" + }, + { + "Parent": "", + "Label": "Aucune", + "Value": "4" + } + ], + "Name": "" + }, + { + "Label": "KGA", + "id": "jruss6vy", + "Code": [ + { + "Parent": "", + "Label": "Oui, un garage ou un box", + "Value": "1" + }, + { + "Parent": "", + "Label": "Oui, une place de parking souterrain", + "Value": "2" + }, + { + "Parent": "", + "Label": "Oui, une place de parking en plein air", + "Value": "3" + }, + { + "Parent": "", + "Label": "Non, ni garage, ni box, ni parking", + "Value": "4" + } + ], + "Name": "" + }, + { + "Label": "KAO1", + "id": "kmdsf01l", + "Code": [ + { + "Parent": "", + "Label": "Eau froide et chaude", + "Value": "1" + }, + { + "Parent": "", + "Label": "Eau froide uniquement", + "Value": "2" + }, + { + "Parent": "", + "Label": "Pas d'eau courante", + "Value": "3" + } + ], + "Name": "" + }, + { + "Label": "KWC1", + "id": "jruv7r7y", + "Code": [ + { + "Parent": "", + "Label": "Oui", + "Value": "1" + }, + { + "Parent": "", + "Label": "Non, W-C extérieurs au logement ", + "Value": "2" + }, + { + "Parent": "", + "Label": "Non, pas de W-C du tout", + "Value": "3" + } + ], + "Name": "" + }, + { + "Label": "KDLK2", + "id": "jruvifd2", + "Code": [ + { + "Parent": "", + "Label": "Oui, dans une pièce réservée à la toilette", + "Value": "1" + }, + { + "Parent": "", + "Label": "Oui, dans une pièce destinée à un autre usage", + "Value": "2" + }, + { + "Parent": "", + "Label": "Non, seulement un évier dans la cuisine", + "Value": "3" + }, + { + "Parent": "", + "Label": "Non", + "Value": "4" + } + ], + "Name": "" + }, + { + "Label": "satisfaction", + "id": "joico0rb", + "Code": [ + { + "Parent": "", + "Label": "Très satisfaisantes", + "Value": "1" + }, + { + "Parent": "", + "Label": "Satisfaisantes", + "Value": "2" + }, + { + "Parent": "", + "Label": "Acceptables", + "Value": "3" + }, + { + "Parent": "", + "Label": "Insuffisantes", + "Value": "4" + }, + { + "Parent": "", + "Label": "Très insuffisantes", + "Value": "5" + } + ], + "Name": "" + }, + { + "Label": "OLAR1", + "id": "knioh1gp", + "Code": [ + { + "Parent": "", + "Label": "Pas d'eau chaude", + "Value": "1" + }, + { + "Parent": "", + "Label": "Pas de chauffage central ou électrique", + "Value": "2" + }, + { + "Parent": "", + "Label": "Toit percé, humidité, infiltrations", + "Value": "3" + }, + { + "Parent": "", + "Label": "Logement bruyant", + "Value": "4" + } + ], + "Name": "" + }, + { + "Label": "OUINON_2", + "id": "joidufam", + "Code": [ + { + "Parent": "", + "Label": "Oui", + "Value": "1" + }, + { + "Parent": "", + "Label": "Non", + "Value": "2" + } + ], + "Name": "" + }, + { + "Label": "OLAR1DIF", + "id": "l7j1ikot", + "Code": [ + { + "Parent": "", + "Label": "pour accéder au logement ou s’y déplacer ?", + "Value": "1" + }, + { + "Parent": "", + "Label": "pour accomplir les tâches du quotidien dans leur logement (cuisiner, se laver, fermer les volets, etc.) ?", + "Value": "2" + } + ], + "Name": "" + }, + { + "Label": "OLAR1DIFCO", + "id": "l7j1t7dy", + "Code": [ + { + "Parent": "", + "Label": "pour accéder au logement ou s’y déplacer ?", + "Value": "1" + }, + { + "Parent": "", + "Label": "pour accomplir les tâches du quotidien dans leur logement (cuisiner, se laver, fermer les volets, etc.) ?", + "Value": "2" + }, + { + "Parent": "", + "Label": "pour accéder aux parties communes de l’immeuble ?", + "Value": "3" + } + ], + "Name": "" + }, + { + "Label": "OLAR2", + "id": "joicw344", + "Code": [ + { + "Parent": "", + "Label": "Trop sombre", + "Value": "1" + }, + { + "Parent": "", + "Label": "Trop petit", + "Value": "2" + }, + { + "Parent": "", + "Label": "Trop difficile ou trop coûteux à chauffer", + "Value": "3" + }, + { + "Parent": "", + "Label": "Trop chaud (trop difficile ou coûteux à rafraîchir l’été)", + "Value": "4" + }, + { + "Parent": "", + "Label": "Trop cher", + "Value": "5" + } + ], + "Name": "" + }, + { + "Label": "OLAR3", + "id": "knioesnw", + "Code": [ + { + "Parent": "", + "Label": "Problèmes de pollution", + "Value": "1" + }, + { + "Parent": "", + "Label": "Problèmes de délinquance, violence ou vandalisme dans les environs", + "Value": "2" + }, + { + "Parent": "", + "Label": "Services médicaux insuffisants", + "Value": "3" + }, + { + "Parent": "", + "Label": "Services publics insuffisants", + "Value": "4" + }, + { + "Parent": "", + "Label": "Manque de végétation", + "Value": "5" + } + ], + "Name": "" + }, + { + "Label": "SDL", + "id": "joinxitz", + "Code": [ + { + "Parent": "", + "Label": "Hébergement contraint chez d'autres personnes", + "Value": "1" + }, + { + "Parent": "", + "Label": "Chambre d’hôtel (hors tourisme)", + "Value": "2" + }, + { + "Parent": "", + "Label": "Logement payé par une association ou un organisme d’aide", + "Value": "3" + }, + { + "Parent": "", + "Label": "Séjour en centre d'hébergement (Centre d'hébergement d'urgence, CHRS, centre maternel, centre d'hébergement pour demandeurs d'asile ou réfugiés...Foyers ou hébergements de la DDASS, DDCS, ASE, PJJ...)", + "Value": "4" + }, + { + "Parent": "", + "Label": "Séjour dans un logement sans autorisation du propriétaire (squat)", + "Value": "5" + }, + { + "Parent": "", + "Label": "Séjour dans un lieu non prévu pour l’habitation (rue, véhicule, abri de fortune...)", + "Value": "6" + }, + { + "Parent": "", + "Label": "Logement contraint en habitation mobile (caravane, péniche) hors tourisme", + "Value": "7" + }, + { + "Parent": "", + "Label": "Aucune de ces situations", + "Value": "8" + } + ], + "Name": "" + }, + { + "Label": "liste_SDL2", + "id": "kqr0x5ml", + "Code": [ + { + "Parent": "", + "Label": "if ($PRENOM$=$PRENOMREF$) then \"Par vos soins\" else \"Par ses soins\"", + "Value": "1" + }, + { + "Parent": "", + "Label": "Par une autre personne", + "Value": "2" + }, + { + "Parent": "", + "Label": "Par une association ou un organisme d'aide", + "Value": "3" + } + ], + "Name": "" + }, + { + "Label": "SDN1", + "id": "kpb8y2tb", + "Code": [ + { + "Parent": "", + "Label": "Une", + "Value": "1" + }, + { + "Parent": "", + "Label": "Plusieurs", + "Value": "2" + } + ], + "Name": "" + }, + { + "Label": "SDT1", + "id": "joiodz52", + "Code": [ + { + "Parent": "", + "Label": "Moins d’une semaine ", + "Value": "1" + }, + { + "Parent": "", + "Label": "D’une semaine à moins de 3 mois", + "Value": "2" + }, + { + "Parent": "", + "Label": "De 3 mois à moins d'un an", + "Value": "3" + }, + { + "Parent": "", + "Label": "D'un an à moins de 3 ans", + "Value": "4" + }, + { + "Parent": "", + "Label": "\"3 ans et plus\" ", + "Value": "5" + } + ], + "Name": "" + }, + { + "Label": "SDL_7", + "id": "kw10q170", + "Code": [ + { + "Parent": "", + "Label": "Hébergement contraint chez d'autres personnes", + "Value": "1" + }, + { + "Parent": "", + "Label": "Chambre d’hôtel (hors tourisme)", + "Value": "2" + }, + { + "Parent": "", + "Label": "Logement payé par une association ou un organisme d’aide", + "Value": "3" + }, + { + "Parent": "", + "Label": "Séjour en [centre d'hébergement](. \"\\\"centre d'hébergement d'urgence, CHRS, centre maternel, centre d'hébergement pour demandeurs d'asile ou réfugiés... Foyers ou hébergements de la DDASS, DDCS, ASE, PJJ...\\\"\")", + "Value": "4" + }, + { + "Parent": "", + "Label": "Séjour dans un logement sans autorisation du propriétaire (squat)", + "Value": "5" + }, + { + "Parent": "", + "Label": "Séjour dans un lieu non prévu pour l’habitation (rue, véhicule, abri de fortune...)", + "Value": "6" + }, + { + "Parent": "", + "Label": "Logement contraint en habitation mobile (caravane, péniche) hors tourisme", + "Value": "7" + } + ], + "Name": "" + }, + { + "Label": "VMODM", + "id": "joo1g3aq", + "Code": [ + { + "Parent": "", + "Label": "Arrivée d'un ou plusieurs enfants", + "Value": "1" + }, + { + "Parent": "", + "Label": "Survenue d'un ou plusieurs décès", + "Value": "2" + }, + { + "Parent": "", + "Label": "Départ d'un ou plusieurs enfants", + "Value": "3" + }, + { + "Parent": "", + "Label": "Arrivée d'une ou plusieurs personnes du fait d'une mise en couple", + "Value": "4" + }, + { + "Parent": "", + "Label": "Départ d'une ou plusieurs personnes du fait d'une séparation ", + "Value": "5" + }, + { + "Parent": "", + "Label": "Autre évolution de la composition du ménage", + "Value": "6" + }, + { + "Parent": "", + "Label": "Aucune modification", + "Value": "7" + } + ], + "Name": "" + }, + { + "Label": "VMODP1", + "id": "joo1pxqg", + "Code": [ + { + "Parent": "", + "Label": "Entrée en activité ou reprise d’activité", + "Value": "3" + }, + { + "Parent": "", + "Label": "Perte de son emploi", + "Value": "1" + }, + { + "Parent": "", + "Label": "Passage à la retraite, préretraite ou décision d’arrêter de travailler", + "Value": "2" + }, + { + "Parent": "", + "Label": "Aucune modification de ce type", + "Value": "4" + } + ], + "Name": "" + }, + { + "Label": "VMODP2", + "id": "koe0mn5d", + "Code": [ + { + "Parent": "", + "Label": "Changement d’entreprise ou d’employeur", + "Value": "1" + }, + { + "Parent": "", + "Label": "Déménagement de l'entreprise", + "Value": "2" + }, + { + "Parent": "", + "Label": "Aucune modification de ce type", + "Value": "3" + } + ], + "Name": "" + }, + { + "Label": "VVENDL", + "id": "joph1lnb", + "Code": [ + { + "Parent": "", + "Label": "Oui, un seul ", + "Value": "1" + }, + { + "Parent": "", + "Label": "Oui, deux logements ou plus ", + "Value": "2" + }, + { + "Parent": "", + "Label": "Non ", + "Value": "3" + } + ], + "Name": "" + }, + { + "Label": "VFFH", + "id": "jopgr6lb", + "Code": [ + { + "Parent": "", + "Label": "Par héritage ou donation ", + "Value": "1" + }, + { + "Parent": "", + "Label": "Par achat comptant ", + "Value": "2" + }, + { + "Parent": "", + "Label": "Par achat à crédit ", + "Value": "3" + }, + { + "Parent": "", + "Label": "Par achat en viager ", + "Value": "4" + }, + { + "Parent": "", + "Label": "Par achat en location-accession, en location-vente, en \tlocation-attribution... ", + "Value": "5" + } + ], + "Name": "" + }, + { + "Label": "VBILLOG", + "id": "joph7hjs", + "Code": [ + { + "Parent": "", + "Label": "Plus élevé ", + "Value": "1" + }, + { + "Parent": "", + "Label": "Environ égal", + "Value": "2" + }, + { + "Parent": "", + "Label": "Moins élevé ", + "Value": "3" + } + ], + "Name": "" + }, + { + "Label": "VLR_1", + "id": "jopkxxc6", + "Code": [ + { + "Parent": "", + "Label": "Dans le même logement que maintenant", + "Value": "1" + }, + { + "Parent": "", + "Label": "Dans un autre logement de la même commune", + "Value": "2" + }, + { + "Parent": "", + "Label": "Dans une autre commune en France métropolitaine ", + "Value": "3" + }, + { + "Parent": "", + "Label": "En Outre-mer", + "Value": "4" + }, + { + "Parent": "", + "Label": "À l'étranger", + "Value": "5" + } + ], + "Name": "" + }, + { + "Label": "VLA", + "id": "joplgdcw", + "Code": [ + { + "Parent": "", + "Label": "Occupant en titre de votre logement (locataire, propriétaire ou usufruitier)", + "Value": "1" + }, + { + "Parent": "", + "Label": "Vous viviez chez votre conjoint", + "Value": "2" + }, + { + "Parent": "", + "Label": "Vous viviez chez vos parents, ou chez des particuliers, sans être occupant en titre du logement", + "Value": "3" + }, + { + "Parent": "", + "Label": "Vous logiez dans une [structure collective](. \"(caserne, cité universitaire, foyer d'étudiants ou de jeunes travailleurs, centre d'hébergement, établissement de soins ou de cure...)\") (caserne, cité universitaire,…) ou une habitation mobile", + "Value": "4" + } + ], + "Name": "" + }, + { + "Label": "VSO", + "id": "joplsxki", + "Code": [ + { + "Parent": "", + "Label": "Propriétaire accédant (remboursement d'emprunt)", + "Value": "1" + }, + { + "Parent": "", + "Label": "Propriétaire non accédant (ne remboursant plus d'emprunt)", + "Value": "2" + }, + { + "Parent": "", + "Label": "Usufruitier, y compris en viager", + "Value": "3" + }, + { + "Parent": "", + "Label": "Locataire ou sous-locataire", + "Value": "4" + }, + { + "Parent": "", + "Label": "Logé gratuitement avec un paiement éventuel de charges", + "Value": "5" + } + ], + "Name": "" + }, + { + "Label": "VSY", + "id": "joprlb0a", + "Code": [ + { + "Parent": "", + "Label": "Le loyer relevait de la législation HLM ou du logement social", + "Value": "1" + }, + { + "Parent": "", + "Label": "Le loyer était déterminé selon la loi de 1948", + "Value": "2" + }, + { + "Parent": "", + "Label": "Le loyer relevait du secteur libre", + "Value": "3" + } + ], + "Name": "" + }, + { + "Label": "VTL", + "id": "joprub8u", + "Code": [ + { + "Parent": "", + "Label": "Maison", + "Value": "1" + }, + { + "Parent": "", + "Label": "Appartement", + "Value": "2" + }, + { + "Parent": "", + "Label": "Logement-foyer", + "Value": "3" + }, + { + "Parent": "", + "Label": "Chambre d'hôtel", + "Value": "4" + }, + { + "Parent": "", + "Label": "Habitation de fortune (Construction précaire)", + "Value": "5" + }, + { + "Parent": "", + "Label": "Pièce indépendante (ayant sa propre entrée)", + "Value": "6" + } + ], + "Name": "" + }, + { + "Label": "VOP", + "id": "jopsh9ng", + "Code": [ + { + "Parent": "", + "Label": "En emploi", + "Value": "1" + }, + { + "Parent": "", + "Label": "Au chômage (inscrit(e) ou non à Pôle emploi)", + "Value": "2" + }, + { + "Parent": "", + "Label": "Retraité(e), préretraité(e)", + "Value": "3" + }, + { + "Parent": "", + "Label": "En incapacité de travailler en raison d'un handicap ou d'un problème de santé durable", + "Value": "4" + }, + { + "Parent": "", + "Label": "En études", + "Value": "5" + }, + { + "Parent": "", + "Label": "Femme ou homme au foyer ", + "Value": "6" + }, + { + "Parent": "", + "Label": "Dans une autre situation", + "Value": "7" + } + ], + "Name": "" + }, + { + "Label": "VLRD", + "id": "joptnagd", + "Code": [ + { + "Parent": "", + "Label": "En France métropolitaine", + "Value": "1" + }, + { + "Parent": "", + "Label": "Ailleurs", + "Value": "2" + } + ], + "Name": "" + }, + { + "Label": "VLAB1", + "id": "jopu65h0", + "Code": [ + { + "Parent": "", + "Label": "[Occupant en titre](. \"locataire, propriétaire, usufruitier\") de votre logement", + "Value": "1" + }, + { + "Parent": "", + "Label": "Vous viviez chez votre conjoint", + "Value": "2" + }, + { + "Parent": "", + "Label": "Vous viviez chez vos parents ou chez des particuliers, sans être occupant en titre du logement", + "Value": "3" + }, + { + "Parent": "", + "Label": "Vous viviez dans une structure collective (caserne, cité universitaire... ) ou une habitation mobile", + "Value": "4" + } + ], + "Name": "" + }, + { + "Label": "VDSY", + "id": "jopur3k1", + "Code": [ + { + "Parent": "", + "Label": "Le loyer relevait de la législation HLM ou du logement social", + "Value": "1" + }, + { + "Parent": "", + "Label": "Le loyer était déterminé selon la loi de 1948", + "Value": "2" + }, + { + "Parent": "", + "Label": "Le loyer relevait du secteur libre", + "Value": "3" + } + ], + "Name": "" + }, + { + "Label": "VRAIS1", + "id": "kovj0vbo", + "Code": [ + { + "Parent": "", + "Label": "Oui, pour devenir propriétaire", + "Value": "1" + }, + { + "Parent": "", + "Label": "Oui, pour devenir locataire", + "Value": "2" + }, + { + "Parent": "", + "Label": "Non, aucune de ces situations", + "Value": "3" + } + ], + "Name": "" + }, + { + "Label": "VRAIS2", + "id": "koviy969", + "Code": [ + { + "Parent": "", + "Label": "Oui, mise en couple ou mariage", + "Value": "1" + }, + { + "Parent": "", + "Label": "Oui, naissance", + "Value": "2" + }, + { + "Parent": "", + "Label": "Oui, séparation, divorce, veuvage", + "Value": "3" + }, + { + "Parent": "", + "Label": "Oui, départ de chez vos parents", + "Value": "4" + }, + { + "Parent": "", + "Label": "Oui, départ des enfants ", + "Value": "5" + }, + { + "Parent": "", + "Label": "Oui, en raison d'un problème de santé, d'un handicap ou d'une perte d'autonomie au sein du ménage", + "Value": "6" + }, + { + "Parent": "", + "Label": "Non, aucune de ces situations", + "Value": "7" + } + ], + "Name": "" + }, + { + "Label": "VRAIS3", + "id": "kovj3f3o", + "Code": [ + { + "Parent": "", + "Label": "Oui, pour avoir un logement de meilleure qualité", + "Value": "1" + }, + { + "Parent": "", + "Label": "Oui, pour avoir un logement plus grand ou plus petit", + "Value": "2" + }, + { + "Parent": "", + "Label": "Oui, pour avoir un logement plus adapté à la perte d'autonomie ou au handicap", + "Value": "3" + }, + { + "Parent": "", + "Label": "Oui, pour changer d'environnement", + "Value": "4" + }, + { + "Parent": "", + "Label": "Oui, pour avoir un loyer plus bas ou un logement moins cher à entretenir", + "Value": "5" + }, + { + "Parent": "", + "Label": "Non, aucune de ces situations", + "Value": "6" + } + ], + "Name": "" + }, + { + "Label": "VRAIS4", + "id": "koviyjcm", + "Code": [ + { + "Parent": "", + "Label": "Oui, de votre lieu de travail ou du lieu de travail d'une personne du ménage", + "Value": "1" + }, + { + "Parent": "", + "Label": "Oui, de service comme l'école, la garde d'enfants, l'hôpital...", + "Value": "2" + }, + { + "Parent": "", + "Label": "Oui, des commerces, de la gare...", + "Value": "3" + }, + { + "Parent": "", + "Label": "Oui, de la famille, des amis ou de la région d'origine", + "Value": "4" + }, + { + "Parent": "", + "Label": "Non, aucune de ces situations", + "Value": "5" + } + ], + "Name": "" + }, + { + "Label": "VRAIS5", + "id": "lgmga7g1", + "Code": [ + { + "Parent": "", + "Label": "Oui, vous avez été expulsé (défaut de paiement du loyer, troubles du voisinage...)", + "Value": "1" + }, + { + "Parent": "", + "Label": "Oui, pour des raisons financières (hors expulsion)", + "Value": "2" + }, + { + "Parent": "", + "Label": "Oui, le propriétaire a voulu reprendre le logement à la fin du bail", + "Value": "3" + }, + { + "Parent": "", + "Label": "Oui, à cause d'une réhabilitation ou destruction du logement", + "Value": "4" + }, + { + "Parent": "", + "Label": "Oui, pour d'autres raisons ", + "Value": "5" + }, + { + "Parent": "", + "Label": "Non ", + "Value": "6" + } + ], + "Name": "" + }, + { + "Label": "TELFIXE", + "id": "kp5afd7f", + "Code": [ + { + "Parent": "", + "Label": "Oui, mais seulement lorsque vous connaissez le numéro qui essaie de vous joindre", + "Value": "1" + }, + { + "Parent": "", + "Label": "Oui, sans vous soucier du numéro qui essaie de vous joindre", + "Value": "2" + }, + { + "Parent": "", + "Label": "Non, jamais", + "Value": "3" + }, + { + "Parent": "", + "Label": "Il ne sonne jamais", + "Value": "4" + }, + { + "Parent": "", + "Label": "Vous n'avez pas de téléphone fixe", + "Value": "5" + } + ], + "Name": "" + }, + { + "Label": "TELMOB", + "id": "kp5b81ae", + "Code": [ + { + "Parent": "", + "Label": "Oui, mais seulement lorsque vous connaissez le numéro ou le nom de la personne qui essaie de vous joindre", + "Value": "1" + }, + { + "Parent": "", + "Label": "Oui, sans vous soucier du numéro qui essaie de vous joindre", + "Value": "2" + }, + { + "Parent": "", + "Label": "Non, jamais", + "Value": "3" + }, + { + "Parent": "", + "Label": "Il ne sonne jamais", + "Value": "4" + }, + { + "Parent": "", + "Label": "Vous n'avez pas de téléphone portable ", + "Value": "5" + } + ], + "Name": "" + }, + { + "Label": "UWEB", + "id": "kp5bdcd2", + "Code": [ + { + "Parent": "", + "Label": "Tous les jours ou presque", + "Value": "1" + }, + { + "Parent": "", + "Label": "Pas tous les jours, mais au moins une fois par semaine", + "Value": "2" + }, + { + "Parent": "", + "Label": "Moins d'une fois par semaine", + "Value": "3" + }, + { + "Parent": "", + "Label": "Jamais", + "Value": "4" + }, + { + "Parent": "", + "Label": "Je n'ai pas accès à Internet", + "Value": "5" + } + ], + "Name": "" + }, + { + "Label": "L_CIV", + "id": "kneexxy3", + "Code": [ + { + "Parent": "", + "Label": "M.", + "Value": "M." + }, + { + "Parent": "", + "Label": "Mme", + "Value": "Mme" + } + ], + "Name": "" + } + ] + }, + "Iterations": { + "Iteration": [ + { + "Maximum": "cast($NHAB$,integer)", + "Minimum": "cast($NHAB$,integer)", + "MemberReference": [ + "kmnnxf2w", + "kmnnxf2w" + ], + "Label": "Personne suivante", + "id": "kmnolkxb", + "Step": "1", + "type": "DynamicIterationType", + "Name": "BOUCLE_PRENOMS" + }, + { + "MemberReference": [ + "kmnoigj8", + "kmnoigj8" + ], + "id": "kmooeas1", + "type": "DynamicIterationType", + "Name": "BOUCLE_THL", + "IterableReference": "kmnolkxb" + }, + { + "MemberReference": [ + "kmw3dz2a", + "kmw3dz2a" + ], + "id": "kmw4iq4w", + "type": "DynamicIterationType", + "Name": "BOUCLE_SITUFAM", + "IterableReference": "kmnolkxb" + }, + { + "MemberReference": [ + "kmukkury", + "kmukkury" + ], + "id": "kmx8gebp", + "type": "DynamicIterationType", + "Name": "BOUCLE_LIEUX", + "IterableReference": "kmnolkxb" + }, + { + "Filter": "($persplus18TR$=\"0\" and $persplus18AGE$=\"0\")", + "MemberReference": [ + "kmxa5rqb", + "kmxa5rqb" + ], + "id": "kmx9wphw", + "type": "DynamicIterationType", + "Name": "BOUCLE_ACTDIP", + "IterableReference": "kmnolkxb" + }, + { + "Filter": "($persplus18TR$=\"0\" and $persplus18AGE$=\"0\")", + "MemberReference": [ + "jo776s4d", + "jo776s4d" + ], + "id": "kl809dku", + "type": "DynamicIterationType", + "Name": "BOUCLE_STATUTOCCIND", + "IterableReference": "kmnolkxb" + }, + { + "Filter": "(isnull($STOCA$) or $STOCA$=\"1\") or (isnull($LIEN$) or $LIEN$=\"1\" or $LIEN$=\"2\" or $LIEN$=\"4\" or $LIEN$=\"6\" or $LIEN$=\"7\" or LIEN=\"8\") or ($LOGENQ$=\"5\" and not(isnull($LOGENQ$)) ) or ($LOGAUT$=\"1\" and not(isnull($LOGAUT$)) ) or ($DURLOG$=\"3\" and not(isnull($DURLOG$)) ) or ($persplus25TR$=\"0\" and $persplus25AGE$=\"0\") ", + "MemberReference": [ + "joh85k5c", + "joh85k5c" + ], + "id": "koka314y", + "type": "DynamicIterationType", + "Name": "BOUCLE_HEB_ENFANT", + "IterableReference": "kmnolkxb" + }, + { + "Filter": "($PRENOM$=$PRENOMREF$) or (isnull($STOCA$) or $STOCA$=\"1\") or ($STOCB1$=\"1\" and not(isnull($STOCB1$)) ) or (($LIEN$=\"1\" or $LIEN$=\"3\" or $LIEN$=\"5\") and not(isnull($LIEN$)) ) or ($SITUA$=\"5\" and not(isnull($SITUA$)) ) or ($LOGENQ$=\"5\" and not(isnull($LOGENQ$)) ) or ($LOGAUT$=\"1\" and not(isnull($LOGAUT$)) ) or ($DURLOG$=\"3\" and not(isnull($DURLOG$)) ) or ($persplus18TR$=\"0\" and $persplus18AGE$=\"0\") ", + "MemberReference": [ + "jsygk7m7", + "jsygk7m7" + ], + "id": "koka0f5v", + "type": "DynamicIterationType", + "Name": "BOUCLEHEBERGEMENT", + "IterableReference": "kmnolkxb" + }, + { + "Filter": "($persplus15TR$=\"0\" and $persplus15AGE$ =\"0\")", + "MemberReference": [ + "joio33nc", + "joio33nc" + ], + "id": "kkcc8cqi", + "type": "DynamicIterationType", + "Name": "BOUCLE_SDL", + "IterableReference": "kmnolkxb" + } + ] + }, + "formulasLanguage": "VTL", + "Child": [ + { + "Control": [], + "depth": 1, + "FlowControl": [], + "genericName": "MODULE", + "Label": [ + "Adresse" + ], + "id": "kb9hi4j0", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Nous allons vous interroger sur le logement situé à l'adresse suivante : \" || $ADRESSE$", + "id": "krnoclfe", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "CATI" + ] + }, + { + "declarationType": "INSTRUCTION", + "Text": "Appuyer sur \"Continuer\" pour passer à la page suivante.", + "id": "kwgg3npw", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "krm7ey4p", + "id": "kb9ht73s", + "mandatory": false, + "CodeListReference": "kb9ht98f", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Confirmation non renseignée", + "Expression": "nvl($CADR$, \"\") = \"\"", + "during_collect": false, + "criticity": "WARN", + "FailMessage": "Votre réponse est importante pour le bon déroulement du questionnaire. Merci de répondre à cette question.", + "id": "kbak0m18" + } + ], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"Confirmez-vous que vous habitez toujours à l'adresse suivante : \" || $ADRESSE$ || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "kb9hlpdc", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "CADR" + }, + { + "Response": [ + { + "CollectedVariableReference": "kqgn61x8", + "id": "kbal9bh5", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "10" + } + } + ], + "Control": [], + "depth": 2, + "FlowControl": [], + "Label": [ + "Numéro de voie :" + ], + "id": "kbakywwy", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "En précisant bis, ter si besoin. Par exemple : 12 bis.", + "id": "kbal5fzg", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + }, + { + "declarationType": "HELP", + "Text": "Pouvez-vous indiquer votre adresse ci-dessous ?", + "id": "krp3zark", + "position": "BEFORE_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CAPI", + "CATI" + ] + }, + { + "declarationType": "HELP", + "Text": "Cette adresse sera utilisée pour envoyer les courriers.", + "id": "krp3lw6x", + "position": "BEFORE_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "NUMTH_COLL" + }, + { + "Response": [ + { + "CollectedVariableReference": "kqgn79pg", + "id": "kbalgoim", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "50" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Message incitatif", + "Expression": "nvl($ADR_COLL$, \"\") = \"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Vous n’avez pas renseigné votre voie. Merci de renseigner votre adresse complète.", + "id": "kvm9zyf1" + } + ], + "depth": 2, + "FlowControl": [], + "Label": [ + "Libellé de la voie :" + ], + "id": "kbal4bzb", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Saisissez le type et le nom de la voie. Par exemple : rue des Plantes.", + "id": "kbalg7ww", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "ADR_COLL" + }, + { + "Response": [ + { + "CollectedVariableReference": "kqgolu9w", + "id": "kbalr9gi", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "50" + } + } + ], + "Control": [], + "depth": 2, + "FlowControl": [], + "Label": [ + "Complément d'adresse :" + ], + "id": "kbalhn4i", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Précisez un bâtiment, un lieu-dit…", + "id": "kbalm3fl", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "CADRTH_COLL" + }, + { + "Response": [ + { + "CollectedVariableReference": "kqgn9je2", + "id": "kbaldkpe", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "5" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Message incitatif", + "Expression": "nvl($CODEPOST1_COLL$, \"\") = \"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Vous n’avez pas renseigné votre code postal. Merci de renseigner votre adresse complète.", + "id": "kvma6vik" + } + ], + "depth": 2, + "FlowControl": [], + "Label": [ + "Code postal :" + ], + "id": "kbal8crw", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Pour PARIS, LYON et MARSEILLE, précisez l’arrondissement. Par exemple : 75012.", + "id": "kbal97f4", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "CODEPOST1_COLL" + }, + { + "Response": [ + { + "CollectedVariableReference": "kqgn4sa3", + "id": "kbalr921", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "100" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Message incitatif", + "Expression": "nvl($LIBCOM_COLL$, \"\") = \"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Vous n’avez pas renseigné votre commune. Merci de renseigner votre adresse complète. ", + "id": "kvm9utg1" + } + ], + "depth": 2, + "FlowControl": [], + "Label": [ + "Commune :" + ], + "id": "kbal9dwk", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "LIBCOM_COLL" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "Nouveaux occupants" + ], + "id": "kqwen63d", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "kr0ppql7", + "id": "kqwet1gs", + "mandatory": false, + "CodeListReference": "ko8uzwua", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Connaissez-vous le nom de la ou des personnes qui vous ont succédé dans le logement situé à l'adresse suivante : \" || $ADRESSE$ || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "kqweh61i", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "INDNVOCC" + }, + { + "Response": [ + { + "CollectedVariableReference": "kr0p6ln7", + "id": "kqwfqy15", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "40" + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Nom :" + ], + "id": "kqwga16w", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Pouvez-vous indiquer le nom ou éventuellement les noms des habitants du logement situé à l'adresse : \" || $ADRESSE$ || \" ?\"", + "id": "kqwg4t12", + "position": "BEFORE_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "NOMNVOCC1" + }, + { + "Response": [ + { + "CollectedVariableReference": "kr0pg9pm", + "id": "kqwftx5y", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Prénom :" + ], + "id": "kqwfswjj", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PRENOMNVOCC1" + }, + { + "Response": [ + { + "CollectedVariableReference": "kr0pbcxz", + "id": "kqwfzgnh", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "40" + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Nom d'un éventuel deuxième occupant :" + ], + "id": "kqwfedoy", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "NOMNVOCC2" + }, + { + "Response": [ + { + "CollectedVariableReference": "kr0po7ze", + "id": "kqwg8mj6", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Prénom d'un éventuel deuxième occupant :" + ], + "id": "kqwg9azb", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PRENOMNVOCC2" + }, + { + "Response": [ + { + "CollectedVariableReference": "kr0pk1f6", + "id": "kr0ecbx1", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "10" + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Pouvez-vous indiquer un numéro de téléphone \" || if (isnull($NOMNVOCC2$) and isnull($PRENOMNVOCC2$)) then \"de l'occupant du logement ?\" else \"des occupants du logement ?\"" + ], + "id": "kr0e0pav", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Ne pas mettre d'espace, de \"/\", de \"-\" ni de \".\" entre les numéros. Ex. : 0147200001", + "id": "kr0e4p61", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "TELNVOCC" + }, + { + "Response": [ + { + "CollectedVariableReference": "kr0pdobs", + "id": "kr0erk52", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Pouvez-vous indiquer un mail \" || if (isnull($NOMNVOCC2$) and isnull($PRENOMNVOCC2$)) then \"de l'occupant du logement ?\" else \"des occupants du logement ?\"" + ], + "id": "kr0ee3u2", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "MAILNVOCC" + } + ], + "Name": "NEWOCC" + } + ], + "Name": "T1" + }, + { + "Control": [], + "depth": 1, + "FlowControl": [], + "genericName": "MODULE", + "Label": [ + "Description des habitants du logement" + ], + "id": "jruq5os5", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Nous allons commencer par décrire rapidement les personnes qui vivent habituellement dans ce logement, même si elles sont temporairement absentes.", + "id": "kqhuxnyt", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + }, + { + "declarationType": "INSTRUCTION", + "Text": "Appuyer sur \"Continuer\" pour passer à la page suivante.", + "id": "kwgh1n9c", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "km0sy84b", + "id": "kbc1oors", + "mandatory": false, + "Datatype": { + "Maximum": "15", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Nombre d'habitants non renseigné", + "Expression": "nvl($NBHAB$,0) = 0", + "during_collect": false, + "criticity": "WARN", + "FailMessage": "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le nombre d'habitants du logement.", + "id": "kbc9q9vv" + }, + { + "post_collect": false, + "Description": "alerte si décimales\n", + "Expression": "(instr(cast(nvl($NBHAB$,0),string),\".\") <> 0) or (instr(cast(nvl($NBHAB$,0),string),\",) <> 0) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Merci de ne pas renseigner de chiffre après la virgule.", + "id": "kyabjvyy" + } + ], + "depth": 2, + "FlowControl": [], + "Label": [ + "Au total, en vous comptant, combien de personnes habitent dans ce logement ?" + ], + "id": "kbc1b4k2", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Inclure les enfants habitant aussi ailleurs pour leurs études, les conjoints éloignés pour leur travail, les enfants en résidence alternée, les employés de maison ou jeunes au pair habitant dans le logement, les personnes âgées vivant partiellement en maison de retraite ou en institution…", + "id": "kbc1gah1", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + }, + { + "declarationType": "HELP", + "Text": "Exclure les personnes ayant l'intention de résider moins de 12 mois en France.", + "id": "kqhv3glr", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "NBHAB" + } + ], + "Name": "LISTEHAB" + }, + { + "Control": [], + "depth": 1, + "FlowControl": [], + "genericName": "MODULE", + "Label": [ + "Présentation des habitants du logement" + ], + "id": "kmnnjaf1", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "$libINTROPRENOM$", + "id": "kr0tdccr", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + }, + { + "declarationType": "HELP", + "Text": "$libINTROPRENOM2$", + "id": "kr0syent", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + }, + { + "declarationType": "INSTRUCTION", + "Text": "Appuyer sur \"Continuer\" pour passer à la page suivante.", + "id": "kwggla1b", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "SequenceType", + "Child": [ + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "if (isnull($PRENOMREF$) or $G_PRENOM$=$PRENOMREF$) then \"Prénoms des habitants du logement\" else \"\"" + ], + "id": "kmnnxf2w", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "kq96og1u", + "id": "kmno8tbs", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Prénom non renseigné pour 1 habitant uniquement", + "Expression": "(nvl($G_PRENOM$, \"\") = \"\") and (isnull($NBHAB$) or cast($NBHAB$,integer)=1)", + "during_collect": false, + "criticity": "ERROR", + "FailMessage": "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre prénom (ou vos initiales, ou autre) pour pouvoir poursuivre le questionnaire.", + "id": "kmnoecnr" + }, + { + "post_collect": false, + "Description": "Prénoms non renseigné", + "Expression": "(nvl($G_PRENOM$, \"\") = \"\") and (not(isnull($NBHAB$)) and cast($NBHAB$,integer)>1)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Merci d'indiquer l'ensemble des prénoms (initiales ou autre) afin de pouvoir vous repérer dans la suite du questionnaire lorsque les questions porteront sur une personne en particulier.", + "id": "kwnransb" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\" \" || if (isnull($NBHAB$) or cast($NBHAB$,integer)=1) then \"Votre prénom : \" else (if ( not(isnull($G_PRENOM$)) and $G_PRENOM$=$PRENOMREF$ ) then \"Votre prénom : \" else ( if (isnull($PRENOMREF$) and isnull($G_PRENOM$)) then \"Prénom (commencez par votre prénom) : \" else \"Prénom : \"))" + ], + "id": "kmno1n7m", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "G_PRENOM" + } + ], + "Name": "PRENOMS" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "if ($PRENOM$=$PRENOMREF$) then \"Votre état civil\" else \"État civil de \" || $PRENOM$" + ], + "id": "kmnoigj8", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "ks4f5ex4", + "id": "kmoon375", + "mandatory": false, + "CodeListReference": "kmolikl4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel est \" || if ($PRENOM$=$PRENOMREF$) then \"votre sexe ?\" else \"le sexe de \" || $PRENOM$ || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "kmoo2fiy", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEXE" + }, + { + "Response": [ + { + "CollectedVariableReference": "kwf0tev6", + "id": "kmoow49z", + "mandatory": false, + "Datatype": { + "Maximum": "2022-12-31", + "Minimum": "1900-01-01", + "Format": "YYYY-MM-DD", + "typeName": "DATE", + "type": "DateDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Date de naissance non renseignée (répondant)", + "Expression": "(nvl($DATENAIS$, \"\") = \"\") and ($PRENOM$=$PRENOMREF$)", + "during_collect": false, + "criticity": "WARN", + "FailMessage": "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre date de naissance.", + "id": "kmooy9b1" + }, + { + "post_collect": false, + "Description": "Date de naissance non renseignée (autres)", + "Expression": "(nvl($DATENAIS$, \"\") = \"\") and (not(isnull($PRENOM$)) and $PRENOM$<>$PRENOMREF$)", + "during_collect": false, + "criticity": "WARN", + "FailMessage": "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer une date de naissance.", + "id": "kwnuf8hs" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quelle est \" || if ($PRENOM$=$PRENOMREF$) then \"votre date de naissance ?\" else \"la date de naissance de \" || $PRENOM$ ||\" ?\"" + ], + "id": "kmoouamz", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "DATENAIS" + }, + { + "Response": [ + { + "CollectedVariableReference": "kqi4mcwj", + "id": "kmx7770w", + "mandatory": false, + "CodeListReference": "kmx6szo6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Vous n'avez pas indiqué de date de naissance, pouvez-vous indiquer la tranche d'âge dans laquelle \" || if ($PRENOM$=$PRENOMREF$) then \"vous vous situez ?\" else \"se situe\" || \" \" || $PRENOM$ || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "kmx6w6n5", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "TRAGE" + }, + { + "Response": [ + { + "CollectedVariableReference": "kmoopvvz", + "id": "kmop5us3", + "mandatory": false, + "CodeListReference": "kmomiwx3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Où \"|| if ($PRENOM$=$PRENOMREF$) then \"êtes-vous né\" || $LIB_FEM$ || \" ?\" else \"est né\" || $LIB_FEM$ || \" \" || $PRENOM$ || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "kmookacu", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "cast($persplus18TR$,string)", + "id": "lo8om6yc", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + }, + { + "declarationType": "HELP", + "Text": "cast($persplus18AGE$,string)", + "id": "lo8onkqg", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "LNAIS" + }, + { + "Response": [ + { + "CollectedVariableReference": "lgrk002o", + "id": "lgrjrpiq", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel département \"|| if ($PRENOM$=$PRENOMREF$) then \"êtes-vous né\" || $LIB_FEM$ || \" ?\" else \"est né\" || $LIB_FEM$ || \" \" || $PRENOM$ || \" ?\"" + ], + "id": "kmor2z1x", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "INSTRUCTION", + "Text": "Saisir le code ou les premières lettres du département afin de le sélectionner dans la liste proposée", + "id": "kwzak25x", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "DEPNAIS" + }, + { + "Response": [ + { + "CollectedVariableReference": "lgrjly7i", + "id": "lgrk5smv", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel pays \"|| if ($PRENOM$=$PRENOMREF$) then \"êtes-vous né\" || $LIB_FEM$ || \" ?\" else \"est né\" || $LIB_FEM$ || \" \" || $PRENOM$ || \" ?\"" + ], + "id": "kmorege9", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Prendre en compte les frontières actuelles.", + "id": "kwyzaj0t", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + }, + { + "declarationType": "INSTRUCTION", + "Text": "Saisir les premières lettres du pays afin de le sélectionner dans la liste proposée", + "id": "kwzasuub", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PAYSNAIS" + }, + { + "FlowControl": [], + "Label": [ + "\"Quelle est \"|| if ($PRENOM$=$PRENOMREF$) then \"votre nationalité ?\" else \"la nationalité de \" || $PRENOM$ || \" ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "kmosa98y", + "MappingTarget": "1" + }, + { + "MappingSource": "kmos360k", + "MappingTarget": "2" + }, + { + "MappingSource": "kmos37e1", + "MappingTarget": "3" + }, + { + "MappingSource": "kmorue9c", + "MappingTarget": "4" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "kmos765d" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "NATIO1N", + "Response": [ + { + "CollectedVariableReference": "kmosbfeg", + "id": "kmosa98y", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "kmoryx4q", + "id": "kmos360k", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "kmos0mpz", + "id": "kmos37e1", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "kmosao80", + "id": "kmorue9c", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Saisie incorrecte", + "Expression": "(nvl($NATIO1N1$, false) = true and nvl($NATIO1N2$, false) = true) or (nvl($NATIO1N1$, false) = true and nvl($NATIO1N4$, false) = true) or (nvl($NATIO1N2$, false) = true and nvl($NATIO1N4$, false) = true) or (nvl($NATIO1N3$, false) = true and nvl($NATIO1N4$, false) = true)", + "during_collect": false, + "criticity": "ERROR", + "FailMessage": "Ces réponses sont incompatibles. Merci de corriger votre réponse.", + "id": "kmorxxt0" + } + ], + "depth": 3, + "ClarificationQuestion": [], + "id": "kmort6x9", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Plusieurs réponses possibles", + "id": "kmorxjxc", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + }, + { + "Response": [ + { + "CollectedVariableReference": "lgrjwuys", + "id": "lgrjx1rt", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quelle est \"|| if ($PRENOM$=$PRENOMREF$) then \"votre nationalité étrangère ?\" else \"la nationalité étrangère de \" || $PRENOM$ || \" ?\"" + ], + "id": "kmos2yo6", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "INSTRUCTION", + "Text": "Saisir les premières lettres de la nationalité afin de la sélectionner dans la liste proposée", + "id": "kwzb4byw", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "NATIO2N" + } + ], + "Name": "ETATCIVAUT" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "if ($PRENOM$=$PRENOMREF$) then \"Votre situation familiale\" else \"Situation familiale de \" || $PRENOM$" + ], + "id": "kmw3dz2a", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "lerah1nk", + "id": "kmw5mxph", + "mandatory": false, + "CodeListReference": "kmw56gjz", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Qui est \"|| $PRENOM$ || \" pour vous ?\"" + ], + "ClarificationQuestion": [], + "id": "kmw4revw", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "LIEN" + }, + { + "Response": [ + { + "CollectedVariableReference": "kod281bk", + "id": "kod2650j", + "mandatory": false, + "CodeListReference": "kod1mvxo", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "if ($PRENOM$=$PRENOMREF$) then \"Vivez-vous en couple ?\" else $PRENOM$ || \" vit-\" || $LIB_SUJET$ || \" en couple ?\"" + ], + "ClarificationQuestion": [], + "id": "kod271pp", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "COUPLE" + }, + { + "FlowControl": [], + "Label": [ + "\"Quelle est \" || if ($PRENOM$=$PRENOMREF$) then \"votre situation matrimoniale ?\" else \"la situation matrimoniale de \" || $PRENOM$ || \" ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "kqi51gzp", + "MappingTarget": "1" + }, + { + "MappingSource": "kqi557ae", + "MappingTarget": "2" + }, + { + "MappingSource": "kqi572vy", + "MappingTarget": "3" + }, + { + "MappingSource": "kqi54qj5", + "MappingTarget": "4" + }, + { + "MappingSource": "kqi5ewaq", + "MappingTarget": "5" + }, + { + "MappingSource": "kqi5h0rk", + "MappingTarget": "6" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "kmw5u1pk" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "SITUMATRI", + "Response": [ + { + "CollectedVariableReference": "kqi0kw9s", + "id": "kqi51gzp", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "kqi0xs8k", + "id": "kqi557ae", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "kqi0ncqs", + "id": "kqi572vy", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "kqi0zud6", + "id": "kqi54qj5", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "kqi0j9jx", + "id": "kqi5ewaq", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "kqi0ysi5", + "id": "kqi5h0rk", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [], + "depth": 3, + "ClarificationQuestion": [], + "id": "kmw5h275", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "questionType": "MULTIPLE_CHOICE" + } + ], + "Name": "SITUFAMAUT" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "if ($PRENOM$=$PRENOMREF$) then \"Vos lieux de vie\" else \"Lieux de vie de \" || $PRENOM$" + ], + "id": "kmukkury", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "kn8zw3tw", + "id": "kn8zvq0g", + "mandatory": false, + "CodeListReference": "kn8zodpk", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "if ($PRENOM$=$PRENOMREF$) then \"Vivez-vous uniquement dans ce logement ou aussi dans un autre logement ?\" else $PRENOM$ || \" vit-\" || $LIB_SUJET$ || \" uniquement dans ce logement ou aussi dans un autre logement ?\"" + ], + "ClarificationQuestion": [], + "id": "kmx8sgeu", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\" « Ce logement » désigne le logement situé à cette adresse : \" || $ADRCOLLC$ || \".\"", + "id": "kvl9opds", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "UNLOG" + }, + { + "Response": [ + { + "CollectedVariableReference": "kmx992cg", + "id": "kmx93bw6", + "mandatory": false, + "CodeListReference": "kmukmzpq", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "if ($PRENOM$=$PRENOMREF$) then \"Vous vivez dans le logement situé à l'adresse : \" || $ADRCOLLC$ || \" ... ?\" else $PRENOM$ || \" vit dans ce logement situé à l'adresse : \" || $ADRCOLLC$ || \" ... ?\"" + ], + "ClarificationQuestion": [], + "id": "kmx97ttc", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "DURLOG" + }, + { + "Response": [ + { + "CollectedVariableReference": "kx4xtdg6", + "id": "kmx95xeo", + "mandatory": false, + "CodeListReference": "kmx96qdc", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "if ($PRENOM$=$PRENOMREF$) then \"Pour vous, ce logement est... ?\" else \"Pour \" || $PRENOM$ || \", ce logement est... ?\"" + ], + "ClarificationQuestion": [], + "id": "kmx97tz1", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\" « Ce logement » désigne le logement situé à cette adresse : \" || $ADRCOLLC$ || \".\"", + "id": "kvlaj6p8", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "LOGENQ" + }, + { + "Response": [ + { + "CollectedVariableReference": "kx4y82og", + "id": "kmx9mse6", + "mandatory": false, + "CodeListReference": "kmx9jj4a", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "if ($PRENOM$=$PRENOMREF$) then \"Pour vous, l'autre logement où vous vivez est... ?\" else \"Pour \" || $PRENOM$ || \", l'autre logement où \" || $LIB_SUJET$ || \" vit est... ?\"" + ], + "ClarificationQuestion": [], + "id": "kmx93med", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Autre logement que celui situé à l’adresse : \" || $ADRCOLLC$", + "id": "kvm8n3pp", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + }, + { + "declarationType": "HELP", + "Text": "if ($PRENOM$=$PRENOMREF$) then \"Si vous vivez dans plusieurs autres logements, décrivez l'autre logement dans lequel vous passez le plus de temps.\" else \"Si \"|| $PRENOM$ || \" vit dans plusieurs autres logements, décrivez l'autre logement dans lequel \"|| $LIB_SUJET$ || \" passe le plus de temps.\"", + "id": "kvm8xhsc", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "LOGAUT" + }, + { + "Response": [ + { + "CollectedVariableReference": "kmx9sdps", + "id": "kmx9hqtj", + "mandatory": false, + "CodeListReference": "k1qjtfk1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "if ($PRENOM$=$PRENOMREF$) then \"Êtes-vous en garde alternée chez vos deux parents ?\" else $PRENOM$ || \" est-\" || $LIB_SUJET$ || \" en garde alternée chez ses deux parents ?\"" + ], + "ClarificationQuestion": [], + "id": "kmx9punx", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "GARDE" + }, + { + "Response": [ + { + "CollectedVariableReference": "kna1wd13", + "id": "kna1mw8t", + "mandatory": false, + "CodeListReference": "kna1qses", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "if ($PRENOM$=$PRENOMREF$) then \"Où avez-vous dormi la nuit dernière ?\" else \"Où \" || $PRENOM$ || \" a-t-\" || $LIB_SUJET$ || \" dormi la nuit dernière ?\"" + ], + "ClarificationQuestion": [], + "id": "kmx9im0b", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "if ($PRENOM$=$PRENOMREF$) then \"Si vous avez dormi chez un(e) ami(e), indiquez le logement où vous deviez normalement dormir.\" else \"Si \" || $PRENOM$ || \" a dormi chez un(e) ami(e), indiquez le logement où \" || $LIB_SUJET$ || \" devait normalement dormir.\"", + "id": "kn7jf1jt", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "DORM" + }, + { + "Response": [ + { + "CollectedVariableReference": "kqi5s6xp", + "id": "kqi52gbh", + "mandatory": false, + "CodeListReference": "k1qjtfk1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "if ($PRENOM$=$PRENOMREF$) then \"À propos de cet autre logement dans lequel vous vivez, s'agit-il d'une chambre dans une structure collective ?\" else \"À propos de cet autre logement dans lequel vit \" || $PRENOM$ || \", s'agit-il d'une chambre dans une structure collective ?\"" + ], + "ClarificationQuestion": [], + "id": "kqi4zdkk", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Autre logement que celui situé à l’adresse : \" || $ADRCOLLC$", + "id": "kvm8hkmj", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "LOGCO" + }, + { + "Response": [ + { + "CollectedVariableReference": "kmx9o0jb", + "id": "kmx9nkw7", + "mandatory": false, + "CodeListReference": "kmx7yjsk", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "De quelle structure s'agit-il ?" + ], + "ClarificationQuestion": [], + "id": "kmx9pvyn", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Structure collective de l'autre logement que celui situé à l’adresse : \" || $ADRCOLLC$", + "id": "kvm8t64a", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "TYPLOGCO" + } + ], + "Name": "LIEUXAUT" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "if ($PRENOM$=$PRENOMREF$) then \"Activité et formation\" else \"Activité et formation de \" || $PRENOM$" + ], + "id": "kmxa5rqb", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "kmxflats", + "id": "kmxfw3tj", + "mandatory": false, + "CodeListReference": "kmxfw3sx", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Situation non déclarée", + "Expression": "nvl($SITUA$, \"\") = \"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer une situation principale.", + "id": "kmxfz0eq" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "if ($PRENOM$=$PRENOMREF$) then \"Actuellement, quelle est votre situation principale ?\" else \"Actuellement, quelle est la situation principale de \" || $PRENOM$ || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "kmxfqrb1", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "if ($PRENOM$=$PRENOMREF$) then \"Si vous hésitez entre plusieurs situations, choisissez celle qui vous décrit le mieux, ou celle qui vous prend le plus de temps.\" else \"Si vous hésitez entre plusieurs situations, choisissez celle qui décrit le mieux \" || $PRENOM$ || \", ou celle qui lui prend le plus de temps.\"", + "id": "krd9g6bh", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SITUA" + }, + { + "Response": [ + { + "CollectedVariableReference": "kmxftept", + "id": "kmxg0ml3", + "mandatory": false, + "CodeListReference": "k1qjtfk1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "if ($PRENOM$=$PRENOMREF$) then \"Avez-vous cependant un emploi ?\" else $PRENOM$ || \" a-t-\" || $LIB_SUJET$ || \" cependant un emploi ?\"" + ], + "ClarificationQuestion": [], + "id": "kmxg8ci7", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Inclure : petit boulot, apprentissage, stage rémunéré, personne en congé \" || (if (isnull($SEXE$)) then \"paternité, maternité\" else (if (cast($SEXE$,string) = \"2\") then \"maternité\" else \"paternité\")) || \" ou parental, en congé maladie ou en chômage partiel, personne travaillant sans être rémunérée avec un membre de sa famille, élu.\"", + "id": "kqi7dwk7", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + }, + { + "declarationType": "HELP", + "Text": "Exclure le bénévolat.", + "id": "kqi7omwd", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "TRAVAIL" + }, + { + "Response": [ + { + "CollectedVariableReference": "kqi82iu1", + "id": "kmxggoi3", + "mandatory": false, + "CodeListReference": "kmxf03ss", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "if ($PRENOM$=$PRENOMREF$) then \"À ce jour, quel est le plus haut diplôme ou titre que vous possédez ?\" else \"À ce jour, quel est le plus haut diplôme ou titre que \" || $PRENOM$ || \" possède ?\"" + ], + "ClarificationQuestion": [], + "id": "kmxgftfs", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "if ($PRENOM$=$PRENOMREF$) then \"Indiquez le niveau de diplôme au moment où vous l'avez obtenu, pas votre niveau actuel.\" else \"Indiquez le niveau de diplôme au moment où \" || $PRENOM$ || \" l'a obtenu, pas son niveau actuel.\"", + "id": "kqi89yfr", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + }, + { + "declarationType": "HELP", + "Text": "Exclure : CQP, CACES, BAFA, permis de conduire, TOEIC ou autre test de langue, habilitations électriques ou de type équivalent.", + "id": "kqi81ih3", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "GRDIPA" + }, + { + "Response": [ + { + "CollectedVariableReference": "kqi8s2pw", + "id": "kqi8oy4y", + "mandatory": false, + "CodeListReference": "kqi895gg", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "if ($PRENOM$=$PRENOMREF$) then \"Plus précisément, quel est votre niveau d'études ?\" else \"Plus précisément, quel est le niveau d'études de \" || $PRENOM$ ||\" ?\"" + ], + "ClarificationQuestion": [], + "id": "kqi8s71l", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "GRDIPB" + }, + { + "Response": [ + { + "CollectedVariableReference": "kqi8cva7", + "id": "kqi8kfm4", + "mandatory": false, + "CodeListReference": "kqi8rie2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "if ($PRENOM$=$PRENOMREF$) then \"Plus précisément, quel diplôme de niveau supérieur à bac+2 avez-vous obtenu ?\" else \"Plus précisément, quel diplôme de niveau supérieur à bac+2 \"|| $PRENOM$ || \" a-t-\" || $LIB_SUJET$ || \" obtenu ?\"" + ], + "ClarificationQuestion": [], + "id": "kqi8mfos", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "GRDIPC" + }, + { + "Response": [ + { + "CollectedVariableReference": "kvjb5etp", + "id": "kp4dj5dc", + "mandatory": false, + "CodeListReference": "ko8uzwua", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "if ($PRENOM$=$PRENOMREF$) then \"Pratiquez-vous le télétravail ?\" else $PRENOM$ || \" pratique-t-\" || $LIB_SUJET$ || \" le télétravail ?\"" + ], + "ClarificationQuestion": [], + "id": "kp4dw3br", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Télétravail : une forme d'organisation du travail dans laquelle un travail qui aurait également pu être exécuté dans les locaux de l'employeur est effectué par un salarié hors de ces locaux de façon volontaire", + "id": "lepxuxk2", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "TELET" + }, + { + "Response": [ + { + "CollectedVariableReference": "kwkcn7zn", + "id": "kvjbdo0x", + "mandatory": false, + "Datatype": { + "Maximum": "7", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/jour", + "type": "NumericDatatypeType", + "Decimals": "1" + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "if ($PRENOM$=$PRENOMREF$) then \"Combien de jours par semaine êtes-vous en télétravail, en moyenne ?\" else \"Combien de jours par semaine \" || $PRENOM$ || \" est-\" || $LIB_SUJET$ || \" en télétravail, en moyenne ? \"" + ], + "id": "kvjb8q33", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "TELETNJ" + } + ], + "Name": "ACTDIPAUT" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "Ressources du ménage " + ], + "id": "ley4go4m", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "cast($nbpers15$,string)", + "id": "lo8pde7a", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "lgmchql7", + "id": "lgmddhd1", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Qui est le principal apporteur de ressources du ménage ? " + ], + "id": "lgmc7929", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "INSTRUCTION", + "Text": "Indiquez le prénom du principal apporteur de ressources du ménage. ", + "id": "lgmd7uor", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PRACT_NOM" + } + ], + "Name": "RESSOURCESMEN" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "Type de logement" + ], + "id": "kvqoffs5", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "kmdnmxfj", + "id": "kd8q0swm", + "mandatory": false, + "CodeListReference": "kd8q4yja", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Message incitatif", + "Expression": "nvl($HTLC1$, \"\") = \"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Votre réponse est importante pour le bon déroulement du questionnaire. Merci de choisir le type de logement qui correspond à votre logement.", + "id": "kp4az1yo" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "À quoi correspond votre logement ?" + ], + "ClarificationQuestion": [], + "id": "kd8qd4ou", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Nous allons maintenant passer à la description de votre logement situé à l'adresse suivante : \" || $ADRCOLLC$ || \" .\"", + "id": "kwf3y6nj", + "position": "BEFORE_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "HTLC1" + }, + { + "Response": [ + { + "CollectedVariableReference": "l7kayr4b", + "id": "l7kaurt5", + "mandatory": false, + "Datatype": { + "Maximum": "99", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Combien de niveaux comporte votre logement ?" + ], + "id": "l7kb07wt", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Une maison avec un étage comporte deux niveaux : le rez-de-chaussée et l’étage.", + "id": "l7kato20", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + }, + { + "declarationType": "HELP", + "Text": "Prendre en compte uniquement les niveaux avec des pièces habitables (ne pas compter le sous-sol, cave...)", + "id": "lhiyps86", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "NIVEAU" + }, + { + "Response": [ + { + "CollectedVariableReference": "kp4bi87b", + "id": "kp4buj00", + "mandatory": false, + "CodeListReference": "ko8uzwua", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Est-ce que votre logement se trouve en foyer (ou résidence) pour personnes âgées ?" + ], + "ClarificationQuestion": [], + "id": "kp4b8f63", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "FOYPAGEES" + }, + { + "Response": [ + { + "CollectedVariableReference": "kp4bp50q", + "id": "kp4bvh3q", + "mandatory": false, + "CodeListReference": "kp4bs9c4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Plus précisément, quel est le type de cette résidence ?" + ], + "ClarificationQuestion": [], + "id": "kp4bwrb9", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "RESAUTO" + }, + { + "Response": [ + { + "CollectedVariableReference": "kbgifaaz", + "id": "kbgif8i8", + "mandatory": false, + "CodeListReference": "k1qjtfk1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Message incitatif", + "Expression": "nvl($INDCOLL$, \"\") = \"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Votre réponse est importante pour le bon déroulement du questionnaire. Merci de répondre à cette question.", + "id": "kbgnv40z" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "Le logement fait-il partie d'un immeuble collectif ?" + ], + "ClarificationQuestion": [], + "id": "kbgi5n3g", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "INDCOLL" + }, + { + "Response": [ + { + "CollectedVariableReference": "kbgijjye", + "id": "kbgif1cj", + "mandatory": false, + "CodeListReference": "kbgi2ogb", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Quel est le type de construction de la maison individuelle ?" + ], + "ClarificationQuestion": [], + "id": "kbgigljc", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "IMI" + }, + { + "Response": [ + { + "CollectedVariableReference": "kbgifbcr", + "id": "kbgin5q4", + "mandatory": false, + "CodeListReference": "k1qjtfk1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Message incitatif", + "Expression": "nvl($ICOI$, \"\") = \"\"", + "during_collect": false, + "criticity": "WARN", + "FailMessage": "Votre réponse est importante pour le bon déroulement du questionnaire. Merci de répondre à cette question.", + "id": "kbgnfizo" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "La maison fait-elle partie d'une résidence ou d'un 'village' en copropriété ?" + ], + "ClarificationQuestion": [], + "id": "kbgim4v3", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "ICOI" + }, + { + "Response": [ + { + "CollectedVariableReference": "kbgifxoq", + "id": "kbgis9ja", + "mandatory": false, + "CodeListReference": "k1qjtfk1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Y a-t-il au moins un ascenseur dans l'immeuble collectif ?" + ], + "ClarificationQuestion": [], + "id": "kbgidvnm", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "IAS" + }, + { + "Response": [ + { + "CollectedVariableReference": "kbgikmsh", + "id": "kbgikgba", + "mandatory": false, + "Datatype": { + "Maximum": "99", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "alerte si décimales", + "Expression": "(instr(cast(nvl($IEL$,0),string),\".\") <> 0) or (instr(cast(nvl($IEL$,0),string),\",) <> 0) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Merci de ne pas renseigner de chiffres après la virgule.", + "id": "kyabuhtm" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "À quel étage se trouve votre logement ?" + ], + "id": "kbgigafp", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "IEL" + }, + { + "Response": [ + { + "CollectedVariableReference": "kbghyaq0", + "id": "kbgi0wp8", + "mandatory": false, + "CodeListReference": "kbgiawbm", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"À quelle période a été achevée la construction \"|| $libIAATC$ || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "kbghszh6", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "IAATC" + }, + { + "Response": [ + { + "CollectedVariableReference": "lgqots96", + "id": "leradyld", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Contrôle de bornes sur les dates", + "Expression": "cast(nvl($IAATCD$,\"\"),integer) < 2006 or cast(nvl($IAATCD$,\"\"),integer) >2024", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Merci d'indiquer une année comprise entre 2006 et 2024.", + "id": "lgqpe09a" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"En quelle année exactement la construction \" || $libIAATC$ || \" a-t-elle été achevée ?\"" + ], + "id": "kbghz7mp", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "IAATCD" + } + ], + "Name": "TYPLOG_" + } + ], + "Name": "THL" + }, + { + "Control": [], + "depth": 1, + "FlowControl": [], + "genericName": "MODULE", + "Label": [ + "Statut d'occupation et date d'installation" + ], + "id": "jn0cmg7j", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Nous allons vous interroger sur \" || $intro_STOC$ || \" et la date d'installation dans le logement.\"", + "id": "kvseiv6v", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + }, + { + "declarationType": "INSTRUCTION", + "Text": "Appuyer sur \"Continuer\" pour passer à la page suivante.", + "id": "kwggrhk0", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "SequenceType", + "Child": [ + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "Statut d'occupation du ménage" + ], + "id": "jn0ccyw1", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "klut3nax", + "id": "jn0dct54", + "mandatory": false, + "CodeListReference": "jn0cd476", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Message incitatif", + "Expression": "nvl($STOC1$, \"\") = \"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Votre réponse est importante pour le bon déroulement de la suite du questionnaire. Merci de choisir le statut d'occupation correspondant à la situation de votre ménage.", + "id": "kbla109y" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "Comment votre ménage occupe-t-il ce logement ?" + ], + "ClarificationQuestion": [], + "id": "jn0cttir", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"On désigne ici le ménage comme étant l'ensemble des occupants du logement. \" || $libSTOC1$", + "id": "jn0d8za4", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "STOC1" + }, + { + "Response": [ + { + "CollectedVariableReference": "klutbmso", + "id": "klut950c", + "mandatory": false, + "CodeListReference": "klut8zly", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Un des occupants actuels du logement est-il propriétaire de ce logement ?" + ], + "ClarificationQuestion": [], + "id": "klusnxnh", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Y compris en indivision", + "id": "knrah5ep", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "STOC2" + }, + { + "Response": [ + { + "CollectedVariableReference": "l7j27kvr", + "id": "l7j3o6fg", + "mandatory": false, + "CodeListReference": "ko8uzwua", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Vivez-vous en colocation ?" + ], + "ClarificationQuestion": [], + "id": "l7j247p7", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "COLOC" + }, + { + "Response": [ + { + "CollectedVariableReference": "l95eveg6", + "id": "l95eseii", + "mandatory": false, + "CodeListReference": "ko8uzwua", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Disposez-vous d'un bail ou d'un engagement écrit de location ?" + ], + "ClarificationQuestion": [], + "id": "l95euppt", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "LBA" + }, + { + "Response": [ + { + "CollectedVariableReference": "jn0e3lhq", + "id": "jn0dupyf", + "mandatory": false, + "CodeListReference": "jn0dummd", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Votre ménage occupe-t-il ce logement en pleine propriété ou en propriété partielle ? ​" + ], + "ClarificationQuestion": [], + "id": "jn0e3nhg", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "STOCP" + } + ], + "Name": "M3T1" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "if ($PRENOM$=$PRENOMREF$) then \"Votre statut d'occupation individuel\" else \"Statut d'occupation individuel de \" || $PRENOM$" + ], + "id": "jo776s4d", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "ko9tk25n", + "id": "ko9t7khn", + "mandatory": false, + "CodeListReference": "ko8uzwua", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Message incitatif", + "Expression": "nvl($STOCA12$, \"\") = \"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Votre réponse est importante pour le bon déroulement de la suite du questionnaire. Merci de répondre à cette question. ", + "id": "kp5ntekp" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"À titre personnel, \" || if ($PRENOM$=$PRENOMREF$) then \"votre nom figure-t-il sur l'acte de propriété ?\" else \"le nom de \" || $PRENOM$ || \" figure-t-il sur l'acte de propriété ?\"" + ], + "ClarificationQuestion": [], + "id": "ko9tiu0f", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Y compris usufruitier", + "id": "kp5nuwqt", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "STOCA12" + }, + { + "Response": [ + { + "CollectedVariableReference": "ko9t8lr0", + "id": "ko9qvhh3", + "mandatory": false, + "CodeListReference": "ko8uzwua", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Message incitatif", + "Expression": "nvl($STOCA3$, \"\") = \"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Votre réponse est importante pour le bon déroulement de la suite du questionnaire. Merci de répondre à cette question. ", + "id": "kp5nwdbu" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"À titre personnel, \" || (if ($PRENOM$=$PRENOMREF$) then \"êtes-vous\" else ($PRENOM$ || \" est-\" || $LIB_SUJET$)) || \" usufruitier\" || $LIB_FEM2$ || \" de ce logement ?\"" + ], + "ClarificationQuestion": [], + "id": "ko9r0alc", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "STOCA3" + }, + { + "Response": [ + { + "CollectedVariableReference": "ko9tmcu8", + "id": "ko9sybca", + "mandatory": false, + "CodeListReference": "ko8uzwua", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Message incitatif", + "Expression": "nvl($STOCA4$, \"\") = \"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Votre réponse est importante pour le bon déroulement de la suite du questionnaire. Merci de répondre à cette question. ", + "id": "kp5o39cj" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"À titre personnel, \" || if ($PRENOM$=$PRENOMREF$) then \"votre nom figure-t-il sur le bail de location ?\" else \"le nom de \" || $PRENOM$ || \" figure-t-il sur le bail de location ?\"" + ], + "ClarificationQuestion": [], + "id": "ko9t45t9", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "STOCA4" + }, + { + "Response": [ + { + "CollectedVariableReference": "knoq3j67", + "id": "knoq13l0", + "mandatory": false, + "CodeListReference": "knoq1iew", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "(if ($PRENOM$=$PRENOMREF$) then \"Êtes-vous\" else ($PRENOM$ || \" est-\" || $LIB_SUJET$)) || \" \" || if (isnull($STOC$)) then \"locataire, sous-locataire ou colocataire\" else (if ($STOC$=\"1\" or $STOC$=\"2\" or $STOC$=\"3\") then \"locataire ou colocataire\" else \"sous-locataire\") || \" d'une partie du logement ?\"" + ], + "ClarificationQuestion": [], + "id": "knoqewds", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "STOCB1" + } + ], + "Name": "M3T2" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "\"Situation de \" || $PRENOM$" + ], + "id": "joh85k5c", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "kp5x078b", + "id": "kp5vmw5r", + "mandatory": false, + "CodeListReference": "kp5vfffj", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "$PRENOM$ || \" a-t-\" || $LIB_SUJET$ || \" déjà quitté le logement familial pour vivre dans un logement indépendant pendant plus de trois mois ?\"" + ], + "ClarificationQuestion": [], + "id": "joh8lowu", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Y compris pour un logement en colocation.", + "id": "kqv2lwqk", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "EPAS1" + }, + { + "Response": [ + { + "CollectedVariableReference": "kppmk0mg", + "id": "kppmi2n2", + "mandatory": false, + "CodeListReference": "jncy00q3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "$PRENOM$ || \" vit-\" || $LIB_SUJET$ || \" chez vous uniquement pour les vacances, les week-ends ?\"" + ], + "ClarificationQuestion": [], + "id": "kppmespv", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "ERETOUR" + }, + { + "Response": [ + { + "CollectedVariableReference": "joh9hbxn", + "id": "joh9guc7", + "mandatory": false, + "CodeListReference": "joh8kni7", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Au total, pendant combien de temps \" || $PRENOM$ || \" a-t-\" || $LIB_SUJET$ || \" vécu dans un logement indépendant ?\"" + ], + "ClarificationQuestion": [], + "id": "joh8ixt2", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Cumuler les périodes le cas échéant.", + "id": "joh97u9u", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "EPASB" + }, + { + "Response": [ + { + "CollectedVariableReference": "kcncj70c", + "id": "kcnch682", + "mandatory": false, + "CodeListReference": "joh9gxwq", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Depuis quand \" || $PRENOM$ || \" est-\" || $LIB_SUJET$ || \" venu\" || $LIB_FEM$ || \" ou revenu\" || $LIB_FEM$ || \" vivre chez vous ?\"" + ], + "ClarificationQuestion": [], + "id": "kcnccgjg", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "EPASC" + }, + { + "FlowControl": [], + "Label": [ + "\"Dans quelles circonstances \" || $PRENOM$ || \" est-\" || $LIB_SUJET$ || \" venu\" || $LIB_FEM$ || \" ou revenu\" || $LIB_FEM$ || \" vivre avec vous après avoir eu un logement indépendant ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "kwqpl9t4", + "MappingTarget": "1" + }, + { + "MappingSource": "kwqplt17", + "MappingTarget": "2" + }, + { + "MappingSource": "kwqpx010", + "MappingTarget": "3" + }, + { + "MappingSource": "kwqpvqw9", + "MappingTarget": "4" + }, + { + "MappingSource": "kwqprhw6", + "MappingTarget": "5" + }, + { + "MappingSource": "kwqq04zh", + "MappingTarget": "6" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "knorkwv0" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "ERET1", + "Response": [ + { + "CollectedVariableReference": "kwqkp3p2", + "id": "kwqpl9t4", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "kwqkm2qv", + "id": "kwqplt17", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "kwqkmpb9", + "id": "kwqpx010", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "kwqkbr0b", + "id": "kwqpvqw9", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "kwqkay07", + "id": "kwqprhw6", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "kwqksrzu", + "id": "kwqq04zh", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [], + "depth": 3, + "ClarificationQuestion": [], + "id": "knorcs48", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Plusieurs réponses possibles", + "id": "kqigjlze", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + }, + { + "Response": [ + { + "CollectedVariableReference": "kp5vtv99", + "id": "kp5w4s1s", + "mandatory": false, + "CodeListReference": "jncy00q3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Le fait que \" || $PRENOM$ || \" vit chez vous est-il lié à la crise sanitaire due à l'épidémie de Covid19 ?\"" + ], + "ClarificationQuestion": [], + "id": "kp5vtjh4", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "ECOVID" + }, + { + "Response": [ + { + "CollectedVariableReference": "knpntilb", + "id": "joirzvfg", + "mandatory": false, + "CodeListReference": "joirusc3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "$PRENOM$ || \" envisage-t-\" || $LIB_SUJET$ || \" d'aller habiter dans un logement indépendant dans les six mois qui viennent ?\"" + ], + "ClarificationQuestion": [], + "id": "joirni0x", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "EPROJ" + }, + { + "Response": [ + { + "CollectedVariableReference": "joirtq9l", + "id": "jois1vwn", + "mandatory": false, + "CodeListReference": "joirox38", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "$PRENOM$ || \" a-t-\" || $LIB_SUJET$ || \" actuellement les moyens financiers lui permettant d'avoir un logement indépendant ?\"" + ], + "ClarificationQuestion": [], + "id": "joirve2f", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "EPROJB" + }, + { + "Response": [ + { + "CollectedVariableReference": "jois2zfa", + "id": "joirpdmw", + "mandatory": false, + "CodeListReference": "joirox38", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "$PRENOM$ || \" aurait-\" || $LIB_SUJET$ || \" les moyens financiers d’obtenir un logement indépendant ?\"" + ], + "ClarificationQuestion": [], + "id": "joirtz3j", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "EPROJC" + }, + { + "Response": [ + { + "CollectedVariableReference": "joit0351", + "id": "joit4rln", + "mandatory": false, + "CodeListReference": "joisst25", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Si \" || $PRENOM$ || \" en avait les moyens financiers, quitterait-\" || $LIB_SUJET$ || \" le logement familial ?\"" + ], + "ClarificationQuestion": [], + "id": "joisp3u9", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "EPROJD" + } + ], + "Name": "M3T3" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "Hébergement" + ], + "id": "jsygk7m7", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "joisc9ua", + "id": "joisit3j", + "mandatory": false, + "CodeListReference": "joh9gxwq", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Depuis quand \" || $PRENOM$ || \" vit-\" || $LIB_SUJET$ ||\" chez vous ?\"" + ], + "ClarificationQuestion": [], + "id": "joisq6l3", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "EAMIA" + }, + { + "FlowControl": [], + "Label": [ + "\"Pour quelles raisons \" || $PRENOM$ || \" vit-\" || $LIB_SUJET$ || \" chez vous ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "l3d88g6a", + "MappingTarget": "1" + }, + { + "MappingSource": "l3d8efe0", + "MappingTarget": "2" + }, + { + "MappingSource": "l3d8iii6", + "MappingTarget": "3" + }, + { + "MappingSource": "l3d8aqcq", + "MappingTarget": "4" + }, + { + "MappingSource": "l3d8e08c", + "MappingTarget": "5" + }, + { + "MappingSource": "l3d896r3", + "MappingTarget": "6" + }, + { + "MappingSource": "l3d87rh5", + "MappingTarget": "7" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "kqs7ptde" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "EAMID1", + "Response": [ + { + "CollectedVariableReference": "l3d7qp26", + "id": "l3d88g6a", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "l3d7wr74", + "id": "l3d8efe0", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "l3d7id7m", + "id": "l3d8iii6", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "l3d7qlgr", + "id": "l3d8aqcq", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "l3d7yqxt", + "id": "l3d8e08c", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "l3d7hb7k", + "id": "l3d896r3", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "l3d7jgv0", + "id": "l3d87rh5", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [], + "depth": 3, + "ClarificationQuestion": [], + "id": "knpolbu3", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Plusieurs réponses possibles", + "id": "kqigai4x", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + }, + { + "Response": [ + { + "CollectedVariableReference": "kpppx8tb", + "id": "kpppq7ha", + "mandatory": false, + "CodeListReference": "jncy00q3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Le fait que \" || $PRENOM$ || \" vive chez vous est-il lié à la crise sanitaire due à l'épidémie de Covid 19 ?\"" + ], + "ClarificationQuestion": [], + "id": "kppptqlu", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "ECOVID2" + }, + { + "Response": [ + { + "CollectedVariableReference": "kcnjw6pt", + "id": "joisy91r", + "mandatory": false, + "CodeListReference": "joirusc3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Selon vous, \" || $PRENOM$ || \" a-t-\" || $LIB_SUJET$ || \" actuellement les moyens financiers lui permettant d'avoir un logement indépendant ?\"" + ], + "ClarificationQuestion": [], + "id": "joismxwd", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "EAMIH" + }, + { + "Response": [ + { + "CollectedVariableReference": "kqv44ftz", + "id": "kqv47xde", + "mandatory": false, + "CodeListReference": "kqv3pa7u", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Est-ce compliqué pour vous d'héberger \" || $PRENOM$ || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "kqv3atis", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "EAMIK" + }, + { + "Response": [ + { + "CollectedVariableReference": "kqv468d5", + "id": "kqv4akc6", + "mandatory": false, + "CodeListReference": "ko8uzwua", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Est-ce que \" || $PRENOM$ || \" a une chambre indépendante dans votre logement ?\"" + ], + "ClarificationQuestion": [], + "id": "kqv44b8j", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "EAMIL" + } + ], + "Name": "M3T4" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "Date d'installation dans le logement" + ], + "id": "kvsdwoef", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "lgp3bfj8", + "id": "lera9at4", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Message incitatif", + "Expression": "nvl($MAA2A$,\"\") = \"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Merci d'indiquer l'année de votre arrivée dans ce logement. Si vous n'avez jamais déménagé de votre vie, merci d'indiquer votre année de naissance.", + "id": "kbjfdmm2" + }, + { + "post_collect": false, + "Description": "Borne des dates", + "Expression": "cast(nvl($MAA2A$,\"\"),integer) < 1900 or cast(nvl($MAA2A$,\"\"),integer) >2024", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Merci d'indiquer une année comprise entre 1900 et 2024.", + "id": "lgp3bp42" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"En quelle année êtes-vous arrivé\" || (if (isnull($SEXEREF$)) then \"\" else (if (cast($SEXEREF$,string) = \"2\") then \"e\" else \"\")) || \" dans ce logement ?\"" + ], + "id": "jojtbo85", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "MAA2A" + }, + { + "Response": [ + { + "CollectedVariableReference": "kp6iwknx", + "id": "kp6iwdcb", + "mandatory": false, + "CodeListReference": "kp6iy3xk", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Depuis environ combien d'années êtes-vous arrivé\" || (if (isnull($SEXEREF$)) then \"\" else (if (cast($SEXEREF$,string) = \"2\") then \"e\" else \"\")) || \" dans ce logement ?\"" + ], + "ClarificationQuestion": [], + "id": "kp6iwd90", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "MAA2AT_Q" + }, + { + "Response": [ + { + "CollectedVariableReference": "kf71mrxw", + "id": "kf71i6tz", + "mandatory": false, + "CodeListReference": "kf71urf1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "DROPDOWN", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Message incitatif", + "Expression": "nvl($MAA2M$, \"\") = \"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Votre réponse est importante pour le bon déroulement du questionnaire. Merci de répondre à cette question.", + "id": "kbjfbq10" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel est le mois de votre arrivée en \" || cast($MAA2A$,string) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "jojt16mt", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "MAA2M" + }, + { + "Response": [ + { + "CollectedVariableReference": "jojtmmcp", + "id": "jojtagah", + "mandatory": false, + "CodeListReference": "jncy00q3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Votre conjoint\" || $SEXECJ_E$ || \" est-\" || $SEXECJ_IEL$ || \" arrivé\" || $SEXECJ_E$ || \" dans ce logement en même temps que vous ?\"" + ], + "ClarificationQuestion": [], + "id": "jojt3qxp", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "MARRIVC" + }, + { + "Response": [ + { + "CollectedVariableReference": "lgp3974g", + "id": "leraafbf", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Contrôle de borne sur les dates", + "Expression": "cast(nvl($MAA2AC$,\"\"),integer) < 1900 or cast(nvl($MAA2AC$,\"\"),integer) >2024", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Merci d'indiquer une année comprise entre 1900 et 2024.", + "id": "lgp3ryuy" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"En quelle année votre conjoint\" || $SEXECJ_E$ || \" est-\" || $SEXECJ_IEL$ || \" arrivé\" || $SEXECJ_E$ || \" dans ce logement ?\"" + ], + "id": "jojtnq9z", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "MAA2AC" + }, + { + "Response": [ + { + "CollectedVariableReference": "kp6karsm", + "id": "kp6j1a25", + "mandatory": false, + "CodeListReference": "kp6iy3xk", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Depuis environ combien d'années votre conjoint\" || $SEXECJ_E$ || \" est-\" || $SEXECJ_IEL$ || \" arrivé\" || $SEXECJ_E$ || \" dans ce logement ?\"" + ], + "ClarificationQuestion": [], + "id": "kp6ja40b", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "MAA2ATC_Q" + }, + { + "Response": [ + { + "CollectedVariableReference": "kf722urp", + "id": "kf71reoh", + "mandatory": false, + "CodeListReference": "kf71urf1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "DROPDOWN", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel est le mois de son arrivée dans le logement en \" || cast($MAA2AC$,string) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "jor73af6", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "MAA2MC" + }, + { + "Response": [ + { + "CollectedVariableReference": "jojtd97l", + "id": "jojtrf8n", + "mandatory": false, + "CodeListReference": "jncy00q3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Parmi les membres de votre ménage actuel, une personne habitait-elle déjà dans ce logement, au moment de \" || $libMAA3$ || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "jojtsgsr", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "MAA3" + }, + { + "Response": [ + { + "CollectedVariableReference": "lgp3qwcx", + "id": "leranvj5", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Cohérence avec la date d'arrivée du répondant", + "Expression": "(nvl($MAA3$,\"\")=\"1\" and (cast(nvl($MAA3A$,\"\"),integer)>cast(nvl($MAA2A$,\"\"),integer)) \r\nand \r\n( isnull($MARRIVC$) or $MARRIVC$=\"1\" or isnull($MAA2AC$) or \r\n ($MARRIVC$=\"2\" and ((cast($MAA2AC$,integer)>cast($MAA2A$,integer)) or \r\n ((cast($MAA2AC$,integer)=cast($MAA2A$,integer)) and (cast($MAA2MC$,integer)>=cast($MAA2M$,integer))) ) ) ) \r\n )", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Si cette personne habitait déjà le logement à votre arrivée, la date d'installation de cette personne doit être antérieure à la vôtre, merci de corriger l'une de vos réponses.", + "id": "kf6ieg89" + }, + { + "post_collect": false, + "Description": "Contrôle de borne sur les dates", + "Expression": "cast(nvl($MAA3A$,\"\"),integer) < 1900 or cast(nvl($MAA3A$,\"\"),integer) >2024", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Merci d'indiquer une année comprise entre 1900 et 2024.", + "id": "lgp3qktt" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "En quelle année cette personne est-elle arrivée dans ce logement ?" + ], + "id": "jojtutyy", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "MAA3A" + }, + { + "Response": [ + { + "CollectedVariableReference": "kf71lvot", + "id": "kf71m9y7", + "mandatory": false, + "CodeListReference": "kf71urf1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "DROPDOWN", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel est le mois de son arrivée dans le logement en \" || cast($MAA3A$,string) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "jojtizrx", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "MAA3M" + }, + { + "Response": [ + { + "CollectedVariableReference": "l3ykbe8f", + "id": "l3yknw6r", + "mandatory": false, + "CodeListReference": "ko8uzwua", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Avez-vous\" || $libSDEJA$ || \" déjà été propriétaire d’une résidence principale autre que celle-ci ?\"" + ], + "ClarificationQuestion": [], + "id": "l3yket2i", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SDEJA" + } + ], + "Name": "M4T1" + } + ], + "Name": "M3T0" + }, + { + "Control": [], + "depth": 1, + "FlowControl": [], + "genericName": "MODULE", + "Label": [ + "Description du logement" + ], + "id": "jojuy3c4", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Nous allons maintenant passer à la description de votre logement.", + "id": "jojurgz6", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + }, + { + "declarationType": "INSTRUCTION", + "Text": "Appuyer sur \"Continuer\" pour passer à la page suivante.", + "id": "kwgh620s", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "SequenceType", + "Child": [ + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "Description du logement - Cuisine" + ], + "id": "kp6n3avl", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "km24than", + "id": "jojumdxu", + "mandatory": false, + "CodeListReference": "jojv0g6x", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Votre logement dispose-t-il d'une cuisine ?" + ], + "ClarificationQuestion": [], + "id": "jojuueml", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "KCU1" + }, + { + "Response": [ + { + "CollectedVariableReference": "jojupxj3", + "id": "jojuz9du", + "mandatory": false, + "CodeListReference": "jojum3uu", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Quelle est la surface de la cuisine ?" + ], + "ClarificationQuestion": [], + "id": "jojuno0d", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "KCU2" + } + ], + "Name": "M5T1" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "Description du logement - Conditions de télétravail" + ], + "id": "kp6n8gha", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "l3ioimd4", + "id": "l3irjta2", + "mandatory": false, + "Datatype": { + "Maximum": "10", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Par rapport à l’exercice du télétravail, quelle note entre 0 et 10 donneriez-vous à vos conditions de logement ?" + ], + "id": "klv34du0", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "10 correspond à la meilleure note, 0 à la plus mauvaise.", + "id": "l3ioieyl", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "HUTCOND" + }, + { + "FlowControl": [], + "Label": [ + "Par rapport à l’exercice du télétravail, votre logement présente-t-il les défauts suivants ?" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "l3irxifk", + "MappingTarget": "1" + }, + { + "MappingSource": "l3irkq5a", + "MappingTarget": "2" + }, + { + "MappingSource": "l3irr1yx", + "MappingTarget": "3" + }, + { + "MappingSource": "l3irjbx5", + "MappingTarget": "4" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "l3iobv03" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "HUTDEF", + "Response": [ + { + "CollectedVariableReference": "l3ioi4z8", + "id": "l3irxifk", + "CodeListReference": "ko8uzwua", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "CollectedVariableReference": "l3io8xk7", + "id": "l3irkq5a", + "CodeListReference": "ko8uzwua", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "CollectedVariableReference": "l3io3i1z", + "id": "l3irr1yx", + "CodeListReference": "ko8uzwua", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "CollectedVariableReference": "l3iohmbv", + "id": "l3irjbx5", + "CodeListReference": "ko8uzwua", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "ClarificationQuestion": [], + "id": "l3io7e8f", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "questionType": "MULTIPLE_CHOICE" + } + ], + "Name": "M5T2" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "Description du logement - Pièces à usage exclusivement professionnel" + ], + "id": "kp6ni06e", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "jojuqqg0", + "id": "jojv5zcs", + "mandatory": false, + "CodeListReference": "jncy00q3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Y a-t-il, dans le logement, des [pièces réservées exclusivement à une activité professionnelle](. \"Ne rentrent pas dans cette catégorie les pièces à usage mixte, utilisées également par les membres de la famille.\"), comme un cabinet de dentiste ou d'avocat par exemple ?" + ], + "ClarificationQuestion": [], + "id": "jojuwst2", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "On s’intéresse ici aux éventuelles pièces destinées à une activité professionnelle domiciliée dans le logement. ", + "id": "kkpnqrqh", + "position": "BEFORE_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + }, + { + "declarationType": "HELP", + "Text": "Ne pas tenir compte des pièces dédiées au télétravail.", + "id": "kkpmu4ui", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "HUP" + }, + { + "Response": [ + { + "CollectedVariableReference": "jojuunvc", + "id": "jojuuvbp", + "mandatory": false, + "Datatype": { + "Maximum": "9", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "0" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "alerte si décimales", + "Expression": "(instr(cast(nvl($HPP$,0),string),\".\") <> 0) or (instr(cast(nvl($HPP$,0),string),\",) <> 0) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Merci de ne pas renseigner de chiffres après la virgule.", + "id": "kyac4fzy" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "Combien avez-vous de pièces à usage exclusivement professionnel ?" + ], + "id": "jojv1e5e", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Ne pas tenir compte des pièces dédiées au télétravail.", + "id": "klv3gkq8", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "HPP" + }, + { + "Response": [ + { + "CollectedVariableReference": "kwkd92gt", + "id": "jojv0jt2", + "mandatory": false, + "Datatype": { + "Maximum": "997", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/metrecarre", + "type": "NumericDatatypeType", + "Decimals": "2" + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quelle est la surface totale de \" || $libHSP$ || \" à usage exclusivement professionnel ?\"" + ], + "id": "jojuz9k3", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "HSP" + } + ], + "Name": "M5T3" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "Description du logement - Pièces annexes à usage d'habitation" + ], + "id": "kp6ns6ar", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "jojusauf", + "id": "jojv12lo", + "mandatory": false, + "CodeListReference": "jncy00q3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Y a-t-il des pièces annexes à usage d'habitation rattachées au logement avec une entrée indépendante, telles que des chambres de bonne ou d’anciens garages réaménagés en studios par exemple ?" + ], + "ClarificationQuestion": [], + "id": "jojv79ut", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Ne pas compter les pièces qui n'ont pas un usage d'habitation : débarras, buanderies, garages...", + "id": "jrj0gbrz", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "HUA" + }, + { + "Response": [ + { + "CollectedVariableReference": "kkqp2j1d", + "id": "jojusenw", + "mandatory": false, + "Datatype": { + "Maximum": "9", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "0" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "alerte si décimales", + "Expression": "(instr(cast(nvl($HPA$,0),string),\".\") <> 0) or (instr(cast(nvl($HPA$,0),string),\",) <> 0) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Merci de ne pas renseigner de chiffres après la virgule.", + "id": "kyabrk66" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "Combien avez-vous de [pièces annexes](. \"Pièces rattachées au logement avec une entrée indépendante telles que des chambres de bonne ou d'anciens garages réaménagés en studios par exemple\") à usage d'habitation ?" + ], + "id": "jojv3ha7", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "HPA" + }, + { + "Response": [ + { + "CollectedVariableReference": "kmd71wle", + "id": "kmd6yr7w", + "mandatory": false, + "CodeListReference": "kmd70xef", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Quel usage faites-vous de la pièce annexe ?" + ], + "ClarificationQuestion": [], + "id": "kmd6o006", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "HULHUI1" + }, + { + "FlowControl": [], + "Label": [ + "Quel usage faites-vous des [pièces annexes](. \"Pièces rattachées au logement avec une entrée indépendante telles que des chambres de bonnes ou d'anciens garages réaménagés en studios, par exemple\") ?" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "kmd9jdka", + "MappingTarget": "1" + }, + { + "MappingSource": "kmd9qoms", + "MappingTarget": "2" + }, + { + "MappingSource": "kmd988n2", + "MappingTarget": "3" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "kkqw9mkz" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "HULHUI2", + "Response": [ + { + "CollectedVariableReference": "kmd80s25", + "id": "kmd9jdka", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "kmd84vg3", + "id": "kmd9qoms", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "kmd7sxny", + "id": "kmd988n2", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [], + "depth": 3, + "ClarificationQuestion": [], + "id": "kmcdiwdv", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Plusieurs réponses possibles", + "id": "kmcdfb60", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + }, + { + "Response": [ + { + "CollectedVariableReference": "klv4iu5l", + "id": "jojv8tjf", + "mandatory": false, + "Datatype": { + "Maximum": "9", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "0" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "alerte si décimales", + "Expression": "(instr(cast(nvl($HPI1$,0),string),\".\") <> 0) or (instr(cast(nvl($HPI1$,0),string),\",) <> 0) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Merci de ne pas renseigner de chiffres après la virgule.", + "id": "kyabtkat" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Parmi les \" || cast($HPA$,string) || \" pièces annexes, combien sont-elles réservées à votre usage personnel ?\"" + ], + "id": "jojuzbus", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "HPI1" + }, + { + "Response": [ + { + "CollectedVariableReference": "klv4t7se", + "id": "klv4mlgz", + "mandatory": false, + "Datatype": { + "Maximum": "9", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "0" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "alerte si décimales", + "Expression": "(instr(cast(nvl($HPI2$,0),string),\".\") <> 0) or (instr(cast(nvl($HPI2$,0),string),\",) <> 0) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Merci de ne pas renseigner de chiffres après la virgule.", + "id": "kyacbwxs" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Parmi les \" || cast($HPA$,string) || \" pièces annexes, combien sont-elles réservées au logement d'un salarié à votre service ?\"" + ], + "id": "klv4iusu", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "HPI2" + }, + { + "Response": [ + { + "CollectedVariableReference": "kycvsbre", + "id": "jojuywkz", + "mandatory": false, + "Datatype": { + "Maximum": "999", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/metrecarre", + "type": "NumericDatatypeType", + "Decimals": "2" + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quelle est la surface totale de \" || $libHSI1$ || \" à votre usage personnel ?\"" + ], + "id": "jojv5bnw", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "HSI1" + }, + { + "Response": [ + { + "CollectedVariableReference": "kycvrlft", + "id": "klw34351", + "mandatory": false, + "Datatype": { + "Maximum": "999", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/metrecarre", + "type": "NumericDatatypeType", + "Decimals": "2" + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quelle est la surface totale de \" || $libHSI2$ || \" au logement d'un salarié à votre service ?\"" + ], + "id": "klw36l7v", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "HSI2" + } + ], + "Name": "M5T4" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "Description du logement - Taille" + ], + "id": "kp6nfjxe", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "kycvr8qf", + "id": "jojvjmis", + "mandatory": false, + "Datatype": { + "Maximum": "100", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "0" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "10 pièces d'habitation ou plus", + "Expression": "cast(nvl($HPH$,0),integer) >= 10", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Êtes-vous certain(e) que votre logement comporte ce nombre de pièces d'habitation ? Il s'agit du nombre de pièces (hors cuisine séparée, salle de bain, entrée, véranda etc.) Pouvez-vous vérifier votre réponse ?", + "id": "kd5qrkrm" + }, + { + "post_collect": false, + "Description": "Message incitatif", + "Expression": "nvl($HPH$,0) = 0", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Votre réponse est essentielle pour la description de votre logement, pouvez-vous indiquer le nombre de pièces habitables de votre logement ?", + "id": "km2452dm" + }, + { + "post_collect": false, + "Description": "alerte si décimales", + "Expression": "(instr(cast(nvl($HPH$,0),string),\".\") <> 0) or (instr(cast(nvl($HPH$,0),string),\",) <> 0) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Merci de ne pas renseigner de chiffres après la virgule.", + "id": "kyac14zw" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "Combien avez-vous de pièces d'habitation (ou de pièces habitables) ?" + ], + "id": "jojvgfei", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Ne pas compter : \" || $libHPHc$ || \" \" || \" \" || $libHPHp$ || \" \" || $libHPHa$ || \"entrée, couloir, salle de bains, W-C, véranda...\"", + "id": "kd5qr5s5", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + }, + { + "declarationType": "HELP", + "Text": "$liHPHc2$", + "id": "kmdb0cfn", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "HPH" + }, + { + "Response": [ + { + "CollectedVariableReference": "kycvqn8e", + "id": "jojveb38", + "mandatory": false, + "Datatype": { + "Maximum": "100", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "0" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Plus de chambres à coucher que de pièces d'habitation", + "Expression": "(not(isnull($HCHA$)) and not(isnull($HPH$))) and (cast($HCHA$,integer)>=0) and (cast($HPH$,integer)>=1) and (cast($HCHA$,integer)>cast($HPH$,integer)) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Vous avez indiqué avoir plus de chambres que de pièces d'habitation. Pouvez-vous corriger l'une de vos réponses ?", + "id": "kd5v8yrc" + }, + { + "post_collect": false, + "Description": "Autant de chambres à coucher que de pièces d'habitation", + "Expression": "(not(isnull($HCHA$)) and not(isnull($HPH$))) and (cast($HCHA$,integer)>=0) and (cast($HPH$,integer)>0) and (cast($HCHA$,integer)=cast($HPH$,integer)) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Vous avez indiqué avoir le même nombre de pièces d'habitation que de chambres. Pouvez-vous corriger l'une de vos réponses si votre logement ne comporte pas que des chambres ?", + "id": "kd5vidtf" + }, + { + "post_collect": false, + "Description": "alerte si décimales", + "Expression": "(instr(cast(nvl($HCHA$,0),string),\".\") <> 0) or (instr(cast(nvl($HCHA$,0),string),\",) <> 0) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Merci de ne pas renseigner de chiffres après la virgule.", + "id": "kyac5okn" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Parmi ces \" || cast($HPH$,string) || \" pièces, combien de chambres avez-vous ?\"" + ], + "id": "jojv4yqe", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Ne pas compter les pièces ayant un usage mixte (exemple : salon le jour, chambre la nuit). Compter cependant les chambres également utilisées comme bureau.", + "id": "js0hn6b6", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "HCHA" + }, + { + "Response": [ + { + "CollectedVariableReference": "kwkduxho", + "id": "jojv2uvg", + "mandatory": false, + "Datatype": { + "Maximum": "1000", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/metrecarre", + "type": "NumericDatatypeType", + "Decimals": "2" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Message incitatif", + "Expression": " nvl($HST$,0) = 0)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Votre réponse est essentielle pour la description de votre logement, pouvez-vous indiquer la surface habitable de votre logement ?", + "id": "kd5wc9ru" + }, + { + "post_collect": false, + "Description": "1 seule pièce et plus de 81 m² ", + "Expression": "not(nvl($HST$,0) = 0) and not(nvl($HPH$,0) = 0 ) and (cast($HST$,integer)>=81) and (cast($HPH$,integer)=1) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Êtes-vous certain(e) que votre logement mesure cette surface et comporte une seule pièce ?", + "id": "kd7a736l" + }, + { + "post_collect": false, + "Description": "Plus d'une pièce avec une surface moyenne par pièce inférieure à 8 m² ou supérieure à 56 m² ", + "Expression": "not(nvl($HPH$,0) = 0) and not(nvl($HST$,0) =0 ) and (cast($HST$,integer)>8) and (cast($HPH$,integer)>1) and ((cast($libHSTmoy$,integer) <= 8) or (cast($libHSTmoy2$,integer) >=56)) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Êtes-vous certain(e) que votre logement mesure cette surface et comporte ce nombre de pièces d'habitation ?", + "id": "kd7hfnyx" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quelle est la surface totale habitable de votre logement\" || $libHST$ || \" ?\"" + ], + "id": "jojvc0vt", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Inclure la surface des couloirs, pièces de service, cuisine...", + "id": "kd5v90t1", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + }, + { + "declarationType": "HELP", + "Text": "Ne pas inclure la surface des balcons, loggias, vérandas, terrasses, garages, caves, combles non aménagés.", + "id": "kd5vkr8v", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "HST" + }, + { + "Response": [ + { + "CollectedVariableReference": "jojve9fu", + "id": "jojvggis", + "mandatory": false, + "CodeListReference": "jojvev63", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Compte tenu du nombre de personnes de votre ménage, comment estimez-vous le nombre de pièces dont vous disposez ?" + ], + "ClarificationQuestion": [], + "id": "jojv1ux1", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "HPEUP" + }, + { + "Response": [ + { + "CollectedVariableReference": "kv29e4km", + "id": "kv29rcjs", + "mandatory": false, + "CodeListReference": "jojvm75x", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Quelle est la hauteur sous plafond de votre pièce principale ?" + ], + "ClarificationQuestion": [], + "id": "kv29cjdq", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Lorsque la pièce principale est située sous des combles, la hauteur sous plafond varie. Choisir la réponse correspondant à la partie la plus haute de la pièce.", + "id": "ljny78kx", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "HAUT" + } + ], + "Name": "M5T5" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "Dépendances du logement" + ], + "id": "kv852xbl", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "jrupwwi7", + "id": "jrupywt4", + "mandatory": false, + "CodeListReference": "jncy00q3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Avez-vous une véranda ?" + ], + "ClarificationQuestion": [], + "id": "jrupq1i5", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Local habitable tout au long de l'année (entièrement clos et couvert) et pouvant être chauffé.", + "id": "jrupk9tg", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + }, + { + "declarationType": "HELP", + "Text": "Nous allons maintenant passer en revue les dépendances de votre logement.", + "id": "kq7nq067", + "position": "BEFORE_QUESTION_TEXT", + "DeclarationMode": [ + "CATI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "KVE" + }, + { + "Response": [ + { + "CollectedVariableReference": "kycvstc6", + "id": "jrupxa50", + "mandatory": false, + "Datatype": { + "Maximum": "999", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/metrecarre", + "type": "NumericDatatypeType", + "Decimals": "2" + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Quelle est la surface de cette véranda ?" + ], + "id": "jrupsr80", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "KSV" + }, + { + "Response": [ + { + "CollectedVariableReference": "jrupxrwb", + "id": "jrupnl2c", + "mandatory": false, + "CodeListReference": "jncy00q3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"La surface de la véranda (\" || cast($KSV$,string) || \" m²) a t-elle été prise en compte dans la surface totale du logement (\" || cast($HST$,string) || \" m²) que vous avez indiquée précédemment ?\"" + ], + "ClarificationQuestion": [], + "id": "jrupy93h", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "KSV1" + }, + { + "Response": [ + { + "CollectedVariableReference": "jrupt0ur", + "id": "jruppxki", + "mandatory": false, + "CodeListReference": "jncy00q3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Avez-vous un balcon\"|| $libKBA$ || \" ou une loggia ?\"" + ], + "ClarificationQuestion": [], + "id": "jrupzl7m", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "KBA" + }, + { + "Response": [ + { + "CollectedVariableReference": "kycvqfbg", + "id": "jruq3o9c", + "mandatory": false, + "Datatype": { + "Maximum": "999", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/metrecarre", + "type": "NumericDatatypeType", + "Decimals": "2" + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quelle est la surface totale des balcons\"|| $libKBA$ || \" ou loggias ?\"" + ], + "id": "jrupx7iz", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "KSB" + }, + { + "Response": [ + { + "CollectedVariableReference": "jrupwd1k", + "id": "jruq36wn", + "mandatory": false, + "CodeListReference": "jncy00q3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "$libKJA$ || \" un jardin, un terrain ou une cour réservés à votre usage personnel ?\"" + ], + "ClarificationQuestion": [], + "id": "jruq98v2", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "KJA" + }, + { + "Response": [ + { + "CollectedVariableReference": "kycw6iix", + "id": "jruq3zg9", + "mandatory": false, + "Datatype": { + "Maximum": "100000", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/metrecarre", + "type": "NumericDatatypeType", + "Decimals": "2" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Message d'alerte d'espace", + "Expression": "nvl($KSJPI$,0)=0", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "La surface de votre terrain n'a pas pu être enregistrée, merci de ne pas renseigner d'espaces dans votre réponse.", + "id": "kycvzuns" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "Quelle est la surface totale de votre terrain ?" + ], + "id": "jruq8x6e", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Inclure la surface de la maison sur le terrain ​", + "id": "js06xqg5", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + }, + { + "declarationType": "HELP", + "Text": "\"Prendre en compte le terrain sur lequel est construite la maison et réservé à l'usage personnel \" || $libKSJPI$ || \"y compris les parcelles séparées.\"", + "id": "kmdhsqjj", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "KSJPI" + }, + { + "Response": [ + { + "CollectedVariableReference": "kd8v17b1", + "id": "kd8uw761", + "mandatory": false, + "CodeListReference": "jruq09km", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Pouvez-vous néanmoins indiquer dans quelle tranche se situe la surface du terrain ?" + ], + "ClarificationQuestion": [], + "id": "jruq85av", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "KSJPIT" + }, + { + "Response": [ + { + "CollectedVariableReference": "kycx9mkh", + "id": "jruq4wnm", + "mandatory": false, + "Datatype": { + "Maximum": "99999", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/metrecarre", + "type": "NumericDatatypeType", + "Decimals": "2" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "surface de l'emprise au sol supérieure à celle du lot (terrain, maison...)", + "Expression": "(cast(nvl($KSMI$,0),integer)>cast(nvl($KSJPI$,0),integer)) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Votre réponse ne semble pas compatible avec la surface totale du terrain (maison comprise). Pouvez-vous corriger l’une ou l’autre de vos réponses ?", + "id": "kd8w3aqz" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "Quelle est la surface de terrain couverte par la maison (emprise au sol) ?" + ], + "id": "jruq4was", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Inclure la surface du garage\" || $libKSMI$ || \".\"", + "id": "jruq9370", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + }, + { + "declarationType": "HELP", + "Text": "Exclure les abris de jardin, les piscines, ...", + "id": "kd8v214t", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + }, + { + "declarationType": "HELP", + "Text": "L’emprise au sol est la surface totale qu’occupe votre maison sur le terrain", + "id": "lex5yu47", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "KSMI" + }, + { + "Response": [ + { + "CollectedVariableReference": "kycxer12", + "id": "jruq3lzc", + "mandatory": false, + "Datatype": { + "Maximum": "99999", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/metrecarre", + "type": "NumericDatatypeType", + "Decimals": "2" + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Quelle est la surface de ces espaces privatifs attenants au logement ?" + ], + "id": "jruq6fv0", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "KSJPC" + }, + { + "Response": [ + { + "CollectedVariableReference": "jruqlp4e", + "id": "jruqc60v", + "mandatory": false, + "CodeListReference": "jncy00q3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Disposez-vous d'espaces extérieurs (jardin, terrain, cour...) en tant que parties communes de la résidence ou de la copropriété ?" + ], + "ClarificationQuestion": [], + "id": "jruqlf39", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Exclure les emplacements de stationnement, les voies de circulation et les espaces utilisés uniquement à des fins professionnelles.", + "id": "jruse4ew", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "KJC" + }, + { + "Response": [ + { + "CollectedVariableReference": "kd8wl7m1", + "id": "kd8wm7rc", + "mandatory": false, + "CodeListReference": "jruscsna", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Quelle est la surface de ces espaces partagés ?" + ], + "ClarificationQuestion": [], + "id": "jrusmgfq", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "KSJC" + }, + { + "Response": [ + { + "CollectedVariableReference": "l3irm90u", + "id": "l3is6e23", + "mandatory": false, + "CodeListReference": "l3is40qi", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "De combien de voitures les habitants de ce logement disposent-ils ?" + ], + "ClarificationQuestion": [], + "id": "l3irva5g", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Ne pas compter les voitures ou les fourgonnettes à usage exclusivement professionnel.", + "id": "l3is5o9g", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "GVOIT" + }, + { + "FlowControl": [], + "Label": [ + "\"Au sein de \" || $libHTLC2$ ||\", disposez-vous d'un emplacement privatif de stationnement ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "kf8972di", + "MappingTarget": "1" + }, + { + "MappingSource": "kf893sen", + "MappingTarget": "2" + }, + { + "MappingSource": "kf89737h", + "MappingTarget": "3" + }, + { + "MappingSource": "kf89ei4h", + "MappingTarget": "4" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "jruss6vy" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "KGA", + "Response": [ + { + "CollectedVariableReference": "jrusrp45", + "id": "kf8972di", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "jrusyukj", + "id": "kf893sen", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "jruspgnz", + "id": "kf89737h", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "jruswkr3", + "id": "kf89ei4h", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Contrôle de cohérence, si \"Non\" pas d'autres réponses possibles.", + "Expression": "((nvl($KGA4$, false) = true and nvl($KGA1$, false) = true) or \n (nvl($KGA4$, false) = true and nvl($KGA2$, false) = true) or \n (nvl($KGA4$, false) = true and nvl($KGA3$, false) = true) )\n", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "La réponse \"Non, ni garage, ni box, ni parking\" n'en permet pas d'autre. Pouvez-vous corriger votre réponse ?", + "id": "kw119emh" + } + ], + "depth": 3, + "ClarificationQuestion": [], + "id": "jrusjpqy", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Plusieurs réponses possibles.", + "id": "kd8yemf2", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + }, + { + "declarationType": "HELP", + "Text": "Inclure les emplacements que vous utilisez pour votre usage personnel ou que vous mettez en location.", + "id": "kmdk73lg", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + }, + { + "FlowControl": [], + "Label": [ + "\"En dehors de \"|| $libHTLC2$ || \", disposez-vous d'un emplacement privatif de stationnement ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "kf8913r1", + "MappingTarget": "1" + }, + { + "MappingSource": "kf89c33b", + "MappingTarget": "2" + }, + { + "MappingSource": "kf899mmw", + "MappingTarget": "3" + }, + { + "MappingSource": "kf8931vm", + "MappingTarget": "4" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "jruss6vy" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "KGAB", + "Response": [ + { + "CollectedVariableReference": "jrusz90d", + "id": "kf8913r1", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "jrusxk5i", + "id": "kf89c33b", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "jrut5rs4", + "id": "kf899mmw", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "jrusvxw1", + "id": "kf8931vm", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Contrôle de cohérence si \"Non\" pas d'autre réponse possible", + "Expression": "((nvl($KGA14$, false) = true and nvl($KGA11$, false) = true) or \n (nvl($KGA14$, false) = true and nvl($KGA12$, false) = true) or \n (nvl($KGA14$, false) = true and nvl($KGA13$, false) = true) )\n", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "La réponse \"Non, ni garage, ni box, ni parking\" n'en permet pas d'autre, pouvez-vous corriger votre réponse ?", + "id": "kw115ihn" + } + ], + "depth": 3, + "ClarificationQuestion": [], + "id": "jrut4vl7", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Plusieurs réponses possibles.", + "id": "jrut167a", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + }, + { + "declarationType": "HELP", + "Text": "Inclure les emplacements que vous utilisez pour votre usage personnel ou que vous mettez en location.", + "id": "kmdk288d", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + }, + { + "Response": [ + { + "CollectedVariableReference": "jrutat73", + "id": "jrut3e99", + "mandatory": false, + "CodeListReference": "jncy00q3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Disposez-vous d'une cave ou d'un sous-sol (même si vous ne l'utilisez pas) ?" + ], + "ClarificationQuestion": [], + "id": "jrut0i0j", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Prendre en compte les sous-sols utilisés comme garage.", + "id": "jrusw7aw", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "KCA" + }, + { + "Response": [ + { + "CollectedVariableReference": "kmdllzgd", + "id": "kd91gp0d", + "mandatory": false, + "CodeListReference": "joirusc3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Disposez-vous, dans les parties communes de \" || $libKVELO$ || \", d'un local fermé où vous pouvez déposer un vélo ou une poussette ?\"" + ], + "ClarificationQuestion": [], + "id": "jrusu349", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Hors cave ou local privatif.", + "id": "kmdk6e4h", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "KVELO" + }, + { + "Response": [ + { + "CollectedVariableReference": "koiozi77", + "id": "jrutza0y", + "mandatory": false, + "CodeListReference": "jncy00q3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Disposez-vous d'un grenier ou de combles aménageables, mais non aménagés en pièces d'habitation ?" + ], + "ClarificationQuestion": [], + "id": "jrutj5co", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "KGRA" + }, + { + "Response": [ + { + "CollectedVariableReference": "jrutqxjn", + "id": "jruu5wfk", + "mandatory": false, + "CodeListReference": "jncy00q3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Disposez-vous d'un sous-sol non aménagé en pièces d'habitation ?" + ], + "ClarificationQuestion": [], + "id": "jruu4ry3", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "KSOA" + }, + { + "Response": [ + { + "CollectedVariableReference": "jruul7hb", + "id": "jruui69o", + "mandatory": false, + "CodeListReference": "jncy00q3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Avez-vous une piscine fixe d'une profondeur de plus de 1 mètre ?" + ], + "ClarificationQuestion": [], + "id": "jruue197", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Exclure les piscines démontables et les piscines hors-sol.", + "id": "jruu3t31", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "KPISC" + }, + { + "Response": [ + { + "CollectedVariableReference": "jruu4qwz", + "id": "jruuibm5", + "mandatory": false, + "CodeListReference": "jncy00q3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Disposez-vous d'une grange non aménagée en pièces d'habitation ?" + ], + "ClarificationQuestion": [], + "id": "jruubukg", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "KGRAA" + } + ], + "Name": "M6_T1" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "Équipement sanitaire" + ], + "id": "kv857tu4", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "kmdsauvj", + "id": "kmdshzqk", + "mandatory": false, + "CodeListReference": "kmdsf01l", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Comment votre logement est-il alimenté en eau ?" + ], + "ClarificationQuestion": [], + "id": "jruuncm0", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "KAO1" + }, + { + "Response": [ + { + "CollectedVariableReference": "kdabf33q", + "id": "kdabltlu", + "mandatory": false, + "CodeListReference": "jruv7r7y", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Disposez-vous de W-C à l'intérieur du logement ?" + ], + "ClarificationQuestion": [], + "id": "jruv1cla", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "KWC1" + }, + { + "Response": [ + { + "CollectedVariableReference": "lfjeifdt", + "id": "lfjenhhf", + "mandatory": false, + "Datatype": { + "Maximum": "9", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "0 W-C déclarés", + "Expression": "nvl($KWCID$,0) = 0", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Vous avez indiqué posséder des W-C à l'intérieur de votre logement. Pouvez-vous indiquer combien ?", + "id": "kmf12gcp" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "Combien avez-vous de W-C ?" + ], + "id": "kmeu61l4", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "KWCID" + }, + { + "Response": [ + { + "CollectedVariableReference": "lfjgozaz", + "id": "lfjgw5h9", + "mandatory": false, + "CodeListReference": "ko8uzwua", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Vos W-C sont-ils situés dans une pièce indépendante ?" + ], + "ClarificationQuestion": [], + "id": "lfjgw27o", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "On exclut ici les W-C situés dans une autre pièce comme une salle de bain par exemple.", + "id": "lh5x9lsb", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "KWCIDB" + }, + { + "Response": [ + { + "CollectedVariableReference": "lfjeehxy", + "id": "lfjeoq03", + "mandatory": false, + "Datatype": { + "Maximum": "9", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Parmi vos \" || cast($KWCID$,string) || \" W-C, combien sont situés dans une pièce indépendante ?\"" + ], + "id": "lfjel2zf", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "On exclut ici les W-C situés dans une autre pièce comme une salle de bain par exemple.", + "id": "lfjehv20", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "KWCID2" + }, + { + "Response": [ + { + "CollectedVariableReference": "jruvg7ju", + "id": "jruuzwyy", + "mandatory": false, + "CodeListReference": "jncy00q3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Possédez-vous une salle d'eau ou une salle de bain (pièce contenant une douche ou une baignoire) ?" + ], + "ClarificationQuestion": [], + "id": "jruva8uu", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "KBD" + }, + { + "Response": [ + { + "CollectedVariableReference": "lfjenaet", + "id": "lfjf0wd7", + "mandatory": false, + "Datatype": { + "Maximum": "9", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "0 salle de bain ou d'eau déclarée", + "Expression": "nvl($KSE$,0) = 0", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Vous avez indiqué posséder au moins une salle d'eau ou de bain. Pouvez-vous indiquer leur nombre ?", + "id": "kmf0utsk" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "Combien avez-vous de salles d'eau ou de salles de bain ?" + ], + "id": "kksgd6fv", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "KSE" + }, + { + "Response": [ + { + "CollectedVariableReference": "lfjgt4a1", + "id": "lfjglmww", + "mandatory": false, + "CodeListReference": "ko8uzwua", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Votre salle d'eau ou de bain comporte-t-elle une baignoire ?" + ], + "ClarificationQuestion": [], + "id": "lfjgy3we", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "KSEB" + }, + { + "Response": [ + { + "CollectedVariableReference": "lfjeoa22", + "id": "lfjesou2", + "mandatory": false, + "Datatype": { + "Maximum": "9", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Parmi vos \" || cast($KSE$,string) || \" salles d’eau ou de bain, combien comportent une baignoire ?\"" + ], + "id": "lfjedybr", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "KSE2" + }, + { + "Response": [ + { + "CollectedVariableReference": "kmf0ywla", + "id": "kmf17z2u", + "mandatory": false, + "CodeListReference": "jncy00q3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Avez-vous une douche ou une baignoire installée dans une pièce destinée à un autre usage ?" + ], + "ClarificationQuestion": [], + "id": "kmf0xcox", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "KDLK1" + }, + { + "Response": [ + { + "CollectedVariableReference": "kmf0znd7", + "id": "kdaas2sy", + "mandatory": false, + "CodeListReference": "jruvifd2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Disposez-vous d'un ou plusieurs lavabos ?" + ], + "ClarificationQuestion": [], + "id": "jruv164k", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "KDLK2" + } + ], + "Name": "M7T1" + } + ], + "Name": "M5T0" + }, + { + "Control": [], + "depth": 1, + "FlowControl": [], + "genericName": "MODULE", + "Label": [ + "Opinion sur le logement actuel" + ], + "id": "joicksrx", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Nous allons nous intéresser maintenant à votre opinion sur vos conditions de logement.", + "id": "joiciihu", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CATI", + "CAPI", + "CAWI", + "PAPI" + ] + }, + { + "declarationType": "INSTRUCTION", + "Text": "Appuyer sur \"Continuer\" pour passer à la page suivante.", + "id": "kwggtqx5", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "kcui3ym0", + "id": "joicybdw", + "mandatory": false, + "CodeListReference": "joico0rb", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 2, + "FlowControl": [], + "Label": [ + "Comment estimez-vous vos conditions actuelles de logement ?" + ], + "ClarificationQuestion": [], + "id": "joicolgp", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "OLA" + }, + { + "Response": [ + { + "CollectedVariableReference": "joicxlh4", + "id": "jslhf6kb", + "mandatory": false, + "Datatype": { + "Maximum": "10", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "alerte si décimales", + "Expression": "(instr(cast(nvl($OLAD$,0),string),\".\") <> 0) or (instr(cast(nvl($OLAD$,0),string),\",) <> 0)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Merci de ne pas renseigner de chiffres après la virgule.", + "id": "kyac2w06" + } + ], + "depth": 2, + "FlowControl": [], + "Label": [ + "En tant qu’endroit pour vivre, quelle note globale de 1 à 10 donneriez-vous à votre logement ?" + ], + "id": "joiccm1l", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"10 correspond à la meilleure note, 1 à la plus mauvaise.\"", + "id": "kc21oley", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "OLAD" + }, + { + "FlowControl": [], + "Label": [ + "Votre logement présente-t-il les défauts suivants ?" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "l8bbx7nd", + "MappingTarget": "1" + }, + { + "MappingSource": "l8bc28f0", + "MappingTarget": "2" + }, + { + "MappingSource": "l8bccet1", + "MappingTarget": "3" + }, + { + "MappingSource": "l8bbz1zl", + "MappingTarget": "4" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "knioh1gp" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "OLAR1", + "Response": [ + { + "CollectedVariableReference": "l8bcd93y", + "id": "l8bbx7nd", + "CodeListReference": "joidufam", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "CollectedVariableReference": "l8bcdwlk", + "id": "l8bc28f0", + "CodeListReference": "joidufam", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "CollectedVariableReference": "l8bc5gu4", + "id": "l8bccet1", + "CodeListReference": "joidufam", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "CollectedVariableReference": "l8bc5mej", + "id": "l8bbz1zl", + "CodeListReference": "joidufam", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 2, + "ClarificationQuestion": [], + "id": "knio1w9d", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "questionType": "MULTIPLE_CHOICE" + }, + { + "FlowControl": [], + "Label": [ + "Du fait d’un handicap, d’un problème de santé ou d’une avancée en âge, les occupants du logement ont-ils des difficultés" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "l7j1nesf", + "MappingTarget": "1" + }, + { + "MappingSource": "l7j1n6nb", + "MappingTarget": "2" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "l7j1ikot" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "OLAR1DIF", + "Response": [ + { + "CollectedVariableReference": "l7j1r0z9", + "id": "l7j1nesf", + "CodeListReference": "ko8uzwua", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "CollectedVariableReference": "l7j1iifa", + "id": "l7j1n6nb", + "CodeListReference": "ko8uzwua", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 2, + "ClarificationQuestion": [], + "id": "l7j1k2un", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "questionType": "MULTIPLE_CHOICE" + }, + { + "FlowControl": [], + "Label": [ + "Du fait d’un handicap, d’un problème de santé ou d’une avancée en âge, les occupants du logement ont-ils des difficultés" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "l7j1x8s4", + "MappingTarget": "1" + }, + { + "MappingSource": "l7j1mfn2", + "MappingTarget": "2" + }, + { + "MappingSource": "l7j1stx0", + "MappingTarget": "3" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "l7j1t7dy" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "OLAR1DIFCO", + "Response": [ + { + "CollectedVariableReference": "l7j1si95", + "id": "l7j1x8s4", + "CodeListReference": "ko8uzwua", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "CollectedVariableReference": "l7j1ye16", + "id": "l7j1mfn2", + "CodeListReference": "ko8uzwua", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "CollectedVariableReference": "l7j1utvh", + "id": "l7j1stx0", + "CodeListReference": "ko8uzwua", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 2, + "ClarificationQuestion": [], + "id": "l7j1y65o", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "questionType": "MULTIPLE_CHOICE" + }, + { + "FlowControl": [], + "Label": [ + "Votre logement présente-t-il les autres défauts suivants ?" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "ko3x6kz1", + "MappingTarget": "1" + }, + { + "MappingSource": "ko3wyuod", + "MappingTarget": "2" + }, + { + "MappingSource": "ko3xdviu", + "MappingTarget": "3" + }, + { + "MappingSource": "ko3xbz9m", + "MappingTarget": "4" + }, + { + "MappingSource": "ko3x1rx5", + "MappingTarget": "5" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "joicw344" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "OLAR2", + "Response": [ + { + "CollectedVariableReference": "ko3w2bxw", + "id": "ko3x6kz1", + "CodeListReference": "joidufam", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "CollectedVariableReference": "ko3vokyj", + "id": "ko3wyuod", + "CodeListReference": "joidufam", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "CollectedVariableReference": "ko3vwv7a", + "id": "ko3xdviu", + "CodeListReference": "joidufam", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "CollectedVariableReference": "ko3w348b", + "id": "ko3xbz9m", + "CodeListReference": "joidufam", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "CollectedVariableReference": "ko3w0jql", + "id": "ko3x1rx5", + "CodeListReference": "joidufam", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 2, + "ClarificationQuestion": [], + "id": "kninrf3p", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "questionType": "MULTIPLE_CHOICE" + }, + { + "FlowControl": [], + "Label": [ + "L'environnement de votre logement présente-t-il les défauts suivants ?" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "l7kmxkga", + "MappingTarget": "1" + }, + { + "MappingSource": "l7kmxnbz", + "MappingTarget": "2" + }, + { + "MappingSource": "l7knhcad", + "MappingTarget": "3" + }, + { + "MappingSource": "l7kn7vvm", + "MappingTarget": "4" + }, + { + "MappingSource": "l7knchw6", + "MappingTarget": "5" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "knioesnw" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "OLAR3", + "Response": [ + { + "CollectedVariableReference": "l7kggzyr", + "id": "l7kmxkga", + "CodeListReference": "joidufam", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "CollectedVariableReference": "l7kgfi7w", + "id": "l7kmxnbz", + "CodeListReference": "joidufam", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "CollectedVariableReference": "l7kg4e0c", + "id": "l7knhcad", + "CodeListReference": "joidufam", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "CollectedVariableReference": "l7kgku7a", + "id": "l7kn7vvm", + "CodeListReference": "joidufam", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "CollectedVariableReference": "l7kg81bv", + "id": "l7knchw6", + "CodeListReference": "joidufam", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 2, + "ClarificationQuestion": [], + "id": "knioggcs", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "questionType": "MULTIPLE_CHOICE" + }, + { + "Response": [ + { + "CollectedVariableReference": "l3yl99ds", + "id": "l3ylipbg", + "mandatory": false, + "CodeListReference": "ko8uzwua", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 2, + "FlowControl": [], + "Label": [ + "Est-il difficile de trouver un lieu d’éducation qui vous convienne à proximité de votre logement ?" + ], + "ClarificationQuestion": [], + "id": "l3yli2im", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "OLAR4" + }, + { + "Response": [ + { + "CollectedVariableReference": "ks4l98bk", + "id": "knixdt6f", + "mandatory": false, + "CodeListReference": "joirusc3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 2, + "FlowControl": [], + "Label": [ + "Vous plaisez-vous dans votre quartier (ou village) ?" + ], + "ClarificationQuestion": [], + "id": "kniwyjy0", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "OQA" + }, + { + "Response": [ + { + "CollectedVariableReference": "kniwsz0y", + "id": "jslihsyh", + "mandatory": false, + "Datatype": { + "Maximum": "10", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "0" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "alerte si décimales", + "Expression": "(instr(cast(nvl($OQAD$,0),string),\".\") <> 0) or (instr(cast(nvl($OQAD$,0),string),\",) <> 0) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Merci de ne pas renseigner de chiffres après la virgule.", + "id": "kyacg2tf" + } + ], + "depth": 2, + "FlowControl": [], + "Label": [ + "Quelle note globale de 1 à 10 donneriez-vous à votre quartier (ou village) ?" + ], + "id": "joidpl4s", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"10 correspond à la meilleure note, 1 à la plus mauvaise.\"", + "id": "kculau3o", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "OQAD" + } + ], + "Name": "M14T0" + }, + { + "Control": [], + "depth": 1, + "FlowControl": [], + "genericName": "MODULE", + "Label": [ + "Expériences éventuelles de situations difficiles de logement" + ], + "id": "joinv857", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Nous allons nous intéresser aux éventuels problèmes de logement qu'ont pu connaître les membres de votre ménage dans le passé, dans des périodes particulièrement difficiles de l’existence : difficultés financières, professionnelles, personnelles…", + "id": "kq819sio", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + }, + { + "declarationType": "INSTRUCTION", + "Text": "Appuyer sur \"Continuer\" pour passer à la page suivante.", + "id": "kwglf1ui", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "SequenceType", + "Child": [ + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "\"Situations difficiles de logement dans le passé concernant \" || $PRENOM$" + ], + "id": "joio33nc", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "FlowControl": [], + "Label": [ + "if ($PRENOM$=$PRENOMREF$) then \"Avez-vous connu les situations suivantes, que vous n'avez pas choisies ?\" else $PRENOM$ || \" a-t-\" || $LIB_SUJET$ || \" connu une ou plusieurs des situations suivantes, qu'\"|| $LIB_SUJET$ || \" n'avait pas choisies ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "ljvxgvru", + "MappingTarget": "1" + }, + { + "MappingSource": "ljvxk44t", + "MappingTarget": "2" + }, + { + "MappingSource": "ljvxgmyh", + "MappingTarget": "3" + }, + { + "MappingSource": "ljvxbn8w", + "MappingTarget": "4" + }, + { + "MappingSource": "ljvxplyt", + "MappingTarget": "5" + }, + { + "MappingSource": "ljvxncns", + "MappingTarget": "6" + }, + { + "MappingSource": "ljvxcc4t", + "MappingTarget": "7" + }, + { + "MappingSource": "ljvxobb5", + "MappingTarget": "8" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "joinxitz" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "SDL1", + "Response": [ + { + "CollectedVariableReference": "ljvx2z41", + "id": "ljvxgvru", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "ljvxagy6", + "id": "ljvxk44t", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "ljvx7dgb", + "id": "ljvxgmyh", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "ljvx2686", + "id": "ljvxbn8w", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "ljvx4oqr", + "id": "ljvxplyt", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "ljvwqn5l", + "id": "ljvxncns", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "ljvwqe7r", + "id": "ljvxcc4t", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "ljvx7dtp", + "id": "ljvxobb5", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Compatibilité dernière modalité", + "Expression": "((nvl($SDL18$, false) = true and nvl($SDL17$, false) = true) or \r\n (nvl($SDL18$, false) = true and nvl($SDL16$, false) = true) or\r\n (nvl($SDL18$, false) = true and nvl($SDL15$, false) = true) or\r\n (nvl($SDL18$, false) = true and nvl($SDL14$, false) = true) or \r\n (nvl($SDL18$, false) = true and nvl($SDL13$, false) = true) or\r\n (nvl($SDL18$, false) = true and nvl($SDL12$, false) = true) or\r\n (nvl($SDL18$, false) = true and nvl($SDL11$, false) = true) \r\n )", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "La réponse \"aucune de ces situations\" n’en permet pas d’autre. Merci de corriger votre réponse.", + "id": "kw5epjnp" + } + ], + "depth": 3, + "ClarificationQuestion": [], + "id": "joinz4wo", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Plusieurs réponses possibles", + "id": "jsx8ktt3", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + }, + { + "declarationType": "HELP", + "Text": "if ($PRENOM$=$PRENOMREF$) then \"Indiquez si oui ou non vous avez connu les situations suivantes : \" else \"Indiquez si oui ou non \" || $PRENOM$ || \" a connu les situations suivantes : \"", + "id": "ksj7s0h1", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CATI", + "CAPI" + ] + }, + { + "declarationType": "INSTRUCTION", + "Text": "if ($PRENOM$=$PRENOMREF$) then \"Cochez les situations que vous avez connues. \" else \"Cochez les situations que \" || $PRENOM$ || \" a connues. \"", + "id": "ksj79ywf", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + }, + { + "Response": [ + { + "CollectedVariableReference": "kqr1gig2", + "id": "kqr0rhwq", + "mandatory": false, + "CodeListReference": "kqr0x5ml", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Comment la chambre d'hôtel était-elle payée ?" + ], + "ClarificationQuestion": [], + "id": "kqr0kx1e", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SDL2" + }, + { + "Response": [ + { + "CollectedVariableReference": "kpb8rrpp", + "id": "kpb8gc24", + "mandatory": false, + "CodeListReference": "jncy00q3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Était-ce un centre d'hébergement pour demandeurs d'asile ou réfugiés ?" + ], + "ClarificationQuestion": [], + "id": "kpb8b0vw", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SDL4" + }, + { + "Response": [ + { + "CollectedVariableReference": "kpb8odq8", + "id": "kpb93tlo", + "mandatory": false, + "CodeListReference": "kpb8y2tb", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Combien de situations de ce type \" || (if ($PRENOM$=$PRENOMREF$) then \"avez-vous\" else $PRENOM$ || \" a-t-\" || $LIB_SUJET$) || \" connues ?\"" + ], + "ClarificationQuestion": [], + "id": "joio5w41", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SDN1" + }, + { + "Response": [ + { + "CollectedVariableReference": "kzfuty83", + "id": "joiot0f2", + "mandatory": false, + "CodeListReference": "joiodz52", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Combien de temps au total \" || (if ($PRENOM$=$PRENOMREF$) then \"avez-vous\" else $PRENOM$ || \" a-t-\" || $LIB_SUJET$) || \" été dans \" || $libSDT$ || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "joioebt6", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SDT1" + }, + { + "Response": [ + { + "CollectedVariableReference": "kw10ohak", + "id": "kw112u99", + "mandatory": false, + "CodeListReference": "kw10q170", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "if ($PRENOM$=$PRENOMREF$) then \"Quelle est la première situation de ce type que vous avez connue ?\" else \"Quelle est la première situation de ce type que \" || $PRENOM$ || \" a connue ?\"" + ], + "ClarificationQuestion": [], + "id": "kudultmi", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SDL_SIT1" + }, + { + "Response": [ + { + "CollectedVariableReference": "lgp3idvc", + "id": "lerabv6d", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Contrôle de borne sur les dates", + "Expression": "cast(nvl($SDTAD$,\"\"),integer) < 1900 or cast(nvl($SDTAD$,\"\"),integer) >2024", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Merci d'indiquer une année comprise entre 1900 et 2024.", + "id": "lgp3gej9" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"En quelle année \" || if (isnull($SDN1$)) then ( if ($PRENOM$=$PRENOMREF$) then \"avez-vous été pour la première fois dans une de ces situations ?\" else $PRENOM$ || \" a-t-\" || $LIB_SUJET$ || \" été pour la première fois dans une de ces situations ?\" ) else (if ($SDN1$=\"1\") then \"cette situation a-t-elle débuté ?\" else ( if ($PRENOM$=$PRENOMREF$) then \"avez-vous été dans cette première situation ?\" else $PRENOM$ || \" a-t-\" || $LIB_SUJET$ || \" été dans cette première situation ?\" ))" + ], + "id": "joo0yx5k", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "SDTAD" + }, + { + "Response": [ + { + "CollectedVariableReference": "kpbcfjwd", + "id": "kpbc6p3x", + "mandatory": false, + "CodeListReference": "joiodz52", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"La première fois que \" || (if ($PRENOM$=$PRENOMREF$) then \"vous avez été\" else $PRENOM$ || \" a été\") || \" dans cette situation, combien de temps cela a-t-il duré ?\"" + ], + "ClarificationQuestion": [], + "id": "joo1m3x2", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SDT2" + }, + { + "Response": [ + { + "CollectedVariableReference": "kw10kba9", + "id": "kudvddn0", + "mandatory": false, + "CodeListReference": "kw10q170", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "if ($PRENOM$=$PRENOMREF$) then \"Quelle est la dernière situation de ce type que vous avez connue ?\" else \"Quelle est la dernière situation de ce type que \" || $PRENOM$ || \" a connue ?\"" + ], + "ClarificationQuestion": [], + "id": "kudvobyc", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SDL_SIT2" + }, + { + "Response": [ + { + "CollectedVariableReference": "lgp3kba4", + "id": "lerb71l0", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Contrôle de borne sur les dates", + "Expression": "cast(nvl($SDTAD_SIT2$,\"\"),integer) < 1900 or cast(nvl($SDTAD_SIT2$,\"\"),integer) >2024", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Merci d'indiquer une année comprise entre 1900 et 2024.", + "id": "lgp3sypv" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"En quelle année cette dernière situation a-t-elle débuté pour \" || ( if ($PRENOM$=$PRENOMREF$) then \"vous ?\" else $PRENOM$ || \"?\" )" + ], + "id": "kudvxpft", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "SDTAD_SIT2" + }, + { + "Response": [ + { + "CollectedVariableReference": "kuguebox", + "id": "kudwbquk", + "mandatory": false, + "CodeListReference": "joiodz52", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"La dernière fois que \" || (if ($PRENOM$=$PRENOMREF$) then \"vous avez été\" else $PRENOM$ || \" a été\") || \" dans cette situation, combien de temps cela a-t-il duré ?\"" + ], + "ClarificationQuestion": [], + "id": "kudwrcyp", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SDT2_SIT2" + } + ], + "Name": "M15T1" + } + ], + "Name": "M15T0" + }, + { + "Control": [], + "depth": 1, + "FlowControl": [], + "genericName": "MODULE", + "Label": [ + "Situations passées et logements précédents" + ], + "id": "kv86jli3", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Nous allons maintenant vous poser quelques questions sur les changements de situation survenus dans votre ménage depuis le 1er \" || $libMOISENQ$ || \" \" || cast($ANNEENQmoins4$,string) || \".\"", + "id": "kv87umqk", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + }, + { + "declarationType": "HELP", + "Text": "\"On désigne ici le ménage comme étant l'ensemble des occupants du logement. \" || $libSTOC1$", + "id": "kv886tad", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + }, + { + "declarationType": "INSTRUCTION", + "Text": "Appuyer sur \"Continuer\" pour passer à la page suivante.", + "id": "kwgligyr", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "SequenceType", + "Child": [ + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "Changement dans la situation du ménage depuis 4 ans" + ], + "id": "joo1spv3", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "FlowControl": [], + "Label": [ + "\"Par rapport au 1er \" || $libMOISENQ$ || \" \" || cast($ANNEENQmoins4$,string) || \", comment la composition de votre ménage a-t-elle évolué ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "kx6fakgl", + "MappingTarget": "1" + }, + { + "MappingSource": "kx6f2koy", + "MappingTarget": "2" + }, + { + "MappingSource": "kx6f0lvo", + "MappingTarget": "3" + }, + { + "MappingSource": "kx6eypbj", + "MappingTarget": "4" + }, + { + "MappingSource": "kx6ey11w", + "MappingTarget": "5" + }, + { + "MappingSource": "kx6f2xy1", + "MappingTarget": "6" + }, + { + "MappingSource": "kx6fe1ev", + "MappingTarget": "7" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "joo1g3aq" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "VMODM", + "Response": [ + { + "CollectedVariableReference": "kx6danaj", + "id": "kx6fakgl", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "kx6d9hz0", + "id": "kx6f2koy", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "kx6dmkot", + "id": "kx6f0lvo", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "kx6ds7l5", + "id": "kx6eypbj", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "kx6dbabe", + "id": "kx6ey11w", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "kx6dpiga", + "id": "kx6f2xy1", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "kx6dl3wb", + "id": "kx6fe1ev", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Modalité \"Aucune modification\" n'en permet pas d'autre", + "Expression": "((nvl($VMODM7$,false) = true and nvl($VMODM6$,false) = true) or (nvl($VMODM7$,false) = true and nvl($VMODM5$,false) = true) or (nvl($VMODM7$,false) = true and nvl($VMODM4$,false) = true) or (nvl($VMODM7$,false) = true and nvl($VMODM3$,false) = true) or (nvl($VMODM7$,false) = true and nvl($VMODM2$,false) = true) or (nvl($VMODM7$,false) = true and nvl($VMODM1$,false) = true))", + "during_collect": false, + "criticity": "ERROR", + "FailMessage": "La réponse « Aucune modification » n’en permet pas d’autre. Merci de corriger votre réponse.", + "id": "ko9up2vr" + } + ], + "depth": 3, + "ClarificationQuestion": [], + "id": "joo1h434", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Plusieurs réponses possibles", + "id": "jopta1p5", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + }, + { + "FlowControl": [], + "Label": [ + "\"Depuis le 1er \" || $libMOISENQ$ || \" \" || cast($ANNEENQmoins4$,string) || \", est-ce qu’un ou plusieurs membres de votre ménage, y-compris vous-même, a été confronté à un des changements de situation suivants relatifs à l’emploi ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "lex5m47r", + "MappingTarget": "1" + }, + { + "MappingSource": "lex5fzlx", + "MappingTarget": "2" + }, + { + "MappingSource": "lex5ok5v", + "MappingTarget": "3" + }, + { + "MappingSource": "lex5grsp", + "MappingTarget": "4" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "joo1pxqg" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "VMODP1", + "Response": [ + { + "CollectedVariableReference": "lex4d3r3", + "id": "lex5m47r", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lex4isof", + "id": "lex5fzlx", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lex4lx0t", + "id": "lex5ok5v", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lex48qey", + "id": "lex5grsp", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Modalité \"Aucune modification\" n'en permet pas d'autre", + "Expression": "((nvl($VMODP14$, false) = true and nvl($VMODP13$, false) = true) or \r\n (nvl($VMODP14$, false) = true and nvl($VMODP12$, false) = true) or \r\n (nvl($VMODP14$, false) = true and nvl($VMODP11$, false) = true) \r\n )", + "during_collect": false, + "criticity": "ERROR", + "FailMessage": "La réponse « Aucune modification » n’en permet pas d’autre. Merci de corriger votre réponse.", + "id": "kod6chdo" + } + ], + "depth": 3, + "ClarificationQuestion": [], + "id": "joo22fbd", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Plusieurs réponses possibles", + "id": "joptatl0", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + }, + { + "FlowControl": [], + "Label": [ + "\"Depuis le 1er \" || $libMOISENQ$ || \" \" || cast($ANNEENQmoins4$,string) || \", est-ce qu’un ou plusieurs membres de votre ménage, y-compris vous-même, a connu un des changements professionnels suivants ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "koe0ya2t", + "MappingTarget": "1" + }, + { + "MappingSource": "koe12q3u", + "MappingTarget": "2" + }, + { + "MappingSource": "koe0vlva", + "MappingTarget": "3" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "koe0mn5d" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "VMODP2", + "Response": [ + { + "CollectedVariableReference": "koe0hkq6", + "id": "koe0ya2t", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "koe0tx5v", + "id": "koe12q3u", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "koe0kdpd", + "id": "koe0vlva", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Aucune modifications n'en permet pas d'autre", + "Expression": "((nvl($VMODP23$,false) = true and nvl($VMODP22$,false) = true) or (nvl($VMODP23$,false) = true and nvl($VMODP21$,false) = true))", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "La réponse « Aucune modification » n’en permet pas d’autre. Merci de corriger votre réponse.", + "id": "koe0tg6o" + } + ], + "depth": 3, + "ClarificationQuestion": [], + "id": "koe0u2zg", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "questionType": "MULTIPLE_CHOICE" + }, + { + "Response": [ + { + "CollectedVariableReference": "joph55si", + "id": "joph3nia", + "mandatory": false, + "CodeListReference": "joph1lnb", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Depuis le 1er \" || $libMOISENQ$ || \" \" || cast($ANNEENQmoins4$,string) || \", un des membres de votre ménage actuel, y compris vous-même, a-t-il vendu un ou plusieurs logements ?\"" + ], + "ClarificationQuestion": [], + "id": "jopgtrq1", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Que ce soit une résidence principale, secondaire, un logement vacant ou loué, etc.", + "id": "kpbd40p7", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "VVENDL" + }, + { + "Response": [ + { + "CollectedVariableReference": "jopgywd6", + "id": "joph5rt8", + "mandatory": false, + "CodeListReference": "jopgr6lb", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Comment aviez-vous fait l’acquisition de ce logement maintenant vendu ?" + ], + "ClarificationQuestion": [], + "id": "jopgvwb0", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "$libVFFH$", + "id": "jslhsfkf", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "VFFH" + }, + { + "Response": [ + { + "CollectedVariableReference": "kpbdceom", + "id": "joph67ad", + "mandatory": false, + "CodeListReference": "jncy00q3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "$libVFLA$ || \" était-il votre résidence principale ?\"" + ], + "ClarificationQuestion": [], + "id": "jopgzovi", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "VFLA" + }, + { + "Response": [ + { + "CollectedVariableReference": "koeaf3w8", + "id": "koebfojq", + "mandatory": false, + "CodeListReference": "joph1lnb", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Depuis le 1er \" || $libMOISENQ$ || \" \" || cast($ANNEENQmoins4$,string) || \", un des membres de votre ménage actuel, y compris vous-même, a-t-il acheté un ou plusieurs logements, comme une résidence principale, secondaire, un logement destiné à être loué, etc. ?\"" + ], + "ClarificationQuestion": [], + "id": "koeabibm", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "VACHAL" + }, + { + "Response": [ + { + "CollectedVariableReference": "jophl1ay", + "id": "jophbp5b", + "mandatory": false, + "CodeListReference": "joph7hjs", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Par rapport au prix du \" || $libVBILLOG1$ || \", comment était le prix du \" || $libVBILLOG2$ || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "joph9za3", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "VBILLOG" + } + ], + "Name": "M15T2" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "Mobilité depuis 4 ans" + ], + "id": "jophfbfc", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "kwzcaigg", + "id": "jopl57w1", + "mandatory": false, + "CodeListReference": "jopkxxc6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Où habitiez-vous le 1er \" || $libMOISENQ$ || \" \" || cast($ANNEENQmoins4$,string) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "jopkquw3", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Nous allons maintenant poser quelques questions sur votre situation au 1er \" || $libMOISENQ$ || \" \" || cast($ANNEENQmoins4$,string) || \", et vos déménagements depuis cette date.\"", + "id": "kwglkyat", + "position": "BEFORE_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "CATI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "VLR" + }, + { + "Response": [ + { + "CollectedVariableReference": "lgrk1tun", + "id": "lgrjy0k9", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quelle commune habitiez-vous le 1er \" || $libMOISENQ$ || \" \" || cast($ANNEENQmoins4$,string) || \" ?\"" + ], + "id": "jopl7p41", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [ + { + "declarationType": "INSTRUCTION", + "Text": "Saisir les premières lettres de la commune afin de la sélectionner dans la liste proposée", + "id": "kwzauu2j", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "COMMUNEPASSEE" + }, + { + "Response": [ + { + "CollectedVariableReference": "lgrjlmvu", + "id": "lgrjy7me", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel département habitiez-vous le 1er \" || $libMOISENQ$ || \" \" || cast($ANNEENQmoins4$,string) || \" ?\"" + ], + "id": "joplihpv", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [ + { + "declarationType": "INSTRUCTION", + "Text": "Saisir le code ou les premières lettres du département afin de le sélectionner dans la liste proposée", + "id": "joplaxge", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "DEPART" + }, + { + "Response": [ + { + "CollectedVariableReference": "koebzx5n", + "id": "joplrr4n", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "30" + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Indiquer le nom complet de la commune :" + ], + "id": "joplkxrd", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "VCRCOM" + }, + { + "Response": [ + { + "CollectedVariableReference": "lgrk2ip4", + "id": "joplnmbl", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel pays résidiez-vous le 1er \" || $libMOISENQ$ || \" \" || cast($ANNEENQmoins4$,string) || \" ?\"" + ], + "id": "jopldlvn", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [ + { + "declarationType": "INSTRUCTION", + "Text": "Saisir les premières lettres du pays afin de le sélectionner dans la liste proposée", + "id": "kwzbrdy1", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "VPRA" + }, + { + "Response": [ + { + "CollectedVariableReference": "kpbflvzr", + "id": "joplwq56", + "mandatory": false, + "CodeListReference": "joplgdcw", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Au 1er \" || $libMOISENQ$ || \" \" || cast($ANNEENQmoins4$,string) || \", quelle était votre situation ?\"" + ], + "ClarificationQuestion": [], + "id": "joplorns", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "VLA1" + }, + { + "Response": [ + { + "CollectedVariableReference": "kv6q8dbw", + "id": "jopm22x3", + "mandatory": false, + "CodeListReference": "joplsxki", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Au 1er \" || $libMOISENQ$ || \" \" || cast($ANNEENQmoins4$,string) || \", comment votre ménage occupait-il ce logement ?\"" + ], + "ClarificationQuestion": [], + "id": "joplzrmo", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "VSO1" + }, + { + "Response": [ + { + "CollectedVariableReference": "joprwp5e", + "id": "joprppxd", + "mandatory": false, + "CodeListReference": "joprlb0a", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Quel était le régime juridique du loyer ?" + ], + "ClarificationQuestion": [], + "id": "jopri4xh", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "VSY" + }, + { + "Response": [ + { + "CollectedVariableReference": "kw2gkwc0", + "id": "joprtstn", + "mandatory": false, + "Datatype": { + "Maximum": "1000000", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/euro", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "alerte si décimales", + "Expression": "(instr(cast(nvl($VLOYER$,0),string),\".\") <> 0) or (instr(cast(nvl($VLOYER$,0),string),\",) <> 0) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Merci de ne pas renseigner de chiffres après la virgule.", + "id": "kyacl8mo" + }, + { + "post_collect": false, + "Description": "Message d'alerte d'espace pour les numériques pouvant >1000\n", + "Expression": "nvl($VLOYER$,0)=0", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Le montant du loyer n'a pas pu être enregistré, merci de ne pas renseigner d'espaces dans votre réponse.", + "id": "kyd62io4" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel était le montant du loyer mensuel au 1er \" || $libMOISENQ$ || \" \" || cast($ANNEENQmoins4$,string) || \" ?\"" + ], + "id": "joprsm9u", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Loyer hors charges.", + "id": "kpbfr1bb", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "VLOYER" + }, + { + "Response": [ + { + "CollectedVariableReference": "jops6h5f", + "id": "jops8mhm", + "mandatory": false, + "CodeListReference": "joidufam", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Bénéficiez-vous au 1er \" || $libMOISENQ$ || \" \" || cast($ANNEENQmoins4$,string) || \" de l’allocation logement ou de l’aide personnalisée au logement (APL) ?\"" + ], + "ClarificationQuestion": [], + "id": "joprlyql", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "VAID" + }, + { + "Response": [ + { + "CollectedVariableReference": "jops1khv", + "id": "jops9bgj", + "mandatory": false, + "Datatype": { + "Maximum": "24", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "alerte si décimales", + "Expression": "(instr(cast(nvl($VIN$,0),string),\".\") <> 0) or (instr(cast(nvl($VIN$,0),string),\",) <> 0) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Merci de ne pas renseigner de chiffres après la virgule.", + "id": "kyaceqp1" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Combien de personnes résidaient dans le logement occupé au 1er \" || $libMOISENQ$ || \" \" || cast($ANNEENQmoins4$,string) || \", y compris vous-même ?\"" + ], + "id": "joprp441", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "VIN" + } + ], + "Name": "M15T3" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "\"Caractéristiques du logement occupé au 1er \" || $libMOISENQ$ || \" \" || cast($ANNEENQmoins4$,string)" + ], + "id": "joprv8x6", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "kpbnb2ji", + "id": "jopskga3", + "mandatory": false, + "CodeListReference": "joprub8u", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"À quoi correspondait le logement occupé au 1er \" || $libMOISENQ$ || \" \" || cast($ANNEENQmoins4$,string) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "jopruzlo", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "VTL1" + }, + { + "Response": [ + { + "CollectedVariableReference": "kyd74l5b", + "id": "jopspuot", + "mandatory": false, + "Datatype": { + "Maximum": "999", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/metrecarre", + "type": "NumericDatatypeType", + "Decimals": "2" + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quelle était la surface habitable de ce logement occupé au 1er \" || $libMOISENQ$ || \" \" || cast($ANNEENQmoins4$,string) || \" ?\"" + ], + "id": "jopsc29x", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Compter la surface habitable y compris les pièces annexes utilisées pour un usage personnel.", + "id": "jopshrd0", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + }, + { + "declarationType": "HELP", + "Text": "Exclure les pièces annexes louées, sous-louées ou prêtées et les pièces professionnelles.", + "id": "kpbnmqra", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "VSURF" + }, + { + "Response": [ + { + "CollectedVariableReference": "kwqppd2c", + "id": "jopsp5li", + "mandatory": false, + "Datatype": { + "Maximum": "20", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "alerte si décimales", + "Expression": "(instr(cast(nvl($VPI$,0),string),\".\") <> 0) or (instr(cast(nvl($VPI$,0),string),\",) <> 0) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Merci de ne pas renseigner de chiffres après la virgule.", + "id": "kyacenkr" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel était le nombre de pièces d'habitation de ce logement occupé au 1er \" || $libMOISENQ$ || \" \" || cast($ANNEENQmoins4$,string) || \" ?\"" + ], + "id": "jops4c0x", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Compter la cuisine si elle avait plus de 12 m² et les pièces annexes utilisées pour usage personnel.\r\n\r\n​", + "id": "jops3ast", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + }, + { + "declarationType": "HELP", + "Text": "Exclure l'entrée, les couloirs, la salle de bains, les W-C, les vérandas, les pièces annexes louées, sous-louées ou prêtées et les pièces à usage professionnel.", + "id": "kpbnwlcz", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "VPI" + }, + { + "Response": [ + { + "CollectedVariableReference": "kwf30i1n", + "id": "jopsq146", + "mandatory": false, + "Datatype": { + "Maximum": "100", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/annee", + "type": "NumericDatatypeType", + "Decimals": "1" + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Combien d’années avez-vous vécu dans ce logement occupé au 1er \" || $libMOISENQ$ || \" \" || cast($ANNEENQmoins4$,string) || \" ?\"" + ], + "id": "jopsjl1n", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "VANCIEN" + } + ], + "Name": "M15T4" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "\"Situation professionnelle au 1er \" || $libMOISENQ$ || \" \" || cast($ANNEENQmoins4$,string)" + ], + "id": "kovfldqd", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "jopspcqh", + "id": "jopsucph", + "mandatory": false, + "CodeListReference": "jopsh9ng", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quelle était votre situation professionnelle au 1er \" || $libMOISENQ$ || \" \" || cast($ANNEENQmoins4$,string) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "jopsiigq", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "VOP" + } + ], + "Name": "M15T5" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "\"Mobilité depuis le 1er \" || $libMOISENQ$ || \" \" || cast($ANNEENQmoins4$,string)" + ], + "id": "jopsqquo", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "kovfq1kr", + "id": "jopt3q7k", + "mandatory": false, + "Datatype": { + "Maximum": "9", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "alerte si décimales", + "Expression": "(instr(cast(nvl($VND$,0),string),\".\") <> 0) or (instr(cast(nvl($VND$,0),string),\",) <> 0) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Merci de ne pas renseigner de chiffres après la virgule.", + "id": "kyact2jb" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Combien de fois avez-vous déménagé depuis le 1er \" || $libMOISENQ$ || \" \" || cast($ANNEENQmoins4$,string) || \" ?\"" + ], + "id": "jopsrdb3", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "VND" + }, + { + "Response": [ + { + "CollectedVariableReference": "kovg7s7r", + "id": "joptyklz", + "mandatory": false, + "CodeListReference": "joptnagd", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Juste avant d'habiter dans votre logement actuel, où résidiez-vous ?" + ], + "ClarificationQuestion": [], + "id": "joptkb9d", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Maintenant, nous allons parler du logement que vous occupiez juste avant d'habiter dans votre logement actuel.", + "id": "kpbpgn1h", + "position": "BEFORE_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "VLRD" + }, + { + "Response": [ + { + "CollectedVariableReference": "kovgkxii", + "id": "jopueeyk", + "mandatory": false, + "CodeListReference": "jopu65h0", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Avant d'occuper votre logement actuel, quelle était votre situation ?" + ], + "ClarificationQuestion": [], + "id": "jopu7wfr", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "VLAB1" + }, + { + "Response": [ + { + "CollectedVariableReference": "kw2gvhjo", + "id": "jopuivt4", + "mandatory": false, + "CodeListReference": "joplsxki", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Comment votre ménage occupait-il le précédent logement ?" + ], + "ClarificationQuestion": [], + "id": "jopua1hn", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "VDD1" + }, + { + "Response": [ + { + "CollectedVariableReference": "jopuhwhs", + "id": "jopur7zt", + "mandatory": false, + "CodeListReference": "jopur3k1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Quel était le régime juridique du loyer ?" + ], + "ClarificationQuestion": [], + "id": "jopuofnr", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "VDSY" + } + ], + "Name": "M15T6" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "Caractéristiques du précédent logement occupé" + ], + "id": "kovgtboa", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "kx35g3oc", + "id": "jopuwk7u", + "mandatory": false, + "CodeListReference": "joprub8u", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "À quoi correspondait votre précédent logement ?" + ], + "ClarificationQuestion": [], + "id": "jopuhzbr", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "VTLD1" + }, + { + "Response": [ + { + "CollectedVariableReference": "kwkeb00s", + "id": "jopurvqk", + "mandatory": false, + "Datatype": { + "Maximum": "997", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/metrecarre", + "type": "NumericDatatypeType", + "Decimals": "2" + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Quelle était la surface de votre précédent logement ?" + ], + "id": "jopukm75", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Compter la surface habitable y compris les pièces annexes utilisées pour un usage personnel.", + "id": "kovh3bgb", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ] + }, + { + "declarationType": "HELP", + "Text": "Exclure les pièces annexes louées, sous-louées ou prêtées et les pièces professionnelles.", + "id": "kovh0e18", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "VSURFD" + }, + { + "Response": [ + { + "CollectedVariableReference": "kovhaucj", + "id": "joput4wx", + "mandatory": false, + "Datatype": { + "Maximum": "20", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "alerte si décimales", + "Expression": "(instr(cast(nvl($VPID$,0),string),\".\") <> 0) or (instr(cast(nvl($VPID$,0),string),\",) <> 0) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Merci de ne pas renseigner de chiffres après la virgule.", + "id": "kyacqdlj" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "Quel était le nombre de pièces de votre précédent logement ?" + ], + "id": "joputbjc", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Compter la cuisine si elle avait plus de 12 m² et les pièces annexes utilisées pour usage personnel.", + "id": "jrw9jmbu", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + }, + { + "declarationType": "HELP", + "Text": "Exclure l'entrée, les couloirs, la salle de bain, les W-C, les vérandas, les pièces annexes louées, sous-louées ou prêtées et les pièces à usage professionnel.", + "id": "kpbq0xkh", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "VPID" + } + ], + "Name": "M15T7" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "Raison du dernier déménagement" + ], + "id": "kovjkvfn", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "l3isg7nm", + "id": "l3iyeb2s", + "mandatory": false, + "CodeListReference": "kovj0vbo", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Avez-vous déménagé pour changer de statut d’occupation ?" + ], + "ClarificationQuestion": [], + "id": "jopvzl28", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "VRAIS1" + }, + { + "FlowControl": [], + "Label": [ + "Avez-vous déménagé du fait de l'évolution de votre situation personnelle ?" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "lgqs0z70", + "MappingTarget": "1" + }, + { + "MappingSource": "lgqs316l", + "MappingTarget": "2" + }, + { + "MappingSource": "lgqscpq0", + "MappingTarget": "3" + }, + { + "MappingSource": "lgqs6idu", + "MappingTarget": "4" + }, + { + "MappingSource": "lgqrxc96", + "MappingTarget": "5" + }, + { + "MappingSource": "lgqs60bf", + "MappingTarget": "6" + }, + { + "MappingSource": "lgqs27ee", + "MappingTarget": "7" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "koviy969" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "VRAIS2", + "Response": [ + { + "CollectedVariableReference": "lgqrcqfr", + "id": "lgqs0z70", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lgqrccma", + "id": "lgqs316l", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lgqrd9wl", + "id": "lgqscpq0", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lgqre9xa", + "id": "lgqs6idu", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lgqrl4yl", + "id": "lgqrxc96", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lgqrrxaf", + "id": "lgqs60bf", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lgqrgiwu", + "id": "lgqs27ee", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Unicité de la modalité \"Non ...\" ", + "Expression": "((nvl($VRAIS26$, false) = true and nvl($VRAIS25$, false) = true) or \r\n (nvl($VRAIS26$, false) = true and nvl($VRAIS24$, false) = true) or\r\n (nvl($VRAIS26$, false) = true and nvl($VRAIS23$, false) = true) or\r\n (nvl($VRAIS26$, false) = true and nvl($VRAIS22$, false) = true) or\r\n (nvl($VRAIS26$, false) = true and nvl($VRAIS21$, false) = true) \r\n )", + "during_collect": false, + "criticity": "ERROR", + "FailMessage": "La modalité \"Non, aucune de ces situations\" ne permet pas d'en sélectionner d'autres. Merci de bien vouloir corriger votre réponse.", + "id": "koybeudl" + } + ], + "depth": 3, + "ClarificationQuestion": [], + "id": "kovj0a8h", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Plusieurs réponses possibles", + "id": "kovj894p", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + }, + { + "FlowControl": [], + "Label": [ + "Avez-vous déménagé pour changer vos conditions de logement ?" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "kovj6smk", + "MappingTarget": "1" + }, + { + "MappingSource": "kovj16ho", + "MappingTarget": "2" + }, + { + "MappingSource": "koviym9y", + "MappingTarget": "3" + }, + { + "MappingSource": "kovjetbt", + "MappingTarget": "4" + }, + { + "MappingSource": "kovj1rc6", + "MappingTarget": "5" + }, + { + "MappingSource": "kovj8oex", + "MappingTarget": "6" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "kovj3f3o" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "VRAIS3", + "Response": [ + { + "CollectedVariableReference": "koviwqxd", + "id": "kovj6smk", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "kovj5fdc", + "id": "kovj16ho", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "kovj7be1", + "id": "koviym9y", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "kovj8j8m", + "id": "kovjetbt", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "kovj6qby", + "id": "kovj1rc6", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "kovjbr8b", + "id": "kovj8oex", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Unicité modalité \"Non ...\"", + "Expression": "((nvl($VRAIS36$, false) = true and nvl($VRAIS35$, false) = true) or \r\n (nvl($VRAIS36$, false) = true and nvl($VRAIS34$, false) = true) or\r\n (nvl($VRAIS36$, false) = true and nvl($VRAIS33$, false) = true) or\r\n (nvl($VRAIS36$, false) = true and nvl($VRAIS32$, false) = true) or\r\n (nvl($VRAIS36$, false) = true and nvl($VRAIS31$, false) = true) \r\n )", + "during_collect": false, + "criticity": "ERROR", + "FailMessage": "La modalité \"Non, aucune de ces situations\" ne permet pas d'en sélectionner d'autres. Merci de bien vouloir corriger votre réponse.", + "id": "koyb65df" + } + ], + "depth": 3, + "ClarificationQuestion": [], + "id": "kovirkvq", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Plusieurs réponses possibles", + "id": "kovj7ehq", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + }, + { + "FlowControl": [], + "Label": [ + "Avez-vous déménagé pour effectuer un rapprochement ?" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "kovj5e5b", + "MappingTarget": "1" + }, + { + "MappingSource": "kovj1u7h", + "MappingTarget": "2" + }, + { + "MappingSource": "kovj9p1r", + "MappingTarget": "3" + }, + { + "MappingSource": "kovj8tl5", + "MappingTarget": "4" + }, + { + "MappingSource": "kovj34ma", + "MappingTarget": "5" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "koviyjcm" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "VRAIS4", + "Response": [ + { + "CollectedVariableReference": "kovjbzl4", + "id": "kovj5e5b", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "kovjdxc0", + "id": "kovj1u7h", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "kovj2w62", + "id": "kovj9p1r", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "kovj476f", + "id": "kovj8tl5", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "kovj0swx", + "id": "kovj34ma", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Unicité modalité \"Non ... \"", + "Expression": "((nvl($VRAIS45$, false) = true and nvl($VRAIS44$, false) = true) or \r\n (nvl($VRAIS45$, false) = true and nvl($VRAIS43$, false) = true) or\r\n (nvl($VRAIS45$, false) = true and nvl($VRAIS42$, false) = true) or\r\n (nvl($VRAIS45$, false) = true and nvl($VRAIS41$, false) = true) \r\n )", + "during_collect": false, + "criticity": "ERROR", + "FailMessage": "La modalité \"Non, aucune de ces situations\" ne permet pas d'en sélectionner d'autres. Merci de bien vouloir corriger votre réponse.", + "id": "koybdzl2" + } + ], + "depth": 3, + "ClarificationQuestion": [], + "id": "kovj5q33", + "TargetMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Plusieurs réponses possibles", + "id": "kovjfgo3", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + }, + { + "Response": [ + { + "CollectedVariableReference": "lgnvgzaa", + "id": "lgmg7py5", + "mandatory": false, + "CodeListReference": "lgmga7g1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Avez-vous été contraint de déménager ?" + ], + "ClarificationQuestion": [], + "id": "lgmgi33v", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "INSTRUCTION", + "Text": "Indiquez la raison principale.", + "id": "lgns2wkv", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "VRAIS5" + } + ], + "Name": "M15T8" + } + ], + "Name": "M15_suite" + }, + { + "Control": [], + "depth": 1, + "FlowControl": [], + "genericName": "MODULE", + "Label": [ + "Utilisation d'Internet, du téléphone et informations de contact" + ], + "id": "kqa0lqp4", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Pour conclure, nous allons vous poser les dernières questions portant sur votre utilisation du téléphone et d’Internet. Ces réponses seront utiles pour la suite de nos travaux d'analyse des données de l'enquête. Nous souhaiterions également recueillir vos informations de contact.", + "id": "kw0t9gwz", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "CATI" + ] + }, + { + "declarationType": "INSTRUCTION", + "Text": "Appuyer sur \"Continuer\" pour passer à la page suivante.", + "id": "kwjf9zen", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "kp5b57zt", + "id": "kp5ay97j", + "mandatory": false, + "CodeListReference": "kp5afd7f", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Message incitatif", + "Expression": "nvl($TELFIXE$, \"\") = \"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Cette information est importante pour établir des données représentatives, il est important que vous y répondiez, merci par avance.", + "id": "kp5badxr" + } + ], + "depth": 2, + "FlowControl": [], + "Label": [ + "Vous ou une autre personne de votre ménage, décrochez-vous lorsque votre téléphone fixe sonne ?" + ], + "ClarificationQuestion": [], + "id": "kp5apvf3", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "TELFIXE" + }, + { + "Response": [ + { + "CollectedVariableReference": "kp5bkum2", + "id": "kp5bnv1m", + "mandatory": false, + "CodeListReference": "kp5b81ae", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Message incitatif", + "Expression": "nvl($TELMOB$, \"\") = \"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Cette information est importante pour établir des données représentatives, il est important que vous y répondiez, merci par avance.", + "id": "kp5buq9j" + } + ], + "depth": 2, + "FlowControl": [], + "Label": [ + "Décrochez-vous lorsque votre téléphone mobile sonne ?" + ], + "ClarificationQuestion": [], + "id": "kp5au0iu", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "TELMOB" + }, + { + "Response": [ + { + "CollectedVariableReference": "kp5bf8kw", + "id": "kp5bdswc", + "mandatory": false, + "CodeListReference": "kp5bdcd2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Message incitatif", + "Expression": "nvl($UWEB$, \"\") = \"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "Cette information est importante pour établir des données représentatives, il est important que vous y répondiez, merci par avance.", + "id": "kp5blv2y" + } + ], + "depth": 2, + "FlowControl": [], + "Label": [ + "Comment avez-vous utilisé Internet, au cours des trois derniers mois, en moyenne ?" + ], + "ClarificationQuestion": [], + "id": "kp5bjbzg", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Quel que soit le lieu (domicile, travail) et le type de support (ordinateur, smartphone...)", + "id": "kp5bt2q8", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "UWEB" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "Destinataires des courriers" + ], + "id": "kqwjjak7", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "kbamo67f", + "id": "kbamirtb", + "mandatory": false, + "CodeListReference": "k1qjtfk1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Les courriers que nous vous envoyons dans le cadre de cette enquête sont adressés à : \" || $libCHGNC$ || \". Cela vous convient-il ?\"" + ], + "ClarificationQuestion": [], + "id": "kbamkrlv", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "CHGNC" + }, + { + "Response": [ + { + "CollectedVariableReference": "kuh4iw0i", + "id": "knefys19", + "mandatory": false, + "CodeListReference": "kneexxy3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Civilité du \" || if (not(isnull($NOMVOUS_D2$)) and $NOMVOUS_D2$<>\"\") then \"premier destinataire :\" else \" destinataire :\"" + ], + "ClarificationQuestion": [], + "id": "kbaxq9l0", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Pouvez-vous indiquer le destinataire des courriers ?", + "id": "kwjirnmi", + "position": "BEFORE_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "CIVCOLL" + }, + { + "Response": [ + { + "CollectedVariableReference": "kr0g0725", + "id": "kr0fwd91", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Prénom du \" || if (not(isnull($NOMVOUS_D2$)) and $NOMVOUS_D2$<>\"\") then \"premier destinataire :\" else \"destinataire :\"" + ], + "id": "kr0fw3n6", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PRENOMCOLL" + }, + { + "Response": [ + { + "CollectedVariableReference": "kr0fw68t", + "id": "kr0fwk40", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "40" + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Nom du \" || if (not(isnull($NOMVOUS_D2$)) and $NOMVOUS_D2$<>\"\") then \"premier destinataire :\" else \"destinataire :\"" + ], + "id": "kr0fn06f", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "NOMCOLL" + }, + { + "Response": [ + { + "CollectedVariableReference": "kwjjwc87", + "id": "kwjixod8", + "mandatory": false, + "CodeListReference": "ko8uzwua", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Souhaitez-vous ajouter un deuxième destinataire au courrier que nous vous envoyons ?" + ], + "ClarificationQuestion": [], + "id": "kwjivaa1", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "CHGNC2" + }, + { + "Response": [ + { + "CollectedVariableReference": "kuh49jbb", + "id": "kr0fen5r", + "mandatory": false, + "CodeListReference": "kneexxy3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Civilité du deuxième destinataire :" + ], + "ClarificationQuestion": [], + "id": "kr0fr82y", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Pouvez-vous indiquer le deuxième destinataire des courriers ?", + "id": "kwjjic7h", + "position": "BEFORE_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "CIVCOLL2" + }, + { + "Response": [ + { + "CollectedVariableReference": "kr0fk106", + "id": "kbbzo5z9", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Prénom du deuxième destinataire :" + ], + "id": "kbbzjgn8", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PRENOMCOLL2" + }, + { + "Response": [ + { + "CollectedVariableReference": "kr0fuxdc", + "id": "kbbzny35", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "40" + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Nom du deuxième destinataire :" + ], + "id": "kbbzhtx3", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "NOMCOLL2" + } + ], + "Name": "COURRIERS" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "Numéro de téléphone" + ], + "id": "kqwjuv1h", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "kqwjplxa", + "id": "kbay0dcb", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "10" + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "Pourriez-vous indiquer le numéro de téléphone à utiliser pour vous contacter ?" + ], + "id": "kbay0xfi", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Vos coordonnées seront éventuellement utilisées dans les semaines à venir dans le cadre de cette enquête. Elles ne seront ni conservées, ni transmises à un tiers.", + "id": "kksdc5ct", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + }, + { + "declarationType": "HELP", + "Text": "Ne pas mettre d'espace, de \"/\", de \"-\" ni de \".\" entre les numéros. Ex. : 0147200001", + "id": "kkscy2qd", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "NOTELCOLL" + } + ], + "Name": "NTELCOLL" + } + ], + "Name": "CORRESP" + }, + { + "Control": [], + "depth": 1, + "FlowControl": [], + "genericName": "MODULE", + "Label": [ + "Fin du questionnaire" + ], + "id": "kp6svrg1", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "$libFINS1$", + "id": "kpo8brbj", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ] + }, + { + "declarationType": "HELP", + "Text": "$libFINS12$", + "id": "kpo803df", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ] + }, + { + "declarationType": "INSTRUCTION", + "Text": "\"Merci de cliquer sur -Continuer- pour passer à la page suivante, puis sur -Envoyer- \" || $libENVS1$", + "id": "kpo7wfgt", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "SequenceType", + "Child": [], + "Name": "FIN_S1" + }, + { + "Control": [], + "depth": 1, + "FlowControl": [], + "genericName": "MODULE", + "Label": [ + "QUESTIONNAIRE_END" + ], + "id": "idendquest", + "TargetMode": [ + "CAWI", + "PAPI", + "CATI", + "CAPI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [], + "Name": "QUESTIONNAIRE_END" + } + ] +} \ No newline at end of file diff --git a/eno-core/src/test/resources/functional/pogues/pagination/pogues-lnycjn6n.json b/eno-core/src/test/resources/functional/pogues/pagination/pogues-lnycjn6n.json new file mode 100644 index 000000000..0539266d7 --- /dev/null +++ b/eno-core/src/test/resources/functional/pogues/pagination/pogues-lnycjn6n.json @@ -0,0 +1,37291 @@ +{ + "owner": "DG75-L120", + "FlowControl": [ + { + "Description": "", + "Expression": "$NAISMERFR$=\"1\"", + "id": "kwqgtj9l", + "IfTrue": "kwqgpbaj-kwqgpbaj" + }, + { + "Description": "", + "Expression": "$NAISMERET$=\"1\"", + "id": "kwqgofw6", + "IfTrue": "kwqghs5v-kwqghs5v" + }, + { + "Description": "", + "Expression": "NAISPERFR=\"1\"", + "id": "kwqhrj23", + "IfTrue": "kwqhag0w-kwqhag0w" + }, + { + "Description": "", + "Expression": "$NAISPERET$=\"1\"", + "id": "kwqhe9fb", + "IfTrue": "kwqhes0g-kwqhes0g" + }, + { + "Description": "", + "Expression": "EUENF=\"1\"", + "id": "kwqhxveb", + "IfTrue": "kwqia28d-kwqhx41j" + }, + { + "Description": "", + "Expression": "$ENF$ =\"1\" or isnull($ENF$)", + "id": "kwqijmkn", + "IfTrue": "kwqi5zsm-l4lfzig7" + }, + { + "Description": "", + "Expression": "$CJTENF$=\"1\"", + "id": "kwqiiuvx", + "IfTrue": "kwqiped3-kwqike0k" + }, + { + "Description": "", + "Expression": "$VITPER$=\"2\"", + "id": "kxa6vmwr", + "IfTrue": "kwqhpcal-kwqhpcal" + }, + { + "Description": "", + "Expression": "$SEPARCJ$=\"1\"", + "id": "kxa9zx7z", + "IfTrue": "kwqf6tax-kwqf6tax" + }, + { + "Description": "", + "Expression": "$PROFPER$ =\"1\"", + "id": "kze4iiaf", + "IfTrue": "kyitivzv-kwqgbi4p" + }, + { + "Description": "", + "Expression": "$COUPLE$=\"2\"", + "id": "l151hcqh", + "IfTrue": "l0qkj23a-l0qkj23a" + }, + { + "Description": "", + "Expression": "$COUPLE$ =\"1\" or $COUPLE$ =\"2\"", + "id": "l1545rzz", + "IfTrue": "l0qtbwgz-l0qtbwgz" + }, + { + "Description": "", + "Expression": "$SEPARCJ$=\"1\" ", + "id": "l1546y0o", + "IfTrue": "l154dqmv-l154dqmv" + }, + { + "Description": "", + "Expression": "$DCCJ$ =\"1\"", + "id": "l154e0px", + "IfTrue": "l154a301-l154a301" + }, + { + "Description": "", + "Expression": "$COUPLE$ =\"3\"", + "id": "l154jh7k", + "IfTrue": "l0qup8ap-l154a301" + }, + { + "Description": "", + "Expression": "$DCCJ$ =\"1\"", + "id": "l1ap58pe", + "IfTrue": "l157n2n3-l157n2n3" + }, + { + "Description": "", + "Expression": "$PROFPER$ =\"1\"", + "id": "l1f4lfjl", + "IfTrue": "l1f0f55u-l1f0f55u" + }, + { + "Description": "", + "Expression": "$LGTPER$=\"2\"", + "id": "l1f4xu2b", + "IfTrue": "l1f4kqk0-l1f4kqk0" + }, + { + "Description": "", + "Expression": "$VIV_PAR1$=\"1\" or isnull($VIV_PAR1$)", + "id": "l1f5y7ps", + "IfTrue": "l2kk4snz-l43yap7r" + }, + { + "Description": "", + "Expression": "$VITPER$=\"1\"", + "id": "l1f5m9rv", + "IfTrue": "l1f4n3g5-l1g3glxw" + }, + { + "Description": "", + "Expression": "$VITPER$=\"2\"", + "id": "l1f5zd1d", + "IfTrue": "l1f3zrah-l1f3zrah" + }, + { + "Description": "", + "Expression": "$FINETU$=\"1\"", + "id": "l1g432mc", + "IfTrue": "l1g3yk6q-l1g3yk6q" + }, + { + "Description": "", + "Expression": "isnull($DEJATRAV$) or $DEJATRAV$ =\"1\"", + "id": "l1g7w1v9", + "IfTrue": "l1g4pid1-l445x7tq" + }, + { + "Description": "", + "Expression": "$ENFPLAC$ =\"1\"", + "id": "l1ggotpn", + "IfTrue": "l1ggc7rf-l1ggc7rf" + }, + { + "Description": "", + "Expression": "$AIDE_APPORT1$", + "id": "l1ggxm5j", + "IfTrue": "l1ggssgl-l1ggssgl" + }, + { + "Description": "", + "Expression": "$AIDE_APPORT2$", + "id": "l1ggoetu", + "IfTrue": "l1ggm06b-l1ggm06b" + }, + { + "Description": "", + "Expression": "$AIDE_APPORT3$", + "id": "l1ggo3n3", + "IfTrue": "l1ggtznr-l1ggtznr" + }, + { + "Description": "", + "Expression": "$AIDE_RECUE1$ ", + "id": "l1gh5cvx", + "IfTrue": "l1ggpjd7-l1ggpjd7" + }, + { + "Description": "", + "Expression": "$AIDE_RECUE2$ ", + "id": "l1ggn2ni", + "IfTrue": "l1ggp8js-l1ggp8js" + }, + { + "Description": "", + "Expression": "$AIDE_RECUE3$ ", + "id": "l1ggzpng", + "IfTrue": "l1gh36ky-l1gh36ky" + }, + { + "Description": "", + "Expression": "$PETIT_ENF$ =\"1\"", + "id": "l1ghnjrp", + "IfTrue": "l1f6dz1j-l1f4yrno" + }, + { + "Description": "", + "Expression": "$PACS$ =\"1\"", + "id": "l27e5a64", + "IfTrue": "l0qu7e2g-l0qu7e2g" + }, + { + "Description": "", + "Expression": "$MARI$ =\"1\"", + "id": "l27dwvi6", + "IfTrue": "l0qul94p-l0qul94p" + }, + { + "Description": "", + "Expression": "$SEPARE$ =\"1\"", + "id": "l27dz4vc", + "IfTrue": "l27dzhpw-l27dzhpw" + }, + { + "Description": "", + "Expression": "$SEPARE$ =\"2\"", + "id": "l27edzwf", + "IfTrue": "l155mqhc-l155mqhc" + }, + { + "Description": "", + "Expression": "$PACS_U1$ =\"1\"", + "id": "l27dvgfz", + "IfTrue": "l27dns8a-l27dns8a" + }, + { + "Description": "", + "Expression": "$MARI_U1$ =\"1\"", + "id": "l27e9z6f", + "IfTrue": "l27e50tv-l27e50tv" + }, + { + "Description": "", + "Expression": "$SEPARE_U1$ =\"1\"", + "id": "l27dyrt7", + "IfTrue": "l27dzhzv-l27dzhzv" + }, + { + "Description": "", + "Expression": "$SEPARE_U1$ =\"2\"", + "id": "l27egeg1", + "IfTrue": "l27e0qyq-l27e0qyq" + }, + { + "Description": "", + "Expression": "$COUPLE$ =\"3\"", + "id": "l27f7ctt", + "IfTrue": "l5kszr2f-l155mqhc" + }, + { + "Description": "", + "Expression": "$VIV_PAR2$ =\"1\" or isnull($VIV_PAR2$)", + "id": "l2kjx5mh", + "IfTrue": "kwqgffvw-l4cjeqc0" + }, + { + "Description": "", + "Expression": "$VIV_PAR1$ =\"2\"", + "id": "l2roa0nx", + "IfTrue": "l2kkd59n-l2kkd59n" + }, + { + "Description": "", + "Expression": "$VIV_PAR2$ =\"2\"", + "id": "l2rog2px", + "IfTrue": "kwqg35i9-kwqg35i9" + }, + { + "Description": "", + "Expression": "$COUPLE$ =\"1\" and $RPPRENOMCONJ$ =\"conjoint1\"", + "id": "l34ft0fm", + "IfTrue": "l34fc9i3-l34fc9i3" + }, + { + "Description": "", + "Expression": "$RPPRENOMPAR1$ ne \"\"", + "id": "l3bp8o05", + "IfTrue": "l34ijdkx-l34ijdkx" + }, + { + "Description": "", + "Expression": "$LOG_PAR1$ =\"2\" or isnull($LOG_PAR1$)", + "id": "l3bq7xns", + "IfTrue": "l2kkb4xa-l4o8eale" + }, + { + "Description": "", + "Expression": "$IDCONJ$ =\"2\"", + "id": "l3lf1771", + "IfTrue": "l3leu7k6-l3leu7k6" + }, + { + "Description": "", + "Expression": "$VECU_PLACE$ =\"1\"", + "id": "l43u5x89", + "IfTrue": "l43u439h-l43u439h" + }, + { + "Description": "", + "Expression": "$TRAVACT$=\"2\"", + "id": "l445riqu", + "IfTrue": "l1g7iu0j-l1g7iu0j" + }, + { + "Description": "", + "Expression": "$PARENT_VIT_ENFLOG1$ =\"2\" or isnull($PARENT_VIT_ENFLOG1$)", + "id": "l4471oef", + "IfTrue": "l4iaicn8-kwqjmy9d" + }, + { + "Description": "", + "Expression": "$DC_ENFAIL1$=\"1\" or isnull($DC_ENFAIL1$)", + "id": "l448gpc1", + "IfTrue": "kwqk3ki3-l4onsf7y" + }, + { + "Description": "", + "Expression": "isnull($PROF_PAR1F$) and isnull($PROF_PAR1H$)", + "id": "l45ctt6n", + "IfTrue": "l45cjoj7-l45cjoj7" + }, + { + "Description": "", + "Expression": "isnull($PROF2PAR1$)", + "id": "l45cv29m", + "IfTrue": "l444wk86-l444wk86" + }, + { + "Description": "", + "Expression": "isnull($PROF_PAR2F$) and isnull($PROF_PAR2H$)", + "id": "l45cxcc4", + "IfTrue": "l444t31z-l444t31z" + }, + { + "Description": "", + "Expression": "isnull($PROF_PAR2_2$)", + "id": "l45d0ho3", + "IfTrue": "l45cyp3q-l45cyp3q" + }, + { + "Description": "", + "Expression": "$COUPLE$<>\"4\" and not(isnull($COUPLE$))", + "id": "l47547mr", + "IfTrue": "kwqaaqd3-kwqaaqd3" + }, + { + "Description": "", + "Expression": "($DC_ENFAIL1$=\"1\" or isnull($DC_ENFAIL1$)) and cast($ANAI_ENFAIL1$,integer) >= 2004", + "id": "l48e5rva", + "IfTrue": "kwqk3a58-l1gknpsx" + }, + { + "Description": "", + "Expression": "$ENFAV_C_U1$ =\"1\"", + "id": "l4cjjud7", + "IfTrue": "l4cja8pm-l4o5x7yq" + }, + { + "Description": "", + "Expression": "isnull($PROF_CH1$) and isnull($PROF_CH2$)", + "id": "l4ctksvo", + "IfTrue": "l43zea6v-l43zea6v" + }, + { + "Description": "", + "Expression": "isnull($PROF_C2$)", + "id": "l4cu1fn9", + "IfTrue": "l43z0mwc-l43z0mwc" + }, + { + "Description": "", + "Expression": "$PARENT_VIT_ENFLOG2$ =\"2\" or isnull($PARENT_VIT_ENFLOG2$)", + "id": "l4idm31n", + "IfTrue": "kwqjmujx-l4idgqx9" + }, + { + "Description": "", + "Expression": "$EUENF$ =\"1\" and not(isnull($EUENF$))", + "id": "l4ids50y", + "IfTrue": "l2j5xti5-l2j5xti5" + }, + { + "Description": "", + "Expression": "$PARENT_VIT_ENFLOG3$ =\"2\" or isnull($PARENT_VIT_ENFLOG3$)", + "id": "l4ldkvn7", + "IfTrue": "l4ld827i-l4lde13h" + }, + { + "Description": "", + "Expression": "cast($CBENFLOG$,integer) >=2", + "id": "l4ldgp1z", + "IfTrue": "l4lcvite-l4lcvite" + }, + { + "Description": "", + "Expression": "not(isnull($CBENFLOG$)) and $CBENFLOG$ >= 3", + "id": "l4le5g6d", + "IfTrue": "ljmvg6vc-ljmvg6vc" + }, + { + "Description": "", + "Expression": "$PARENT_VIT_ENFLOG4$ =\"2\" or isnull($PARENT_VIT_ENFLOG4$)", + "id": "l4leyz4g", + "IfTrue": "l4lemegm-l4lexatl" + }, + { + "Description": "", + "Expression": "not(isnull($CBENFLOG$)) and $CBENFLOG$ >= 4", + "id": "l4lf1r7t", + "IfTrue": "ljmv7iyw-ljmv7iyw" + }, + { + "Description": "", + "Expression": "$AIDE_APPORT4$", + "id": "l4lfld0y", + "IfTrue": "l4lf0y9m-l4lf0y9m" + }, + { + "Description": "", + "Expression": "$PARENT_VIT_ENFLOG5$ =\"2\" or isnull($PARENT_VIT_ENFLOG5$)", + "id": "l4lg52ne", + "IfTrue": "l4lfoek4-l4lg25av" + }, + { + "Description": "", + "Expression": "not(isnull($CBENFLOG$)) and $CBENFLOG$ >= 5", + "id": "l4lg777d", + "IfTrue": "ljmv5mgh-ljmv5mgh" + }, + { + "Description": "", + "Expression": "$DC_ENFAIL2$ =\"1\" or isnull($DC_ENFAIL2$)", + "id": "l4lnn260", + "IfTrue": "l4lhkbmw-l4ooebmj" + }, + { + "Description": "", + "Expression": "($DC_ENFAIL2$=\"1\" or isnull($DC_ENFAIL2$)) and cast($ANAI_ENFAIL2$,integer) >= 2004", + "id": "l4lnyip6", + "IfTrue": "l4liztyl-l4lmxke4" + }, + { + "Description": "", + "Expression": "$DC_ENFAIL3$ =\"1\" or isnull($DC_ENFAIL3$)", + "id": "l4lo0hmx", + "IfTrue": "l4lhdubm-l4ooe2gj" + }, + { + "Description": "", + "Expression": "($DC_ENFAIL3$=\"1\" or isnull($DC_ENFAIL3$)) and cast($ANAI_ENFAIL3$,integer) >= 2004", + "id": "l4lnxn2v", + "IfTrue": "l4ljddzv-l4lmszob" + }, + { + "Description": "", + "Expression": "$DC_ENFAIL4$ =\"1\" or isnull($DC_ENFAIL4$)", + "id": "l4lnrwjq", + "IfTrue": "l4lho0e2-l4oo1817" + }, + { + "Description": "", + "Expression": "($DC_ENFAIL4$=\"1\" or isnull($DC_ENFAIL4$)) and cast($ANAI_ENFAIL4$,integer) >= 2004", + "id": "l4lnlsmv", + "IfTrue": "l4lixcs2-l4lmvah7" + }, + { + "Description": "", + "Expression": "$DC_ENFAIL5$ =\"1\" or isnull($DC_ENFAIL5$)", + "id": "l4lnut2u", + "IfTrue": "l4lhn614-l4oo5bj9" + }, + { + "Description": "", + "Expression": "($DC_ENFAIL5$=\"1\" or isnull($DC_ENFAIL5$)) and cast($ANAI_ENFAIL5$,integer) >= 2004", + "id": "l4lnsxgt", + "IfTrue": "l4lizygc-l4lms6u4" + }, + { + "Description": "", + "Expression": "not(isnull($CBENFAIL$)) and $CBENFAIL$ >= 2", + "id": "l4lnzqvx", + "IfTrue": "ljmwx9yl-ljmwx9yl" + }, + { + "Description": "", + "Expression": "$CBENFAIL$ >=3", + "id": "l4lofwf5", + "IfTrue": "l4lnbfwj-l4lnbfwj" + }, + { + "Description": "", + "Expression": "not(isnull($CBENFAIL$)) and $CBENFAIL$ >= 3", + "id": "l4loausq", + "IfTrue": "ljmwnjny-ljmwnjny" + }, + { + "Description": "", + "Expression": "$CBENFAIL$ >=4", + "id": "l4loc553", + "IfTrue": "l4ln7mit-l4ln7mit" + }, + { + "Description": "", + "Expression": "$CBENFAIL$ >=5", + "id": "l4loiyj5", + "IfTrue": "l4lo05nx-l4lo05nx" + }, + { + "Description": "", + "Expression": "($LOG_PAR2A3$ and isnull($LOG_PAR2B$)) or ($LOG_PAR2B$ =\"2\" and (nvl($LOG_PAR2A1$, false) = false and nvl($LOG_PAR2A2$, false) = false and nvl($LOG_PAR2A3$, false) = false))", + "id": "l4lovlmo", + "IfTrue": "kwqgawqp-l4cjeqc0" + }, + { + "Description": "", + "Expression": "not(isnull($CBENFLOG$)) and $CBENFLOG$ >= 2", + "id": "l4nw2vbq", + "IfTrue": "ljmv0rhg-ljmv0rhg" + }, + { + "Description": "", + "Expression": "$NBENFLOG$ = \"1\" or isnull($NBENFLOG$) ", + "id": "l4nw37iw", + "IfTrue": "l4lcr3vb-l4lcr3vb" + }, + { + "Description": "", + "Expression": "$NBENFAIL$=\"1\" or isnull($NBENFAIL$)", + "id": "l4nwblbh", + "IfTrue": "l4lfzig7-l4lfzig7" + }, + { + "Description": "Test sur RP", + "Expression": "isnull($RPPRENOMPAR1$) or isnull($PRENOM_PAR1$) or replace(upper($RPPRENOMPAR1$),\" \",\"\") <> replace(upper($PRENOM_PAR1$),\" \",\"\") or cast($RPANAISPAR1$,integer) <> cast($ANAI_PAR1$, integer) ", + "id": "l4nwoi2w", + "IfTrue": "l2kk539f-llgqspnh" + }, + { + "Description": "", + "Expression": "$LIEUNAIS_CH$ =\"1\"", + "id": "l4o5shrc", + "IfTrue": "l0quikkt-l0quikkt" + }, + { + "Description": "", + "Expression": "$LIEUNAIS_CH$ =\"2\"", + "id": "l4o5o4tn", + "IfTrue": "l4o57595-l4o57595" + }, + { + "Description": "", + "Expression": "isnull($RPPRENOMPAR2$) or isnull($PRENOM_PAR2$) or replace(upper($RPPRENOMPAR2$),\" \",\"\") <> replace(upper($PRENOM_PAR2$),\" \",\"\") or cast($RPANAISPAR2$,integer) <> cast($ANAI_PAR2$, integer) ", + "id": "l4o63304", + "IfTrue": "kwqfhhge-llgrqyqg" + }, + { + "Description": "", + "Expression": "$SEP_AUT_PAR_ENFAIL2$ =\"1\" or isnull($SEP_AUT_PAR_ENFAIL2$) ", + "id": "l4o77apl", + "IfTrue": "l4lmxke4-l4lmxke4" + }, + { + "Description": "", + "Expression": "$SEP_AUT_PAR_ENFAIL1$ =\"1\" or isnull($SEP_AUT_PAR_ENFAIL1$) ", + "id": "l4o7h8pw", + "IfTrue": "l1gknpsx-l1gknpsx" + }, + { + "Description": "", + "Expression": "$SEP_AUT_PAR_ENFAIL3$ =\"1\" or isnull($SEP_AUT_PAR_ENFAIL3$) ", + "id": "l4o7nxie", + "IfTrue": "l4lmszob-l4lmszob" + }, + { + "Description": "", + "Expression": "$SEP_AUT_PAR_ENFAIL4$ =\"1\" or isnull($SEP_AUT_PAR_ENFAIL4$) ", + "id": "l4o7s9or", + "IfTrue": "l4lmvah7-l4lmvah7" + }, + { + "Description": "", + "Expression": "$SEP_AUT_PAR_ENFAIL5$ =\"1\" or isnull($SEP_AUT_PAR_ENFAIL5$) ", + "id": "l4o7khj9", + "IfTrue": "l4lms6u4-l4lms6u4" + }, + { + "Description": "", + "Expression": "$FR_PAR1$ =\"1\" or isnull($FR_PAR1$) ", + "id": "l4o7yry0", + "IfTrue": "l4o7ufzl-l4onhpvd" + }, + { + "Description": "", + "Expression": "$FR_PAR1$ =\"2\"", + "id": "l4o89ng4", + "IfTrue": "l4o8eale-l4o8eale" + }, + { + "Description": "", + "Expression": "$FR_PAR2$ =\"1\" or isnull($FR_PAR2$) ", + "id": "l4o84dom", + "IfTrue": "l4o8co0c-l4onk34z" + }, + { + "Description": "", + "Expression": "$FR_PAR2$ =\"2\"", + "id": "l4o85xru", + "IfTrue": "l4o8dk7q-l4o8dk7q" + }, + { + "Description": "", + "Expression": "isnull($PRENOM_C$) or isnull($RPPRENOMCONJ$) or replace(upper($RPPRENOMCONJ$),\" \",\"\") <> replace(upper($PRENOM_C$),\" \",\"\") or isnull($RPANAISCONJ$) or cast($RPANAISCONJ$,integer) <> cast($ANNAISCJ$,integer)", + "id": "l4omo6jm", + "IfTrue": "l4o59ei7-llgt75zv" + }, + { + "Description": "", + "Expression": "$FR_ENFAIL1$ =\"1\" or isnull($FR_ENFAIL1$)", + "id": "l4oo0hx8", + "IfTrue": "l4onskib-l4onsq99" + }, + { + "Description": "", + "Expression": "$FR_ENFAIL1$ =\"2\"", + "id": "l4oo57jb", + "IfTrue": "l4onsf7y-l4onsf7y" + }, + { + "Description": "", + "Expression": "$FR_ENFAIL2$ =\"1\" or isnull($FR_ENFAIL2$)", + "id": "l4oo7o08", + "IfTrue": "l4oo8gk0-l4oo2unu" + }, + { + "Description": "", + "Expression": "$FR_ENFAIL2$ =\"2\"", + "id": "l4oo245u", + "IfTrue": "l4ooebmj-l4ooebmj" + }, + { + "Description": "", + "Expression": "$FR_ENFAIL3$ =\"1\" or isnull($FR_ENFAIL3$)", + "id": "l4oof3zk", + "IfTrue": "l4oo03nq-l4oo41j6" + }, + { + "Description": "", + "Expression": "$FR_ENFAIL3$ =\"2\"", + "id": "l4oomvv6", + "IfTrue": "l4ooe2gj-l4ooe2gj" + }, + { + "Description": "", + "Expression": "$FR_ENFAIL4$ =\"1\" or isnull($FR_ENFAIL4$)", + "id": "l4oohx7d", + "IfTrue": "l4oo4x1t-l4onwhrf" + }, + { + "Description": "", + "Expression": "$FR_ENFAIL4$ =\"2\"", + "id": "l4ookswj", + "IfTrue": "l4oo1817-l4oo1817" + }, + { + "Description": "", + "Expression": "$FR_ENFAIL5$ =\"1\" or isnull($FR_ENFAIL5$)", + "id": "l4oomruu", + "IfTrue": "l4oo7lwi-l4oo41q4" + }, + { + "Description": "", + "Expression": "$FR_ENFAIL5$ =\"2\"", + "id": "l4ooqy9y", + "IfTrue": "l4oo5bj9-l4oo5bj9" + }, + { + "Description": "", + "Expression": "$PARENT_FR_ENFLOG1$ =\"1\" or isnull($PARENT_FR_ENFLOG1$)", + "id": "l4pb9r9n", + "IfTrue": "l4pav1bd-l4parilg" + }, + { + "Description": "", + "Expression": "$PARENT_FR_ENFLOG5$ =\"1\" or isnull($PARENT_FR_ENFLOG5$)", + "id": "l4pbc35i", + "IfTrue": "l4pauqgi-l4paw4ax" + }, + { + "Description": "", + "Expression": "$PARENT_FR_ENFLOG5$ =\"2\"", + "id": "l4pbc2za", + "IfTrue": "l4pb234a-l4pb234a" + }, + { + "Description": "", + "Expression": "$PARENT_FR_ENFLOG4$ =\"1\" or isnull($PARENT_FR_ENFLOG4$)", + "id": "l4pb9nsp", + "IfTrue": "l4payjff-l4paz6m4" + }, + { + "Description": "", + "Expression": "$PARENT_FR_ENFLOG4$ =\"2\"", + "id": "l4pbk9d5", + "IfTrue": "l4pbax4x-l4pbax4x" + }, + { + "Description": "", + "Expression": "$PARENT_FR_ENFLOG3$ =\"1\" or isnull($PARENT_FR_ENFLOG3$)", + "id": "l4pbiq4p", + "IfTrue": "l4pat7vx-l4pavp6y" + }, + { + "Description": "", + "Expression": "$PARENT_FR_ENFLOG3$ =\"2\"", + "id": "l4pbqc6m", + "IfTrue": "l4pb77tv-l4pb77tv" + }, + { + "Description": "", + "Expression": "$PARENT_FR_ENFLOG2$ =\"1\" or isnull($PARENT_FR_ENFLOG2$)", + "id": "l4pbhf1t", + "IfTrue": "l4pannoa-l4pasuts" + }, + { + "Description": "", + "Expression": "$PARENT_FR_ENFLOG2$ =\"2\"", + "id": "l4pbccaz", + "IfTrue": "l4pbc5wa-l4pbc5wa" + }, + { + "Description": "", + "Expression": "$PARENT_FR_ENFLOG1$ =\"2\"", + "id": "l4pbp2cb", + "IfTrue": "l4pavrnh-l4pavrnh" + }, + { + "Description": "", + "Expression": "(nvl($CBENFLOG$,0) < nvl($NBENF$,0)) or isnull($CBENFLOG$) or isnull($NBENF$)", + "id": "l4qs3lg8", + "IfTrue": "l447nuda-l4lfzig7" + }, + { + "Description": "", + "Expression": "not(isnull($CBENFLOG$)) and $CBENFLOG$ >= 1", + "id": "l4qswa5h", + "IfTrue": "l446h6js-l446h6js" + }, + { + "Description": "", + "Expression": "not(isnull($CBENFAIL$)) and $CBENFAIL$ >= 1", + "id": "l4qsy750", + "IfTrue": "l447aq23-l447aq23" + }, + { + "Description": "", + "Expression": "$SEXE_CH$ = \"2\" or isnull($SEXE_CH$)", + "id": "l4quhb14", + "IfTrue": "l0qudtd2-l0qudtd2" + }, + { + "Description": "", + "Expression": "$SEXE_PAR1$=\"1\"", + "id": "l4qzs7pe", + "IfTrue": "l4qzvm5v-l4qzvm5v" + }, + { + "Description": "", + "Expression": "$SEXE_PAR2$ =\"2\" or isnull($SEXE_PAR2$)", + "id": "l4qzrwjt", + "IfTrue": "l1ezowxi-l1ezowxi" + }, + { + "Description": "", + "Expression": "$SEXE_PAR2$ =\"1\"", + "id": "l4qzn5gc", + "IfTrue": "l4qzjbsx-l4qzjbsx" + }, + { + "Description": "", + "Expression": "isnull($DEJATRAV$) or $DEJATRAV$ =\"1\"", + "id": "l4r00nja", + "IfTrue": "l1g7vwo6-lletqevy" + }, + { + "Description": "", + "Expression": "$EXIST_PAR2$ =\"1\"", + "id": "l5ayth8i", + "IfTrue": "las2r756-las2r756" + }, + { + "Description": "", + "Expression": "$DC_ENFAIL1$ =\"2\"", + "id": "l5jdinbs", + "IfTrue": "kwqkh05l-kwqkh05l" + }, + { + "Description": "", + "Expression": "$DC_ENFAIL2$ =\"2\"", + "id": "l5jdovhd", + "IfTrue": "l4lhc03p-l4lhc03p" + }, + { + "Description": "", + "Expression": "$DC_ENFAIL3$ =\"2\"", + "id": "l5jd8k6b", + "IfTrue": "l4lhbuxg-l4lhbuxg" + }, + { + "Description": "", + "Expression": "$DC_ENFAIL4$ =\"2\"", + "id": "l5jdq77k", + "IfTrue": "l4lhbfxh-l4lhbfxh" + }, + { + "Description": "", + "Expression": "$DC_ENFAIL5$ =\"2\"", + "id": "l5jdpoid", + "IfTrue": "l4lh8c72-l4lh8c72" + }, + { + "Description": "", + "Expression": "$NBENFAV_C_U1$=1", + "id": "l5jnvc09", + "IfTrue": "l5ilbb89-l5ilbb89" + }, + { + "Description": "", + "Expression": "$NBENFAV_C_U1$ > 1 or isnull($NBENFAV_C_U1$)", + "id": "l5jnfjf3", + "IfTrue": "l4o5x7yq-l4o5x7yq" + }, + { + "Description": "", + "Expression": "$LOG_PAR1$ =\"2\" or isnull($LOG_PAR1$)", + "id": "l5jp8ine", + "IfTrue": "l1ezkqes-l4lojzxg" + }, + { + "Description": "", + "Expression": "$NBENF$ = 1", + "id": "l7rma7oc", + "IfTrue": "l1gkeq97-l1gkeq97" + }, + { + "Description": "", + "Expression": "$NBENF$ > 1", + "id": "l7rmcdze", + "IfTrue": "l7rlim3p-l7rlim3p" + }, + { + "Description": "", + "Expression": "$TRAV_CH$ =\"1\" or isnull($TRAV_CH$)", + "id": "l7ywsts3", + "IfTrue": "l0qudtd2-llgt75zv" + }, + { + "Description": "", + "Expression": "$TRAV_PAR1$ =\"1\" or isnull($TRAV_PAR1$)", + "id": "l7yx3sl1", + "IfTrue": "l2kjueig-llgqspnh" + }, + { + "Description": "", + "Expression": "$TRAV_PAR2$ =\"1\" or isnull($TRAV_PAR2$)", + "id": "l7ywxi91", + "IfTrue": "l1ezowxi-llgrqyqg" + }, + { + "Description": "", + "Expression": "$PARENT_VIT_ENFAIL1$=\"2\" or $PARENT_VIT_ENFAIL1$=\"3\" or isnull( $PARENT_VIT_ENFAIL1$)", + "id": "l8lzngsq", + "IfTrue": "l8lzt19v-l8lzt19v" + }, + { + "Description": "", + "Expression": "cast($ANAI_ENFAIL1$,integer) <= 2011", + "id": "l8m04z67", + "IfTrue": "kwqk3a58-kwqk3a58" + }, + { + "Description": "", + "Expression": "$PARENT_VIT_ENFAIL3$ =\"2\" or $PARENT_VIT_ENFAIL3$ =\"3\" or isnull( $PARENT_VIT_ENFAIL3$)", + "id": "l8m0jyzr", + "IfTrue": "l8m0bu1o-l8m0bu1o" + }, + { + "Description": "", + "Expression": "$PARENT_VIT_ENFAIL2$ =\"2\" or $PARENT_VIT_ENFAIL2$ =\"3\" or isnull( $PARENT_VIT_ENFAIL2$)", + "id": "l8m0kidv", + "IfTrue": "l8lzthqx-l8lzthqx" + }, + { + "Description": "", + "Expression": "$PARENT_VIT_ENFAIL4$ =\"2\" or $PARENT_VIT_ENFAIL4$ =\"3\" or isnull( $PARENT_VIT_ENFAIL4$)", + "id": "l8m04lnr", + "IfTrue": "l8m03w7m-l8m03w7m" + }, + { + "Description": "", + "Expression": "$PARENT_VIT_ENFAIL5$ =\"2\" or $PARENT_VIT_ENFAIL5$ =\"3\" or isnull( $PARENT_VIT_ENFAIL5$)", + "id": "l8m09ijs", + "IfTrue": "l8m0ld6c-l8m0ld6c" + }, + { + "Description": "", + "Expression": "cast($ANAI_ENFAIL2$,integer) <= 2011", + "id": "l8m0f3o7", + "IfTrue": "l4liztyl-l4liztyl" + }, + { + "Description": "", + "Expression": "cast($ANAI_ENFAIL3$,integer) <= 2011", + "id": "l8m0a7pc", + "IfTrue": "l4ljddzv-l4ljddzv" + }, + { + "Description": "", + "Expression": "cast($ANAI_ENFAIL4$,integer) <= 2011", + "id": "l8m0tant", + "IfTrue": "l4lixcs2-l4lixcs2" + }, + { + "Description": "", + "Expression": "cast($ANAI_ENFAIL5$,integer) <= 2011", + "id": "l8m0a4c7", + "IfTrue": "l4lizygc-l4lizygc" + }, + { + "Description": "", + "Expression": "$PARENT_FR_ENFLOG6$ =\"1\" or isnull($PARENT_FR_ENFLOG6$)", + "id": "l8n2ebqc", + "IfTrue": "l8n2awb0-l8n1u6yt" + }, + { + "Description": "", + "Expression": "$PARENT_FR_ENFLOG6$ =\"2\"", + "id": "l8n27or5", + "IfTrue": "l8n20r8i-l8n20r8i" + }, + { + "Description": "", + "Expression": "$PARENT_VIT_ENFLOG6$ =\"2\" or isnull($PARENT_VIT_ENFLOG6$)", + "id": "l8n2b0y0", + "IfTrue": "l8n1zy7o-l8n1u2kg" + }, + { + "Description": "", + "Expression": "not(isnull($CBENFLOG$)) and $CBENFLOG$ >= 6", + "id": "l8n313zq", + "IfTrue": "ljmvjhon-ljmvjhon" + }, + { + "Description": "", + "Expression": "$PARENT_FR_ENFLOG7$=\"1\" or isnull($PARENT_FR_ENFLOG7$)", + "id": "l8n3hm13", + "IfTrue": "l8n3fzap-l8n3485v" + }, + { + "Description": "", + "Expression": "$PARENT_FR_ENFLOG7$=\"2\"", + "id": "l8n39dj7", + "IfTrue": "l8n3burz-l8n3burz" + }, + { + "Description": "", + "Expression": "$PARENT_VIT_ENFLOG7$ =\"2\" or isnull($PARENT_VIT_ENFLOG7$)", + "id": "l8n3khpg", + "IfTrue": "l8n3b7uo-l8n2t39d" + }, + { + "Description": "", + "Expression": "not(isnull($CBENFLOG$)) and $CBENFLOG$ >= 7", + "id": "l8n3phvb", + "IfTrue": "ljmvjzfz-ljmvjzfz" + }, + { + "Description": "", + "Expression": "$PARENT_FR_ENFLOG8$=\"1\" or isnull($PARENT_FR_ENFLOG8$)", + "id": "l8n3rwlf", + "IfTrue": "l8n41c78-l8n3tbmd" + }, + { + "Description": "", + "Expression": "$PARENT_FR_ENFLOG8$=\"2\"", + "id": "l8n3q138", + "IfTrue": "l8n40r7t-l8n40r7t" + }, + { + "Description": "", + "Expression": "$PARENT_VIT_ENFLOG8$ =\"2\" or isnull($PARENT_VIT_ENFLOG8$)", + "id": "l8n470rx", + "IfTrue": "l8n41hvu-l8n3ocd5" + }, + { + "Description": "", + "Expression": "not(isnull($CBENFLOG$)) and $CBENFLOG$ >= 8", + "id": "l8n410d7", + "IfTrue": "ljmvnzv4-ljmvnzv4" + }, + { + "Description": "", + "Expression": "$SEP_AUT_PAR_ENFAIL6$ =\"1\" or isnull($SEP_AUT_PAR_ENFAIL6$) ", + "id": "l8obctff", + "IfTrue": "l8oanpzw-l8oanpzw" + }, + { + "Description": "", + "Expression": "$FR_ENFAIL6$ =\"1\" or isnull($FR_ENFAIL6$)", + "id": "l8oh3gr5", + "IfTrue": "l8ogp9jo-l8ogqig3" + }, + { + "Description": "", + "Expression": "$FR_ENFAIL6$ =\"2\"", + "id": "l8ogw3wg", + "IfTrue": "l8ogpnbn-l8ogpnbn" + }, + { + "Description": "", + "Expression": "cast($ANAI_ENFAIL6$,integer) <= 2011", + "id": "l8oha56t", + "IfTrue": "l8ogukpt-l8ogukpt" + }, + { + "Description": "", + "Expression": "($DC_ENFAIL6$=\"1\" or isnull($DC_ENFAIL6$)) and cast($ANAI_ENFAIL6$,integer) >= 2004", + "id": "l8oh7dqr", + "IfTrue": "l8ogukpt-l8oanpzw" + }, + { + "Description": "", + "Expression": "$DC_ENFAIL6$ =\"2\"", + "id": "l8oi6q33", + "IfTrue": "l8ohrpn7-l8ohrpn7" + }, + { + "Description": "", + "Expression": "$DC_ENFAIL6$ =\"1\" or isnull($DC_ENFAIL6$)", + "id": "l8oi13y2", + "IfTrue": "l8ohwpt9-l8ogpnbn" + }, + { + "Description": "", + "Expression": "$PARENT_VIT_ENFAIL6$ =\"2\" or $PARENT_VIT_ENFAIL6$ =\"3\" or isnull( $PARENT_VIT_ENFAIL6$)", + "id": "l8oi3stp", + "IfTrue": "l8oib75g-l8oib75g" + }, + { + "Description": "", + "Expression": "$SEP_AUT_PAR_ENFAIL7$ =\"1\" or isnull($SEP_AUT_PAR_ENFAIL7$) ", + "id": "l8ojcjwo", + "IfTrue": "l8oicj6e-l8oicj6e" + }, + { + "Description": "", + "Expression": "$FR_ENFAIL7$ =\"1\" or isnull($FR_ENFAIL7$)", + "id": "l8ojnogl", + "IfTrue": "l8ojb4ub-l8ojczfv" + }, + { + "Description": "", + "Expression": "$FR_ENFAIL7$ =\"2\"", + "id": "l8ojhkzf", + "IfTrue": "l8ojif3m-l8ojif3m" + }, + { + "Description": "", + "Expression": "$DC_ENFAIL7$ =\"1\" or isnull($DC_ENFAIL7$)", + "id": "l8ojs17t", + "IfTrue": "l8ojuhud-l8ojif3m" + }, + { + "Description": "", + "Expression": "cast($ANAI_ENFAIL7$,integer) <= 2011", + "id": "l8ok7ek7", + "IfTrue": "l8oja1pz-l8oja1pz" + }, + { + "Description": "", + "Expression": "($DC_ENFAIL7$=\"1\" or isnull($DC_ENFAIL7$)) and cast($ANAI_ENFAIL7$,integer) >= 2004", + "id": "l8ojrm6c", + "IfTrue": "l8oja1pz-l8oicj6e" + }, + { + "Description": "", + "Expression": "$DC_ENFAIL7$ =\"2\"", + "id": "l8ojvs72", + "IfTrue": "l8ojs3vl-l8ojs3vl" + }, + { + "Description": "", + "Expression": "$PARENT_VIT_ENFAIL7$ =\"2\" or $PARENT_VIT_ENFAIL7$ =\"3\" or isnull( $PARENT_VIT_ENFAIL7$)", + "id": "l8ojynib", + "IfTrue": "l8ok0d4y-l8ok0d4y" + }, + { + "Description": "", + "Expression": "$SEP_AUT_PAR_ENFAIL8$ =\"1\" or isnull($SEP_AUT_PAR_ENFAIL8$) ", + "id": "l8okg7q9", + "IfTrue": "l8okioqc-l8okioqc" + }, + { + "Description": "", + "Expression": "$FR_ENFAIL8$ =\"2\"", + "id": "l8okygtc", + "IfTrue": "l8okxgwv-l8okxgwv" + }, + { + "Description": "", + "Expression": "$FR_ENFAIL8$ =\"1\" or isnull($FR_ENFAIL8$)", + "id": "l8okmnvp", + "IfTrue": "l8okue2t-l8okjfla" + }, + { + "Description": "", + "Expression": "cast($ANAI_ENFAIL8$,integer) <= 2011", + "id": "l8okpmuc", + "IfTrue": "l8oksuft-l8oksuft" + }, + { + "Description": "", + "Expression": "$DC_ENFAIL8$ =\"1\" or isnull($DC_ENFAIL8$)", + "id": "l8oky4d1", + "IfTrue": "l8ol84b7-l8okxgwv" + }, + { + "Description": "", + "Expression": "$DC_ENFAIL8$ =\"2\"", + "id": "l8ol0eoi", + "IfTrue": "l8olcd8n-l8olcd8n" + }, + { + "Description": "", + "Expression": "$PARENT_VIT_ENFAIL8$ =\"2\" or $PARENT_VIT_ENFAIL8$ =\"3\" or isnull( $PARENT_VIT_ENFAIL8$)", + "id": "l8ol5p2y", + "IfTrue": "l8ol369l-l8ol369l" + }, + { + "Description": "", + "Expression": "($DC_ENFAIL8$=\"1\" or isnull($DC_ENFAIL8$)) and cast($ANAI_ENFAIL8$,integer) >= 2004", + "id": "l8olrfxk", + "IfTrue": "l8oksuft-l8okioqc" + }, + { + "Description": "", + "Expression": "cast ($AGE$, integer) >= 35 and (isnull($ENF$) or $ENF$ =\"1\")", + "id": "l8sqkubc", + "IfTrue": "l1f6bztr-l1f6bztr" + }, + { + "Description": "", + "Expression": "$NB_AUT_UNION$ >= 2 or isnull($NB_AUT_UNION$) ", + "id": "l9ikwy74", + "IfTrue": "l9iksl95-l9iksl95" + }, + { + "Description": "", + "Expression": "$PACS_U2$ =\"1\"", + "id": "l9il1c0q", + "IfTrue": "l9ikxoxa-l9ikxoxa" + }, + { + "Description": "", + "Expression": "$MARI_U2$ =\"1\"", + "id": "l9il00d3", + "IfTrue": "l9iklcix-l9iklcix" + }, + { + "Description": "", + "Expression": "$SEPARE_U2$ =\"1\"", + "id": "l9il2aqb", + "IfTrue": "l9ikze1y-l9ikze1y" + }, + { + "Description": "", + "Expression": "$SEPARE_U2$ =\"2\"", + "id": "l9il0rmm", + "IfTrue": "l9ikmjqm-l9ikmjqm" + }, + { + "Description": "", + "Expression": "$ENFAV_C_U2$ =\"1\"", + "id": "l9ikyhx5", + "IfTrue": "l9ikuqoe-l9iks078" + }, + { + "Description": "", + "Expression": "$NBENFAV_C_U2$=1", + "id": "l9il3nl8", + "IfTrue": "l9ikekzu-l9ikekzu" + }, + { + "Description": "", + "Expression": "$NBENFAV_C_U2$ > 1 or isnull($NBENFAV_C_U2$)", + "id": "l9il99ls", + "IfTrue": "l9iks078-l9iks078" + }, + { + "Description": "", + "Expression": "$AUT_U2$=\"1\"", + "id": "l9r6arh1", + "IfTrue": "l9ilcol6-l9iks078" + }, + { + "Description": "", + "Expression": "$SEP_AUT_PAR_ENFLOG8$=\"1\"", + "id": "la6vf6n5", + "IfTrue": "l8n3ocd5-l8n3ocd5" + }, + { + "Description": "", + "Expression": "$SEP_AUT_PAR_ENFLOG7$=\"1\"", + "id": "la6ygcb1", + "IfTrue": "l8n2t39d-l8n2t39d" + }, + { + "Description": "", + "Expression": "$SEP_AUT_PAR_ENFLOG6$=\"1\" ", + "id": "la6yihxx", + "IfTrue": "l8n1u2kg-l8n1u2kg" + }, + { + "Description": "", + "Expression": "$SEP_AUT_PAR_ENFLOG5$=\"1\"", + "id": "la6ybuwv", + "IfTrue": "l4lg25av-l4lg25av" + }, + { + "Description": "", + "Expression": "$SEP_AUT_PAR_ENFLOG4$=\"1\"", + "id": "la6y6nrv", + "IfTrue": "l4lexatl-l4lexatl" + }, + { + "Description": "", + "Expression": "$SEP_AUT_PAR_ENFLOG3$=\"1\"", + "id": "la6ylsbv", + "IfTrue": "l4lde13h-l4lde13h" + }, + { + "Description": "", + "Expression": "$SEP_AUT_PAR_ENFLOG2$=\"1\"", + "id": "la6yi3mc", + "IfTrue": "l4idgqx9-l4idgqx9" + }, + { + "Description": "", + "Expression": "$SEP_AUT_PAR_ENFLOG1$=\"1\"", + "id": "la6yuhcj", + "IfTrue": "kwqjmy9d-kwqjmy9d" + }, + { + "Description": "", + "Expression": "$SEXE_PAR1$=\"2\" or isnull($SEXE_PAR1$)", + "id": "lab6s6ex", + "IfTrue": "l2kjueig-l2kjueig" + }, + { + "Description": "", + "Expression": "$VIV_PAR1$ =\"1\" or isnull($VIV_PAR1$)", + "id": "lab74bmo", + "IfTrue": "kwqgffvw-kwqgffvw" + }, + { + "Description": "", + "Expression": "$VIV_PAR1$ =\"2\"", + "id": "lab6rrje", + "IfTrue": "lab6xfk9-lab6xfk9" + }, + { + "Description": "", + "Expression": "$PRENOM_FIN$ =\"2\"", + "id": "lamjvpmw", + "IfTrue": "lamjnyx4-lamjnyx4" + }, + { + "Description": "", + "Expression": "isnull($RPPRENOMPAR1$) or isnull($PRENOM_PAR1$) or replace(upper($RPPRENOMPAR1$),\" \",\"\") <> replace(upper($PRENOM_PAR1$),\" \",\"\") or cast($RPANAISPAR1$,integer) <> cast($ANAI_PAR1$, integer) ", + "id": "lbpj1dh7", + "IfTrue": "l2kjzugb-l43yap7r" + }, + { + "Description": "", + "Expression": "isnull($RPPRENOMPAR2$) or isnull($PRENOM_PAR2$) or replace(upper($RPPRENOMPAR2$),\" \",\"\") <> replace(upper($PRENOM_PAR2$),\" \",\"\") or cast($RPANAISPAR2$,integer) <> cast($ANAI_PAR2$, integer) ", + "id": "lbpjirq3", + "IfTrue": "kwqhjfzk-l4cjeqc0" + }, + { + "Description": "", + "Expression": "$RAISON_VIE_CJT$ =\"4\"", + "id": "li359fnd", + "IfTrue": "li353rhu-li353rhu" + }, + { + "Description": "", + "Expression": "$ENFAV_C$=\"1\"", + "id": "liiz3gaj", + "IfTrue": "l43u4x96-l43why6c" + }, + { + "Description": "", + "Expression": "$NBENFAV_C$=1", + "id": "liiyzeee", + "IfTrue": "l5jnmvs2-l5jnmvs2" + }, + { + "Description": "", + "Expression": "$NBENFAV_C$ >1 or isnull($NBENFAV_C$)", + "id": "liiz5r1r", + "IfTrue": "l43why6c-l43why6c" + }, + { + "Description": "", + "Expression": "$COUPLE$ =\"3\"", + "id": "liiz0knd", + "IfTrue": "l8lz0355-l8lz0355" + }, + { + "Description": "", + "Expression": "($COUPLE$=\"1\" or $COUPLE$=\"2\") and $ENFAV_C$=\"1\"", + "id": "liiyov5q", + "IfTrue": "l43xg8do-l43xg8do" + }, + { + "Description": "", + "Expression": "$NB_FRERES$ = 1", + "id": "lj2srd9e", + "IfTrue": "l5ikk5zq-l5ikk5zq" + }, + { + "Description": "", + "Expression": "$NB_FRERES$ > 1", + "id": "lj30clvl", + "IfTrue": "l4740wd1-l4740wd1" + }, + { + "Description": "", + "Expression": "$NB_SOEURS$ = 1", + "id": "lj41apen", + "IfTrue": "l5ikyrbc-l5ikyrbc" + }, + { + "Description": "", + "Expression": "$NB_SOEURS$ > 1", + "id": "lj41lgft", + "IfTrue": "l473w273-l473w273" + }, + { + "Description": "", + "Expression": "not(isnull($CBENFAIL$)) and $CBENFAIL$ >= 4", + "id": "ljoexgb3", + "IfTrue": "ljof3wlm-ljof3wlm" + }, + { + "Description": "", + "Expression": "not(isnull($CBENFAIL$)) and $CBENFAIL$ >= 5", + "id": "ljoet34y", + "IfTrue": "ljof7iet-ljof7iet" + }, + { + "Description": "", + "Expression": "not(isnull($CBENFAIL$)) and $CBENFAIL$ >= 6", + "id": "ljoevvfr", + "IfTrue": "ljoezdxm-ljoezdxm" + }, + { + "Description": "", + "Expression": "not(isnull($CBENFAIL$)) and $CBENFAIL$ >= 7", + "id": "ljofcoik", + "IfTrue": "ljof8bti-ljof8bti" + }, + { + "Description": "", + "Expression": "not(isnull($CBENFAIL$)) and $CBENFAIL$ >= 8", + "id": "ljof97j4", + "IfTrue": "ljofiex8-ljofiex8" + }, + { + "Description": "", + "Expression": "$PARENT_VIT_ENFAIL1$<>\"3\" ", + "id": "ljwwtq21", + "IfTrue": "l4o74e6d-l1gknpsx" + }, + { + "Description": "", + "Expression": "$PARENT_VIT_ENFAIL2$<>\"3\" ", + "id": "ljwwua2c", + "IfTrue": "l4o73m0u-l4lmxke4" + }, + { + "Description": "", + "Expression": "$PARENT_VIT_ENFAIL3$<>\"3\" ", + "id": "ljwwn75m", + "IfTrue": "l4o7gt0n-l4lmszob" + }, + { + "Description": "", + "Expression": "$PARENT_VIT_ENFAIL4$<>\"3\" ", + "id": "ljwwnie8", + "IfTrue": "l4o7jdze-l4lmvah7" + }, + { + "Description": "", + "Expression": "$PARENT_VIT_ENFAIL5$<>\"3\" ", + "id": "ljwx7oti", + "IfTrue": "l4o7vzru-l4lms6u4" + }, + { + "Description": "", + "Expression": "$PARENT_VIT_ENFAIL6$<>\"3\" ", + "id": "ljwx5pd4", + "IfTrue": "l8oaqbj5-l8oanpzw" + }, + { + "Description": "", + "Expression": "$PARENT_VIT_ENFAIL7$<>\"3\" ", + "id": "ljwx1n48", + "IfTrue": "l8oiu9ax-l8oicj6e" + }, + { + "Description": "", + "Expression": "$PARENT_VIT_ENFAIL8$<>\"3\" ", + "id": "ljwx4bei", + "IfTrue": "l8okfvhy-l8okioqc" + }, + { + "Description": "Si pas de validation de l'année de naissance ou réponse NON", + "Expression": "nvl($VAL_ANNAISS$,\"\") = \"2\" ", + "id": "ll2amvdo", + "IfTrue": "kwq9wijq-kwq9wijq" + }, + { + "Description": "", + "Expression": "$TYPE_QUEST$ =\"1\"", + "id": "llde8dw2", + "IfTrue": "kwqabjga-llgt75zv" + }, + { + "Description": "", + "Expression": " $TYPE_QUEST$ =\"1\"", + "id": "lldegcfi", + "IfTrue": "l4p8skko-l4p8skko" + }, + { + "Description": "", + "Expression": " $TYPE_QUEST$ =\"2\"", + "id": "lldeh60s", + "IfTrue": "lldenssh-lldenssh" + }, + { + "Description": "", + "Expression": " $TYPE_QUEST$ =\"2\"", + "id": "lldemu5v", + "IfTrue": "lldetngg-lldetngg" + }, + { + "Description": "", + "Expression": "$TYPE_QUEST$ =\"1\"", + "id": "lldeihal", + "IfTrue": "l9ikne2h-l9ikne2h" + }, + { + "Description": "", + "Expression": "$SEXE_CH$ =\"1\" ", + "id": "lldp1sbe", + "IfTrue": "lldp4562-lldp4562" + }, + { + "Description": "", + "Expression": "$LIEUNAIS_CF$ =\"1\"", + "id": "lldpeoj3", + "IfTrue": "lldp8203-lldp8203" + }, + { + "Description": "", + "Expression": "$LIEUNAIS_CF$ =\"2\"", + "id": "lldpfko0", + "IfTrue": "lldpejfa-lldpejfa" + }, + { + "Description": "", + "Expression": "$SEXE_CF$ = \"1\" or isnull($SEXE_CF$)", + "id": "lldpn6nl", + "IfTrue": "l4quaxvt-l4quaxvt" + }, + { + "Description": "", + "Expression": "$SEXE_CF$ = \"2\"", + "id": "lldprd4q", + "IfTrue": "lldpqtrp-lldpqtrp" + }, + { + "Description": "", + "Expression": "isnull($PROF_CF1$) and isnull($PROF_CF2$)", + "id": "lldq7c6i", + "IfTrue": "lldqd2sd-lldqd2sd" + }, + { + "Description": "", + "Expression": "$TYPE_QUEST$ =\"2\"", + "id": "lldq4gfz", + "IfTrue": "llde3pgg-llnh2qpm" + }, + { + "Description": "", + "Expression": "isnull($PRENOM_C$) or isnull($RPPRENOMCONJ$) or replace(upper($RPPRENOMCONJ$),\" \",\"\") <> replace(upper($PRENOM_C$),\" \",\"\") or isnull($RPANAISCONJ$) or cast($RPANAISCONJ$,integer) <> cast($ANNAISCJ$,integer)", + "id": "lldqloqo", + "IfTrue": "lldpi629-llnh2qpm" + }, + { + "Description": "", + "Expression": "$TRAV_CF$ =\"1\" or isnull($TRAV_CF$)", + "id": "lldqafla", + "IfTrue": "l4quaxvt-llnh2qpm" + }, + { + "Description": "", + "Expression": "$AUT_UNION$ = \"1\"", + "id": "lldrik6o", + "IfTrue": "l15553ya-l15553ya" + }, + { + "Description": "", + "Expression": "($COUPLE$=\"1\" or $COUPLE$=\"2\" or $COUPLE$=\"3\") and ($AUT_UNION$ =\"1\")", + "id": "lldrb8le", + "IfTrue": "lldr8qge-lldr8qge" + }, + { + "Description": "", + "Expression": "$AUT_UNION$ = \"1\"", + "id": "lldroldu", + "IfTrue": "l43x1amr-l43x1amr" + }, + { + "Description": "", + "Expression": "$DC_ENFAIL1$=\"1\" or isnull($DC_ENFAIL1$)", + "id": "llgfwmuj", + "IfTrue": "l1gi8vrf-l1gi8vrf" + }, + { + "Description": "", + "Expression": "$DC_ENFAIL2$=\"1\" or isnull($DC_ENFAIL2$)", + "id": "llgftzzb", + "IfTrue": "l4ljj44i-l4ljj44i" + }, + { + "Description": "", + "Expression": "$DC_ENFAIL3$=\"1\" or isnull($DC_ENFAIL3$)", + "id": "llgfq55t", + "IfTrue": "l4ljg7fn-l4ljg7fn" + }, + { + "Description": "", + "Expression": "$DC_ENFAIL4$=\"1\" or isnull($DC_ENFAIL4$)", + "id": "llgftq0w", + "IfTrue": "l4ljjvig-l4ljjvig" + }, + { + "Description": "", + "Expression": "$DC_ENFAIL5$=\"1\" or isnull($DC_ENFAIL5$)", + "id": "llgfxcw1", + "IfTrue": "l4ljcdar-l4ljcdar" + }, + { + "Description": "", + "Expression": "$DC_ENFAIL6$=\"1\" or isnull($DC_ENFAIL6$)", + "id": "llgftk16", + "IfTrue": "l8oasgat-l8oasgat" + }, + { + "Description": "", + "Expression": "$DC_ENFAIL7$=\"1\" or isnull($DC_ENFAIL7$)", + "id": "llgg0wtp", + "IfTrue": "l8oizp0r-l8oizp0r" + }, + { + "Description": "", + "Expression": "$DC_ENFAIL8$=\"1\" or isnull($DC_ENFAIL8$)", + "id": "llgg12c3", + "IfTrue": "l8oklb21-l8oklb21" + }, + { + "Description": "", + "Expression": "$PARENT_VIT_ENFAIL1$<>=\"3\" ", + "id": "llgisayz", + "IfTrue": "l44849iu-l44849iu" + }, + { + "Description": "", + "Expression": "$PARENT_VIT_ENFAIL2$<>=\"3\" ", + "id": "llgj7k5k", + "IfTrue": "l4lk1w8p-l4lk1w8p" + }, + { + "Description": "", + "Expression": "$PARENT_VIT_ENFAIL3$<>=\"3\" ", + "id": "llgiv4ql", + "IfTrue": "l4lmjzwd-l4lmjzwd" + }, + { + "Description": "", + "Expression": "$PARENT_VIT_ENFAIL4$<>=\"3\" ", + "id": "llgj9pm2", + "IfTrue": "l4lms9a0-l4lms9a0" + }, + { + "Description": "", + "Expression": "$PARENT_VIT_ENFAIL5$<>=\"3\" ", + "id": "llgiqzzj", + "IfTrue": "l4lmc52p-l4lmc52p" + }, + { + "Description": "", + "Expression": "$PARENT_VIT_ENFAIL6$<>=\"3\" ", + "id": "llgjbj7o", + "IfTrue": "l8ob0dk4-l8ob0dk4" + }, + { + "Description": "", + "Expression": "$PARENT_VIT_ENFAIL7$<>=\"3\" ", + "id": "llgiunp0", + "IfTrue": "l8oiinpy-l8oiinpy" + }, + { + "Description": "", + "Expression": "$PARENT_VIT_ENFAIL8$<>=\"3\" ", + "id": "llgj6tya", + "IfTrue": "l8okked6-l8okked6" + }, + { + "Description": "", + "Expression": "$STATUT_PAR1$ =\"2\"", + "id": "llgqfhat", + "IfTrue": "llgo5n7b-llgo5n7b" + }, + { + "Description": "", + "Expression": "$STATUT_PAR1$ =\"3\"", + "id": "llgqfku7", + "IfTrue": "llgqspnh-llgqspnh" + }, + { + "Description": "", + "Expression": "$STATUT_PAR2$ =\"2\"", + "id": "llgrpcik", + "IfTrue": "llgosp3i-llgosp3i" + }, + { + "Description": "", + "Expression": "$STATUT_PAR2$ =\"3\"", + "id": "llgs5b5t", + "IfTrue": "llgrqyqg-llgrqyqg" + }, + { + "Description": "", + "Expression": "$STATUT_CH$ =\"2\"", + "id": "llgsytoz", + "IfTrue": "llgt315z-llgt315z" + }, + { + "Description": "", + "Expression": "$STATUT_CH$ =\"3\"", + "id": "llgswe0b", + "IfTrue": "llgt75zv-llgt75zv" + }, + { + "Description": "", + "Expression": "$STATUT_CF$ =\"3\"", + "id": "llnhb0i2", + "IfTrue": "llnh2qpm-llnh2qpm" + }, + { + "Description": "", + "Expression": "$STATUT_CF$ =\"2\"", + "id": "llnhls30", + "IfTrue": "llmhi6fd-llmhi6fd" + }, + { + "Description": "", + "Expression": "$AVIS_FILTRE$ =\"2\" or $AVIS_FILTRE_P$ =\"2\"", + "id": "lm4w5hs6", + "IfTrue": "lm4vxp7a-lm4vxp7a" + }, + { + "Description": "", + "Expression": "$INTER_TRAV1$ =\"2\"", + "id": "lmrq5x9j", + "IfTrue": "lletbq7t-lletqevy" + }, + { + "Description": "", + "Expression": "$LANGUE1_ENF$ <> \"\" or not(isnull($LANGUE1_ENF$))", + "id": "lmrqjd3n", + "IfTrue": "l445u9x8-l445u9x8" + }, + { + "Description": "", + "Expression": "$LANGUE1_ENTOU$ <> \"\" or not(isnull($LANGUE1_ENTOU$))", + "id": "lmrqj2ni", + "IfTrue": "l43tgurz-l43tgurz" + }, + { + "Description": "", + "Expression": "$LANGUE1_PAR1$ <> \"\" or not(isnull($LANGUE1_PAR1$))", + "id": "lmrqnci8", + "IfTrue": "l447j7cx-l447j7cx" + }, + { + "Description": "", + "Expression": "$LANGUE1_PAR2$ <> \"\" or not(isnull($LANGUE1_PAR2$))", + "id": "lmrr3r3g", + "IfTrue": "l444xjux-l444xjux" + }, + { + "Description": "", + "Expression": "$AVIS_NOTICE$ =\"2\"", + "id": "lmrsssdi", + "IfTrue": "lmrssoql-lmrssoql" + }, + { + "Description": "", + "Expression": "$AVIS_SITE_NET$ =\"2\"", + "id": "lmrtphle", + "IfTrue": "lmrtt1a2-lmrtt1a2" + }, + { + "Description": "", + "Expression": "$AVIS_RMQ_FIN$ =\"1\"", + "id": "lna2wkh0", + "IfTrue": "lna2hbsx-lna2hbsx" + }, + { + "Description": "", + "Expression": "$AVIS_DIFF6$ ", + "id": "lna2xba8", + "IfTrue": "lna24vso-lna24vso" + }, + { + "Description": "", + "Expression": "$AVIS_DIFF7$ ", + "id": "lna2kd8p", + "IfTrue": "lna2aygn-lna2aygn" + }, + { + "Description": "", + "Expression": "$AVIS_FILTRE$ =\"1\" or $AVIS_FILTRE_P$ =\"1\"", + "id": "lna2pq02", + "IfTrue": "lm4vudcf-lna2hbsx" + }, + { + "Description": "", + "Expression": "not(isnull($RPNBQUEST$)) and $RPNBQUEST$ <> \"1\"", + "id": "lna38ydl", + "IfTrue": "lna2jxe5-lna2jxe5" + }, + { + "Description": "", + "Expression": "$PRENOM_FIN$ =\"2\"", + "id": "lnbspfjh", + "IfTrue": "lnbss8ix-lnbss8ix" + }, + { + "Description": "", + "Expression": "isnull($PRENOM_FIN$) or $PRENOM_FIN$ =\"1\"", + "id": "lnbsju54", + "IfTrue": "lm4w39kw-lm4w39kw" + } + ], + "ComponentGroup": [ + { + "MemberReference": [ + "l473bp2x", + "l473latk", + "kwq9l9z1", + "kwq9wijq", + "kwq9y19w", + "l0qkj23a", + "li353rhu", + "kwqaaqd3", + "l34grb6h", + "l154t9l0", + "kwqa0ism", + "kwqabjga", + "l4o59ei7", + "l0quikkt", + "l4o57595", + "l7ywou64", + "l0qudtd2", + "lldp4562", + "l43zea6v", + "l0quphwx", + "llgt315z", + "llgt75zv", + "llde3pgg", + "lldpi629", + "lldp8203", + "lldpejfa", + "lldqco3p", + "l4quaxvt", + "lldpqtrp", + "lldqd2sd", + "llmhdvun", + "llmhi6fd", + "llnh2qpm", + "l27f5twb", + "l27dlmvl", + "kwqa4zjf", + "l0qu7e2g", + "l0qujqzn", + "l0qul94p", + "l5kszr2f", + "l27dzhpw", + "l155mqhc", + "ljmotpyk", + "l43u9qqf", + "l43u4x96", + "l5jnmvs2", + "l43why6c", + "l8lz0355", + "l43xg8do", + "l15131wu", + "l43x1amr", + "lldr8qge", + "l15553ya", + "kwqa53jx", + "l4p8skko", + "lldenssh", + "l34fzu5m", + "l27dlnmq", + "l27dns8a", + "l27duust", + "l27e50tv", + "l5ktf1wn", + "l27dzhzv", + "l27e0qyq", + "l4cjg2rp", + "l4cja8pm", + "l5ilbb89", + "l4o5x7yq", + "l9iksl95", + "l9il0i0h", + "l9ilcol6", + "l9ikne2h", + "lldetngg", + "l9ikn3ea", + "l9il24ft", + "l9ikxoxa", + "l9ikvx4n", + "l9iklcix", + "l9ikqlwv", + "l9ikze1y", + "l9ikmjqm", + "l9ikxndo", + "l9ikuqoe", + "l9ikekzu", + "l9iks078", + "kwqi91j9", + "ljmulh27", + "kwqigxtx", + "kwqi5zsm", + "l1gkeq97", + "l7rlim3p", + "l1gi76wy", + "l445u9x8", + "l4idom4o", + "l4lcr3vb", + "l447nuda", + "l4lfzig7", + "l446h6js", + "l446nede", + "kwqjk80w", + "kwqjmq2o", + "l4qtls9o", + "kwqjol7e", + "l4iaicn8", + "l4pav1bd", + "l4parilg", + "l4pavrnh", + "l1ez78st", + "l4iain70", + "kwqk3gx2", + "la6ydnyh", + "kwqjmy9d", + "l1gia5uh", + "ljmv0rhg", + "l4i9118b", + "l4i8zu5m", + "l4ia7rxn", + "l4qtpg9f", + "l4iano52", + "kwqjmujx", + "l4pannoa", + "l4pasuts", + "l4pbc5wa", + "l4idgpbr", + "l4486unb", + "l4ia5o28", + "la6yjh65", + "l4idgqx9", + "l4ia7y0p", + "ljmvg6vc", + "l4ld0ziw", + "l4lcp4co", + "l4ld3y0j", + "l4qty53i", + "l4lct7cb", + "l4ld827i", + "l4pat7vx", + "l4pavp6y", + "l4pb77tv", + "l4ld15su", + "l4ld0zmv", + "l4ld0jea", + "la6y9flo", + "l4lde13h", + "l4lcuoke", + "ljmv7iyw", + "l4lec0rk", + "l4lefdoh", + "l4le9rs3", + "l4qtvt71", + "l4ler7fu", + "l4lemegm", + "l4payjff", + "l4paz6m4", + "l4pbax4x", + "l4letwtq", + "l4letk9j", + "l4lekh2t", + "la6y7rno", + "l4lexatl", + "l4lec2qz", + "ljmv5mgh", + "l4leulqw", + "l4lem0yg", + "l4lffj1f", + "l4qtm8di", + "l4lfye1g", + "l4lfoek4", + "l4pauqgi", + "l4paw4ax", + "l4pb234a", + "l8n262ck", + "l4lfr4qa", + "l4lfvape", + "la6yfjnf", + "l4lg25av", + "l4lfclty", + "ljmvjhon", + "l8n2umnw", + "l8n2e1mr", + "l8n2lctv", + "l8n2gmuq", + "l8n2ilpb", + "l8n1zy7o", + "l8n2awb0", + "l8n1u6yt", + "l8n20r8i", + "l4lfnqiq", + "l8n29jww", + "l8n1p0yj", + "la6y7ni0", + "l8n1u2kg", + "l8n2hdgw", + "ljmvjzfz", + "l8n3pb4f", + "l8n3mik2", + "l8n3jmk8", + "l8n36fv3", + "l8n3ff6s", + "l8n3b7uo", + "l8n3fzap", + "l8n3485v", + "l8n3burz", + "l8n32xk9", + "l8n2x7q4", + "l8n3ary8", + "la6y542q", + "l8n2t39d", + "l8n3bp4o", + "ljmvnzv4", + "l8n4cayp", + "l8n406m9", + "l8n3tya0", + "l8n3vr8b", + "l8n427a2", + "l8n41hvu", + "l8n41c78", + "l8n3tbmd", + "l8n40r7t", + "l8n3fpp7", + "l8n3xb0z", + "l8n3tjlw", + "la6v947r", + "l8n3ocd5", + "l8n3uqr2", + "l447aq23", + "l4idug6p", + "kwqix1j5", + "kwqj561a", + "l4cjlk0i", + "l4cjivdg", + "l8lzt19v", + "l4485tkr", + "kwqkh05l", + "kwqk3ki3", + "kwqkmusz", + "kwqjp9yr", + "l4onskib", + "l4onsq99", + "l4onsf7y", + "kwqk3a58", + "l44849iu", + "kwqj7xh6", + "l4o74e6d", + "l1gknpsx", + "l1gi8vrf", + "ljmwx9yl", + "l4lg1tus", + "l4lgd8bs", + "l4lgjbi8", + "l4lgtwy7", + "l4lgqbdk", + "l8lzthqx", + "l4lh1bvw", + "l4lhc03p", + "l4lhkbmw", + "l4liqyis", + "l4lj22ar", + "l4oo8gk0", + "l4oo2unu", + "l4ooebmj", + "l4liztyl", + "l4lk1w8p", + "l4ljkmaj", + "l4o73m0u", + "l4lmxke4", + "l4ljj44i", + "ljmwnjny", + "l4lg3j5g", + "l4lg6nx5", + "l4lgenh5", + "l4lh0q7i", + "l4lgysxq", + "l8m0bu1o", + "l4lh0ofl", + "l4lhbuxg", + "l4lhdubm", + "l4lirpfm", + "l4lj2cqg", + "l4oo03nq", + "l4oo41j6", + "l4ooe2gj", + "l4ljddzv", + "l4lmjzwd", + "l4ljm6cp", + "l4o7gt0n", + "l4lmszob", + "l4ljg7fn", + "ljof3wlm", + "l4lg5t9v", + "l4lg3wub", + "l4lgfphb", + "l4lgr9ny", + "l4lgo4yb", + "l8m03w7m", + "l4lh1a42", + "l4lhbfxh", + "l4lho0e2", + "l4lj5kv6", + "l4lj0iea", + "l4oo4x1t", + "l4onwhrf", + "l4oo1817", + "l4lixcs2", + "l4lms9a0", + "l4ljmpiu", + "l4o7jdze", + "l4lmvah7", + "l4ljjvig", + "ljof7iet", + "l4lgayon", + "l4lgep4c", + "l4lgp1ft", + "l4lgnphx", + "l4lh672z", + "l8m0ld6c", + "l4lhcdf6", + "l4lh8c72", + "l4lhn614", + "l4lj98cz", + "l4lijtvo", + "l4oo7lwi", + "l4oo41q4", + "l4oo5bj9", + "l4lizygc", + "l4lmc52p", + "l4ljxer7", + "l4o7vzru", + "l4lms6u4", + "l4ljcdar", + "ljoezdxm", + "l8oign0h", + "l8oi92w4", + "l8oi7q9f", + "l8oientz", + "l8oidc2m", + "l8oib75g", + "l8ohus0v", + "l8ohrpn7", + "l8ohwpt9", + "l8oh46rn", + "l8ogysyp", + "l8ogp9jo", + "l8ogqig3", + "l8ogpnbn", + "l8ogukpt", + "l8ob0dk4", + "l8oarkxm", + "l8oaqbj5", + "l8oanpzw", + "l8oasgat", + "ljof8bti", + "l8ok9kmj", + "l8okbmv3", + "l8okh65e", + "l8okc5z9", + "l8okdoof", + "l8ok0d4y", + "l8ok0acp", + "l8ojs3vl", + "l8ojuhud", + "l8ojmjws", + "l8oj98gw", + "l8ojb4ub", + "l8ojczfv", + "l8ojif3m", + "l8oja1pz", + "l8oiinpy", + "l8oj67fo", + "l8oiu9ax", + "l8oicj6e", + "l8oizp0r", + "ljofiex8", + "l8olci32", + "l8olbhxj", + "l8ol9xy3", + "l8ola1mr", + "l8okz45l", + "l8ol369l", + "l8ole120", + "l8olcd8n", + "l8ol84b7", + "l8okx7cd", + "l8okpxv8", + "l8okue2t", + "l8okjfla", + "l8okxgwv", + "l8oksuft", + "l8okked6", + "l8okkkef", + "l8okfvhy", + "l8okioqc", + "l8oklb21", + "l1f6bztr", + "l1f6a3qv", + "l1f6dz1j", + "l1f69ivh", + "l1g3hka7", + "l1f4yrno", + "l1g7w78w", + "l1g87t8t", + "l1ggssgl", + "l1ggm06b", + "l1ggtznr", + "l4lf0y9m", + "l1g8o84g", + "l1ggpjd7", + "l1ggp8js", + "l1gh36ky", + "l1g8apw2", + "l43tgurz", + "kwqfdovw", + "kwqf618x", + "l2kjnm8k", + "l2kjy49o", + "l2kkvar7", + "l2kk539f", + "l7ywp1vk", + "l2kjueig", + "l4qzvm5v", + "l45cjoj7", + "l2kjshy4", + "llgo5n7b", + "llgqspnh", + "l2kk4seh", + "l447j7cx", + "l2kjzugb", + "l2kkd59n", + "l2kk4snz", + "l2kkb4xa", + "l4o7ufzl", + "l4onhpvd", + "l4o8eale", + "l1ezkqes", + "l2kkeqsz", + "l2kk296y", + "l4lojzxg", + "l43yap7r", + "l5axrwsa", + "las2r756", + "l27ijusa", + "kwqfufye", + "l27ig4yy", + "kwqfhhge", + "l7ywxphs", + "l1ezowxi", + "l4qzjbsx", + "l444t31z", + "kwqfto3c", + "llgosp3i", + "llgrqyqg", + "l1ezgxe3", + "l444xjux", + "kwqhjfzk", + "kwqg35i9", + "kwqgffvw", + "lab6xfk9", + "kwqgawqp", + "l4o8co0c", + "l4onk34z", + "l4o8dk7q", + "l2kkc8s9", + "l1gl4054", + "l1ezkbsf", + "l445itcb", + "l4cjeqc0", + "lij1g3gt", + "l473kp51", + "l5ikk5zq", + "l4740wd1", + "l4742c2v", + "l5ikyrbc", + "l473w273", + "l1f5th3i", + "l1f61fa3", + "l43ttd47", + "l43u439h", + "l1f65zkh", + "l1g3yspz", + "l1g3unwh", + "l1g3yk6q", + "l1g7pgbn", + "l1g4pid1", + "l445x7tq", + "l1g7iu0j", + "l1g7vwo6", + "lletbq7t", + "lletqevy", + "ljwxkrnl", + "lamjnyx4", + "lm4vpka3", + "lm4w39kw", + "lnbss8ix", + "lm4vxp7a", + "lm4vudcf", + "lmrsfyuh", + "lmrscuvs", + "lmrssoql", + "lmrtsn5f", + "lmrtt1a2", + "ln912ymy", + "ln919mtn", + "lna2b92s", + "lna1z5hs", + "lna24vso", + "lna2aygn", + "lna2jxe5", + "lna2hnnt", + "lna2fkqe", + "lna2hbsx", + "l4ctrkzx", + "idendquest" + ], + "Label": [ + "Components for page 1" + ], + "id": "kwqa13bw", + "Name": "PAGE_1" + } + ], + "agency": "fr.insee", + "genericName": "QUESTIONNAIRE", + "Label": [ + "VraiQuest - Enquête Familles 2024 V6 Livraison" + ], + "childQuestionnaireRef": [], + "Name": "ENQFAMI24", + "Variables": { + "Variable": [ + { + "Formula": "if (isnull($SEXE_PAR1$)) then \"\" else (if ($SEXE_PAR1$ = \"1\") then \"e\" else \"\")", + "Scope": "l4idqt1t", + "Label": "LIBSEXPAR1", + "id": "ljog4umf", + "type": "CalculatedVariableType", + "Name": "LIBSEXPAR1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Formula": "if (isnull($SEXE_PAR2$)) then \"\" else (if ($SEXE_PAR2$ = \"1\") then \"e\" else \"\")", + "Scope": "l4idqt1t", + "Label": "LIBSEXPAR2", + "id": "ljog5qlp", + "type": "CalculatedVariableType", + "Name": "LIBSEXPAR2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Formula": "if (isnull($SEXE_PAR1$)) then \"il\" else (if ($SEXE_PAR1$ = \"1\") then \"elle\" else \"il\")", + "Scope": "l4idqt1t", + "Label": "LIBSUJETPAR1", + "id": "ljog2d02", + "type": "CalculatedVariableType", + "Name": "LIBSUJETPAR1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Formula": "if (isnull($SEXE_PAR2$)) then \"il\" else (if ($SEXE_PAR2$ = \"1\") then \"elle\" else \"il\")", + "Scope": "l4idqt1t", + "Label": "LIBSUJETPAR2", + "id": "ljogcnx2", + "type": "CalculatedVariableType", + "Name": "LIBSUJETPAR2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Formula": "if (isnull($TYPE_QUEST$)) then \"\" else (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\")", + "Scope": "l4idqt1t", + "Label": "LIBSEX", + "id": "ljoganho", + "type": "CalculatedVariableType", + "Name": "LIBSEX", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Formula": "2024 - ANAIS", + "Scope": "l4idqt1t", + "Label": "AGE", + "id": "ljog08x8", + "type": "CalculatedVariableType", + "Name": "AGE", + "Datatype": { + "Maximum": "110", + "Minimum": "18", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "if (isnull($SEXE_CH$)) then \"\" else (if $SEXE_CH$=\"1\" then \"e\" else \"\")", + "Scope": "l4idqt1t", + "Label": "LIBSEXCJH", + "id": "ljogftf8", + "type": "CalculatedVariableType", + "Name": "LIBSEXCJH", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Formula": "substr(cast($DATNAIS_C$,string),1,4)", + "Scope": "l4idqt1t", + "Label": "ANNAISCJ", + "id": "ljogel01", + "type": "CalculatedVariableType", + "Name": "ANNAISCJ", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Formula": "if isnull($RPSEXCONJ$) then $SEXE_C$ else $RPSEXCONJ$", + "Scope": "l4idqt1t", + "Label": "Sexe conjoint réconcilié RP et EF", + "id": "ljogh1as", + "type": "CalculatedVariableType", + "Name": "SEXCJREC", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Formula": "if (nvl($VAL_ANNAISS$,\"\") = \"2\") then substr(cast($DATNAIS_X$,string),1,4) else $RPANAISENQ$ ", + "Scope": "l4idqt1t", + "Label": "ANAISS", + "id": "ljog7t5a", + "type": "CalculatedVariableType", + "Name": "ANAISS", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Formula": "cast($ANAISS$,integer)", + "Scope": "l4idqt1t", + "Label": "ANAIS", + "id": "ljog1iz6", + "type": "CalculatedVariableType", + "Name": "ANAIS", + "Datatype": { + "Maximum": "2006", + "Minimum": "1880", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "if isnull($ANAI_ENFAIL1$) then 0 else 2024-cast($ANAI_ENFAIL1$,integer)", + "Scope": "l4idqt1t", + "Label": "AG_ENFAIL1", + "id": "ljogbx4g", + "type": "CalculatedVariableType", + "Name": "AG_ENFAIL1", + "Datatype": { + "Maximum": "110", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "if isnull($ANAI_ENFAIL2$) then 0 else 2024-cast($ANAI_ENFAIL2$,integer)", + "Scope": "l4idqt1t", + "Label": "AG_ENFAIL2", + "id": "ljogazh7", + "type": "CalculatedVariableType", + "Name": "AG_ENFAIL2", + "Datatype": { + "Maximum": "110", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "if isnull($ANAI_ENFAIL3$) then 0 else 2024-cast($ANAI_ENFAIL3$,integer)", + "Scope": "l4idqt1t", + "Label": "AG_ENFAIL3", + "id": "ljogdxy3", + "type": "CalculatedVariableType", + "Name": "AG_ENFAIL3", + "Datatype": { + "Maximum": "110", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "if isnull($ANAI_ENFAIL4$) then 0 else 2024-cast($ANAI_ENFAIL4$,integer)", + "Scope": "l4idqt1t", + "Label": "AG_ENFAIL4", + "id": "ljoghjsl", + "type": "CalculatedVariableType", + "Name": "AG_ENFAIL4", + "Datatype": { + "Maximum": "110", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "if isnull($ANAI_ENFAIL5$) then 0 else 2024-cast($ANAI_ENFAIL5$,integer)", + "Scope": "l4idqt1t", + "Label": "AG_ENFAIL5", + "id": "ljogjmnt", + "type": "CalculatedVariableType", + "Name": "AG_ENFAIL5", + "Datatype": { + "Maximum": "110", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "if isnull($ANAI_ENFAIL6$) then 0 else 2024-cast($ANAI_ENFAIL6$,integer)", + "Scope": "l4idqt1t", + "Label": "AG_ENFAIL6", + "id": "ljog3bu3", + "type": "CalculatedVariableType", + "Name": "AG_ENFAIL6", + "Datatype": { + "Maximum": "110", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "if isnull($ANAI_ENFAIL7$) then 0 else 2024-cast($ANAI_ENFAIL7$,integer)", + "Scope": "l4idqt1t", + "Label": "AG_ENFAIL7", + "id": "ljog3j43", + "type": "CalculatedVariableType", + "Name": "AG_ENFAIL7", + "Datatype": { + "Maximum": "110", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "if isnull($ANAI_ENFAIL8$) then 0 else 2024-cast($ANAI_ENFAIL8$,integer)", + "Scope": "l4idqt1t", + "Label": "AG_ENFAIL8", + "id": "ljogax1t", + "type": "CalculatedVariableType", + "Name": "AG_ENFAIL8", + "Datatype": { + "Maximum": "110", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Formula": "$RPPRENOM$", + "Scope": "l4idqt1t", + "Label": "PRENOMREP", + "id": "ll2aimkg", + "type": "CalculatedVariableType", + "Name": "PRENOMREP", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Formula": "if $TYPE_QUEST$=\"1\" then SEXE_CH else SEXE_CF", + "Scope": "l4idqt1t", + "Label": "SEXE_C", + "id": "lldhn2ou", + "type": "CalculatedVariableType", + "Name": "SEXE_C", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Formula": "if $TYPE_QUEST$=\"1\" then SEXE_U1H else SEXE_U1F", + "Scope": "l4idqt1t", + "Label": "SEXE_U1", + "id": "lldhnh87", + "type": "CalculatedVariableType", + "Name": "SEXE_U1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Formula": "if $TYPE_QUEST$=\"1\" then SEXE_U2H else SEXE_U2F", + "Scope": "l4idqt1t", + "Label": "SEXE_U2", + "id": "lldhp45c", + "type": "CalculatedVariableType", + "Name": "SEXE_U2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Formula": "if (isnull($SEXE_CF$)) then \"\" else (if $SEXE_CF$=\"2\" then \"e\" else \"\")", + "Scope": "l4idqt1t", + "Label": "LIBSEXCJF", + "id": "llmgtini", + "type": "CalculatedVariableType", + "Name": "LIBSEXCJF", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Formula": "\"2\"", + "Label": "TYPE_QUEST", + "id": "ln0892lt", + "type": "CalculatedVariableType", + "Name": "TYPE_QUEST", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Label": "RPTYPEQUEST", + "id": "ll2b2moe", + "type": "ExternalVariableType", + "Name": "RPTYPEQUEST", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Label": "RPNBQUEST", + "id": "ll2az6pb", + "type": "ExternalVariableType", + "Name": "RPNBQUEST", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Label": "RPLISTEPRENOMS", + "id": "ll2b6m2t", + "type": "ExternalVariableType", + "Name": "RPLISTEPRENOMS", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Scope": "l4idqt1t", + "Label": "RPPRENOMPAR1", + "id": "ll2avq1u", + "type": "ExternalVariableType", + "Name": "RPPRENOMPAR1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Scope": "l4idqt1t", + "Label": "RPPRENOMPAR2", + "id": "ll2b4m0i", + "type": "ExternalVariableType", + "Name": "RPPRENOMPAR2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Scope": "l4idqt1t", + "Label": "RPANAISPAR1", + "id": "ll2b0ey3", + "type": "ExternalVariableType", + "Name": "RPANAISPAR1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Scope": "l4idqt1t", + "Label": "RPANAISPAR2", + "id": "ll2azas1", + "type": "ExternalVariableType", + "Name": "RPANAISPAR2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Scope": "l4idqt1t", + "Label": "RPSEXPAR1", + "id": "ll2bd9e4", + "type": "ExternalVariableType", + "Name": "RPSEXPAR1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Scope": "l4idqt1t", + "Label": "RPSEXPAR2", + "id": "ll2axtj0", + "type": "ExternalVariableType", + "Name": "RPSEXPAR2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Scope": "l4idqt1t", + "Label": "RPPRENOMCONJ", + "id": "ll2b1clq", + "type": "ExternalVariableType", + "Name": "RPPRENOMCONJ", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Scope": "l4idqt1t", + "Label": "RPSEXCONJ", + "id": "ll2bblgh", + "type": "ExternalVariableType", + "Name": "RPSEXCONJ", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Scope": "l4idqt1t", + "Label": "RPANAISCONJ", + "id": "ll2azcsb", + "type": "ExternalVariableType", + "Name": "RPANAISCONJ", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Label": "TYPE_QUEST", + "id": "ll2b5mz0", + "type": "ExternalVariableType", + "Name": "TYPE_QUEST", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Scope": "l4idqt1t", + "Label": "RPPRENOM", + "id": "ll2b08tv", + "type": "ExternalVariableType", + "Name": "RPPRENOM", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Scope": "l4idqt1t", + "Label": "RPANAISENQ", + "id": "ll2awtri", + "type": "ExternalVariableType", + "Name": "RPANAISENQ", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Scope": "l4idqt1t", + "Label": "VAL_ANNAISS label", + "id": "ln38wwhm", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "VAL_ANNAISS", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "DATNAIS_X label", + "id": "li34mnyd", + "type": "CollectedVariableType", + "Name": "DATNAIS_X", + "Datatype": { + "Maximum": "2006-01-01", + "Minimum": "1900-01-01", + "Format": "YYYY-MM-DD", + "typeName": "DATE", + "type": "DateDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "COUPLE label", + "id": "lai10jze", + "type": "CollectedVariableType", + "CodeListReference": "kwqfz7tj", + "Name": "COUPLE", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "RAISON_VIE_CJT label", + "id": "lai0r1fc", + "type": "CollectedVariableType", + "CodeListReference": "kwqf7soc", + "Name": "RAISON_VIE_CJT", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PRECIS_VIECJT label", + "id": "li359gpp", + "type": "CollectedVariableType", + "Name": "PRECIS_VIECJT", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PRENOM_C label", + "id": "lai0w6gt", + "type": "CollectedVariableType", + "Name": "PRENOM_C", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Scope": "l4idqt1t", + "Label": "DATNAIS_C label", + "id": "lna1wj6r", + "type": "CollectedVariableType", + "Name": "DATNAIS_C", + "Datatype": { + "Maximum": "2011-01-01", + "Minimum": "1900-01-01", + "Format": "YYYY-MM-DD", + "typeName": "DATE", + "type": "DateDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEXE_CH label", + "id": "lldrx968", + "type": "CollectedVariableType", + "CodeListReference": "kwqir1cc", + "Name": "SEXE_CH", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "LIEUNAIS_CH label", + "id": "lldrjxp8", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "LIEUNAIS_CH", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "DNAI_CH label", + "id": "llvxlfv8", + "type": "CollectedVariableType", + "Name": "DNAI_CH", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PNAI_CH label", + "id": "llvxhzxi", + "type": "CollectedVariableType", + "Name": "PNAI_CH", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "TRAV_CH label", + "id": "llds0mf9", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "TRAV_CH", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PROF_CH1 label", + "id": "llvx9163", + "type": "CollectedVariableType", + "Name": "PROF_CH1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PROF_CH2 label", + "id": "llvxubc4", + "type": "CollectedVariableType", + "Name": "PROF_CH2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PROF_C2H label", + "id": "llds9t21", + "type": "CollectedVariableType", + "Name": "PROF_C2H", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Scope": "l4idqt1t", + "Label": "STATUT_CH label", + "id": "llmh74gq", + "type": "CollectedVariableType", + "CodeListReference": "l43yp3tr", + "Name": "STATUT_CH", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SAL_FP_CH label", + "id": "llmhufxz", + "type": "CollectedVariableType", + "CodeListReference": "llmhtv0t", + "Name": "SAL_FP_CH", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SAL_ENT_CH label", + "id": "llni7khh", + "type": "CollectedVariableType", + "CodeListReference": "llnh4uj2", + "Name": "SAL_ENT_CH", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEXE_CF label", + "id": "lldrj7dd", + "type": "CollectedVariableType", + "CodeListReference": "lldegmb1", + "Name": "SEXE_CF", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "LIEUNAIS_CF label", + "id": "lldrxbyn", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "LIEUNAIS_CF", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "DNAI_CF label", + "id": "llvxrs8n", + "type": "CollectedVariableType", + "Name": "DNAI_CF", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PNAI_CF label", + "id": "llvxem9q", + "type": "CollectedVariableType", + "Name": "PNAI_CF", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "TRAV_CF label", + "id": "llds46nr", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "TRAV_CF", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PROF_CF1 label", + "id": "llvxpjun", + "type": "CollectedVariableType", + "Name": "PROF_CF1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PROF_CF2 label", + "id": "llvxbql6", + "type": "CollectedVariableType", + "Name": "PROF_CF2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PROF_C2F label", + "id": "lldse6ue", + "type": "CollectedVariableType", + "Name": "PROF_C2F", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Scope": "l4idqt1t", + "Label": "STATUT_CF label", + "id": "llmhxy6z", + "type": "CollectedVariableType", + "CodeListReference": "llmhgfca", + "Name": "STATUT_CF", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SAL_FP_CF label", + "id": "llmi0a7o", + "type": "CollectedVariableType", + "CodeListReference": "llgrti9z", + "Name": "SAL_FP_CF", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SAL_ENT_CF label", + "id": "llnhq9nc", + "type": "CollectedVariableType", + "CodeListReference": "llnhh1go", + "Name": "SAL_ENT_CF", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "ANNEE_U label", + "id": "ln3921g6", + "type": "CollectedVariableType", + "Name": "ANNEE_U", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PACS label", + "id": "llm3di1p", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PACS", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "ANNEE_PACS label", + "id": "ln3ab45e", + "type": "CollectedVariableType", + "Name": "ANNEE_PACS", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "l4idqt1t", + "Label": "MARI label", + "id": "li36k75s", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "MARI", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "ANNEE_MARI label", + "id": "ln4mu3a8", + "type": "CollectedVariableType", + "Name": "ANNEE_MARI", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEPARE label", + "id": "ln0berao", + "type": "CollectedVariableType", + "CodeListReference": "l5ksmbco", + "Name": "SEPARE", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "ANNEE_S label", + "id": "ln4my54k", + "type": "CollectedVariableType", + "Name": "ANNEE_S", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "l4idqt1t", + "Label": "ANNEE_D label", + "id": "ln4n3pvd", + "type": "CollectedVariableType", + "Name": "ANNEE_D", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "l4idqt1t", + "Label": "ENFAV_C label", + "id": "li36l5p1", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "ENFAV_C", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "NBENFAV_C label", + "id": "l9iilq19", + "type": "CollectedVariableType", + "Name": "NBENFAV_C", + "Datatype": { + "Maximum": "20", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Scope": "l4idqt1t", + "Label": "NBENFAV_VENU_C1 label", + "id": "li36im4p", + "type": "CollectedVariableType", + "CodeListReference": "l4onk0te", + "Name": "NBENFAV_VENU_C1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "NBENFAV_VENU_C label", + "id": "llulzq4k", + "type": "CollectedVariableType", + "Name": "NBENFAV_VENU_C", + "Datatype": { + "Maximum": "20", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Scope": "l4idqt1t", + "Label": "VECU_C label", + "id": "li36eujn", + "type": "CollectedVariableType", + "CodeListReference": "l4onk0te", + "Name": "VECU_C", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "4 - \"Non, aucun\"", + "id": "lnbuofy2", + "type": "CollectedVariableType", + "Name": "ENF21_AUTPAR_C1", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "1 - \"Oui, tout le temps\"", + "id": "lnbuf89j", + "type": "CollectedVariableType", + "Name": "ENF21_AUTPAR_C2", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "2 - \"Oui, au moins la moitié du temps\"", + "id": "lnbudx04", + "type": "CollectedVariableType", + "Name": "ENF21_AUTPAR_C3", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "3 - \"Oui, moins de la moitié du temps\"", + "id": "lnbumlrt", + "type": "CollectedVariableType", + "Name": "ENF21_AUTPAR_C4", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "AUT_UNION label", + "id": "li36e6jz", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "AUT_UNION", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "NB_AUT_UNION label", + "id": "lagvhww3", + "type": "CollectedVariableType", + "Name": "NB_AUT_UNION", + "Datatype": { + "Maximum": "20", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PRENOM_U1 label", + "id": "l34g1oxk", + "type": "CollectedVariableType", + "Name": "PRENOM_U1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEXE_U1H label", + "id": "llgbswhy", + "type": "CollectedVariableType", + "CodeListReference": "kwqir1cc", + "Name": "SEXE_U1H", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEXE_U1F label", + "id": "llgbm843", + "type": "CollectedVariableType", + "CodeListReference": "lldegmb1", + "Name": "SEXE_U1F", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "ANNEE_U1 label", + "id": "ln4nkp5t", + "type": "CollectedVariableType", + "Name": "ANNEE_U1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PACS_U1 label", + "id": "llm3jau1", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PACS_U1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "ANNEE_PACS_U1 label", + "id": "ln8ul9ii", + "type": "CollectedVariableType", + "Name": "ANNEE_PACS_U1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "l4idqt1t", + "Label": "MARI_U1 label", + "id": "li36ikzo", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "MARI_U1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "ANNEE_MARI_U1 label", + "id": "ln8ue6l0", + "type": "CollectedVariableType", + "Name": "ANNEE_MARI_U1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEPARE_U1 label", + "id": "ln0fo50d", + "type": "CollectedVariableType", + "CodeListReference": "l5ktegqo", + "Name": "SEPARE_U1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "ANNEE_S_U1 label", + "id": "ln8uhww1", + "type": "CollectedVariableType", + "Name": "ANNEE_S_U1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "l4idqt1t", + "Label": "ANNEE_D_U1 label", + "id": "ln8v07e9", + "type": "CollectedVariableType", + "Name": "ANNEE_D_U1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "l4idqt1t", + "Label": "ENFAV_C_U1 label", + "id": "l4cje9hx", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "ENFAV_C_U1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "NBENFAV_C_U1 label", + "id": "l5ktp37h", + "type": "CollectedVariableType", + "Name": "NBENFAV_C_U1", + "Datatype": { + "Maximum": "20", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Scope": "l4idqt1t", + "Label": "NBENFAV_C1_VENU_U1 label", + "id": "l5jnkoyz", + "type": "CollectedVariableType", + "CodeListReference": "l4onk0te", + "Name": "NBENFAV_C1_VENU_U1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "NBENFAV_C_VENU_U1 label", + "id": "lluma0ok", + "type": "CollectedVariableType", + "Name": "NBENFAV_C_VENU_U1", + "Datatype": { + "Maximum": "20", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Scope": "l4idqt1t", + "Label": "AUT_U2 label", + "id": "l9ildsj0", + "type": "CollectedVariableType", + "CodeListReference": "l4onk0te", + "Name": "AUT_U2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PRENOM_U2 label", + "id": "l9ilmr79", + "type": "CollectedVariableType", + "Name": "PRENOM_U2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEXE_U2H label", + "id": "llgbwr7a", + "type": "CollectedVariableType", + "CodeListReference": "kwqir1cc", + "Name": "SEXE_U2H", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEXE_U2F label", + "id": "llgbkefo", + "type": "CollectedVariableType", + "CodeListReference": "lldegmb1", + "Name": "SEXE_U2F", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "ANNEE_U2 label", + "id": "ln8v8dtc", + "type": "CollectedVariableType", + "Name": "ANNEE_U2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PACS_U2 label", + "id": "llm3orfw", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PACS_U2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "ANNEE_PACS_U2 label", + "id": "ln8vjhau", + "type": "CollectedVariableType", + "Name": "ANNEE_PACS_U2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "l4idqt1t", + "Label": "MARI_U2 label", + "id": "l9ilplrs", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "MARI_U2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "ANNEE_MARI_U2 label", + "id": "ln8vkzos", + "type": "CollectedVariableType", + "Name": "ANNEE_MARI_U2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEPARE_U2 label", + "id": "ln0hhy39", + "type": "CollectedVariableType", + "CodeListReference": "las91jew", + "Name": "SEPARE_U2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "ANNEE_S_U2 label", + "id": "ln8w3sfe", + "type": "CollectedVariableType", + "Name": "ANNEE_S_U2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "l4idqt1t", + "Label": "ANNEE_D_U2 label", + "id": "ln8w3yku", + "type": "CollectedVariableType", + "Name": "ANNEE_D_U2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "l4idqt1t", + "Label": "ENFAV_C_U2 label", + "id": "l9imhwey", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "ENFAV_C_U2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "NBENFAV_C_U2 label", + "id": "l9imlci5", + "type": "CollectedVariableType", + "Name": "NBENFAV_C_U2", + "Datatype": { + "Maximum": "20", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Scope": "l4idqt1t", + "Label": "NBENFAV_C1_VENU_U2 label", + "id": "l9imbft1", + "type": "CollectedVariableType", + "CodeListReference": "l4onk0te", + "Name": "NBENFAV_C1_VENU_U2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "NBENFAV_C_VENU_U2 label", + "id": "liizkz29", + "type": "CollectedVariableType", + "Name": "NBENFAV_C_VENU_U2", + "Datatype": { + "Maximum": "20", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Scope": "l4idqt1t", + "Label": "ENF label", + "id": "l8k91eas", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "ENF", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "NBENF label", + "id": "lai2qly5", + "type": "CollectedVariableType", + "Name": "NBENF", + "Datatype": { + "Maximum": "20", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Scope": "l4idqt1t", + "Label": "NBENF_ADOP1 label", + "id": "la6x1ozi", + "type": "CollectedVariableType", + "CodeListReference": "l7rlvd0y", + "Name": "NBENF_ADOP1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "NBENF_ADOP label", + "id": "llumdbvx", + "type": "CollectedVariableType", + "Name": "NBENF_ADOP", + "Datatype": { + "Maximum": "20", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Scope": "l4idqt1t", + "Label": "LANGUE1_ENF label", + "id": "llvxrvuz", + "type": "CollectedVariableType", + "Name": "LANGUE1_ENF", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "LANGUE2_ENF label", + "id": "lmrrb3ah", + "type": "CollectedVariableType", + "Name": "LANGUE2_ENF", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "NBENFLOG label", + "id": "l4idtesq", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "NBENFLOG", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "CBENFLOG label", + "id": "llgm8xcr", + "type": "CollectedVariableType", + "Name": "CBENFLOG", + "Datatype": { + "Maximum": "20", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Scope": "l4idqt1t", + "Label": "NBENFAIL label", + "id": "lai321wj", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "NBENFAIL", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "CBENFAIL label", + "id": "llgn328q", + "type": "CollectedVariableType", + "Name": "CBENFAIL", + "Datatype": { + "Maximum": "20", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PRENOM_ENFLOG1 label", + "id": "l4i7t09m", + "type": "CollectedVariableType", + "Name": "PRENOM_ENFLOG1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEXE_ENFLOG1 label", + "id": "llgbzex2", + "type": "CollectedVariableType", + "CodeListReference": "llgbzo78", + "Name": "SEXE_ENFLOG1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "ANAI_ENFLOG1 label", + "id": "ln8waswe", + "type": "CollectedVariableType", + "Name": "ANAI_ENFLOG1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "l4idqt1t", + "Label": "NEFRANCE_ENFLOG1 label", + "id": "lai2q0l2", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "NEFRANCE_ENFLOG1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_VIT_ENFLOG1 label", + "id": "l8k9fx47", + "type": "CollectedVariableType", + "CodeListReference": "l44726g4", + "Name": "PARENT_VIT_ENFLOG1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_FR_ENFLOG1 label", + "id": "lai2vxng", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PARENT_FR_ENFLOG1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_DEP_ENFLOG1 label", + "id": "llvxl0i4", + "type": "CollectedVariableType", + "Name": "PARENT_DEP_ENFLOG1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_COM_ENFLOG1 label", + "id": "llvxsb8n", + "type": "CollectedVariableType", + "Name": "PARENT_COM_ENFLOG1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_PAY_ENFLOG1 label", + "id": "llvxptki", + "type": "CollectedVariableType", + "Name": "PARENT_PAY_ENFLOG1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_FREQ_ENFLOG1 label", + "id": "lij1gnxo", + "type": "CollectedVariableType", + "CodeListReference": "l1f65uvw", + "Name": "PARENT_FREQ_ENFLOG1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_DORT_ENFLOG1 label", + "id": "l4iaop7n", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PARENT_DORT_ENFLOG1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_VECU_ENFLOG1 label", + "id": "lai37uhg", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PARENT_VECU_ENFLOG1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEP_AUT_PAR_ENFLOG1 label", + "id": "la6yvw8y", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "SEP_AUT_PAR_ENFLOG1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "RESID_ENFLOG1 label", + "id": "la6ykpms", + "type": "CollectedVariableType", + "CodeListReference": "kwqjqlpa", + "Name": "RESID_ENFLOG1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "1 - \"Oui, pour des raisons de santé\"", + "id": "la6utxix", + "type": "CollectedVariableType", + "Name": "SANTE_ENFLOG11", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "2 - \"Oui, à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants\"", + "id": "la6us7lf", + "type": "CollectedVariableType", + "Name": "SANTE_ENFLOG12", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "3 - \"Oui, pour une autre raison\"", + "id": "la6uxdwx", + "type": "CollectedVariableType", + "Name": "SANTE_ENFLOG13", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "4 - \"Non\"", + "id": "la6ugpn4", + "type": "CollectedVariableType", + "Name": "SANTE_ENFLOG14", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PRENOM_ENFLOG2 label", + "id": "l4i9d8v4", + "type": "CollectedVariableType", + "Name": "PRENOM_ENFLOG2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEXE_ENFLOG2 label", + "id": "llgdof4r", + "type": "CollectedVariableType", + "CodeListReference": "llgbzo78", + "Name": "SEXE_ENFLOG2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "ANAI_ENFLOG2 label", + "id": "ln8wfpbb", + "type": "CollectedVariableType", + "Name": "ANAI_ENFLOG2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "l4idqt1t", + "Label": "NEFRANCE_ENFLOG2 label", + "id": "l4qtshn8", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "NEFRANCE_ENFLOG2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_VIT_ENFLOG2 label", + "id": "l8k9zdgm", + "type": "CollectedVariableType", + "CodeListReference": "l44726g4", + "Name": "PARENT_VIT_ENFLOG2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_FR_ENFLOG2 label", + "id": "l4pah4e9", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PARENT_FR_ENFLOG2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_DEP_ENFLOG2 label", + "id": "llvxlqkx", + "type": "CollectedVariableType", + "Name": "PARENT_DEP_ENFLOG2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_COM_ENFLOG2 label", + "id": "llvxvybh", + "type": "CollectedVariableType", + "Name": "PARENT_COM_ENFLOG2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_PAY_ENFLOG2 label", + "id": "llvy0bjq", + "type": "CollectedVariableType", + "Name": "PARENT_PAY_ENFLOG2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_FREQ_ENFLOG2 label", + "id": "lij1la9n", + "type": "CollectedVariableType", + "CodeListReference": "l1f65uvw", + "Name": "PARENT_FREQ_ENFLOG2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_DORT_ENFLOG2 label", + "id": "l4ia9byx", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PARENT_DORT_ENFLOG2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_VECU_ENFLOG2 label", + "id": "l4iai6rj", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PARENT_VECU_ENFLOG2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEP_AUT_PAR_ENFLOG2 label", + "id": "la6yqwyf", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "SEP_AUT_PAR_ENFLOG2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "RESID_ENFLOG2 label", + "id": "la6yj02g", + "type": "CollectedVariableType", + "CodeListReference": "kwqjqlpa", + "Name": "RESID_ENFLOG2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "1 - \"Oui, pour des raisons de santé\"", + "id": "laqulhxj", + "type": "CollectedVariableType", + "Name": "SANTE_ENFLOG21", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "2 - \"Oui, à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants\"", + "id": "laquvj5h", + "type": "CollectedVariableType", + "Name": "SANTE_ENFLOG22", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "3 - \"Oui, pour une autre raison\"", + "id": "laquyfyu", + "type": "CollectedVariableType", + "Name": "SANTE_ENFLOG23", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "4 - \"Non\"", + "id": "laquvz8u", + "type": "CollectedVariableType", + "Name": "SANTE_ENFLOG24", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PRENOM_ENFLOG3 label", + "id": "l4lcm3zm", + "type": "CollectedVariableType", + "Name": "PRENOM_ENFLOG3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEXE_ENFLOG3 label", + "id": "llge4od7", + "type": "CollectedVariableType", + "CodeListReference": "llgbzo78", + "Name": "SEXE_ENFLOG3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "ANAI_ENFLOG3 label", + "id": "ln8wfuqp", + "type": "CollectedVariableType", + "Name": "ANAI_ENFLOG3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "l4idqt1t", + "Label": "NEFRANCE_ENFLOG3 label", + "id": "l4qtpx6f", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "NEFRANCE_ENFLOG3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_VIT_ENFLOG3 label", + "id": "l4lcwi2r", + "type": "CollectedVariableType", + "CodeListReference": "l44726g4", + "Name": "PARENT_VIT_ENFLOG3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_FR_ENFLOG3 label", + "id": "l4pae240", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PARENT_FR_ENFLOG3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_DEP_ENFLOG3 label", + "id": "llvxwe5z", + "type": "CollectedVariableType", + "Name": "PARENT_DEP_ENFLOG3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_COM_ENFLOG3 label", + "id": "llvxo6tz", + "type": "CollectedVariableType", + "Name": "PARENT_COM_ENFLOG3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_PAY_ENFLOG3 label", + "id": "llvy3238", + "type": "CollectedVariableType", + "Name": "PARENT_PAY_ENFLOG3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_FREQ_ENFLOG3 label", + "id": "lij1fss2", + "type": "CollectedVariableType", + "CodeListReference": "l1f65uvw", + "Name": "PARENT_FREQ_ENFLOG3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_DORT_ENFLOG3 label", + "id": "l4ldfxok", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PARENT_DORT_ENFLOG3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_VECU_ENFLOG3 label", + "id": "l4ld9url", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PARENT_VECU_ENFLOG3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEP_AUT_PAR_ENFLOG3 label", + "id": "la6ymh2v", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "SEP_AUT_PAR_ENFLOG3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "RESID_ENFLOG3 label", + "id": "la6yfso4", + "type": "CollectedVariableType", + "CodeListReference": "kwqjqlpa", + "Name": "RESID_ENFLOG3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "1 - \"Oui, pour des raisons de santé\"", + "id": "la6uhnek", + "type": "CollectedVariableType", + "Name": "SANTE_ENFLOG31", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "2 - \"Oui, à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants\"", + "id": "la6umv20", + "type": "CollectedVariableType", + "Name": "SANTE_ENFLOG32", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "3 - \"Oui, pour une autre raison\"", + "id": "la6unknh", + "type": "CollectedVariableType", + "Name": "SANTE_ENFLOG33", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "4 - \"Non\"", + "id": "la6urend", + "type": "CollectedVariableType", + "Name": "SANTE_ENFLOG34", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PRENOM_ENFLOG4 label", + "id": "l4le9osn", + "type": "CollectedVariableType", + "Name": "PRENOM_ENFLOG4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEXE_ENFLOG4 label", + "id": "llgdmzwn", + "type": "CollectedVariableType", + "CodeListReference": "llgbzo78", + "Name": "SEXE_ENFLOG4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "ANAI_ENFLOG4 label", + "id": "ln8wqaw5", + "type": "CollectedVariableType", + "Name": "ANAI_ENFLOG4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "l4idqt1t", + "Label": "NEFRANCE_ENFLOG4 label", + "id": "l4qtueyu", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "NEFRANCE_ENFLOG4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_VIT_ENFLOG4 label", + "id": "l4lej5ls", + "type": "CollectedVariableType", + "CodeListReference": "l44726g4", + "Name": "PARENT_VIT_ENFLOG4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_FR_ENFLOG4 label", + "id": "l4pao37f", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PARENT_FR_ENFLOG4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_DEP_ENFLOG4 label", + "id": "llvy3nrc", + "type": "CollectedVariableType", + "Name": "PARENT_DEP_ENFLOG4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_COM_ENFLOG4 label", + "id": "llvy28yg", + "type": "CollectedVariableType", + "Name": "PARENT_COM_ENFLOG4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_PAY_ENFLOG4 label", + "id": "llvy62d0", + "type": "CollectedVariableType", + "Name": "PARENT_PAY_ENFLOG4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_FREQ_ENFLOG4 label", + "id": "lij177w0", + "type": "CollectedVariableType", + "CodeListReference": "l1f65uvw", + "Name": "PARENT_FREQ_ENFLOG4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_DORT_ENFLOG4 label", + "id": "l4leeukk", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PARENT_DORT_ENFLOG4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_VECU_ENFLOG4 label", + "id": "l4leseyk", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PARENT_VECU_ENFLOG4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEP_AUT_PAR_ENFLOG4 label", + "id": "la6yno8u", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "SEP_AUT_PAR_ENFLOG4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "RESID_ENFLOG4 label", + "id": "l4levqra", + "type": "CollectedVariableType", + "CodeListReference": "kwqjqlpa", + "Name": "RESID_ENFLOG4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "1 - \"Oui, pour des raisons de santé\"", + "id": "la6urqzv", + "type": "CollectedVariableType", + "Name": "SANTE_ENFLOG41", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "2 - \"Oui, à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants\"", + "id": "la6up8zy", + "type": "CollectedVariableType", + "Name": "SANTE_ENFLOG42", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "3 - \"Oui, pour une autre raison\"", + "id": "la6ukx69", + "type": "CollectedVariableType", + "Name": "SANTE_ENFLOG43", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "4 - \"Non\"", + "id": "la6ugfba", + "type": "CollectedVariableType", + "Name": "SANTE_ENFLOG44", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PRENOM_ENFLOG5 label", + "id": "l4lerlrc", + "type": "CollectedVariableType", + "Name": "PRENOM_ENFLOG5", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEXE_ENFLOG5 label", + "id": "llgdmwr4", + "type": "CollectedVariableType", + "CodeListReference": "llgbzo78", + "Name": "SEXE_ENFLOG5", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "ANAI_ENFLOG5 label", + "id": "ln8wwl8u", + "type": "CollectedVariableType", + "Name": "ANAI_ENFLOG5", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "l4idqt1t", + "Label": "NEFRANCE_ENFLOG5 label", + "id": "l4qto89v", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "NEFRANCE_ENFLOG5", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_VIT_ENFLOG5 label", + "id": "l4lfflqh", + "type": "CollectedVariableType", + "CodeListReference": "l44726g4", + "Name": "PARENT_VIT_ENFLOG5", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_FR_ENFLOG5 label", + "id": "l4pakdk6", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PARENT_FR_ENFLOG5", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_DEP_ENFLOG5 label", + "id": "llvy6d0r", + "type": "CollectedVariableType", + "Name": "PARENT_DEP_ENFLOG5", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_COM_ENFLOG5 label", + "id": "llvxz4y8", + "type": "CollectedVariableType", + "Name": "PARENT_COM_ENFLOG5", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_PAY_ENFLOG5 label", + "id": "llvxv8yy", + "type": "CollectedVariableType", + "Name": "PARENT_PAY_ENFLOG5", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_FREQ_ENFLOG5 label", + "id": "lij1fszm", + "type": "CollectedVariableType", + "CodeListReference": "l1f65uvw", + "Name": "PARENT_FREQ_ENFLOG5", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_DORT_ENFLOG5 label", + "id": "l4lg1pyn", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PARENT_DORT_ENFLOG5", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_VECU_ENFLOG5 label", + "id": "l4lg1xr6", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PARENT_VECU_ENFLOG5", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEP_AUT_PAR_ENFLOG5 label", + "id": "la6yidpr", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "SEP_AUT_PAR_ENFLOG5", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "RESID_ENFLOG5 label", + "id": "l4lg6rq5", + "type": "CollectedVariableType", + "CodeListReference": "kwqjqlpa", + "Name": "RESID_ENFLOG5", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "1 - \"Oui, pour des raisons de santé\"", + "id": "la6um2n4", + "type": "CollectedVariableType", + "Name": "SANTE_ENFLOG51", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "2 - \"Oui, à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants\"", + "id": "la6uvgky", + "type": "CollectedVariableType", + "Name": "SANTE_ENFLOG52", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "3 - \"Oui, pour une autre raison\"", + "id": "la6utzgi", + "type": "CollectedVariableType", + "Name": "SANTE_ENFLOG53", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "4 - \"Non\"", + "id": "la6unkqo", + "type": "CollectedVariableType", + "Name": "SANTE_ENFLOG54", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PRENOM_ENFLOG6 label", + "id": "l8n2vo7b", + "type": "CollectedVariableType", + "Name": "PRENOM_ENFLOG6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEXE_ENFLOG6 label", + "id": "llge1k6m", + "type": "CollectedVariableType", + "CodeListReference": "llgbzo78", + "Name": "SEXE_ENFLOG6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "ANAI_ENFLOG6 label", + "id": "ln8wicvh", + "type": "CollectedVariableType", + "Name": "ANAI_ENFLOG6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "l4idqt1t", + "Label": "NEFRANCE_ENFLOG6 label", + "id": "l8n2f6ge", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "NEFRANCE_ENFLOG6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_VIT_ENFLOG6 label", + "id": "l8n2jseg", + "type": "CollectedVariableType", + "CodeListReference": "l44726g4", + "Name": "PARENT_VIT_ENFLOG6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_FR_ENFLOG6 label", + "id": "l8n2bifj", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PARENT_FR_ENFLOG6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_DEP_ENFLOG6 label", + "id": "llvxysia", + "type": "CollectedVariableType", + "Name": "PARENT_DEP_ENFLOG6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_COM_ENFLOG6 label", + "id": "llvxyjt8", + "type": "CollectedVariableType", + "Name": "PARENT_COM_ENFLOG6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_PAY_ENFLOG6 label", + "id": "llvxx6pu", + "type": "CollectedVariableType", + "Name": "PARENT_PAY_ENFLOG6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_FREQ_ENFLOG6 label", + "id": "lij1973b", + "type": "CollectedVariableType", + "CodeListReference": "l1f65uvw", + "Name": "PARENT_FREQ_ENFLOG6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_DORT_ENFLOG6 label", + "id": "l8n28aup", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PARENT_DORT_ENFLOG6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_VECU_ENFLOG6 label", + "id": "l8n1v5qt", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PARENT_VECU_ENFLOG6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEP_AUT_PAR_ENFLOG6 label", + "id": "la6ygrmz", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "SEP_AUT_PAR_ENFLOG6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "RESID_ENFLOG6 label", + "id": "la6y0cbe", + "type": "CollectedVariableType", + "CodeListReference": "kwqjqlpa", + "Name": "RESID_ENFLOG6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "1 - \"Oui, pour des raisons de santé\"", + "id": "la6v17x2", + "type": "CollectedVariableType", + "Name": "SANTE_ENFLOG61", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "2 - \"Oui, à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants\"", + "id": "la6uk2lz", + "type": "CollectedVariableType", + "Name": "SANTE_ENFLOG62", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "3 - \"Oui, pour une autre raison\"", + "id": "la6umbz1", + "type": "CollectedVariableType", + "Name": "SANTE_ENFLOG63", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "4 - \"Non\"", + "id": "la6uljbd", + "type": "CollectedVariableType", + "Name": "SANTE_ENFLOG64", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PRENOM_ENFLOG7 label", + "id": "l8n3vait", + "type": "CollectedVariableType", + "Name": "PRENOM_ENFLOG7", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEXE_ENFLOG7 label", + "id": "llgdp5xh", + "type": "CollectedVariableType", + "CodeListReference": "llgbzo78", + "Name": "SEXE_ENFLOG7", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "ANAI_ENFLOG7 label", + "id": "ln8wny08", + "type": "CollectedVariableType", + "Name": "ANAI_ENFLOG7", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "l4idqt1t", + "Label": "NEFRANCE_ENFLOG7 label", + "id": "l8n3hi4s", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "NEFRANCE_ENFLOG7", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_VIT_ENFLOG7 label", + "id": "l8n3doff", + "type": "CollectedVariableType", + "CodeListReference": "l44726g4", + "Name": "PARENT_VIT_ENFLOG7", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_FR_ENFLOG7 label", + "id": "l8n3jy6y", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PARENT_FR_ENFLOG7", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_DEP_ENFLOG7 label", + "id": "llvy6ybc", + "type": "CollectedVariableType", + "Name": "PARENT_DEP_ENFLOG7", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_COM_ENFLOG7 label", + "id": "llvy2ddo", + "type": "CollectedVariableType", + "Name": "PARENT_COM_ENFLOG7", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_PAY_ENFLOG7 label", + "id": "llvy83kg", + "type": "CollectedVariableType", + "Name": "PARENT_PAY_ENFLOG7", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_FREQ_ENFLOG7 label", + "id": "lij14x5q", + "type": "CollectedVariableType", + "CodeListReference": "l1f65uvw", + "Name": "PARENT_FREQ_ENFLOG7", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_DORT_ENFLOG7 label", + "id": "l8n2ve3t", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PARENT_DORT_ENFLOG7", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_VECU_ENFLOG7 label", + "id": "l8n2x63v", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PARENT_VECU_ENFLOG7", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEP_AUT_PAR_ENFLOG7 label", + "id": "la6ya7r2", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "SEP_AUT_PAR_ENFLOG7", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "RESID_ENFLOG7 label", + "id": "la6yfv2n", + "type": "CollectedVariableType", + "CodeListReference": "kwqjqlpa", + "Name": "RESID_ENFLOG7", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "1 - \"Oui, pour des raisons de santé\"", + "id": "la6ut660", + "type": "CollectedVariableType", + "Name": "SANTE_ENFLOG71", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "2 - \"Oui, à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants\"", + "id": "la6v2yh2", + "type": "CollectedVariableType", + "Name": "SANTE_ENFLOG72", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "3 - \"Oui, pour une autre raison\"", + "id": "la6uid9q", + "type": "CollectedVariableType", + "Name": "SANTE_ENFLOG73", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "4 - \"Non\"", + "id": "la6umgx0", + "type": "CollectedVariableType", + "Name": "SANTE_ENFLOG74", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PRENOM_ENFLOG8 label", + "id": "l8n49za1", + "type": "CollectedVariableType", + "Name": "PRENOM_ENFLOG8", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEXE_ENFLOG8 label", + "id": "llge0ibj", + "type": "CollectedVariableType", + "CodeListReference": "llgbzo78", + "Name": "SEXE_ENFLOG8", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "ANAI_ENFLOG8 label", + "id": "ln8x2bub", + "type": "CollectedVariableType", + "Name": "ANAI_ENFLOG8", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "l4idqt1t", + "Label": "NEFRANCE_ENFLOG8 label", + "id": "l8n457wa", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "NEFRANCE_ENFLOG8", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_VIT_ENFLOG8 label", + "id": "l8n3v3du", + "type": "CollectedVariableType", + "CodeListReference": "l44726g4", + "Name": "PARENT_VIT_ENFLOG8", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_FR_ENFLOG8 label", + "id": "l8n3ocrc", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PARENT_FR_ENFLOG8", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_DEP_ENFLOG8 label", + "id": "llvy6byb", + "type": "CollectedVariableType", + "Name": "PARENT_DEP_ENFLOG8", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_COM_ENFLOG8 label", + "id": "llvxyo73", + "type": "CollectedVariableType", + "Name": "PARENT_COM_ENFLOG8", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_PAY_ENFLOG8 label", + "id": "llvy74id", + "type": "CollectedVariableType", + "Name": "PARENT_PAY_ENFLOG8", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_FREQ_ENFLOG8 label", + "id": "lij1njlj", + "type": "CollectedVariableType", + "CodeListReference": "l1f65uvw", + "Name": "PARENT_FREQ_ENFLOG8", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_DORT_ENFLOG8 label", + "id": "l8n3jswg", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PARENT_DORT_ENFLOG8", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_VECU_ENFLOG8 label", + "id": "l8n3v5ev", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PARENT_VECU_ENFLOG8", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEP_AUT_PAR_ENFLOG8 label", + "id": "la6vczh4", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "SEP_AUT_PAR_ENFLOG8", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "RESID_ENFLOG8 label", + "id": "la6v4m86", + "type": "CollectedVariableType", + "CodeListReference": "kwqjqlpa", + "Name": "RESID_ENFLOG8", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "1 - \"Oui, pour des raisons de santé\"", + "id": "la6un8uv", + "type": "CollectedVariableType", + "Name": "SANTE_ENFLOG81", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "2 - \"Oui, à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants\"", + "id": "la6un3h5", + "type": "CollectedVariableType", + "Name": "SANTE_ENFLOG82", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "3 - \"Oui, pour une autre raison\"", + "id": "la6unudc", + "type": "CollectedVariableType", + "Name": "SANTE_ENFLOG83", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "4 - \"Non\"", + "id": "la6utz4u", + "type": "CollectedVariableType", + "Name": "SANTE_ENFLOG84", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PRENOM_ENFAIL1 label", + "id": "l4ie7fv4", + "type": "CollectedVariableType", + "Name": "PRENOM_ENFAIL1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEXE_ENFAIL1 label", + "id": "llge79j7", + "type": "CollectedVariableType", + "CodeListReference": "llgbzo78", + "Name": "SEXE_ENFAIL1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "ANAI_ENFAIL1 label", + "id": "ln8x1qse", + "type": "CollectedVariableType", + "Name": "ANAI_ENFAIL1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "l4idqt1t", + "Label": "NEFRANCE_ENFAIL1 label", + "id": "l4ie15d7", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "NEFRANCE_ENFAIL1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_VIT_ENFAIL1 label", + "id": "l4idrbnq", + "type": "CollectedVariableType", + "CodeListReference": "l44726g4", + "Name": "PARENT_VIT_ENFAIL1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_VECU_ENFAIL1 label", + "id": "l9dv2jor", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PARENT_VECU_ENFAIL1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "DC_ENFAIL1 label", + "id": "l8k9yqfn", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "DC_ENFAIL1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "AG_DC_ENFAIL1 label", + "id": "lnbxg7f8", + "type": "CollectedVariableType", + "Name": "AG_DC_ENFAIL1", + "Datatype": { + "Maximum": "95", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Scope": "l4idqt1t", + "Label": "AG_DEPART_ENFAIL1 label", + "id": "l8ojiby4", + "type": "CollectedVariableType", + "Name": "AG_DEPART_ENFAIL1", + "Datatype": { + "Maximum": "95", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_FREQ_ENFAIL1 label", + "id": "lij1et9t", + "type": "CollectedVariableType", + "CodeListReference": "l1f65uvw", + "Name": "PARENT_FREQ_ENFAIL1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "FR_ENFAIL1 label", + "id": "lai72f8d", + "type": "CollectedVariableType", + "CodeListReference": "l4onk0te", + "Name": "FR_ENFAIL1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "DEP_ENFAIL1 label", + "id": "llvylz7b", + "type": "CollectedVariableType", + "Name": "DEP_ENFAIL1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "COM_ENFAIL1 label", + "id": "llvycj4j", + "type": "CollectedVariableType", + "Name": "COM_ENFAIL1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PAY_ENFAIL1 label", + "id": "llvyajtl", + "type": "CollectedVariableType", + "Name": "PAY_ENFAIL1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "LOG_ENFAIL1 label", + "id": "l4ie8a4z", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "LOG_ENFAIL1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "AUT_PAR_ENFAIL1 label", + "id": "l5ilmykd", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "AUT_PAR_ENFAIL1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "DORT_ENFAIL1 label", + "id": "l4iec3iy", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "DORT_ENFAIL1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEP_AUT_PAR_ENFAIL1 label", + "id": "l4o7a7kk", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "SEP_AUT_PAR_ENFAIL1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "RESID_ENFAIL1 label", + "id": "l4o7msxb", + "type": "CollectedVariableType", + "CodeListReference": "l448z131", + "Name": "RESID_ENFAIL1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "1 - \"Pour des raisons de santé\"", + "id": "lagwrj5e", + "type": "CollectedVariableType", + "Name": "SANTE_ENFAIL11", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "2 - \"A la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants\"", + "id": "lagwgqxb", + "type": "CollectedVariableType", + "Name": "SANTE_ENFAIL12", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "3 - \"Pour une autre raison\"", + "id": "lagwrywk", + "type": "CollectedVariableType", + "Name": "SANTE_ENFAIL13", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PRENOM_ENFAIL2 label", + "id": "l4lg2nk3", + "type": "CollectedVariableType", + "Name": "PRENOM_ENFAIL2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEXE_ENFAIL2 label", + "id": "llgjk2nm", + "type": "CollectedVariableType", + "CodeListReference": "llgbzo78", + "Name": "SEXE_ENFAIL2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "ANAI_ENFAIL2 label", + "id": "ln8x5qdi", + "type": "CollectedVariableType", + "Name": "ANAI_ENFAIL2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "l4idqt1t", + "Label": "NEFRANCE_ENFAIL2 label", + "id": "l4lh0ajb", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "NEFRANCE_ENFAIL2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_VIT_ENFAIL2 label", + "id": "l4lgwsqm", + "type": "CollectedVariableType", + "CodeListReference": "l44726g4", + "Name": "PARENT_VIT_ENFAIL2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_VECU_ENFAIL2 label", + "id": "l9dvg123", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PARENT_VECU_ENFAIL2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "DC_ENFAIL2 label", + "id": "l4lh4wfw", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "DC_ENFAIL2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "AG_DC_ENFAIL2 label", + "id": "lnbxmgjx", + "type": "CollectedVariableType", + "Name": "AG_DC_ENFAIL2", + "Datatype": { + "Maximum": "95", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Scope": "l4idqt1t", + "Label": "AG_DEPART_ENFAIL2 label", + "id": "l8ojxve4", + "type": "CollectedVariableType", + "Name": "AG_DEPART_ENFAIL2", + "Datatype": { + "Maximum": "95", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_FREQ_ENFAIL2 label", + "id": "lij1my05", + "type": "CollectedVariableType", + "CodeListReference": "l1f65uvw", + "Name": "PARENT_FREQ_ENFAIL2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "FR_ENFAIL2 label", + "id": "lai71qvf", + "type": "CollectedVariableType", + "CodeListReference": "l4ongo32", + "Name": "FR_ENFAIL2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "DEP_ENFAIL2 label", + "id": "llvyhx8j", + "type": "CollectedVariableType", + "Name": "DEP_ENFAIL2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "COM_ENFAIL2 label", + "id": "llvys5r8", + "type": "CollectedVariableType", + "Name": "COM_ENFAIL2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PAY_ENFAIL2 label", + "id": "llvyqaj6", + "type": "CollectedVariableType", + "Name": "PAY_ENFAIL2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "LOG_ENFAIL2 label", + "id": "l4lj0cki", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "LOG_ENFAIL2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "AUT_PAR_ENFAIL2 label", + "id": "l4ljyhe4", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "AUT_PAR_ENFAIL2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "DORT_ENFAIL2 label", + "id": "l4lk2gex", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "DORT_ENFAIL2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEP_AUT_PAR_ENFAIL2 label", + "id": "l7un2f3g", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "SEP_AUT_PAR_ENFAIL2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "RESID_ENFAIL2 label", + "id": "l4o7d0hf", + "type": "CollectedVariableType", + "CodeListReference": "l448z131", + "Name": "RESID_ENFAIL2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "1 - \"Pour des raisons de santé\"", + "id": "lagwqnte", + "type": "CollectedVariableType", + "Name": "SANTE_ENFAIL21", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "2 - \"A la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants\"", + "id": "lagwu8wr", + "type": "CollectedVariableType", + "Name": "SANTE_ENFAIL22", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "3 - \"Pour une autre raison\"", + "id": "lagwevqg", + "type": "CollectedVariableType", + "Name": "SANTE_ENFAIL23", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PRENOM_ENFAIL3 label", + "id": "l4lfyg5t", + "type": "CollectedVariableType", + "Name": "PRENOM_ENFAIL3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEXE_ENFAIL3 label", + "id": "llgjuydk", + "type": "CollectedVariableType", + "CodeListReference": "llgbzo78", + "Name": "SEXE_ENFAIL3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "ANAI_ENFAIL3 label", + "id": "ln8xfz8v", + "type": "CollectedVariableType", + "Name": "ANAI_ENFAIL3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "l4idqt1t", + "Label": "NEFRANCE_ENFAIL3 label", + "id": "l4lgo3d3", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "NEFRANCE_ENFAIL3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_VIT_ENFAIL3 label", + "id": "l4lh0wg5", + "type": "CollectedVariableType", + "CodeListReference": "l44726g4", + "Name": "PARENT_VIT_ENFAIL3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_VECU_ENFAIL3 label", + "id": "l9dv00hr", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PARENT_VECU_ENFAIL3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "DC_ENFAIL3 label", + "id": "l4lh1dxb", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "DC_ENFAIL3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "AG_DC_ENFAIL3 label", + "id": "l9fl847j", + "type": "CollectedVariableType", + "Name": "AG_DC_ENFAIL3", + "Datatype": { + "Maximum": "95", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Scope": "l4idqt1t", + "Label": "AG_DEPART_ENFAIL3 label", + "id": "l8ojnks0", + "type": "CollectedVariableType", + "Name": "AG_DEPART_ENFAIL3", + "Datatype": { + "Maximum": "95", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_FREQ_ENFAIL3 label", + "id": "lij1hbsi", + "type": "CollectedVariableType", + "CodeListReference": "l1f65uvw", + "Name": "PARENT_FREQ_ENFAIL3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "FR_ENFAIL3 label", + "id": "lai6zu1s", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "FR_ENFAIL3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "DEP_ENFAIL3 label", + "id": "llvyhkhn", + "type": "CollectedVariableType", + "Name": "DEP_ENFAIL3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "COM_ENFAIL3 label", + "id": "llvyc82v", + "type": "CollectedVariableType", + "Name": "COM_ENFAIL3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PAY_ENFAIL3 label", + "id": "llvytzoi", + "type": "CollectedVariableType", + "Name": "PAY_ENFAIL3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "LOG_ENFAIL3 label", + "id": "l4lj26cu", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "LOG_ENFAIL3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "AUT_PAR_ENFAIL3 label", + "id": "lasa136n", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "AUT_PAR_ENFAIL3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "DORT_ENFAIL3 label", + "id": "l4lk2ey2", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "DORT_ENFAIL3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEP_AUT_PAR_ENFAIL3 label", + "id": "l4o7s6rx", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "SEP_AUT_PAR_ENFAIL3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "RESID_ENFAIL3 label", + "id": "l4o7hjqb", + "type": "CollectedVariableType", + "CodeListReference": "l448z131", + "Name": "RESID_ENFAIL3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "1 - \"Pour des raisons de santé\"", + "id": "lagwatn6", + "type": "CollectedVariableType", + "Name": "SANTE_ENFAIL31", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "2 - \"A la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants\"", + "id": "lagwgz17", + "type": "CollectedVariableType", + "Name": "SANTE_ENFAIL32", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "3 - \"Pour une autre raison\"", + "id": "lagwogef", + "type": "CollectedVariableType", + "Name": "SANTE_ENFAIL33", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PRENOM_ENFAIL4 label", + "id": "l4lg13lj", + "type": "CollectedVariableType", + "Name": "PRENOM_ENFAIL4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEXE_ENFAIL4 label", + "id": "llgjs283", + "type": "CollectedVariableType", + "CodeListReference": "llgbzo78", + "Name": "SEXE_ENFAIL4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "ANAI_ENFAIL4 label", + "id": "ln8xa2yf", + "type": "CollectedVariableType", + "Name": "ANAI_ENFAIL4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "l4idqt1t", + "Label": "NEFRANCE_ENFAIL4 label", + "id": "l4lh0w7d", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "NEFRANCE_ENFAIL4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_VIT_ENFAIL4 label", + "id": "l4lgtg6z", + "type": "CollectedVariableType", + "CodeListReference": "l44726g4", + "Name": "PARENT_VIT_ENFAIL4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_VECU_ENFAIL4 label", + "id": "l9duyjkw", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PARENT_VECU_ENFAIL4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "DC_ENFAIL4 label", + "id": "l4lh0y8b", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "DC_ENFAIL4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "AG_DC_ENFAIL4 label", + "id": "lnbxmkfn", + "type": "CollectedVariableType", + "Name": "AG_DC_ENFAIL4", + "Datatype": { + "Maximum": "95", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Scope": "l4idqt1t", + "Label": "AG_DEPART_ENFAIL4 label", + "id": "l8ojzphy", + "type": "CollectedVariableType", + "Name": "AG_DEPART_ENFAIL4", + "Datatype": { + "Maximum": "95", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_FREQ_ENFAIL4 label", + "id": "lij1q243", + "type": "CollectedVariableType", + "CodeListReference": "l1f65uvw", + "Name": "PARENT_FREQ_ENFAIL4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "FR_ENFAIL4 label", + "id": "lai6scfn", + "type": "CollectedVariableType", + "CodeListReference": "l4onqoyo", + "Name": "FR_ENFAIL4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "DEP_ENFAIL4 label", + "id": "llvyp2uu", + "type": "CollectedVariableType", + "Name": "DEP_ENFAIL4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "COM_ENFAIL4 label", + "id": "llvytozk", + "type": "CollectedVariableType", + "Name": "COM_ENFAIL4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PAY_ENFAIL4 label", + "id": "llvyka8z", + "type": "CollectedVariableType", + "Name": "PAY_ENFAIL4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "LOG_ENFAIL4 label", + "id": "l4ljh4hd", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "LOG_ENFAIL4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "AUT_PAR_ENFAIL4 label", + "id": "l4lmfm7a", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "AUT_PAR_ENFAIL4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "DORT_ENFAIL4 label", + "id": "l4lk882x", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "DORT_ENFAIL4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEP_AUT_PAR_ENFAIL4 label", + "id": "l4o80sj1", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "SEP_AUT_PAR_ENFAIL4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "RESID_ENFAIL4 label", + "id": "l4o7hp12", + "type": "CollectedVariableType", + "CodeListReference": "l448z131", + "Name": "RESID_ENFAIL4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "1 - \"Pour des raisons de santé\"", + "id": "lagwk26x", + "type": "CollectedVariableType", + "Name": "SANTE_ENFAIL41", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "2 - \"A la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants\"", + "id": "lagwolgd", + "type": "CollectedVariableType", + "Name": "SANTE_ENFAIL42", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "3 - \"Pour une autre raison\"", + "id": "lagwtg5h", + "type": "CollectedVariableType", + "Name": "SANTE_ENFAIL43", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PRENOM_ENFAIL5 label", + "id": "l4lgdupn", + "type": "CollectedVariableType", + "Name": "PRENOM_ENFAIL5", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEXE_ENFAIL5 label", + "id": "llgjrwzu", + "type": "CollectedVariableType", + "CodeListReference": "llgbzo78", + "Name": "SEXE_ENFAIL5", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "ANAI_ENFAIL5 label", + "id": "ln8xgsgo", + "type": "CollectedVariableType", + "Name": "ANAI_ENFAIL5", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "l4idqt1t", + "Label": "NEFRANCE_ENFAIL5 label", + "id": "l4lgnml2", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "NEFRANCE_ENFAIL5", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_VIT_ENFAIL5 label", + "id": "l4lh0oju", + "type": "CollectedVariableType", + "CodeListReference": "l44726g4", + "Name": "PARENT_VIT_ENFAIL5", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_VECU_ENFAIL5 label", + "id": "l9dvdo4p", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PARENT_VECU_ENFAIL5", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "DC_ENFAIL5 label", + "id": "l4lh78pu", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "DC_ENFAIL5", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "AG_DC_ENFAIL5 label", + "id": "l9flf9hj", + "type": "CollectedVariableType", + "Name": "AG_DC_ENFAIL5", + "Datatype": { + "Maximum": "95", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Scope": "l4idqt1t", + "Label": "AG_DEPART_ENFAIL5 label", + "id": "l8ojekyz", + "type": "CollectedVariableType", + "Name": "AG_DEPART_ENFAIL5", + "Datatype": { + "Maximum": "95", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_FREQ_ENFAIL5 label", + "id": "lij1mx2e", + "type": "CollectedVariableType", + "CodeListReference": "l1f65uvw", + "Name": "PARENT_FREQ_ENFAIL5", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "FR_ENFAIL5 label", + "id": "lai6w8kr", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "FR_ENFAIL5", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "DEP_ENFAIL5 label", + "id": "llvysls5", + "type": "CollectedVariableType", + "Name": "DEP_ENFAIL5", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "COM_ENFAIL5 label", + "id": "llvz0fqm", + "type": "CollectedVariableType", + "Name": "COM_ENFAIL5", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PAY_ENFAIL5 label", + "id": "llvylns4", + "type": "CollectedVariableType", + "Name": "PAY_ENFAIL5", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "LOG_ENFAIL5 label", + "id": "l4lj62bs", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "LOG_ENFAIL5", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "AUT_PAR_ENFAIL5 label", + "id": "l4o7oknh", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "AUT_PAR_ENFAIL5", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "DORT_ENFAIL5 label", + "id": "l4ljvm4i", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "DORT_ENFAIL5", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEP_AUT_PAR_ENFAIL5 label", + "id": "l4o7xizu", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "SEP_AUT_PAR_ENFAIL5", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "RESID_ENFAIL5 label", + "id": "l4o7n3ug", + "type": "CollectedVariableType", + "CodeListReference": "l448z131", + "Name": "RESID_ENFAIL5", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "1 - \"Pour des raisons de santé\"", + "id": "lagwmxd3", + "type": "CollectedVariableType", + "Name": "SANTE_ENFAIL51", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "2 - \"A la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants\"", + "id": "lagwbebj", + "type": "CollectedVariableType", + "Name": "SANTE_ENFAIL52", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "3 - \"Pour une autre raison\"", + "id": "lagwpanz", + "type": "CollectedVariableType", + "Name": "SANTE_ENFAIL53", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PRENOM_ENFAIL6 label", + "id": "l8oi7fel", + "type": "CollectedVariableType", + "Name": "PRENOM_ENFAIL6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEXE_ENFAIL6 label", + "id": "llgjkq9j", + "type": "CollectedVariableType", + "CodeListReference": "llgbzo78", + "Name": "SEXE_ENFAIL6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "ANAI_ENFAIL6 label", + "id": "ln8xae81", + "type": "CollectedVariableType", + "Name": "ANAI_ENFAIL6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "l4idqt1t", + "Label": "NEFRANCE_ENFAIL6 label", + "id": "l8oij0b0", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "NEFRANCE_ENFAIL6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_VIT_ENFAIL6 label", + "id": "l8ohw6dq", + "type": "CollectedVariableType", + "CodeListReference": "l44726g4", + "Name": "PARENT_VIT_ENFAIL6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_VECU_ENFAIL6 label", + "id": "l9duy8g6", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PARENT_VECU_ENFAIL6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "DC_ENFAIL6 label", + "id": "l8oi73zk", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "DC_ENFAIL6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "AG_DC_ENFAIL6 label", + "id": "lnbxb1g6", + "type": "CollectedVariableType", + "Name": "AG_DC_ENFAIL6", + "Datatype": { + "Maximum": "95", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Scope": "l4idqt1t", + "Label": "AG_DEPART_ENFAIL6 label", + "id": "l8ojv4ww", + "type": "CollectedVariableType", + "Name": "AG_DEPART_ENFAIL6", + "Datatype": { + "Maximum": "95", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_FREQ_ENFAIL6 label", + "id": "lij1ifw6", + "type": "CollectedVariableType", + "CodeListReference": "l1f65uvw", + "Name": "PARENT_FREQ_ENFAIL6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "FR_ENFAIL6 label", + "id": "lai76uzw", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "FR_ENFAIL6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "DEP_ENFAIL6 label", + "id": "llvywof5", + "type": "CollectedVariableType", + "Name": "DEP_ENFAIL6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "COM_ENFAIL6 label", + "id": "llvyoxe1", + "type": "CollectedVariableType", + "Name": "COM_ENFAIL6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PAY_ENFAIL6 label", + "id": "llvypr5t", + "type": "CollectedVariableType", + "Name": "PAY_ENFAIL6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "LOG_ENFAIL6 label", + "id": "l8ogvwpl", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "LOG_ENFAIL6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "AUT_PAR_ENFAIL6 label", + "id": "l8oaxy5v", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "AUT_PAR_ENFAIL6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "DORT_ENFAIL6 label", + "id": "l8ob2278", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "DORT_ENFAIL6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEP_AUT_PAR_ENFAIL6 label", + "id": "l8ob0bwo", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "SEP_AUT_PAR_ENFAIL6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "RESID_ENFAIL6 label", + "id": "l8ob2zsx", + "type": "CollectedVariableType", + "CodeListReference": "l448z131", + "Name": "RESID_ENFAIL6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "1 - \"Pour des raisons de santé\"", + "id": "lagwf9yy", + "type": "CollectedVariableType", + "Name": "SANTE_ENFAIL61", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "2 - \"A la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants\"", + "id": "lagwd4vw", + "type": "CollectedVariableType", + "Name": "SANTE_ENFAIL62", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "3 - \"Pour une autre raison\"", + "id": "lagwt98o", + "type": "CollectedVariableType", + "Name": "SANTE_ENFAIL63", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PRENOM_ENFAIL7 label", + "id": "l8okm9vv", + "type": "CollectedVariableType", + "Name": "PRENOM_ENFAIL7", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEXE_ENFAIL7 label", + "id": "llgjuj96", + "type": "CollectedVariableType", + "CodeListReference": "llgbzo78", + "Name": "SEXE_ENFAIL7", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "ANAI_ENFAIL7 label", + "id": "ln8xllr2", + "type": "CollectedVariableType", + "Name": "ANAI_ENFAIL7", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "l4idqt1t", + "Label": "NEFRANCE_ENFAIL7 label", + "id": "l8ojza9l", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "NEFRANCE_ENFAIL7", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_VIT_ENFAIL7 label", + "id": "l8ok36f1", + "type": "CollectedVariableType", + "CodeListReference": "l44726g4", + "Name": "PARENT_VIT_ENFAIL7", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_VECU_ENFAIL7 label", + "id": "l9dvd6ci", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PARENT_VECU_ENFAIL7", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "DC_ENFAIL7 label", + "id": "l8ojsho1", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "DC_ENFAIL7", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "AG_DC_ENFAIL7 label", + "id": "lnbxenl4", + "type": "CollectedVariableType", + "Name": "AG_DC_ENFAIL7", + "Datatype": { + "Maximum": "95", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Scope": "l4idqt1t", + "Label": "AG_DEPART_ENFAIL7 label", + "id": "l8ojfunn", + "type": "CollectedVariableType", + "Name": "AG_DEPART_ENFAIL7", + "Datatype": { + "Maximum": "95", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_FREQ_ENFAIL7 label", + "id": "lij1hx9z", + "type": "CollectedVariableType", + "CodeListReference": "l1f65uvw", + "Name": "PARENT_FREQ_ENFAIL7", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "FR_ENFAIL7 label", + "id": "lai70va9", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "FR_ENFAIL7", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "DEP_ENFAIL7 label", + "id": "llvyy4np", + "type": "CollectedVariableType", + "Name": "DEP_ENFAIL7", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "COM_ENFAIL7 label", + "id": "llvypqbk", + "type": "CollectedVariableType", + "Name": "COM_ENFAIL7", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PAY_ENFAIL7 label", + "id": "llvyovak", + "type": "CollectedVariableType", + "Name": "PAY_ENFAIL7", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "LOG_ENFAIL7 label", + "id": "l8ojhh6l", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "LOG_ENFAIL7", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "AUT_PAR_ENFAIL7 label", + "id": "l8oig2bs", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "AUT_PAR_ENFAIL7", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "DORT_ENFAIL7 label", + "id": "l8oj2ija", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "DORT_ENFAIL7", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEP_AUT_PAR_ENFAIL7 label", + "id": "l8oivphd", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "SEP_AUT_PAR_ENFAIL7", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "RESID_ENFAIL7 label", + "id": "l8oith8b", + "type": "CollectedVariableType", + "CodeListReference": "l448z131", + "Name": "RESID_ENFAIL7", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "1 - \"Pour des raisons de santé\"", + "id": "lagwmluw", + "type": "CollectedVariableType", + "Name": "SANTE_ENFAIL71", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "2 - \"A la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants\"", + "id": "lagwrae6", + "type": "CollectedVariableType", + "Name": "SANTE_ENFAIL72", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "3 - \"Pour une autre raison\"", + "id": "lagwha9j", + "type": "CollectedVariableType", + "Name": "SANTE_ENFAIL73", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PRENOM_ENFAIL8 label", + "id": "l8olff0v", + "type": "CollectedVariableType", + "Name": "PRENOM_ENFAIL8", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEXE_ENFAIL8 label", + "id": "llgjincl", + "type": "CollectedVariableType", + "CodeListReference": "llgbzo78", + "Name": "SEXE_ENFAIL8", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "ANAI_ENFAIL8 label", + "id": "ln8xn95w", + "type": "CollectedVariableType", + "Name": "ANAI_ENFAIL8", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "l4idqt1t", + "Label": "NEFRANCE_ENFAIL8 label", + "id": "l8olls0i", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "NEFRANCE_ENFAIL8", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_VIT_ENFAIL8 label", + "id": "l8oljfdf", + "type": "CollectedVariableType", + "CodeListReference": "l44726g4", + "Name": "PARENT_VIT_ENFAIL8", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_VECU_ENFAIL8 label", + "id": "l9dvbaqq", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PARENT_VECU_ENFAIL8", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "DC_ENFAIL8 label", + "id": "l8ol5yre", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "DC_ENFAIL8", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "AG_DC_ENFAIL8 label", + "id": "l9flj5ll", + "type": "CollectedVariableType", + "Name": "AG_DC_ENFAIL8", + "Datatype": { + "Maximum": "95", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Scope": "l4idqt1t", + "Label": "AG_DEPART_ENFAIL8 label", + "id": "l8okya6y", + "type": "CollectedVariableType", + "Name": "AG_DEPART_ENFAIL8", + "Datatype": { + "Maximum": "95", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PARENT_FREQ_ENFAIL8 label", + "id": "lij1c5mx", + "type": "CollectedVariableType", + "CodeListReference": "l1f65uvw", + "Name": "PARENT_FREQ_ENFAIL8", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "FR_ENFAIL8 label", + "id": "lai6too4", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "FR_ENFAIL8", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "DEP_ENFAIL8 label", + "id": "llvz0k9p", + "type": "CollectedVariableType", + "Name": "DEP_ENFAIL8", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "COM_ENFAIL8 label", + "id": "llvz0iw5", + "type": "CollectedVariableType", + "Name": "COM_ENFAIL8", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PAY_ENFAIL8 label", + "id": "llvyxbi2", + "type": "CollectedVariableType", + "Name": "PAY_ENFAIL8", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "LOG_ENFAIL8 label", + "id": "l8okm2oj", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "LOG_ENFAIL8", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "AUT_PAR_ENFAIL8 label", + "id": "l8okskbt", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "AUT_PAR_ENFAIL8", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "DORT_ENFAIL8 label", + "id": "l8okje65", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "DORT_ENFAIL8", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEP_AUT_PAR_ENFAIL8 label", + "id": "l8okt0i0", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "SEP_AUT_PAR_ENFAIL8", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "RESID_ENFAIL8 label", + "id": "l8okgq26", + "type": "CollectedVariableType", + "CodeListReference": "l448z131", + "Name": "RESID_ENFAIL8", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "1 - \"Pour des raisons de santé\"", + "id": "lagwt3sh", + "type": "CollectedVariableType", + "Name": "SANTE_ENFAIL81", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "2 - \"A la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants\"", + "id": "lagwo4de", + "type": "CollectedVariableType", + "Name": "SANTE_ENFAIL82", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "3 - \"Pour une autre raison\"", + "id": "lagwnufr", + "type": "CollectedVariableType", + "Name": "SANTE_ENFAIL83", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PETIT_ENF label", + "id": "l5iaj6j7", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PETIT_ENF", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "NB_PETIT_ENF label", + "id": "lm69vsc6", + "type": "CollectedVariableType", + "Name": "NB_PETIT_ENF", + "Datatype": { + "Maximum": "40", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Scope": "l4idqt1t", + "Label": "AG_PETIT_ENF label", + "id": "lij1xpcq", + "type": "CollectedVariableType", + "Name": "AG_PETIT_ENF", + "Datatype": { + "Maximum": "80", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Scope": "l4idqt1t", + "Label": "2 - Une ou plusieurs fois par semaine", + "id": "llf391dx", + "type": "CollectedVariableType", + "Name": "FREQ_VU_PETIT_ENF1", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "3 - Une ou plusieurs fois par mois", + "id": "llf3cd67", + "type": "CollectedVariableType", + "Name": "FREQ_VU_PETIT_ENF2", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "4 - Une ou plusieurs fois par an", + "id": "llf32wcn", + "type": "CollectedVariableType", + "Name": "FREQ_VU_PETIT_ENF3", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "5 - Plus rarement ou jamais", + "id": "llf2wpz5", + "type": "CollectedVariableType", + "Name": "FREQ_VU_PETIT_ENF4", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "2 - Une ou plusieurs fois par semaine", + "id": "llf2x5mt", + "type": "CollectedVariableType", + "Name": "FREQ_CONT_PETIT_ENF1", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "3 - Une ou plusieurs fois par mois", + "id": "llf31djx", + "type": "CollectedVariableType", + "Name": "FREQ_CONT_PETIT_ENF2", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "4 - Une ou plusieurs fois par an", + "id": "llf35phn", + "type": "CollectedVariableType", + "Name": "FREQ_CONT_PETIT_ENF3", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "5 - Plus rarement ou jamais", + "id": "llf2x3ve", + "type": "CollectedVariableType", + "Name": "FREQ_CONT_PETIT_ENF4", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "1 - \"Oui, une aide pour les tâches quotidiennes\"", + "id": "lmrrau72", + "type": "CollectedVariableType", + "Name": "AIDE_APPORT1", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "2 - \"Oui, une aide financière ou matérielle\"", + "id": "lmrreutd", + "type": "CollectedVariableType", + "Name": "AIDE_APPORT2", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "3 - \"Oui, un soutien moral\"", + "id": "lmrro9wt", + "type": "CollectedVariableType", + "Name": "AIDE_APPORT3", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "4 - \"Oui, vous êtes\" || (if ($TYPE_QUEST$ =\"1\") then \" tuteur ou curateur \" else \" tutrice ou curatrice\")", + "id": "lmrrld0e", + "type": "CollectedVariableType", + "Name": "AIDE_APPORT4", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "5 - \"Non, aucune aide de ce type\"", + "id": "lmrriwq0", + "type": "CollectedVariableType", + "Name": "AIDE_APPORT5", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "1 - Vos parents", + "id": "llz4pt0a", + "type": "CollectedVariableType", + "Name": "QUI_AID_APP_11", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "2 - \"\" || if ($SEXE_CH$=\"2\" or isnull($SEXE_CH$)) and ($SEXE_CF$=\"1\" or isnull($SEXE_CF$)) then \"Votre conjoint\" else \"Votre conjointe\" ", + "id": "llz4w6fk", + "type": "CollectedVariableType", + "Name": "QUI_AID_APP_12", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "3 - Vos enfants", + "id": "llz50qv7", + "type": "CollectedVariableType", + "Name": "QUI_AID_APP_13", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "4 - Un autre membre de la famille", + "id": "llz4x6ay", + "type": "CollectedVariableType", + "Name": "QUI_AID_APP_14", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "1 - Vos parents", + "id": "l8le1kw4", + "type": "CollectedVariableType", + "Name": "QUI_AID_APP_21", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "2 - Votre conjoint(e)", + "id": "l8le04ts", + "type": "CollectedVariableType", + "Name": "QUI_AID_APP_22", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "3 - Vos enfants", + "id": "l8le2mq9", + "type": "CollectedVariableType", + "Name": "QUI_AID_APP_23", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "4 - Un autre membre de la famille", + "id": "l8ldz05j", + "type": "CollectedVariableType", + "Name": "QUI_AID_APP_24", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "1 - Vos parents", + "id": "l8ldwcav", + "type": "CollectedVariableType", + "Name": "QUI_AID_APP_31", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "2 - Votre conjoint(e)", + "id": "l8le2myg", + "type": "CollectedVariableType", + "Name": "QUI_AID_APP_32", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "3 - Vos enfants", + "id": "l8le88o9", + "type": "CollectedVariableType", + "Name": "QUI_AID_APP_33", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "4 - Un autre membre de la famille", + "id": "l8lds3ui", + "type": "CollectedVariableType", + "Name": "QUI_AID_APP_34", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "1 - Vos parents", + "id": "l8le5n9q", + "type": "CollectedVariableType", + "Name": "QUI_AID_APP_41", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "2 - Votre conjoint(e)", + "id": "l8le80hx", + "type": "CollectedVariableType", + "Name": "QUI_AID_APP_42", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "3 - Vos enfants", + "id": "l8lduam7", + "type": "CollectedVariableType", + "Name": "QUI_AID_APP_43", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "4 - Un autre membre de la famille", + "id": "l8ldya76", + "type": "CollectedVariableType", + "Name": "QUI_AID_APP_44", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "1 - \"Oui, une aide pour les tâches quotidiennes\"", + "id": "lmrrafby", + "type": "CollectedVariableType", + "Name": "AIDE_RECUE1", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "2 - \"Oui, une aide financière ou matérielle\"", + "id": "lmrrig7t", + "type": "CollectedVariableType", + "Name": "AIDE_RECUE2", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "3 - \"Oui, un soutien moral\"", + "id": "lmrr4p8n", + "type": "CollectedVariableType", + "Name": "AIDE_RECUE3", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "5 - \"Non, aucune aide de ce type\"", + "id": "lmrr90h5", + "type": "CollectedVariableType", + "Name": "AIDE_RECUE4", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "1 - Vos parents", + "id": "l8le4u3b", + "type": "CollectedVariableType", + "Name": "QUI_AID_REC_11", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "2 - Votre conjoint(e)", + "id": "l8le2502", + "type": "CollectedVariableType", + "Name": "QUI_AID_REC_12", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "3 - Vos enfants", + "id": "l8le9mmb", + "type": "CollectedVariableType", + "Name": "QUI_AID_REC_13", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "4 - Un autre membre de la famille", + "id": "l8lebsfh", + "type": "CollectedVariableType", + "Name": "QUI_AID_REC_14", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "1 - Vos parents", + "id": "l8le8q83", + "type": "CollectedVariableType", + "Name": "QUI_AID_REC_21", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "2 - Votre conjoint(e)", + "id": "l8le2aes", + "type": "CollectedVariableType", + "Name": "QUI_AID_REC_22", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "3 - Vos enfants", + "id": "l8lec6vu", + "type": "CollectedVariableType", + "Name": "QUI_AID_REC_23", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "4 - Un autre membre de la famille", + "id": "l8lduhdu", + "type": "CollectedVariableType", + "Name": "QUI_AID_REC_24", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "1 - Vos parents", + "id": "l5jnxmnk", + "type": "CollectedVariableType", + "Name": "QUI_AID_REC_31", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "2 - Votre conjoint(e)", + "id": "l5jo1job", + "type": "CollectedVariableType", + "Name": "QUI_AID_REC_32", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "3 - Vos enfants", + "id": "l5joa3bl", + "type": "CollectedVariableType", + "Name": "QUI_AID_REC_33", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "4 - Un autre membre de la famille", + "id": "l5jo6z82", + "type": "CollectedVariableType", + "Name": "QUI_AID_REC_34", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "LANGUE1_ENTOU label", + "id": "llvz479p", + "type": "CollectedVariableType", + "Name": "LANGUE1_ENTOU", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "LANGUE2_ENTOU label", + "id": "lmrr3o83", + "type": "CollectedVariableType", + "Name": "LANGUE2_ENTOU", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PRENOM_PAR1 label", + "id": "l4oec1lq", + "type": "CollectedVariableType", + "Name": "PRENOM_PAR1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Scope": "l4idqt1t", + "Label": "ANAI_PAR1 label", + "id": "lnekb9g4", + "type": "CollectedVariableType", + "Name": "ANAI_PAR1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEXE_PAR1 label", + "id": "l3vpisia", + "type": "CollectedVariableType", + "CodeListReference": "kwqir1cc", + "Name": "SEXE_PAR1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "NATIO_PAR1 label", + "id": "l34iqhee", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "NATIO_PAR1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "TRAV_PAR1 label", + "id": "l7yx0sde", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "TRAV_PAR1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PROF_PAR1H label", + "id": "llvywjqt", + "type": "CollectedVariableType", + "Name": "PROF_PAR1H", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PROF_PAR1F label", + "id": "llvytrfl", + "type": "CollectedVariableType", + "Name": "PROF_PAR1F", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PROF_PAR1_2 label", + "id": "l8ldy184", + "type": "CollectedVariableType", + "Name": "PROF_PAR1_2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Scope": "l4idqt1t", + "Label": "STATUT_PAR1 label", + "id": "llgnqpnr", + "type": "CollectedVariableType", + "CodeListReference": "l1f23fi8", + "Name": "STATUT_PAR1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SAL_FP_PAR1 label", + "id": "llgrqor1", + "type": "CollectedVariableType", + "CodeListReference": "llgq8911", + "Name": "SAL_FP_PAR1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SAL_ENT_PAR1 label", + "id": "llnhw38q", + "type": "CollectedVariableType", + "CodeListReference": "llgoa6cg", + "Name": "SAL_ENT_PAR1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "LANGUE1_PAR1 label", + "id": "llvypib1", + "type": "CollectedVariableType", + "Name": "LANGUE1_PAR1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "LANGUE2_PAR1 label", + "id": "lmrr15k8", + "type": "CollectedVariableType", + "Name": "LANGUE2_PAR1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "VIV_PAR1 label", + "id": "l8k99ilg", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "VIV_PAR1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "ANNEE_DC_PAR1 label", + "id": "ln8yc8bi", + "type": "CollectedVariableType", + "Name": "ANNEE_DC_PAR1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "l4idqt1t", + "Label": "LOG_PAR1 label", + "id": "lm0e90yl", + "type": "CollectedVariableType", + "CodeListReference": "l4qualpe", + "Name": "LOG_PAR1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "FR_PAR1 label", + "id": "lai70nzp", + "type": "CollectedVariableType", + "CodeListReference": "l4o7x17y", + "Name": "FR_PAR1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "DEP_PAR1 label", + "id": "llvz8tcu", + "type": "CollectedVariableType", + "Name": "DEP_PAR1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "COM_PAR1 label", + "id": "llvytyg5", + "type": "CollectedVariableType", + "Name": "COM_PAR1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PAY_PAR1 label", + "id": "llvyqp24", + "type": "CollectedVariableType", + "Name": "PAY_PAR1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "ETAB_PAR1 label", + "id": "l2kihdd6", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "ETAB_PAR1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "FREQ_VU_PAR1 label", + "id": "lij1rmvu", + "type": "CollectedVariableType", + "CodeListReference": "l1f65uvw", + "Name": "FREQ_VU_PAR1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "FREQ_CONT_PAR1 label", + "id": "lij1rmjq", + "type": "CollectedVariableType", + "CodeListReference": "l1f65uvw", + "Name": "FREQ_CONT_PAR1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PROX_EGO_PAR1 label", + "id": "l4lonoaj", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PROX_EGO_PAR1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PROX_FRAT_PAR1 label", + "id": "l43y4bul", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PROX_FRAT_PAR1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "EXIST_PAR2 label", + "id": "l5axyvf9", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "EXIST_PAR2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PRENOM_PAR2 label", + "id": "l4oeo539", + "type": "CollectedVariableType", + "Name": "PRENOM_PAR2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Scope": "l4idqt1t", + "Label": "ANAI_PAR2 label", + "id": "ln8y0vv7", + "type": "CollectedVariableType", + "Name": "ANAI_PAR2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "l4idqt1t", + "Label": "SEXE_PAR2 label", + "id": "l45cezmn", + "type": "CollectedVariableType", + "CodeListReference": "kwqir1cc", + "Name": "SEXE_PAR2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "NATIO_PAR2 label", + "id": "l2kjzgzk", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "NATIO_PAR2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "TRAV_PAR2 label", + "id": "l7ywxkf7", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "TRAV_PAR2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PROF_PAR2H label", + "id": "llvz3hw4", + "type": "CollectedVariableType", + "Name": "PROF_PAR2H", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PROF_PAR2F label", + "id": "llvz5gpf", + "type": "CollectedVariableType", + "Name": "PROF_PAR2F", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PROF_PAR2_2 label", + "id": "l4o73c23", + "type": "CollectedVariableType", + "Name": "PROF_PAR2_2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Scope": "l4idqt1t", + "Label": "STATUT_PAR2 label", + "id": "llgnuzxv", + "type": "CollectedVariableType", + "CodeListReference": "l4n5c408", + "Name": "STATUT_PAR2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SAL_FP_PAR2 label", + "id": "llnhstp4", + "type": "CollectedVariableType", + "CodeListReference": "llmi5xl5", + "Name": "SAL_FP_PAR2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "SAL_ENT_PAR2 label", + "id": "llni1mhr", + "type": "CollectedVariableType", + "CodeListReference": "llgry90d", + "Name": "SAL_ENT_PAR2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "LANGUE1_PAR2 label", + "id": "llvz8cp5", + "type": "CollectedVariableType", + "Name": "LANGUE1_PAR2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "LANGUE2_PAR2 label", + "id": "lmrreu7w", + "type": "CollectedVariableType", + "Name": "LANGUE2_PAR2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "VIV_PAR2 label", + "id": "l8k9sjms", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "VIV_PAR2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "ANNEE_DC_PAR2 label", + "id": "ln8yd8j8", + "type": "CollectedVariableType", + "Name": "ANNEE_DC_PAR2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "l4idqt1t", + "Label": "1 - \"Avec vous, dans ce logement\"", + "id": "lm0fd7qv", + "type": "CollectedVariableType", + "Name": "LOG_PAR2A1", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "2 - \"Avec \" || (if (isnull($PRENOM_PAR1$)) then \"votre autre parent\" else $PRENOM_PAR1$)", + "id": "lm0fb0me", + "type": "CollectedVariableType", + "Name": "LOG_PAR2A2", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "3 - \"Ailleurs\"", + "id": "lm0f8sao", + "type": "CollectedVariableType", + "Name": "LOG_PAR2A3", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "LOG_PAR2B label", + "id": "laguuyk8", + "type": "CollectedVariableType", + "CodeListReference": "kwqjgcfw", + "Name": "LOG_PAR2B", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "FR_PAR2 label", + "id": "lai7blbr", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "FR_PAR2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "DEP_PAR2 label", + "id": "llvz5jjn", + "type": "CollectedVariableType", + "Name": "DEP_PAR2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "COM_PAR2 label", + "id": "llvytvcv", + "type": "CollectedVariableType", + "Name": "COM_PAR2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "PAY_PAR2 label", + "id": "llvz5i4v", + "type": "CollectedVariableType", + "Name": "PAY_PAR2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + }, + { + "Scope": "l4idqt1t", + "Label": "ETAB_PAR2 label", + "id": "l8m1qyu9", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "ETAB_PAR2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "FREQ_VU_PAR2 label", + "id": "lij1nowz", + "type": "CollectedVariableType", + "CodeListReference": "l1f65uvw", + "Name": "FREQ_VU_PAR2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "FREQ_CONT_PAR2 label", + "id": "lij1bnzj", + "type": "CollectedVariableType", + "CodeListReference": "l1f65uvw", + "Name": "FREQ_CONT_PAR2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PROX_EGO_PAR2 label", + "id": "l4los1a5", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PROX_EGO_PAR2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PROX_FRAT_PAR2 label", + "id": "l4lonmxd", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "PROX_FRAT_PAR2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "NB_FRERES label", + "id": "liiy5f7u", + "type": "CollectedVariableType", + "Name": "NB_FRERES", + "Datatype": { + "Maximum": "20", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Scope": "l4idqt1t", + "Label": "NB_FRERES_VIV1 label", + "id": "li362nsa", + "type": "CollectedVariableType", + "CodeListReference": "l4onk0te", + "Name": "NB_FRERES_VIV1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "NB_FRERES_VIV label", + "id": "l473t9qd", + "type": "CollectedVariableType", + "Name": "NB_FRERES_VIV", + "Datatype": { + "Maximum": "20", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Scope": "l4idqt1t", + "Label": "NB_SOEURS label", + "id": "liiygg3q", + "type": "CollectedVariableType", + "Name": "NB_SOEURS", + "Datatype": { + "Maximum": "20", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Scope": "l4idqt1t", + "Label": "NB_SOEURS_VIV1 label", + "id": "li367ko1", + "type": "CollectedVariableType", + "CodeListReference": "l4onk0te", + "Name": "NB_SOEURS_VIV1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "NB_SOEURS_VIV label", + "id": "lai0huem", + "type": "CollectedVariableType", + "Name": "NB_SOEURS_VIV", + "Datatype": { + "Maximum": "20", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Scope": "l4idqt1t", + "Label": "AG_DEP_PARENT label", + "id": "lbqcq021", + "type": "CollectedVariableType", + "Name": "AG_DEP_PARENT", + "Datatype": { + "Maximum": "100", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + }, + { + "Scope": "l4idqt1t", + "Label": "1 - Vos deux parents en couple", + "id": "llev0wxd", + "type": "CollectedVariableType", + "Name": "VECU_JEUNESSE1", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "2 - Votre mère seule", + "id": "llev4x3a", + "type": "CollectedVariableType", + "Name": "VECU_JEUNESSE2", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "3 - Votre père seul", + "id": "llevhx1v", + "type": "CollectedVariableType", + "Name": "VECU_JEUNESSE3", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "4 - Votre père et son/sa conjoint(e)", + "id": "llevb1bs", + "type": "CollectedVariableType", + "Name": "VECU_JEUNESSE4", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "5 - Votre mère et son/sa conjoint(e)", + "id": "llev21lo", + "type": "CollectedVariableType", + "Name": "VECU_JEUNESSE5", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "6 - Une autre personne de votre famille", + "id": "llev258v", + "type": "CollectedVariableType", + "Name": "VECU_JEUNESSE6", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "7 - En dehors de votre famille", + "id": "llev4lrn", + "type": "CollectedVariableType", + "Name": "VECU_JEUNESSE7", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "VECU_PLACE label", + "id": "l8k9vl42", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "VECU_PLACE", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "1 - \"Placement en foyer\"", + "id": "l43tta6c", + "type": "CollectedVariableType", + "Name": "TYP_PLACE1", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "2 - \"Placement en famille d''accueil\"", + "id": "l43u7w3y", + "type": "CollectedVariableType", + "Name": "TYP_PLACE2", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "3 - \"Placement chez une personne de la famille\"", + "id": "l43to2k0", + "type": "CollectedVariableType", + "Name": "TYP_PLACE3", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "4 - \"Autre type de placement\"", + "id": "l43u7j0s", + "type": "CollectedVariableType", + "Name": "TYP_PLACE4", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "HEBERG label", + "id": "l1f6b3hb", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "HEBERG", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "FINETU label", + "id": "llethxrg", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "FINETU", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "ANNEE_FINETU label", + "id": "lneknegu", + "type": "CollectedVariableType", + "Name": "ANNEE_FINETU", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "l4idqt1t", + "Label": "DEJATRAV label", + "id": "lij28s0w", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "DEJATRAV", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "ANNEE_EMPLOI1 label", + "id": "ln8yfhub", + "type": "CollectedVariableType", + "Name": "ANNEE_EMPLOI1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "l4idqt1t", + "Label": "TRAVACT label", + "id": "l445l6g2", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "TRAVACT", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "ANNEE_FINEMP label", + "id": "ln8z1iyb", + "type": "CollectedVariableType", + "Name": "ANNEE_FINEMP", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + }, + { + "Scope": "l4idqt1t", + "Label": "INTER_TRAV1 label", + "id": "lleu2mxy", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "INTER_TRAV1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "INTER_TRAV2 label", + "id": "lleu2a71", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "INTER_TRAV2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "INTER_TRAV3 label", + "id": "llett62k", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "INTER_TRAV3", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PRENOM_FIN label", + "id": "ljwz1ro0", + "type": "CollectedVariableType", + "CodeListReference": "ljwxdg2x", + "Name": "PRENOM_FIN", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "PRENOM_PROX label", + "id": "lamjg3vg", + "type": "CollectedVariableType", + "Name": "PRENOM_PROX", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + }, + { + "Scope": "l4idqt1t", + "Label": "AVIS_FILTRE label", + "id": "ln8zj767", + "type": "CollectedVariableType", + "CodeListReference": "lm4vxed5", + "Name": "AVIS_FILTRE", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "AVIS_FILTRE_P label", + "id": "lnbsqvck", + "type": "CollectedVariableType", + "CodeListReference": "lm4vxed5", + "Name": "AVIS_FILTRE_P", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "AVIS_RMQ label", + "id": "lm6beldl", + "type": "CollectedVariableType", + "Name": "AVIS_RMQ", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1500" + } + }, + { + "Scope": "l4idqt1t", + "Label": "1 - \"Le sujet m’intéresse\"", + "id": "ln8zzd7l", + "type": "CollectedVariableType", + "Name": "AVIS_RAISON1", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "2 - \"C'est une enquête obligatoire\"", + "id": "ln8zp32c", + "type": "CollectedVariableType", + "Name": "AVIS_RAISON2", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "3 - \"La notice donnée par l’agent recenseur m’a incité\" || (if (isnull($TYPE_QUEST$)) then \"\" else (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\")) || \" à le faire\"", + "id": "ln8zxu8p", + "type": "CollectedVariableType", + "Name": "AVIS_RAISON3", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "4 - \"L’agent recenseur m’a incité\" || (if (isnull($TYPE_QUEST$)) then \"\" else (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\")) || \" à le faire\"", + "id": "ln8zstss", + "type": "CollectedVariableType", + "Name": "AVIS_RAISON4", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "5 - \"La communication de la commune sur l’enquête m’a incité\" || (if (isnull($TYPE_QUEST$)) then \"\" else (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\")) || \" à le faire\"", + "id": "ln8zj7dd", + "type": "CollectedVariableType", + "Name": "AVIS_RAISON5", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "6 - \"Pour une autre raison\"", + "id": "ln8zmr1m", + "type": "CollectedVariableType", + "Name": "AVIS_RAISON6", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "AVIS_AR label", + "id": "ln8zx8zp", + "type": "CollectedVariableType", + "CodeListReference": "lmrsjojv", + "Name": "AVIS_AR", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "AVIS_NOTICE label", + "id": "ln900vbh", + "type": "CollectedVariableType", + "CodeListReference": "lmrsjetq", + "Name": "AVIS_NOTICE", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "AVIS_RAIS_NOTICE label", + "id": "ln904m83", + "type": "CollectedVariableType", + "Name": "AVIS_RAIS_NOTICE", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1500" + } + }, + { + "Scope": "l4idqt1t", + "Label": "AVIS_SITE_NET label", + "id": "ln8ztjkt", + "type": "CollectedVariableType", + "CodeListReference": "lmrtk3dn", + "Name": "AVIS_SITE_NET", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "AVIS_RAIS_SITE label", + "id": "ln9049y6", + "type": "CollectedVariableType", + "Name": "AVIS_RAIS_SITE", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1500" + } + }, + { + "Scope": "l4idqt1t", + "Label": "AVIS_MAIL label", + "id": "lnbwe3lz", + "type": "CollectedVariableType", + "CodeListReference": "ln90sqiu", + "Name": "AVIS_MAIL", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "1 - \"Sur un smartphone\"", + "id": "lna27hq8", + "type": "CollectedVariableType", + "Name": "AVIS_SUPPORT1", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "2 - \"Sur une tablette\"", + "id": "lna2ep2b", + "type": "CollectedVariableType", + "Name": "AVIS_SUPPORT2", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "3 - \"Sur un ordinateur\"", + "id": "lna24zod", + "type": "CollectedVariableType", + "Name": "AVIS_SUPPORT3", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "AVIS_TEL label", + "id": "lna336y2", + "type": "CollectedVariableType", + "CodeListReference": "lna263dc", + "Name": "AVIS_TEL", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "1 - \"J’ai eu des difficultés pour me connecter au site\"", + "id": "lna24ghn", + "type": "CollectedVariableType", + "Name": "AVIS_DIFF1", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "2 - \"J’ai eu des difficultés pour dérouler les listes (profession, langue, commune, pays) et/ou cliquer sur la réponse souhaitée\"", + "id": "lna2e523", + "type": "CollectedVariableType", + "Name": "AVIS_DIFF2", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "3 - \"J’ai eu des difficultés pour passer aux questions suivantes (je ne voyais pas le bouton, ...)\"", + "id": "lna25zfb", + "type": "CollectedVariableType", + "Name": "AVIS_DIFF3", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "4 - \"J’étais perdu\" || (if (isnull($TYPE_QUEST$)) then \"\" else (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\")) || \" dans le questionnaire, je ne savais plus où j’en étais, sur quoi ou qui les questions portaient\"", + "id": "lna2cey8", + "type": "CollectedVariableType", + "Name": "AVIS_DIFF4", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "5 - \"Il y avait trop de pages, il fallait trop souvent changer d’écran\"", + "id": "lna28pfz", + "type": "CollectedVariableType", + "Name": "AVIS_DIFF5", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "6 - \"J’ai eu des difficultés pour répondre à certaines questions (questions peu claires, auxquelles je n’avais pas la réponse…)\"", + "id": "lna251km", + "type": "CollectedVariableType", + "Name": "AVIS_DIFF6", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "7 - \"J’ai rencontré d’autres difficultés\"", + "id": "lna2a78o", + "type": "CollectedVariableType", + "Name": "AVIS_DIFF7", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "8 - \"Non, je n’ai pas eu de difficultés\"", + "id": "lna2jr28", + "type": "CollectedVariableType", + "Name": "AVIS_DIFF8", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "Scope": "l4idqt1t", + "Label": "AVIS_QUEST label", + "id": "lna3cb84", + "type": "CollectedVariableType", + "Name": "AVIS_QUEST", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1500" + } + }, + { + "Scope": "l4idqt1t", + "Label": "AVIS_AUTR_DIFF label", + "id": "lna3ektj", + "type": "CollectedVariableType", + "Name": "AVIS_AUTR_DIFF", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1500" + } + }, + { + "Scope": "l4idqt1t", + "Label": "AVIS_ORDRE label", + "id": "lna2lir0", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "AVIS_ORDRE", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "AVIS_ASSIST label", + "id": "lna3hct7", + "type": "CollectedVariableType", + "CodeListReference": "lna2mshx", + "Name": "AVIS_ASSIST", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "AVIS_RMQ_FIN label", + "id": "lna3kjkd", + "type": "CollectedVariableType", + "CodeListReference": "kwqa6qr6", + "Name": "AVIS_RMQ_FIN", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 1 + } + }, + { + "Scope": "l4idqt1t", + "Label": "AVIS_AUTR_RMQ label", + "id": "lna3nd24", + "type": "CollectedVariableType", + "Name": "AVIS_AUTR_RMQ", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1500" + } + } + ] + }, + "lastUpdatedDate": "Wed Oct 25 2023 14:50:06 GMT+0200 (heure d’été d’Europe centrale)", + "DataCollection": [ + { + "id": "eamtic-dc-2018", + "uri": "http://ddi:fr.insee:DataCollection.eamtic-dc-2018" + }, + { + "id": "TCM", + "uri": "http://ddi:fr.insee:DataCollection.TCM" + } + ], + "final": false, + "flowLogic": "FILTER", + "id": "lnycjn6n", + "TargetMode": [ + "CAWI" + ], + "CodeLists": { + "CodeList": [ + { + "Label": "OUI_NON", + "id": "kwqa6qr6", + "Code": [ + { + "Parent": "", + "Label": "Oui", + "Value": "1" + }, + { + "Parent": "", + "Label": "Non", + "Value": "2" + } + ], + "Name": "" + }, + { + "Label": "COUP", + "id": "kwqfz7tj", + "Code": [ + { + "Parent": "", + "Label": "\"Oui, avec quelqu'un qui vit avec vous dans ce logement\"", + "Value": "1 " + }, + { + "Parent": "", + "Label": "\"Oui, avec quelqu'un qui vit dans un autre logement\"", + "Value": "2" + }, + { + "Parent": "", + "Label": "\"Non, mais vous avez déjà été en couple par le passé\"", + "Value": "3" + }, + { + "Parent": "", + "Label": "\"Non, vous n'avez jamais été en couple\"", + "Value": "4" + } + ], + "Name": "" + }, + { + "Label": "VIECJ", + "id": "kwqf7soc", + "Code": [ + { + "Parent": "", + "Label": "\"Par choix\"", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"Pour des raisons professionnelles\"", + "Value": "2" + }, + { + "Parent": "", + "Label": "\"Pour des raisons de santé (votre conjoint(e) vit en EHPAD, etc.)\"", + "Value": "3" + }, + { + "Parent": "", + "Label": "\"Pour une autre raison\"", + "Value": "4" + } + ], + "Name": "" + }, + { + "Label": "SEX_F_H", + "id": "kwqir1cc", + "Code": [ + { + "Parent": "", + "Label": "Une femme", + "Value": "1" + }, + { + "Parent": "", + "Label": "Un homme", + "Value": "2" + } + ], + "Name": "" + }, + { + "Label": "STATUT_CT", + "id": "l43yp3tr", + "Code": [ + { + "Parent": "", + "Label": "\"A son compte (y compris gérant\" || $LIBSEXCJH$ || \" de société salarié\" || $LIBSEXCJH$ || \")\"", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"Salarié\" || $LIBSEXCJH$ || \" de la fonction publique (Etat, territoriale, hospitalière)\"", + "Value": "2" + }, + { + "Parent": "", + "Label": "\"Salarié\" || $LIBSEXCJH$ || \" d'une entreprise (y compris d'une association ou de la sécurité sociale)\"", + "Value": "3" + }, + { + "Parent": "", + "Label": "\"Salarié\" || $LIBSEXCJH$ || \" d'un particulier\"", + "Value": "4" + }, + { + "Parent": "", + "Label": "\"Aide familial\" || $LIBSEXCJH$ || \" non rémunéré\" || $LIBSEXCJH$", + "Value": "5" + } + ], + "Name": "" + }, + { + "Label": "SAL_PAR2_2M_2", + "id": "llmhtv0t", + "Code": [ + { + "Parent": "", + "Label": "\"Manœuvre, ouvri\" || if ($SEXE_CH$=\"2\" or isnull($SEXE_CH$)) then \"er\" else \"ère\" || \" spécialisé\" || $LIBSEXCJH", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"Ouvri\" || if ($SEXE_CH$=\"2\" or isnull($SEXE_CH$)) then \"er\" else \"ère\" || \" qualifié\" || $LIBSEXCJH", + "Value": "2" + }, + { + "Parent": "", + "Label": "\"Technici\" || if ($SEXE_CH$=\"1\" or isnull($SEXE_CH$)) then \"en\" else \"enne\" ", + "Value": "3" + }, + { + "Parent": "", + "Label": "\"Agent\" || $LIBSEXCJH$ || \" de catégorie C de la fonction publique\"", + "Value": "4" + }, + { + "Parent": "", + "Label": "\"Agent\" || $LIBSEXCJH$ || \" de catégorie B de la fonction publique\"", + "Value": "5" + }, + { + "Parent": "", + "Label": "\"Agent\" || $LIBSEXCJH$ || \" de catégorie A de la fonction publique\"", + "Value": "6" + }, + { + "Parent": "", + "Label": "\"Dans une autre situation, je ne sais pas\"", + "Value": "7" + } + ], + "Name": "" + }, + { + "Label": "SAL_2_H", + "id": "llnh4uj2", + "Code": [ + { + "Parent": "", + "Label": "\"Manœuvre, ouvri\" || if ($SEXE_CH$=\"2\" or isnull($SEXE_CH$)) then \"er\" else \"ère\" || \" spécialisé\" || $LIBSEXCJH", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"Ouvri\" || if ($SEXE_CH$=\"2\" or isnull($SEXE_CH$)) then \"er\" else \"ère\" || \" qualifié\" || $LIBSEXCJH$ || \", technici\" || if ($SEXE_CH$=\"2\" or isnull($SEXE_CH$)) then \"en\" else \"enne\" || \" d'atelier\"", + "Value": "2" + }, + { + "Parent": "", + "Label": "\"Employé\" || $LIBSEXCJH$ || \" de bureau, de commerce, de services\"", + "Value": "3" + }, + { + "Parent": "", + "Label": "\"Agent de maîtrise (y compris administrative ou commerciale)\"", + "Value": "4" + }, + { + "Parent": "", + "Label": "\"Technici\" || if ($SEXE_CH$=\"2\" or isnull($SEXE_CH$)) then \"en\" else \"enne\" ", + "Value": "5" + }, + { + "Parent": "", + "Label": "\"Ingénieur\" || $LIBSEXCJH$ || \", cadre d'entreprise\"", + "Value": "6" + }, + { + "Parent": "", + "Label": "\"Dans une autre situation, je ne sais pas\"", + "Value": "7" + } + ], + "Name": "" + }, + { + "Label": "SEX_H_F", + "id": "lldegmb1", + "Code": [ + { + "Parent": "", + "Label": "Un homme", + "Value": "1" + }, + { + "Parent": "", + "Label": "Une femme", + "Value": "2" + } + ], + "Name": "" + }, + { + "Label": "STATUT_CT_2", + "id": "llmhgfca", + "Code": [ + { + "Parent": "", + "Label": "\"A son compte (y compris gérant\" || $LIBSEXCJF$ || \" de société salarié\" || $LIBSEXCJF$ || \")\"", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"Salarié\" || $LIBSEXCJF$ || \" de la fonction publique (Etat, territoriale, hospitalière)\"", + "Value": "2" + }, + { + "Parent": "", + "Label": "\"Salarié\" || $LIBSEXCJF$ || \" d'une entreprise (y compris d'une association ou de la sécurité sociale)\"", + "Value": "3" + }, + { + "Parent": "", + "Label": "\"Salarié\" || $LIBSEXCJF$ || \" d'un particulier\"", + "Value": "4" + }, + { + "Parent": "", + "Label": "\"Aide familial\" || $LIBSEXCJF$ || \" non rémunéré\" || $LIBSEXCJF$", + "Value": "5" + } + ], + "Name": "" + }, + { + "Label": "SAL_PAR2_2F_2", + "id": "llgrti9z", + "Code": [ + { + "Parent": "", + "Label": "\"Manœuvre, ouvri\" || if ($SEXE_CF$=\"1\" or isnull($SEXE_CF$)) then \"er\" else \"ère\" || \" spécialisé\" || $LIBSEXCJF", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"Ouvri\" || if ($SEXE_CF$=\"1\" or isnull($SEXE_CF$)) then \"er\" else \"ère\" || \" qualifié\" || $LIBSEXCJF", + "Value": "2" + }, + { + "Parent": "", + "Label": "\"Technici\" || if ($SEXE_CF$=\"1\" or isnull($SEXE_CF$)) then \"en\" else \"enne\" ", + "Value": "3" + }, + { + "Parent": "", + "Label": "\"Agent\" || $LIBSEXCJF$ || \" de catégorie C de la fonction publique\"", + "Value": "4" + }, + { + "Parent": "", + "Label": "\"Agent\" || $LIBSEXCJF$ || \" de catégorie B de la fonction publique\"", + "Value": "5" + }, + { + "Parent": "", + "Label": "\"Agent\" || $LIBSEXCJF$ || \" de catégorie A de la fonction publique\"", + "Value": "6" + }, + { + "Parent": "", + "Label": "\"Dans une autre situation, je ne sais pas\"", + "Value": "7" + } + ], + "Name": "" + }, + { + "Label": "SAL_2_F", + "id": "llnhh1go", + "Code": [ + { + "Parent": "", + "Label": "\"Manœuvre, ouvri\" || if ($SEXE_CF$=\"1\" or isnull($SEXE_CF$)) then \"er\" else \"ère\" || \" spécialisé\" || $LIBSEXCJF", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"Ouvri\" || if ($SEXE_CF$=\"1\" or isnull($SEXE_CF$)) then \"er\" else \"ère\" || \" qualifié\" || $LIBSEXCJF$ || \", technici\" || if ($SEXE_CF$=\"1\" or isnull($SEXE_CF$)) then \"en\" else \"enne\" || \" d'atelier\"", + "Value": "2" + }, + { + "Parent": "", + "Label": "\"Employé\" || $LIBSEXCJF$ || \" de bureau, de commerce, de services\"", + "Value": "3" + }, + { + "Parent": "", + "Label": "\"Agent de maîtrise (y compris administrative ou commerciale)\"", + "Value": "4" + }, + { + "Parent": "", + "Label": "\"Technici\" || if ($SEXE_CF$=\"1\" or isnull($SEXE_CF$)) then \"en\" else \"enne\" ", + "Value": "5" + }, + { + "Parent": "", + "Label": "\"Ingénieur\" || $LIBSEXCJF$ || \", cadre d'entreprise\"", + "Value": "6" + }, + { + "Parent": "", + "Label": "\"Dans une autre situation, je ne sais pas\"", + "Value": "7" + } + ], + "Name": "" + }, + { + "Label": "SEP", + "id": "l5ksmbco", + "Code": [ + { + "Parent": "", + "Label": "\"vous vous êtes séparé\" || (if (isnull($TYPE_QUEST$)) then \"\" else (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\")) || \" de \" || (if (isnull($PRENOM_C$)) then (if ($SEXE_CH$=\"2\" and isnull($SEXE_CF$)) or ($SEXE_CF$=\"1\" and isnull($SEXE_CH$)) or (isnull($SEXE_CH$) and isnull($SEXE_CF$)) then \"votre dernier conjoint \" else \"votre dernière conjointe \") else $PRENOM_C$) || \" ? \"", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"\" || (if(isnull($PRENOM_C$)) then (if (($SEXE_CH$=\"2\" or isnull($SEXE_CH$)) and ($SEXE_CF$=\"1\" or isnull($SEXE_CF$)) or (isnull($SEXE_CH$) and isnull($SEXE_CF$))) then \"votre dernier conjoint\" else \"votre dernière conjointe\") else $PRENOM_C$) || \" est décédé\" || (if (((nvl($SEXE_CF$,\"\")=\"\") and (nvl($SEXE_CH$,\"\")=\"\")) or ($SEXE_CF$ =\"1\" and isnull($SEXE_CH$)) or ($SEXE_CH$ = \"2\" and isnull($SEXE_CF$))) then \" ?\" else \"e ?\")", + "Value": "2" + } + ], + "Name": "" + }, + { + "Label": "OUI_NON", + "id": "l4onk0te", + "Code": [ + { + "Parent": "", + "Label": "Oui", + "Value": "1" + }, + { + "Parent": "", + "Label": "Non", + "Value": "2" + } + ], + "Name": "" + }, + { + "Label": "ENFCONJ", + "id": "l43x5eph", + "Code": [ + { + "Parent": "", + "Label": "\"Non, aucun\"", + "Value": "4" + }, + { + "Parent": "", + "Label": "\"Oui, tout le temps\"", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"Oui, au moins la moitié du temps\"", + "Value": "2" + }, + { + "Parent": "", + "Label": "\"Oui, moins de la moitié du temps\"", + "Value": "3" + } + ], + "Name": "" + }, + { + "Label": "SEP1", + "id": "l5ktegqo", + "Code": [ + { + "Parent": "", + "Label": "\"vous vous êtes séparé\" || (if (isnull($TYPE_QUEST$)) then \"\" else (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\")) || \" de \" || (if (isnull($PRENOM_U1$)) then (if ($SEXE_U1H$=\"2\" and isnull($SEXE_U1F$)) or ($SEXE_U1F$=\"1\" and isnull($SEXE_U1H$)) or (isnull($SEXE_U1H$) and isnull($SEXE_U1F$)) then \"votre premier conjoint \" else \"votre première conjointe \") else $PRENOM_U1$) || \" ? \"", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"\" || (if(isnull($PRENOM_U1$)) then (if (($SEXE_U1H$=\"2\" or isnull($SEXE_U1H$)) and ($SEXE_U1F$=\"1\" or isnull($SEXE_U1F$)) or (isnull($SEXE_U1H$) and isnull($SEXE_U1F$))) then \"votre premier conjoint\" else \"votre première conjointe\") else $PRENOM_U1$) || \" est décédé\" || (if (((nvl($SEXE_U1F$,\"\")=\"\") and (nvl($SEXE_U1H$,\"\")=\"\")) or ($SEXE_U1F$ =\"1\" and isnull($SEXE_U1H$)) or ($SEXE_U1H$ = \"2\" and isnull($SEXE_U1F$))) then \" ?\" else \"e ?\")", + "Value": "2" + } + ], + "Name": "" + }, + { + "Label": "SEP1_2", + "id": "las91jew", + "Code": [ + { + "Parent": "", + "Label": "\"vous vous êtes séparé\" || (if (isnull($TYPE_QUEST$)) then \"\" else (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\")) || \" de \" || (if (isnull($PRENOM_U2$)) then (if ($SEXE_U2H$=\"2\" and isnull($SEXE_U2F$)) or ($SEXE_U2F$=\"1\" and isnull($SEXE_U2H$)) or (isnull($SEXE_U2H$) and isnull($SEXE_U2F$)) then \"votre autre conjoint \" else \"votre autre conjointe \") else $PRENOM_U2$) || \" ? \"", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"\" || (if(isnull($PRENOM_U2$)) then (if (($SEXE_U2H$=\"2\" or isnull($SEXE_U2H$)) and ($SEXE_U2F$=\"1\" or isnull($SEXE_U2F$)) or (isnull($SEXE_U2H$) and isnull($SEXE_U2F$))) then \"votre autre conjoint\" else \"votre autre conjointe\") else $PRENOM_U2$) || \" est décédé\" || (if (((nvl($SEXE_U2F$,\"\")=\"\") and (nvl($SEXE_U2H$,\"\")=\"\")) or ($SEXE_U2F$ =\"1\" and isnull($SEXE_U2H$)) or ($SEXE_U2H$ = \"2\" and isnull($SEXE_U2F$))) then \" ?\" else \"e ?\")", + "Value": "2" + } + ], + "Name": "" + }, + { + "Label": "OUI_NON_2_2", + "id": "l7rlvd0y", + "Code": [ + { + "Parent": "", + "Label": "Oui", + "Value": "1" + }, + { + "Parent": "", + "Label": "Non", + "Value": "2" + } + ], + "Name": "" + }, + { + "Label": "SEXE", + "id": "llgbzo78", + "Code": [ + { + "Parent": "", + "Label": "\"Masculin\"", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"Féminin\"", + "Value": "2" + } + ], + "Name": "" + }, + { + "Label": "OUI_NON_AUTPAR", + "id": "l44726g4", + "Code": [ + { + "Parent": "", + "Label": "\"Oui, il/elle vit avec vous\"", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"Non, il/elle vit ailleurs\"", + "Value": "2" + }, + { + "Parent": "", + "Label": "\"Non, il/elle est décédé(e)\"", + "Value": "3" + } + ], + "Name": "" + }, + { + "Label": "FREQCONT_2", + "id": "l1f65uvw", + "Code": [ + { + "Parent": "", + "Label": "Une ou plusieurs fois par semaine", + "Value": "2" + }, + { + "Parent": "", + "Label": "Une ou plusieurs fois par mois", + "Value": "3" + }, + { + "Parent": "", + "Label": "Une ou plusieurs fois par an", + "Value": "4" + }, + { + "Parent": "", + "Label": "Plus rarement ou jamais", + "Value": "5" + } + ], + "Name": "" + }, + { + "Label": "SEP", + "id": "kwqjqlpa", + "Code": [ + { + "Parent": "", + "Label": "\"Pas de décision\"", + "Value": "2" + }, + { + "Parent": "", + "Label": "\"Résidence alternée\"", + "Value": "3" + }, + { + "Parent": "", + "Label": "\"Principalement chez vous\"", + "Value": "4" + }, + { + "Parent": "", + "Label": "\"Principalement chez son autre parent\"", + "Value": "5" + } + ], + "Name": "" + }, + { + "Label": "ASESANTE", + "id": "l59njrta", + "Code": [ + { + "Parent": "", + "Label": "\"Oui, pour des raisons de santé\"", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"Oui, à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants\"", + "Value": "2" + }, + { + "Parent": "", + "Label": "\"Oui, pour une autre raison\"", + "Value": "3" + }, + { + "Parent": "", + "Label": "\"Non\"", + "Value": "4" + } + ], + "Name": "" + }, + { + "Label": "DECISENF21_2", + "id": "l448z131", + "Code": [ + { + "Parent": "", + "Label": "Pas de décision", + "Value": "1" + }, + { + "Parent": "", + "Label": "Résidence alternée", + "Value": "2" + }, + { + "Parent": "", + "Label": "Principalement chez vous", + "Value": "3" + }, + { + "Parent": "", + "Label": "Principalement chez son autre parent", + "Value": "4" + } + ], + "Name": "" + }, + { + "Label": "ASESANTE_2", + "id": "l8sqimbm", + "Code": [ + { + "Parent": "", + "Label": "\"Pour des raisons de santé\"", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"A la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants\"", + "Value": "2" + }, + { + "Parent": "", + "Label": "\"Pour une autre raison\"", + "Value": "3" + } + ], + "Name": "" + }, + { + "Label": "OUI_NON_2", + "id": "l4ongo32", + "Code": [ + { + "Parent": "", + "Label": "Oui", + "Value": "1" + }, + { + "Parent": "", + "Label": "Non", + "Value": "2" + } + ], + "Name": "" + }, + { + "Label": "OUI_NON_2", + "id": "l4onqoyo", + "Code": [ + { + "Parent": "", + "Label": "Oui", + "Value": "1" + }, + { + "Parent": "", + "Label": "Non", + "Value": "2" + } + ], + "Name": "" + }, + { + "Label": "AIDE", + "id": "l1g8605s", + "Code": [ + { + "Parent": "", + "Label": "\"Oui, une aide pour les tâches quotidiennes\"", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"Oui, une aide financière ou matérielle\"", + "Value": "2" + }, + { + "Parent": "", + "Label": "\"Oui, un soutien moral\"", + "Value": "3" + }, + { + "Parent": "", + "Label": "\"Oui, vous êtes\" || (if ($TYPE_QUEST$ =\"1\") then \" tuteur ou curateur \" else \" tutrice ou curatrice\")", + "Value": "4" + }, + { + "Parent": "", + "Label": "\"Non, aucune aide de ce type\"", + "Value": "5" + } + ], + "Name": "" + }, + { + "Label": "AIDEQUI", + "id": "l1ggouwf", + "Code": [ + { + "Parent": "", + "Label": "Vos parents", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"\" || if ($SEXE_CH$=\"2\" or isnull($SEXE_CH$)) and ($SEXE_CF$=\"1\" or isnull($SEXE_CF$)) then \"Votre conjoint\" else \"Votre conjointe\" ", + "Value": "2" + }, + { + "Parent": "", + "Label": "Vos enfants", + "Value": "3" + }, + { + "Parent": "", + "Label": "Un autre membre de la famille", + "Value": "4" + } + ], + "Name": "" + }, + { + "Label": "AIDE_2", + "id": "l6c3qpag", + "Code": [ + { + "Parent": "", + "Label": "\"Oui, une aide pour les tâches quotidiennes\"", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"Oui, une aide financière ou matérielle\"", + "Value": "2" + }, + { + "Parent": "", + "Label": "\"Oui, un soutien moral\"", + "Value": "3" + }, + { + "Parent": "", + "Label": "\"Non, aucune aide de ce type\"", + "Value": "5" + } + ], + "Name": "" + }, + { + "Label": "STATM", + "id": "l1f23fi8", + "Code": [ + { + "Parent": "", + "Label": "\"A son compte (y compris gérant\" || $LIBSEXPAR1$ || \" de société salarié\" || $LIBSEXPAR1$ || \")\"", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"Salarié\" || $LIBSEXPAR1$ || \" de la fonction publique (Etat, territoriale, hospitalière)\"", + "Value": "2" + }, + { + "Parent": "", + "Label": "\"Salarié\" || $LIBSEXPAR1$ || \" d'une entreprise (y compris d'une association ou de la sécurité sociale)\"", + "Value": "3" + }, + { + "Parent": "", + "Label": "\"Salarié\" || $LIBSEXPAR1$ || \" d'un particulier\"", + "Value": "4" + }, + { + "Parent": "", + "Label": "\"Aide familial\" || $LIBSEXPAR1$ || \" non rémunéré\" || $LIBSEXPAR1$ ", + "Value": "5" + }, + { + "Parent": "", + "Label": "\"Je ne sais pas\"", + "Value": "6" + } + ], + "Name": "" + }, + { + "Label": "SAL_PAR1", + "id": "llgq8911", + "Code": [ + { + "Parent": "", + "Label": "\"Manœuvre, ouvri\" || if ($SEXE_PAR1$=\"2\" or isnull($SEXE_PAR1$)) then \"er\" else \"ère\" || \" spécialisé\" || $LIBSEXPAR1", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"Ouvri\" || if ($SEXE_PAR1$=\"2\" or isnull($SEXE_PAR1$)) then \"er\" else \"ère\" || \" qualifié\" || $LIBSEXPAR1", + "Value": "2" + }, + { + "Parent": "", + "Label": "\"Technici\" || if ($SEXE_PAR1$=\"2\" or isnull($SEXE_PAR1$)) then \"en\" else \"enne\" ", + "Value": "3" + }, + { + "Parent": "", + "Label": "\"Agent\" || $LIBSEXPAR1$ || \" de catégorie D de la fonction publique\"", + "Value": "4" + }, + { + "Parent": "", + "Label": "\"Agent\" || $LIBSEXPAR1$ || \" de catégorie C de la fonction publique\"", + "Value": "5" + }, + { + "Parent": "", + "Label": "\"Agent\" || $LIBSEXPAR1$ || \" de catégorie B de la fonction publique\"", + "Value": "6" + }, + { + "Parent": "", + "Label": "\"Agent\" || $LIBSEXPAR1$ || \" de catégorie A de la fonction publique\"", + "Value": "7" + }, + { + "Parent": "", + "Label": "\"Dans une autre situation, je ne sais pas\"", + "Value": "8" + } + ], + "Name": "" + }, + { + "Label": "SAL_2_PAR1", + "id": "llgoa6cg", + "Code": [ + { + "Parent": "", + "Label": "\"Manœuvre, ouvri\" || if ($SEXE_PAR1$=\"2\" or isnull($SEXE_PAR1$)) then \"er\" else \"ère\" || \" spécialisé\" || $LIBSEXPAR1", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"Ouvri\" || if ($SEXE_PAR1$=\"2\" or isnull($SEXE_PAR1$)) then \"er\" else \"ère\" || \" qualifié\" || $LIBSEXPAR1$ || \", technici\" || if ($SEXE_PAR1$=\"2\" or isnull($SEXE_PAR1$)) then \"en\" else \"enne\" || \" d'atelier\"", + "Value": "2" + }, + { + "Parent": "", + "Label": "\"Employé\" || $LIBSEXPAR1$ || \" de bureau, de commerce, de services\"", + "Value": "3" + }, + { + "Parent": "", + "Label": "\"Agent de maîtrise (y compris administrative ou commerciale)\"", + "Value": "4" + }, + { + "Parent": "", + "Label": "\"Technici\" || if ($SEXE_PAR1$=\"2\" or isnull($SEXE_PAR1$)) then \"en\" else \"enne\" ", + "Value": "5" + }, + { + "Parent": "", + "Label": "\"Ingénieur\" || $LIBSEXPAR1$ || \", cadre d'entreprise\"", + "Value": "6" + }, + { + "Parent": "", + "Label": "\"Dans une autre situation, je ne sais pas\"", + "Value": "7" + } + ], + "Name": "" + }, + { + "Label": "VITAUT_2", + "id": "l4qualpe", + "Code": [ + { + "Parent": "", + "Label": "\"Avec vous, dans ce logement\"", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"Ailleurs\"", + "Value": "2" + } + ], + "Name": "" + }, + { + "Label": "OUI_NON_2", + "id": "l4o7x17y", + "Code": [ + { + "Parent": "", + "Label": "Oui", + "Value": "1" + }, + { + "Parent": "", + "Label": "Non", + "Value": "2" + } + ], + "Name": "" + }, + { + "Label": "STATM_2", + "id": "l4n5c408", + "Code": [ + { + "Parent": "", + "Label": "\"A son compte (y compris gérant\" || $LIBSEXPAR2$ || \" de société salarié\" || $LIBSEXPAR2$ || \")\"", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"Salarié\" || $LIBSEXPAR2$ || \" de la fonction publique (Etat, territoriale, hospitalière)\"", + "Value": "2" + }, + { + "Parent": "", + "Label": "\"Salarié\" || $LIBSEXPAR2$ || \" d'une entreprise (y compris d'une association ou de la sécurité sociale)\"", + "Value": "3" + }, + { + "Parent": "", + "Label": "\"Salarié\" || $LIBSEXPAR2$ || \" d'un particulier\"", + "Value": "4" + }, + { + "Parent": "", + "Label": "\"Aide familial\" || $LIBSEXPAR2$ || \" non rémunéré\" || $LIBSEXPAR2$ ", + "Value": "5" + }, + { + "Parent": "", + "Label": "\"Je ne sais pas\"", + "Value": "6" + } + ], + "Name": "" + }, + { + "Label": "SAL_PAR2_2", + "id": "llmi5xl5", + "Code": [ + { + "Parent": "", + "Label": "\"Manœuvre, ouvri\" || if ($SEXE_PAR2$=\"2\" or isnull($SEXE_PAR2$)) then \"er\" else \"ère\" || \" spécialisé\" || $LIBSEXPAR2", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"Ouvri\" || if ($SEXE_PAR2$=\"2\" or isnull($SEXE_PAR2$)) then \"er\" else \"ère\" || \" qualifié\" || $LIBSEXPAR2", + "Value": "2" + }, + { + "Parent": "", + "Label": "\"Technici\" || if ($SEXE_PAR2$=\"2\" or isnull($SEXE_PAR2$)) then \"en\" else \"enne\" ", + "Value": "3" + }, + { + "Parent": "", + "Label": "\"Agent\" || $LIBSEXPAR2$ || \" de catégorie D de la fonction publique\"", + "Value": "4" + }, + { + "Parent": "", + "Label": "\"Agent\" || $LIBSEXPAR2$ || \" de catégorie C de la fonction publique\"", + "Value": "5" + }, + { + "Parent": "", + "Label": "\"Agent\" || $LIBSEXPAR2$ || \" de catégorie B de la fonction publique\"", + "Value": "6" + }, + { + "Parent": "", + "Label": "\"Agent\" || $LIBSEXPAR2$ || \" de catégorie A de la fonction publique\"", + "Value": "7" + }, + { + "Parent": "", + "Label": "\"Dans une autre situation, je ne sais pas\"", + "Value": "8" + } + ], + "Name": "" + }, + { + "Label": "SAL_2_PAR2", + "id": "llgry90d", + "Code": [ + { + "Parent": "", + "Label": "\"Manœuvre, ouvri\" || if ($SEXE_PAR2$=\"2\" or isnull($SEXE_PAR2$)) then \"er\" else \"ère\" || \" spécialisé\" || $LIBSEXPAR2", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"Ouvri\" || if ($SEXE_PAR2$=\"2\" or isnull($SEXE_PAR2$)) then \"er\" else \"ère\" || \" qualifié\" || $LIBSEXPAR2$ || \", technici\" || if ($SEXE_PAR2$=\"2\" or isnull($SEXE_PAR2$)) then \"en\" else \"enne\" || \" d'atelier\"", + "Value": "2" + }, + { + "Parent": "", + "Label": "\"Employé\" || $LIBSEXPAR2$ || \" de bureau, de commerce, de services\"", + "Value": "3" + }, + { + "Parent": "", + "Label": "\"Agent de maîtrise (y compris administrative ou commerciale)\"", + "Value": "4" + }, + { + "Parent": "", + "Label": "\"Technici\" || if ($SEXE_PAR2$=\"2\" or isnull($SEXE_PAR2$)) then \"en\" else \"enne\" ", + "Value": "5" + }, + { + "Parent": "", + "Label": "\"Ingénieur\" || $LIBSEXPAR2$ || \", cadre d'entreprise\"", + "Value": "6" + }, + { + "Parent": "", + "Label": "\"Dans une autre situation, je ne sais pas\"", + "Value": "7" + } + ], + "Name": "" + }, + { + "Label": "VITAUT_2", + "id": "lagv1pzu", + "Code": [ + { + "Parent": "", + "Label": "\"Avec vous, dans ce logement\"", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"Avec \" || (if (isnull($PRENOM_PAR1$)) then \"votre autre parent\" else $PRENOM_PAR1$)", + "Value": "2" + }, + { + "Parent": "", + "Label": "\"Ailleurs\"", + "Value": "3" + } + ], + "Name": "" + }, + { + "Label": "VITAUT", + "id": "kwqjgcfw", + "Code": [ + { + "Parent": "", + "Label": "\"Avec vous, dans ce logement\"", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"Ailleurs\"", + "Value": "2" + } + ], + "Name": "" + }, + { + "Label": "JEUN", + "id": "l1f5t6b0", + "Code": [ + { + "Parent": "", + "Label": "Vos deux parents en couple", + "Value": "1" + }, + { + "Parent": "", + "Label": "Votre mère seule", + "Value": "2" + }, + { + "Parent": "", + "Label": "Votre père seul", + "Value": "3" + }, + { + "Parent": "", + "Label": "Votre père et son/sa conjoint(e)", + "Value": "4" + }, + { + "Parent": "", + "Label": "Votre mère et son/sa conjoint(e)", + "Value": "5" + }, + { + "Parent": "", + "Label": "Une autre personne de votre famille", + "Value": "6" + }, + { + "Parent": "", + "Label": "En dehors de votre famille", + "Value": "7" + } + ], + "Name": "" + }, + { + "Label": "PLACEMENT", + "id": "l43tnvfy", + "Code": [ + { + "Parent": "", + "Label": "\"Placement en foyer\"", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"Placement en famille d''accueil\"", + "Value": "2" + }, + { + "Parent": "", + "Label": "\"Placement chez une personne de la famille\"", + "Value": "3" + }, + { + "Parent": "", + "Label": "\"Autre type de placement\"", + "Value": "4" + } + ], + "Name": "" + }, + { + "Label": "REP", + "id": "ljwxdg2x", + "Code": [ + { + "Parent": "", + "Label": "\"Vous, \" || nvl($PRENOMREP$,\"Madame/Monsieur\")", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"Une autre personne\"", + "Value": "2" + } + ], + "Name": "" + }, + { + "Label": "AVIS", + "id": "lm4vxed5", + "Code": [ + { + "Parent": "", + "Label": "\"Oui\"", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"Non, mais je suis \" || (if ($TYPE_QUEST$=\"1\") then \"prêt\" else \"prête\") || \" à vous donner mon avis sur cette enquête\"", + "Value": "2" + }, + { + "Parent": "", + "Label": "\"Non, je souhaite valider mon enquête et vous envoyer mes réponses\"", + "Value": "3" + } + ], + "Name": "" + }, + { + "Label": "RAISON", + "id": "lm4vpk4r", + "Code": [ + { + "Parent": "", + "Label": "\"Le sujet m’intéresse\"", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"C'est une enquête obligatoire\"", + "Value": "2" + }, + { + "Parent": "", + "Label": "\"La notice donnée par l’agent recenseur m’a incité\" || (if (isnull($TYPE_QUEST$)) then \"\" else (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\")) || \" à le faire\"", + "Value": "3" + }, + { + "Parent": "", + "Label": "\"L’agent recenseur m’a incité\" || (if (isnull($TYPE_QUEST$)) then \"\" else (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\")) || \" à le faire\"", + "Value": "4" + }, + { + "Parent": "", + "Label": "\"La communication de la commune sur l’enquête m’a incité\" || (if (isnull($TYPE_QUEST$)) then \"\" else (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\")) || \" à le faire\"", + "Value": "5" + }, + { + "Parent": "", + "Label": "\"Pour une autre raison\"", + "Value": "6" + } + ], + "Name": "" + }, + { + "Label": "AR", + "id": "lmrsjojv", + "Code": [ + { + "Parent": "", + "Label": "\"Oui\"", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"Non\"", + "Value": "2" + }, + { + "Parent": "", + "Label": "\"Sans objet, je n'ai pas vu l'agent recenseur\"", + "Value": "3" + } + ], + "Name": "" + }, + { + "Label": "NOTICE", + "id": "lmrsjetq", + "Code": [ + { + "Parent": "", + "Label": "\"Oui\"", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"Non\"", + "Value": "2" + }, + { + "Parent": "", + "Label": "\"Sans objet, je n'ai pas eu ou lu la notice\"", + "Value": "3" + } + ], + "Name": "" + }, + { + "Label": "SITE_NET", + "id": "lmrtk3dn", + "Code": [ + { + "Parent": "", + "Label": "\"Oui, cette page m'a donné toutes les informations nécessaires\"", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"Oui, mais cette page n'était pas assez complète, il manquait des informations\"", + "Value": "2" + }, + { + "Parent": "", + "Label": "\"Non, je n'ai pas consulté cette page\"", + "Value": "3" + } + ], + "Name": "" + }, + { + "Label": "MAIL", + "id": "ln90sqiu", + "Code": [ + { + "Parent": "", + "Label": "\"J'ai reçu le mail\"", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"Une autre personne l’a reçu et me l’a transmis\"", + "Value": "2" + }, + { + "Parent": "", + "Label": "\"Je n’ai pas reçu le mail\"", + "Value": "3" + }, + { + "Parent": "", + "Label": "\"Je ne me souviens plus, je ne sais pas\"", + "Value": "4" + } + ], + "Name": "" + }, + { + "Label": "SUPPORT", + "id": "ln91ddlc", + "Code": [ + { + "Parent": "", + "Label": "\"Sur un smartphone\"", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"Sur une tablette\"", + "Value": "2" + }, + { + "Parent": "", + "Label": "\"Sur un ordinateur\"", + "Value": "3" + } + ], + "Name": "" + }, + { + "Label": "TEL", + "id": "lna263dc", + "Code": [ + { + "Parent": "", + "Label": "\"Oui\"", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"Non\"", + "Value": "2\"" + }, + { + "Parent": "", + "Label": "\"Je n’ai pas d’avis, ça m’est égal\"", + "Value": "3" + } + ], + "Name": "" + }, + { + "Label": "DIFF", + "id": "lna2aacf", + "Code": [ + { + "Parent": "", + "Label": "\"J’ai eu des difficultés pour me connecter au site\"", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"J’ai eu des difficultés pour dérouler les listes (profession, langue, commune, pays) et/ou cliquer sur la réponse souhaitée\"", + "Value": "2" + }, + { + "Parent": "", + "Label": "\"J’ai eu des difficultés pour passer aux questions suivantes (je ne voyais pas le bouton, ...)\"", + "Value": "3" + }, + { + "Parent": "", + "Label": "\"J’étais perdu\" || (if (isnull($TYPE_QUEST$)) then \"\" else (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\")) || \" dans le questionnaire, je ne savais plus où j’en étais, sur quoi ou qui les questions portaient\"", + "Value": "4" + }, + { + "Parent": "", + "Label": "\"Il y avait trop de pages, il fallait trop souvent changer d’écran\"", + "Value": "5" + }, + { + "Parent": "", + "Label": "\"J’ai eu des difficultés pour répondre à certaines questions (questions peu claires, auxquelles je n’avais pas la réponse…)\"", + "Value": "6" + }, + { + "Parent": "", + "Label": "\"J’ai rencontré d’autres difficultés\"", + "Value": "7" + }, + { + "Parent": "", + "Label": "\"Non, je n’ai pas eu de difficultés\"", + "Value": "8" + } + ], + "Name": "" + }, + { + "Label": "ASSIST", + "id": "lna2mshx", + "Code": [ + { + "Parent": "", + "Label": "\"Oui, et cela m’a été utile\"", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"Oui, mais cela ne m’a pas été utile\"", + "Value": "2" + }, + { + "Parent": "", + "Label": "\"Oui, mais je n’ai pas eu de réponse\"", + "Value": "3" + }, + { + "Parent": "", + "Label": "\"Non, je n’ai pas eu besoin\"", + "Value": "4" + }, + { + "Parent": "", + "Label": "\"Non, car je ne savais pas qu’il y avait une assistance\"", + "Value": "5" + } + ], + "Name": "" + }, + { + "Label": "SITE", + "id": "lmrsgeny", + "Code": [ + { + "Parent": "", + "Label": "\"Oui, ce site m'a donné toutes les informations nécessaires\"", + "Value": "1" + }, + { + "Parent": "", + "Label": "\"Oui, mais ce site n'était pas assez complet, il manquait des informations\"", + "Value": "2" + }, + { + "Parent": "", + "Label": "\"Non, je n'ai pas consulté ce site\"", + "Value": "3" + } + ], + "Name": "" + } + ] + }, + "Iterations": { + "Iteration": [ + { + "Maximum": "$RPNBQUEST$", + "Minimum": "$RPNBQUEST$", + "MemberReference": [ + "l473bp2x", + "l473bp2x" + ], + "id": "l4idqt1t", + "Step": "1", + "type": "DynamicIterationType", + "Name": "B_PRENOMREP" + }, + { + "MemberReference": [ + "kwq9l9z1", + "lm4vpka3" + ], + "id": "ljmw8vex", + "type": "DynamicIterationType", + "Name": "B_QUEST", + "IterableReference": "l4idqt1t" + } + ] + }, + "formulasLanguage": "VTL", + "Child": [ + { + "Control": [], + "depth": 1, + "FlowControl": [], + "genericName": "MODULE", + "Label": [ + "\"Les personnes concernées par l'enquête\"" + ], + "id": "l473bp2x", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "ln38wwhm", + "id": "ll2h5il3", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "VAL_ANNAISS non renseignée", + "Expression": "isnull($VAL_ANNAISS$) or $VAL_ANNAISS$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "ln1pejsd" + } + ], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"Avant de commencer le questionnaire, nous vous demandons de bien vouloir confirmer l'information suivante : l'année de naissance de \" || $RPPRENOM$ || \" est-elle bien \" || cast($RPANAISENQ$,string) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l473latk", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "VAL_ANNAISS" + } + ], + "Name": "REPONDANT" + }, + { + "Control": [], + "depth": 1, + "FlowControl": [], + "genericName": "MODULE", + "Label": [ + "\"Informations concernant \" || $PRENOMREP$" + ], + "id": "kwq9l9z1", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Vous allez remplir le questionnaire de l'enquête Familles de \"|| nvl($PRENOMREP$,\"cette personne\") || \".\"", + "id": "l2sstox3", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "li34mnyd", + "id": "kwq9l0nj", + "mandatory": false, + "Datatype": { + "Maximum": "2006-01-01", + "Minimum": "1900-01-01", + "Format": "YYYY-MM-DD", + "typeName": "DATE", + "type": "DateDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Date de naissance non renseignée", + "Expression": "(nvl($DATNAIS_X$, \"\") = \"\")", + "during_collect": false, + "criticity": "WARN", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre date de naissance.\"", + "id": "l1ey1j4m" + } + ], + "depth": 2, + "FlowControl": [], + "Label": [ + " \"\" || nvl($PRENOMREP$,\"Madame/Monsieur\") || \", quelle est votre date de naissance ?\"" + ], + "id": "kwq9wijq", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "DATNAIS_X" + }, + { + "Response": [ + { + "CollectedVariableReference": "lai10jze", + "id": "kwq9xmzm", + "mandatory": false, + "CodeListReference": "kwqfz7tj", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "COUPLE non renseigné", + "Expression": "isnull($COUPLE$) or $COUPLE$ = \"\" ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l34irw6q" + } + ], + "depth": 2, + "FlowControl": [], + "Label": [ + " \"\" || nvl($PRENOMREP$,\"Madame/Monsieur\") || \", êtes-vous actuellement en couple ?\"" + ], + "ClarificationQuestion": [], + "id": "kwq9y19w", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "COUPLE" + }, + { + "Response": [ + { + "CollectedVariableReference": "lai0r1fc", + "id": "l34fp0w3", + "mandatory": false, + "CodeListReference": "kwqf7soc", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "RAISON_VIE_CJT non renseignée", + "Expression": "isnull($RAISON_VIE_CJT$) or $RAISON_VIE_CJT$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l34j0zc1" + } + ], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"Pour quelle raison ne vivez-vous pas ensemble ?\"" + ], + "ClarificationQuestion": [], + "id": "l0qkj23a", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Cochez une seule case\"", + "id": "l15159qb", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "RAISON_VIE_CJT" + }, + { + "Response": [ + { + "CollectedVariableReference": "li359gpp", + "id": "li3584nx", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + } + ], + "Control": [], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"Pouvez-vous préciser cette raison ?\"" + ], + "id": "li353rhu", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PRECIS_VIE_CJT" + } + ], + "Name": "INFO" + }, + { + "Control": [], + "depth": 1, + "FlowControl": [], + "genericName": "MODULE", + "Label": [ + "\"VOTRE \" || (if ($COUPLE$=\"1\" or $COUPLE$=\"2\") then \" CONJOINT(E) ACTUEL(LE) \" else \" DERNIER(ERE) CONJOINT(E) si vous n'êtes plus en couple \")" + ], + "id": "kwqaaqd3", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", nous allons maintenant vous interroger sur votre \" || (if ($COUPLE$=\"1\" or $COUPLE$=\"2\") then \"conjoint(e) actuel(le). \" else \"dernier(ère) conjoint(e) si vous n'êtes plus en couple. \")", + "id": "l34fbn76", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "lai0w6gt", + "id": "l34guyz9", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PRENOM_C non renseigné", + "Expression": "isnull($PRENOM_C$) or $PRENOM_C$=\"\"", + "during_collect": false, + "criticity": "WARN", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"", + "id": "l34ir0o6" + } + ], + "depth": 2, + "FlowControl": [], + "Label": [ + "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", quel est le prénom de votre \" || if ($COUPLE$=\"1\" or $COUPLE$ =\"2\") then \"conjoint(e) actuel(le) ?\" else \"dernier(ère) conjoint(e) ?\"" + ], + "id": "l34grb6h", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PRENOM_C" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "\"Votre \" || (if ($COUPLE$=\"1\" or $COUPLE$=\"2\") then \" conjoint(e) actuel(le) \" else \" dernier(ère) conjoint(e) \") || nvl($PRENOM_C$,\"\")" + ], + "id": "l154t9l0", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Votre \" || (if ($COUPLE$=\"1\" or $COUPLE$=\"2\") then \" conjoint(e) actuel(le) \" else \" dernier(ère) conjoint(e) \") || nvl($PRENOM_C$,\"\")", + "id": "l155z8f9", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "lna1wj6r", + "id": "kwqa5c2z", + "mandatory": false, + "Datatype": { + "Maximum": "2011-01-01", + "Minimum": "1900-01-01", + "Format": "YYYY-MM-DD", + "typeName": "DATE", + "type": "DateDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "DATNAIS_C non renseigné", + "Expression": "(nvl($DATNAIS_C$, \"\") = \"\")", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer la date attendue.\"", + "id": "l43z2jzn" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quelle est la date de naissance de \" || (if (nvl($PRENOM_C$,\"\")=\"\") then (if ($COUPLE$=\"1\" or $COUPLE$=\"2\") then \"votre conjoint(e) actuel(le) \" else \"votre dernier(ère) conjoint(e) \") else $PRENOM_C$) || \" ?\"" + ], + "id": "kwqa0ism", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "DATNAIS_C" + }, + { + "Response": [ + { + "CollectedVariableReference": "lldrx968", + "id": "kwqai8pk", + "mandatory": false, + "CodeListReference": "kwqir1cc", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEXE_CH non renseigné", + "Expression": "isnull($SEXE_CH$) or $SEXE_CH$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l43yzoel" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_C$,\"\")=\"\") then (if ($COUPLE$=\"1\" or $COUPLE$=\"2\") then \"Votre conjoint(e) est-il/elle ?\" else \"Votre dernier(ère) conjoint(e) est-il/elle ? \") else ($PRENOM_C$ || \" est-il/elle ?\"))" + ], + "ClarificationQuestion": [], + "id": "kwqabjga", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEXE_CH" + }, + { + "Response": [ + { + "CollectedVariableReference": "lldrjxp8", + "id": "l4o57gfv", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "LIEUNAIS_CH non renseigné", + "Expression": "isnull($LIEUNAIS_CH$) or $LIEUNAIS_CH$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4o55rb7" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if nvl($PRENOM_C$,\"\") <> \"\" then $PRENOM_C$ else (if (($COUPLE$ =\"1\" or $COUPLE$=\"2\") and ($SEXE_CH$=\"2\" or isnull($SEXE_CH$))) then \"Votre conjoint \" else (if (($COUPLE$ =\"1\" or $COUPLE$=\"2\") and $SEXE_CH$=\"1\") then \"Votre conjointe \" else (if ($COUPLE$=\"3\" and ($SEXE_CH$ =\"2\" or isnull($SEXE_CH$))) then \"Votre dernier conjoint \" else \"Votre dernière conjointe \")))) || \" est-\" || (if ($SEXE_CH$=\"2\" or isnull($SEXE_CH$)) then \"il né en France ?\" else \"elle née en France ?\")" + ], + "ClarificationQuestion": [], + "id": "l4o59ei7", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Prenez en compte les frontières actuelles.\"", + "id": "l4pa18h0", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "LIEUNAIS_CH" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvxlfv8", + "id": "llvz459i", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "DNAI_CH non renseigné", + "Expression": "isnull($DNAI_CH$) or $DNAI_CH$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l43ym6ka" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel est le département de naissance de \" || (if (nvl($PRENOM_C$,\"\")=\"\") then (if ($COUPLE$=\"1\" or $COUPLE$=\"2\") and ($SEXE_CH$=\"2\" or isnull($SEXE_CH$)) then \"votre conjoint \" else (if (($COUPLE$ =\"1\" or $COUPLE$=\"2\") and $SEXE_CH$=\"1\") then \"votre conjointe \" else (if ($COUPLE$=\"3\" and ($SEXE_CH$ =\"2\" or isnull($SEXE_CH$))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else $PRENOM_C$) || \" ?\" " + ], + "id": "l0quikkt", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"\r\n", + "id": "l4o5rn9i", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "DNAI_CH" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvxhzxi", + "id": "llvz9iqu", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PNAI_CH non renseigné", + "Expression": "isnull($PNAI_CH$) or $PNAI_CH$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4o5dktv" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel est le pays de naissance de \" || (if (nvl($PRENOM_C$,\"\")=\"\") then (if ($COUPLE$=\"1\" or $COUPLE$=\"2\") and ($SEXE_CH$=\"2\" or isnull($SEXE_CH$)) then \"votre conjoint \" else (if (($COUPLE$ =\"1\" or $COUPLE$=\"2\") and $SEXE_CH$=\"1\") then \"votre conjointe \" else (if ($COUPLE$=\"3\" and ($SEXE_CH$ =\"2\" or isnull($SEXE_CH$))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else $PRENOM_C$) || \" ?\" " + ], + "id": "l4o57595", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"\r\n", + "id": "l4o5lb2p", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PNAI_CH" + }, + { + "Response": [ + { + "CollectedVariableReference": "llds0mf9", + "id": "l7ywme7g", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "TRAV_CH non renseigné", + "Expression": "isnull($TRAV_CH$) or $TRAV_CH$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l7ywyes8" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_C$,\"\")=\"\") then (if ($COUPLE$=\"1\" or $COUPLE$=\"2\") and ($SEXE_CH$=\"2\" or isnull($SEXE_CH$)) then \"Votre conjoint \" else (if (($COUPLE$ =\"1\" or $COUPLE$=\"2\") and $SEXE_CH$=\"1\") then \"Votre conjointe \" else (if ($COUPLE$=\"3\" and ($SEXE_CH$ =\"2\" or isnull($SEXE_CH$))) then \"Votre dernier conjoint \" else \"Votre dernière conjointe \"))) else $PRENOM_C$) || \" a-t-\" || (if ($SEXE_CH$=\"2\" or isnull($SEXE_CH$)) then \"il \" else \"elle \") || \"déjà travaillé ?\"" + ], + "ClarificationQuestion": [], + "id": "l7ywou64", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "TRAV_CH" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvx9163", + "id": "llvzbt5w", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quelle est la profession actuelle ou la dernière profession de \" || (if (nvl($PRENOM_C$,\"\")=\"\") then (if ($COUPLE$=\"1\" or $COUPLE$=\"2\") then \"votre conjoint\" else \"votre dernier conjoint\") else $PRENOM_C$) || \" s'il ne travaille pas ?\"" + ], + "id": "l0qudtd2", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le libellé de profession recherché et sélectionnez le dans la liste.\"\r\n\"Si vous ne le trouvez pas, passez à la question suivante.\"", + "id": "l4o5bu87", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + }, + { + "declarationType": "HELP", + "Text": "\"Saisissez bien la dernière profession connue.\"", + "id": "l7ykp7bx", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PROF_CH1" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvxubc4", + "id": "llvywmha", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quelle est la profession actuelle ou la dernière profession de \" || (if (nvl($PRENOM_C$,\"\")=\"\") then (if ($COUPLE$=\"1\" or $COUPLE$=\"2\") then \"votre conjointe\" else \"votre dernière conjointe\") else $PRENOM_C$) || \" si elle ne travaille pas ?\"" + ], + "id": "lldp4562", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le libellé de profession recherché et sélectionnez le dans la liste.\"\r\n\"Si vous ne le trouvez pas, passez à la question suivante.\"", + "id": "lldoqdme", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + }, + { + "declarationType": "HELP", + "Text": "\"Saisissez bien la dernière profession connue.\"", + "id": "lldoyoi4", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PROF_CH2" + }, + { + "Response": [ + { + "CollectedVariableReference": "llds9t21", + "id": "l4o6x8gg", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PROF_C2H non renseigné", + "Expression": "isnull($PROF_C2H$) or $PROF_C2H$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"", + "id": "l4o6xk9k" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Vous n'avez pas trouvé le libellé de profession recherché dans la liste. Veuillez saisir le libellé de profession le plus précis et complet possible.\"" + ], + "id": "l43zea6v", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PROF_C2H" + }, + { + "Response": [ + { + "CollectedVariableReference": "llmh74gq", + "id": "l43z7g5s", + "mandatory": false, + "CodeListReference": "l43yp3tr", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "STATUT_CH non renseigné", + "Expression": "$STATUT_CH$=\"\" or isnull($STATUT_CH$)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8lz3ccu" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel est le statut professionnel (actuel ou dernier) de \" || (if (nvl($PRENOM_C$,\"\")=\"\") then (if ($COUPLE$=\"1\" or $COUPLE$=\"2\") and ($SEXE_CH$=\"2\" or isnull($SEXE_CH$)) then \"votre conjoint \" else (if (($COUPLE$ =\"1\" or $COUPLE$=\"2\") and $SEXE_CH$=\"1\") then \"votre conjointe \" else (if ($COUPLE$=\"3\" and ($SEXE_CH$ =\"2\" or isnull($SEXE_CH$))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else $PRENOM_C$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l0quphwx", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "STATUT_CH" + }, + { + "Response": [ + { + "CollectedVariableReference": "llmhufxz", + "id": "llgsts0b", + "mandatory": false, + "CodeListReference": "llmhtv0t", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SAL_FP_CH non renseigné", + "Expression": "isnull($SAL_FP_CH$) or $SAL_FP_CH$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "llgt1zkf" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans son emploi, \" || (if (nvl($PRENOM_C$,\"\")=\"\") then (if ($COUPLE$=\"1\" or $COUPLE$=\"2\") and ($SEXE_CH$=\"2\" or isnull($SEXE_CH$)) then \"votre conjoint \" else (if (($COUPLE$ =\"1\" or $COUPLE$=\"2\") and $SEXE_CH$=\"1\") then \"votre conjointe \" else (if ($COUPLE$=\"3\" and ($SEXE_CH$ =\"2\" or isnull($SEXE_CH$))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else $PRENOM_C$) || \" est ou était ?\"" + ], + "ClarificationQuestion": [], + "id": "llgt315z", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SAL_FP_CH" + }, + { + "Response": [ + { + "CollectedVariableReference": "llni7khh", + "id": "llgt1faa", + "mandatory": false, + "CodeListReference": "llnh4uj2", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SAL_ENT_CH non renseigné", + "Expression": "isnull($SAL_ENT_CH$) or $SAL_ENT_CH$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "llgszrsr" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans son emploi, \" || (if (nvl($PRENOM_C$,\"\")=\"\") then (if ($COUPLE$=\"1\" or $COUPLE$=\"2\") and ($SEXE_CH$=\"2\" or isnull($SEXE_CH$)) then \"votre conjoint \" else (if (($COUPLE$ =\"1\" or $COUPLE$=\"2\") and $SEXE_CH$=\"1\") then \"votre conjointe \" else (if ($COUPLE$=\"3\" and ($SEXE_CH$ =\"2\" or isnull($SEXE_CH$))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else $PRENOM_C$) || \" est ou était ?\"" + ], + "ClarificationQuestion": [], + "id": "llgt75zv", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SAL_ENT_CH" + }, + { + "Response": [ + { + "CollectedVariableReference": "lldrj7dd", + "id": "lldeidzi", + "mandatory": false, + "CodeListReference": "lldegmb1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEXE_CF non renseignée", + "Expression": "isnull($SEXE_CF$) or $SEXE_CF$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "llds100c" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_C$,\"\")=\"\") then (if ($COUPLE$=\"1\" or $COUPLE$=\"2\") then \"Votre conjoint(e) est-il/elle ?\" else \"Votre dernier(ère) conjoint(e) est-il/elle ? \") else ($PRENOM_C$ || \" est-il/elle ?\"))" + ], + "ClarificationQuestion": [], + "id": "llde3pgg", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEXE_CF" + }, + { + "Response": [ + { + "CollectedVariableReference": "lldrxbyn", + "id": "lldpfefv", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "LIEUNAIS_CF non renseigné", + "Expression": "isnull($LIEUNAIS_CF$) or $LIEUNAIS_CF$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "lldrolsm" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if nvl($PRENOM_C$,\"\") <> \"\" then $PRENOM_C$ else (if (($COUPLE$ =\"1\" or $COUPLE$=\"2\") and ($SEXE_CF$=\"1\" or isnull($SEXE_CF$))) then \"Votre conjoint \" else (if (($COUPLE$ =\"1\" or $COUPLE$=\"2\") and $SEXE_CF$=\"2\") then \"Votre conjointe \" else (if ($COUPLE$=\"3\" and ($SEXE_CF$ =\"1\" or isnull($SEXE_CF$))) then \"Votre dernier conjoint \" else \"Votre dernière conjointe \")))) || \" est-\" || (if ($SEXE_CF$=\"1\" or isnull($SEXE_CF$)) then \"il né en France ?\" else \"elle née en France ?\")" + ], + "ClarificationQuestion": [], + "id": "lldpi629", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Prenez en compte les frontières actuelles.\"", + "id": "lldp0f22", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "LIEUNAIS_CF" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvxrs8n", + "id": "llvz9d48", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "DNAI_CF non renseigné", + "Expression": "isnull($DNAI_CF$) or $DNAI_CF$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "llds49dh" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel est le département de naissance de \" || (if (nvl($PRENOM_C$,\"\")=\"\") then (if ($COUPLE$=\"1\" or $COUPLE$=\"2\") and ($SEXE_CF$=\"1\" or isnull($SEXE_CF$)) then \"votre conjoint \" else (if (($COUPLE$ =\"1\" or $COUPLE$=\"2\") and $SEXE_CF$=\"2\") then \"votre conjointe \" else (if ($COUPLE$=\"3\" and ($SEXE_CF$ =\"1\" or isnull($SEXE_CF$))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else $PRENOM_C$) || \" ?\" " + ], + "id": "lldp8203", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"\r\n", + "id": "lldpcfe1", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "DNAI_CF" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvxem9q", + "id": "llvzbi5b", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PNAI_CF non renseigné", + "Expression": "isnull($PNAI_CF$) or $PNAI_CF$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "llds2r3p" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel est le pays de naissance de \" || (if (nvl($PRENOM_C$,\"\")=\"\") then (if ($COUPLE$=\"1\" or $COUPLE$=\"2\") and ($SEXE_CF$=\"1\" or isnull($SEXE_CF$)) then \"votre conjoint \" else (if (($COUPLE$ =\"1\" or $COUPLE$=\"2\") and $SEXE_CF$=\"2\") then \"votre conjointe \" else (if ($COUPLE$=\"3\" and ($SEXE_CF$ =\"1\" or isnull($SEXE_CF$))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else $PRENOM_C$) || \" ?\" " + ], + "id": "lldpejfa", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"\r\n", + "id": "lldp3of6", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PNAI_CF" + }, + { + "Response": [ + { + "CollectedVariableReference": "llds46nr", + "id": "lldq01q6", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "TRAV_CF non renseigné", + "Expression": "isnull($TRAV_CF$) or $TRAV_CF$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "llds6yv3" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_C$,\"\")=\"\") then (if ($COUPLE$=\"1\" or $COUPLE$=\"2\") and ($SEXE_CF$=\"1\" or isnull($SEXE_CF$)) then \"Votre conjoint \" else (if (($COUPLE$ =\"1\" or $COUPLE$=\"2\") and $SEXE_CF$=\"2\") then \"Votre conjointe \" else (if ($COUPLE$=\"3\" and ($SEXE_CF$ =\"1\" or isnull($SEXE_CF$))) then \"Votre dernier conjoint \" else \"Votre dernière conjointe \"))) else $PRENOM_C$) || \" a-t-\" || (if ($SEXE_CF$=\"1\" or isnull($SEXE_CF$)) then \"il \" else \"elle \") || \"déjà travaillé ?\"" + ], + "ClarificationQuestion": [], + "id": "lldqco3p", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "TRAV_CF" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvxpjun", + "id": "llvz89y7", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quelle est la profession actuelle ou la dernière profession de \" || (if (nvl($PRENOM_C$,\"\")=\"\") then (if ($COUPLE$=\"1\" or $COUPLE$=\"2\") then \"votre conjoint\" else \"votre dernier conjoint\") else $PRENOM_C$) || \" s'il ne travaille pas ?\"" + ], + "id": "l4quaxvt", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le libellé de profession recherché et sélectionnez le dans la liste.\"\r\n\"Si vous ne le trouvez pas, passez à la question suivante.\"", + "id": "l4qu3r4l", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + }, + { + "declarationType": "HELP", + "Text": "\"Saisissez bien la dernière profession connue.\"", + "id": "l7yku2q0", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PROF_CF1" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvxbql6", + "id": "llvz4gqz", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quelle est la profession actuelle ou la dernière profession de \" || (if (nvl($PRENOM_C$,\"\")=\"\") then (if ($COUPLE$=\"1\" or $COUPLE$=\"2\") then \"votre conjointe\" else \"votre dernière conjointe\") else $PRENOM_C$) || \" si elle ne travaille pas ?\"" + ], + "id": "lldpqtrp", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le libellé de profession recherché et sélectionnez le dans la liste.\"\r\n\"Si vous ne le trouvez pas, passez à la question suivante.\"", + "id": "lldp9mst", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + }, + { + "declarationType": "HELP", + "Text": "\"Saisissez bien la dernière profession connue.\"", + "id": "lldpdl3w", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PROF_CF2" + }, + { + "Response": [ + { + "CollectedVariableReference": "lldse6ue", + "id": "lldqfnvv", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PROF_C2F non renseigné", + "Expression": "isnull($PROF_C2F$) or $PROF_C2F$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"", + "id": "lldsctp5" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Vous n'avez pas trouvé le libellé de profession recherché dans la liste. Veuillez saisir le libellé de profession le plus précis et complet possible.\"" + ], + "id": "lldqd2sd", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PROF_C2F" + }, + { + "Response": [ + { + "CollectedVariableReference": "llmhxy6z", + "id": "llmhi8tu", + "mandatory": false, + "CodeListReference": "llmhgfca", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "STATUT_CF non renseigné", + "Expression": "isnull($STATUT_CF$) or $STATUT_CF$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "llmhq8yt" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel est le statut professionnel (actuel ou dernier) de \" || (if (nvl($PRENOM_C$,\"\")=\"\") then (if ($COUPLE$=\"1\" or $COUPLE$=\"2\") and ($SEXE_CF$=\"1\" or isnull($SEXE_CF$)) then \"votre conjoint \" else (if (($COUPLE$ =\"1\" or $COUPLE$=\"2\") and $SEXE_CF$=\"2\") then \"votre conjointe \" else (if ($COUPLE$=\"3\" and ($SEXE_CF$ =\"1\" or isnull($SEXE_CF$))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else $PRENOM_C$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "llmhdvun", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "STATUT_CF" + }, + { + "Response": [ + { + "CollectedVariableReference": "llmi0a7o", + "id": "llmhkcpp", + "mandatory": false, + "CodeListReference": "llgrti9z", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SAL_FP_CF non renseigné", + "Expression": "isnull($SAL_FP_CF$) or $SAL_FP_CF$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "llmhy7on" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans son emploi, \" || (if (nvl($PRENOM_C$,\"\")=\"\") then (if ($COUPLE$=\"1\" or $COUPLE$=\"2\") and ($SEXE_CF$=\"1\" or isnull($SEXE_CF$)) then \"votre conjoint \" else (if (($COUPLE$ =\"1\" or $COUPLE$=\"2\") and $SEXE_CF$=\"2\") then \"votre conjointe \" else (if ($COUPLE$=\"3\" and ($SEXE_CF$ =\"1\" or isnull($SEXE_CF$))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else $PRENOM_C$) || \" est ou était ?\"" + ], + "ClarificationQuestion": [], + "id": "llmhi6fd", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SAL_FP_CF" + }, + { + "Response": [ + { + "CollectedVariableReference": "llnhq9nc", + "id": "llnh4jb1", + "mandatory": false, + "CodeListReference": "llnhh1go", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SAL_ENT_CF non renseigné", + "Expression": "isnull($SAL_ENT_CF$) or $SAL_ENT_CF$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "llnh5yon" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans son emploi, \" || (if (nvl($PRENOM_C$,\"\")=\"\") then (if ($COUPLE$=\"1\" or $COUPLE$=\"2\") and ($SEXE_CF$=\"1\" or isnull($SEXE_CF$)) then \"votre conjoint \" else (if (($COUPLE$ =\"1\" or $COUPLE$=\"2\") and $SEXE_CF$=\"2\") then \"votre conjointe \" else (if ($COUPLE$=\"3\" and ($SEXE_CF$ =\"1\" or isnull($SEXE_CF$))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else $PRENOM_C$) || \" est ou était ?\"" + ], + "ClarificationQuestion": [], + "id": "llnh2qpm", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SAL_ENT_CF" + } + ], + "Name": "DESCRIPTION_C" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "Les étapes de votre vie en couple" + ], + "id": "l27f5twb", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", nous allons maintenant décrire les étapes de votre \" || if ($COUPLE$=\"1\" or $COUPLE$ =\"2\") then \" vie en couple actuelle.\" else \" dernière période de vie en couple.\"", + "id": "l27ezxol", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "ln3921g6", + "id": "l27dtcgo", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ANNEE_U non renseignée", + "Expression": "isnull($ANNEE_U$) or $ANNEE_U$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"", + "id": "lab6rpay" + }, + { + "post_collect": false, + "Description": "\"L'année de mise en couple ne peut pas être antérieure à votre année de naissance.\"", + "Expression": "not(isnull($ANNEE_U$)) and not(isnull($ANAIS$)) and cast($ANNEE_U$,integer) < cast($ANAIS$,integer)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de mise en couple ne peut pas être antérieure à votre année de naissance.\"", + "id": "lagxv1kz" + }, + { + "post_collect": false, + "Description": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre mise en couple, est-ce que vous confirmez ?\"", + "Expression": "not(isnull($ANNEE_U$)) and not(isnull($ANAIS$)) and (cast($ANAIS$,integer) + 15 > cast($ANNEE_U$,integer))", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre mise en couple, est-ce que vous confirmez ?\"", + "id": "lagxls5j" + }, + { + "post_collect": false, + "Description": "bornes ANNEE_U", + "Expression": "cast($ANNEE_U$,integer) < 1920 or cast($ANNEE_U$,integer) > 2024", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de mise en couple est comprise entre 1920 et 2024.\" ", + "id": "ln39g2ml" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", en quelle année vous êtes-vous mis\" || (if (isnull($TYPE_QUEST$)) then \"\" else (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\")) || \" en couple avec \" || (if (nvl($PRENOM_C$,\"\")=\"\") then (if ($COUPLE$=\"1\" or $COUPLE$=\"2\") and (($SEXE_CH$=\"2\" and isnull($SEXE_CF$)) or ($SEXE_CF$=\"1\" and isnull($SEXE_CH$)) or (isnull($SEXE_CH$) and isnull($SEXE_CF$))) then \"votre conjoint \" else (if (($COUPLE$ =\"1\" or $COUPLE$=\"2\") and (($SEXE_CF$ =\"2\" and isnull($SEXE_CH$)) or ($SEXE_CH$ = \"1\" and isnull($SEXE_CF$)))) then \"votre conjointe \" else (if ($COUPLE$=\"3\") and (($SEXE_CH$=\"2\" and isnull($SEXE_CF$)) or ($SEXE_CF$=\"1\" and isnull($SEXE_CH$)) or (isnull($SEXE_CH$) and isnull($SEXE_CF$))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else $PRENOM_C$) || \" ?\"" + ], + "id": "l27dlmvl", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "ANNEE_U" + }, + { + "Response": [ + { + "CollectedVariableReference": "llm3di1p", + "id": "kwqanscn", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PACS non renseigné", + "Expression": "isnull($PACS$) or $PACS$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l487v6s5" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Vous \" || (if ($COUPLE$=\"3\") then \"étiez\" else \"êtes\") || \"-vous pacsé\" || (if (isnull($TYPE_QUEST$)) then \"\" else (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\")) || \" avec \" || (if (nvl($PRENOM_C$,\"\")=\"\") then (if ($COUPLE$=\"1\" or $COUPLE$=\"2\") and (($SEXE_CH$=\"2\" and isnull($SEXE_CF$)) or ($SEXE_CF$=\"1\" and isnull($SEXE_CH$)) or (isnull($SEXE_CH$) and isnull($SEXE_CF$))) then \"votre conjoint \" else (if (($COUPLE$ =\"1\" or $COUPLE$=\"2\") and (($SEXE_CF$ =\"2\" and isnull($SEXE_CH$)) or ($SEXE_CH$ = \"1\" and isnull($SEXE_CF$)))) then \"votre conjointe \" else (if ($COUPLE$=\"3\") and (($SEXE_CH$=\"2\" and isnull($SEXE_CF$)) or ($SEXE_CF$=\"1\" and isnull($SEXE_CH$)) or (isnull($SEXE_CH$) and isnull($SEXE_CF$))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else $PRENOM_C$) || \" ? \"" + ], + "ClarificationQuestion": [], + "id": "kwqa4zjf", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"(même si vous vous êtes marié\" || (if ((nvl($SEXE_CF$,\"\")=\"\") and (nvl($SEXE_CH$,\"\")=\"\")) then \"s)\" else (if ($SEXE_CF$ =\"2\" and isnull($SEXE_CH$)) then \"es)\" else \"s)\"))", + "id": "l157fqi8", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PACS" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln3ab45e", + "id": "l0qu1ddb", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ANNEE_PACS non renseignée", + "Expression": "isnull($ANNEE_PACS$) or $ANNEE_PACS$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"", + "id": "l4886jpg" + }, + { + "post_collect": false, + "Description": "\"L'année du pacs ne peut pas être antérieure à l'année de mise en couple.\"", + "Expression": "not(isnull($ANNEE_PACS$)) and not(isnull($ANNEE_U$)) and cast($ANNEE_PACS$,integer) < cast($ANNEE_U$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année du pacs ne peut pas être antérieure à l'année de mise en couple.\"", + "id": "l84g965m" + }, + { + "post_collect": false, + "Description": "\"L'année du pacs ne peut pas être antérieure à votre année de naissance.\"", + "Expression": "not(isnull($ANNEE_PACS$)) and not(isnull($ANAIS$)) and cast($ANNEE_PACS$,integer) < cast($ANAIS$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année du pacs ne peut pas être antérieure à votre année de naissance.\"", + "id": "lagy60ni" + }, + { + "post_collect": false, + "Description": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre pacs, est-ce que vous confirmez ?\"", + "Expression": "not(isnull($ANNEE_PACS$)) and not(isnull($ANAIS$)) and (cast($ANAIS$,integer) + 15 > cast($ANNEE_PACS$,integer))", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre pacs, est-ce que vous confirmez ?\"", + "id": "lagxzfkm" + }, + { + "post_collect": false, + "Description": "bornes ANNEE_PACS", + "Expression": "cast($ANNEE_PACS$,integer) < 1999 or cast($ANNEE_PACS$,integer) > 2024", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année du pacs est comprise entre 1999 et 2024.\" ", + "id": "ln39d34w" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"En quelle année vous \" || (if ($COUPLE$=\"3\") then \"étiez\" else \"êtes\") || \"-vous pacsé\" || (if (isnull($TYPE_QUEST$)) then \"\" else (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\")) || \" avec \" || (if (nvl($PRENOM_C$,\"\")=\"\") then (if ($COUPLE$=\"1\" or $COUPLE$=\"2\") and (($SEXE_CH$=\"2\" and isnull($SEXE_CF$)) or ($SEXE_CF$=\"1\" and isnull($SEXE_CH$)) or (isnull($SEXE_CH$) and isnull($SEXE_CF$))) then \"votre conjoint \" else (if (($COUPLE$ =\"1\" or $COUPLE$=\"2\") and (($SEXE_CF$ =\"2\" and isnull($SEXE_CH$)) or ($SEXE_CH$ = \"1\" and isnull($SEXE_CF$)))) then \"votre conjointe \" else (if ($COUPLE$=\"3\") and (($SEXE_CH$=\"2\" and isnull($SEXE_CF$)) or ($SEXE_CF$=\"1\" and isnull($SEXE_CH$))or (isnull($SEXE_CH$) and isnull($SEXE_CF$))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else $PRENOM_C$) || \" ? \"" + ], + "id": "l0qu7e2g", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "ANNEE_PACS" + }, + { + "Response": [ + { + "CollectedVariableReference": "li36k75s", + "id": "l0queysd", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "MARI non renseigné", + "Expression": "isnull($MARI$) or $MARI$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l487ubsc" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Vous \" || (if ($COUPLE$=\"3\") then \"étiez\" else \"êtes\") || \"-vous marié\" || (if (isnull($TYPE_QUEST$)) then \"\" else (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\")) || \" avec \" || (if (nvl($PRENOM_C$,\"\")=\"\") then (if ($COUPLE$=\"1\" or $COUPLE$=\"2\") and (($SEXE_CH$=\"2\" and isnull($SEXE_CF$)) or ($SEXE_CF$=\"1\" and isnull($SEXE_CH$)) or (isnull($SEXE_CH$) and isnull($SEXE_CF$))) then \"votre conjoint \" else (if (($COUPLE$ =\"1\" or $COUPLE$=\"2\") and (($SEXE_CF$ =\"2\" and isnull($SEXE_CH$)) or ($SEXE_CH$ = \"1\" and isnull($SEXE_CF$)))) then \"votre conjointe \" else (if ($COUPLE$=\"3\") and (($SEXE_CH$=\"2\" and isnull($SEXE_CF$)) or ($SEXE_CF$=\"1\" and isnull($SEXE_CH$)) or (isnull($SEXE_CH$) and isnull($SEXE_CF$))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else $PRENOM_C$) || \" ? \"" + ], + "ClarificationQuestion": [], + "id": "l0qujqzn", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "MARI" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln4mu3a8", + "id": "l0qum61j", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ANNEE_MARI non renseigné", + "Expression": "isnull($ANNEE_MARI$) or $ANNEE_MARI$ =\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"", + "id": "l487tu7h" + }, + { + "post_collect": false, + "Description": "\"L'année du mariage ne peut pas être antérieure à l'année de mise en couple.\"", + "Expression": "not(isnull($ANNEE_MARI$)) and not(isnull($ANNEE_U$)) and cast($ANNEE_MARI$,integer) < cast($ANNEE_U$,integer) \r\n", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année du mariage ne peut pas être antérieure à l'année de mise en couple.\"", + "id": "l84gd8f8" + }, + { + "post_collect": false, + "Description": "\"L'année du mariage ne peut pas être antérieure à l'année du pacs.\"", + "Expression": "not(isnull($ANNEE_MARI$)) and not(isnull($ANNEE_PACS$)) and $ANNEE_MARI$ < $ANNEE_PACS$ \r\n", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année du mariage ne peut pas être antérieure à l'année du pacs.\"", + "id": "l84gl8f9" + }, + { + "post_collect": false, + "Description": "\"L'année du mariage ne peut pas être antérieure à votre année de naissance.\"", + "Expression": "not(isnull($ANNEE_MARI$)) and not(isnull($ANAIS$)) and cast($ANNEE_MARI$,integer) < cast($ANAIS$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année du mariage ne peut pas être antérieure à votre année de naissance.\"", + "id": "lagxy8aq" + }, + { + "post_collect": false, + "Description": "\"Il semble y avoir peu d'écart entre votre date de naissance et celle de votre mariage, est-ce que vous confirmez ?\"", + "Expression": "not(isnull($ANNEE_MARI$)) and not(isnull($ANAIS$)) and (cast($ANAIS$,integer) + 15 > cast($ANNEE_MARI$,integer))", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Il semble y avoir peu d'écart entre votre date de naissance et celle de votre mariage, est-ce que vous confirmez ?\"", + "id": "lagxsrud" + }, + { + "post_collect": false, + "Description": "bornes ANNEE_MARI", + "Expression": "cast($ANNEE_MARI$,integer) < 1920 or cast($ANNEE_MARI$,integer) > 2024", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année du mariage est comprise entre 1920 et 2024.\" ", + "id": "ln4nazfy" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"En quelle année vous \" || (if ($COUPLE$=\"3\") then \"étiez\" else \"êtes\") || \"-vous marié\" || (if (isnull($TYPE_QUEST$)) then \"\" else (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\")) || \" avec \" || (if (nvl($PRENOM_C$,\"\")=\"\") then (if ($COUPLE$=\"1\" or $COUPLE$=\"2\") and (($SEXE_CH$=\"2\" and isnull($SEXE_CF$)) or ($SEXE_CF$=\"1\" and isnull($SEXE_CH$))or (isnull($SEXE_CH$) and isnull($SEXE_CF$))) then \"votre conjoint \" else (if (($COUPLE$ =\"1\" or $COUPLE$=\"2\") and (($SEXE_CF$ =\"2\" and isnull($SEXE_CH$)) or ($SEXE_CH$ = \"1\" and isnull($SEXE_CF$)))) then \"votre conjointe \" else (if ($COUPLE$=\"3\") and (($SEXE_CH$=\"2\" and isnull($SEXE_CF$)) or ($SEXE_CF$=\"1\" and isnull($SEXE_CH$))or (isnull($SEXE_CH$) and isnull($SEXE_CF$))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else $PRENOM_C$) || \" ? \"" + ], + "id": "l0qul94p", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "ANNEE_MARI" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln0berao", + "id": "l5kt58n3", + "mandatory": false, + "CodeListReference": "l5ksmbco", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEPARE non renseigné", + "Expression": "isnull($SEPARE$) or $SEPARE$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l5kt1a2r" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Si vous n'êtes plus en couple, est-ce parce que \"" + ], + "ClarificationQuestion": [], + "id": "l5kszr2f", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEPARE" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln4my54k", + "id": "l27e9xg5", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ANNEE_S non renseignée", + "Expression": "isnull($ANNEE_S$) or $ANNEE_S$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"", + "id": "l4887k2v" + }, + { + "post_collect": false, + "Description": "\"L'année de la séparation ne peut pas être antérieure à l'année de mise en couple.\"", + "Expression": "not(isnull($ANNEE_S$)) and not(isnull($ANNEE_U$)) and cast($ANNEE_S$,integer) < cast($ANNEE_U$,integer) \r\n", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de la séparation ne peut pas être antérieure à l'année de mise en couple.\"", + "id": "l84ge0te" + }, + { + "post_collect": false, + "Description": "\"L'année de la séparation ne peut pas être antérieure à votre année de naissance.\"", + "Expression": "not(isnull($ANNEE_S$)) and not(isnull($ANAIS$)) and cast($ANNEE_S$,integer) < cast($ANAIS$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de la séparation ne peut pas être antérieure à votre année de naissance.\"", + "id": "lai1e5dc" + }, + { + "post_collect": false, + "Description": "bornes ANNEE_S", + "Expression": "cast($ANNEE_S$,integer) < 1920 or cast($ANNEE_S$,integer) > 2024", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de la séparation est comprise entre 1920 et 2024.\" ", + "id": "ln4myal9" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"En quelle année vous êtes-vous séparé\" ||(if (isnull($TYPE_QUEST$)) then \"\" else (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\")) || \" de \" || (if (nvl($PRENOM_C$,\"\")=\"\") then (if ($SEXE_CH$=\"2\" and isnull($SEXE_CF$)) or ($SEXE_CF$=\"1\" and isnull($SEXE_CH$)) or (isnull($SEXE_CH$) and isnull($SEXE_CF$)) then \"votre dernier conjoint \" else \"votre dernière conjointe \") else $PRENOM_C$) || \" ? \"" + ], + "id": "l27dzhpw", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "ANNEE_S" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln4n3pvd", + "id": "l155u3w9", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ANNEE_D non renseignée", + "Expression": "isnull($ANNEE_D$) or $ANNEE_D$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"", + "id": "l488bvn2" + }, + { + "post_collect": false, + "Description": "\"L'année du décès de votre conjoint(e) ne peut pas être antérieure à l'année de mise en couple.\"", + "Expression": "not(isnull($ANNEE_D$)) and not(isnull($ANNEE_U$)) and cast($ANNEE_D$,integer) < cast($ANNEE_U$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année du décès de votre conjoint(e) ne peut pas être antérieure à l'année de mise en couple.\"", + "id": "lai1m8j2" + }, + { + "post_collect": false, + "Description": "\"L'année du décès de votre conjoint(e) ne peut pas être antérieure à votre année de naissance.\"", + "Expression": "not(isnull($ANNEE_D$)) and not(isnull($ANAIS$)) and cast($ANNEE_D$,integer) < cast($ANAIS$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année du décès de votre conjoint(e) ne peut pas être antérieure à votre année de naissance.\"", + "id": "lai1hlv8" + }, + { + "post_collect": false, + "Description": "bornes ANNEE_D", + "Expression": "cast($ANNEE_D$,integer) < 1920 or cast($ANNEE_D$,integer) > 2024", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année du décès de votre conjoint(e) est comprise entre 1920 et 2024.\" ", + "id": "ln4n5z1x" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"En quelle année \" || (if(nvl($PRENOM_C$,\"\")=\"\") then (if (($SEXE_CH$=\"2\" or isnull($SEXE_CH$)) and ($SEXE_CF$=\"1\" or isnull($SEXE_CF$)) or (isnull($SEXE_CH$) and isnull($SEXE_CF$))) then \"votre dernier conjoint \" else \"votre dernière conjointe \") else $PRENOM_C$) || \" est-\" || (if (((nvl($SEXE_CF$,\"\")=\"\") and (nvl($SEXE_CH$,\"\")=\"\")) or ($SEXE_CF$ =\"1\" and isnull($SEXE_CH$)) or ($SEXE_CH$ = \"2\" and isnull($SEXE_CF$))or (isnull($SEXE_CH$) and isnull($SEXE_CF$))) then \"il\" else \"elle\") || \" décédé\" || (if (((nvl($SEXE_CF$,\"\")=\"\") and (nvl($SEXE_CH$,\"\")=\"\")) or ($SEXE_CF$ =\"1\" and isnull($SEXE_CH$)) or ($SEXE_CH$ = \"2\" and isnull($SEXE_CF$))or (isnull($SEXE_CH$) and isnull($SEXE_CF$))) then \" ?\" else \"e ?\")" + ], + "id": "l155mqhc", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "ANNEE_D" + } + ], + "Name": "VIECOUPLE" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "Les enfants de votre couple" + ], + "id": "ljmotpyk", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "li36l5p1", + "id": "l43udnys", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ENFAV_C non renseigné", + "Expression": "isnull($ENFAV_C$) or $ENFAV_C$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l43u9rus" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Avant d'être en couple avec vous, \" || (if (nvl($PRENOM_C$,\"\")=\"\") then (if ($COUPLE$=\"1\" or $COUPLE$=\"2\") and (($SEXE_CH$=\"2\" or isnull($SEXE_CH$)) and ($SEXE_CF$=\"1\" or isnull($SEXE_CF$))or (isnull($SEXE_CH$) and isnull($SEXE_CF$))) then \"votre conjoint \" else (if (($COUPLE$ =\"1\" or $COUPLE$=\"2\") and (($SEXE_CF$ =\"2\" and isnull($SEXE_CH$)) or ($SEXE_CH$ = \"1\" and isnull($SEXE_CF$)))) then \"votre conjointe \" else (if ($COUPLE$=\"3\" and (($SEXE_CH$=\"2\" or isnull($SEXE_CH$)) and ($SEXE_CF$=\"1\" or isnull($SEXE_CF$))or (isnull($SEXE_CH$) and isnull($SEXE_CF$)))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else $PRENOM_C$) || \" avait-\" || (if (((nvl($SEXE_CF$,\"\")=\"\") and (nvl($SEXE_CH$,\"\")=\"\")) or ($SEXE_CF$ =\"1\" and isnull($SEXE_CH$)) or ($SEXE_CH$ = \"2\" and isnull($SEXE_CF$))or (isnull($SEXE_CH$) and isnull($SEXE_CF$))) then \"il déjà des enfants ?\" else \"elle déjà des enfants ?\")" + ], + "ClarificationQuestion": [], + "id": "l43u9qqf", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "ENFAV_C" + }, + { + "Response": [ + { + "CollectedVariableReference": "l9iilq19", + "id": "l43udkpq", + "mandatory": false, + "Datatype": { + "Maximum": "20", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NBENFAV_C non renseigné", + "Expression": "isnull($NBENFAV_C$) or $NBENFAV_C$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"", + "id": "l43uealy" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Combien d'enfants avait-\" || (if (((nvl($SEXE_CF$,\"\")=\"\") and (nvl($SEXE_CH$,\"\")=\"\")) or ($SEXE_CF$ =\"1\" and isnull($SEXE_CH$)) or ($SEXE_CH$ = \"2\" and isnull($SEXE_CF$))) then \"il ?\" else \"elle ?\")" + ], + "id": "l43u4x96", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "NBENFAV_C" + }, + { + "Response": [ + { + "CollectedVariableReference": "li36im4p", + "id": "l5jnikmw", + "mandatory": false, + "CodeListReference": "l4onk0te", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NBENFAV_VENU_C1 non renseigné", + "Expression": "isnull($NBENFAV_VENU_C1$) or $NBENFAV_VENU_C1$ =\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l5jnrhtm" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Cet enfant vit-il ou a-t-il vécu avec vous ?\"" + ], + "ClarificationQuestion": [], + "id": "l5jnmvs2", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "NBENFAV_VENU_C1" + }, + { + "Response": [ + { + "CollectedVariableReference": "llulzq4k", + "id": "l43wz325", + "mandatory": false, + "Datatype": { + "Maximum": "20", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NBENFAV_VENU_C non renseigné", + "Expression": "isnull($NBENFAV_VENU_C$) or $NBENFAV_VENU_C$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"", + "id": "l43wp6td" + }, + { + "post_collect": false, + "Description": "\"Le nombre d’enfants venus vivre avec vous ne peut pas être supérieur au nombre total d’enfants.\"", + "Expression": "nvl($NBENFAV_VENU_C$,0) > nvl($NBENFAV_C$,0)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Le nombre d’enfants venus vivre avec vous ne peut pas être supérieur au nombre total d’enfants.\"", + "id": "l8sqfbju" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Combien vivent ou ont vécu avec vous ?\"" + ], + "id": "l43why6c", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": " \"Si aucun, notez 0.\"", + "id": "liiz5sj3", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "NBENFAV_VENU_C" + }, + { + "Response": [ + { + "CollectedVariableReference": "li36eujn", + "id": "l8lyoa9v", + "mandatory": false, + "CodeListReference": "l4onk0te", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "VECU_C non renseignée", + "Expression": "isnull($VECU_C$) or $VECU_C$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8m1wy7u" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Avez-vous déjà vécu avec \" || (if (nvl($PRENOM_C$,\"\")=\"\") then (((if (($SEXE_CH$=\"2\" or isnull($SEXE_CH$)) and ($SEXE_CF$=\"1\" or isnull($SEXE_CF$)) or (isnull($SEXE_CH$) and isnull($SEXE_CF$))) then \"votre dernier conjoint\" else \"votre dernière conjointe\"))) else $PRENOM_C$) || \", dans le même logement ?\" " + ], + "ClarificationQuestion": [], + "id": "l8lz0355", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "VECU_C" + }, + { + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_C$,\"\")=\"\") then (((if (($SEXE_CH$=\"2\" or isnull($SEXE_CH$)) and ($SEXE_CF$=\"1\" or isnull($SEXE_CF$)) or (isnull($SEXE_CH$) and isnull($SEXE_CF$))) then \"Votre conjoint\" else \"Votre conjointe\"))) else $PRENOM_C$) || \" a-t-\" || (if (($SEXE_CH$=\"2\" or isnull($SEXE_CH$)) and ($SEXE_CF$=\"1\" or isnull($SEXE_CF$))or (isnull($SEXE_CH$) and isnull($SEXE_CF$))) then \"il\" else \"elle\") || \" des enfants de moins de 21 ans qui vivent avec leur autre parent ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "lnbudt2m", + "MappingTarget": "1" + }, + { + "MappingSource": "lnbuglr5", + "MappingTarget": "2" + }, + { + "MappingSource": "lnbuhhca", + "MappingTarget": "3" + }, + { + "MappingSource": "lnbuk0ua", + "MappingTarget": "4" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "l43x5eph" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "ENF21_AUTPAR_C", + "Response": [ + { + "CollectedVariableReference": "lnbuofy2", + "id": "lnbudt2m", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lnbuf89j", + "id": "lnbuglr5", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lnbudx04", + "id": "lnbuhhca", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lnbumlrt", + "id": "lnbuk0ua", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ENF21_AUTPAR_C non renseigné", + "Expression": "(nvl($ENF21_AUTPAR_C1$, false) = false and \r\n nvl($ENF21_AUTPAR_C2$, false) = false and \r\n nvl($ENF21_AUTPAR_C3$, false) = false and \r\n nvl($ENF21_AUTPAR_C4$, false) = false) \r\n", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix\".", + "id": "l43x7yln" + }, + { + "post_collect": false, + "Description": "NON exclusif", + "Expression": "(nvl($ENF21_AUTPAR_C1$, false) and nvl($ENF21_AUTPAR_C2$, false)) or\r\n(nvl($ENF21_AUTPAR_C1$, false) and nvl($ENF21_AUTPAR_C3$, false)) or\r\n(nvl($ENF21_AUTPAR_C1$, false) and nvl($ENF21_AUTPAR_C4$, false)) ", + "during_collect": false, + "criticity": "ERROR", + "FailMessage": "\"Vous ne pouvez pas cocher Non et une autre réponse.\"", + "id": "l7yvclsr" + } + ], + "depth": 3, + "ClarificationQuestion": [], + "id": "l43xg8do", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Plusieurs réponses possibles s’il y a plusieurs enfants.\"", + "id": "l484uyl9", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + }, + { + "Response": [ + { + "CollectedVariableReference": "li36e6jz", + "id": "l43xhx4c", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "AUT_UNION non renseigné", + "Expression": "isnull($AUT_UNION$) or $AUT_UNION$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l43wxr33" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", avez-vous eu d'autres périodes de vie en couple auparavant, pendant au moins six mois sous le même toit, avec ou sans mariage ?\"" + ], + "ClarificationQuestion": [], + "id": "l15131wu", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "AUT_UNION" + }, + { + "Response": [ + { + "CollectedVariableReference": "lagvhww3", + "id": "l43xhfsb", + "mandatory": false, + "Datatype": { + "Maximum": "20", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NB_AUT_UNION non renseigné", + "Expression": "isnull($NB_AUT_UNION$) or $NB_AUT_UNION$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"", + "id": "l43x0hit" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Combien de périodes de vie en couple auparavant, pendant au moins six mois sous le même toit, avec ou sans mariage ?\"" + ], + "id": "l43x1amr", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "NB_AUT_UNION" + } + ], + "Name": "ENFANTCOUPLE" + } + ], + "Name": "CONJOINT" + }, + { + "Control": [], + "depth": 1, + "FlowControl": [], + "genericName": "MODULE", + "Label": [ + "VOS PRECEDENTES PERIODES DE VIE EN COUPLE" + ], + "id": "lldr8qge", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Nous allons maintenant décrire vos précédentes périodes de vie en couple.", + "id": "lldrbrp9", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "SequenceType", + "Child": [ + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "Votre première période de vie en couple" + ], + "id": "l15553ya", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", nous allons maintenant décrire les étapes de votre première période de vie en couple (pendant au moins six mois sous le même toit, avec ou sans mariage).\"", + "id": "l34i4s3k", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "l34g1oxk", + "id": "kwqa5f6j", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PRENOM_U1 non renseigné", + "Expression": "isnull($PRENOM_U1$) or $PRENOM_U1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"", + "id": "l443x2b2" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", quel est le prénom de votre premier(ère) conjoint(e) ? \"" + ], + "id": "kwqa53jx", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PRENOM_U1" + }, + { + "Response": [ + { + "CollectedVariableReference": "llgbswhy", + "id": "l4p8w47s", + "mandatory": false, + "CodeListReference": "kwqir1cc", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEXE_U1H non renseigné", + "Expression": "isnull($SEXE_U1H$) or $SEXE_U1H$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4p8ksip" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_U1$,\"\")=\"\") then (\"Votre premier(ère) conjoint(e) est-il/elle ? \") else ($PRENOM_U1$ || \" est-il/elle ?\"))" + ], + "ClarificationQuestion": [], + "id": "l4p8skko", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEXE_U1H" + }, + { + "Response": [ + { + "CollectedVariableReference": "llgbm843", + "id": "lldeceld", + "mandatory": false, + "CodeListReference": "lldegmb1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEXE_U1F non renseigné", + "Expression": "isnull($SEXE_U1F$) or $SEXE_U1F$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "llgbxjat" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_U1$,\"\")=\"\") then (\"Votre premier(ère) conjoint(e) est-il/elle ? \") else ($PRENOM_U1$ || \" est-il/elle ?\"))" + ], + "ClarificationQuestion": [], + "id": "lldenssh", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEXE_U1F" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln4nkp5t", + "id": "l34fz29f", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ANNEE_U1 non renseignée", + "Expression": "isnull($ANNEE_U1$) or $ANNEE_U1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"", + "id": "l4440xmz" + }, + { + "post_collect": false, + "Description": "\"L'année de première mise en couple ne peut pas être postérieure à l'année de mise en couple.\"", + "Expression": "not(isnull($ANNEE_U1$)) and not(isnull($ANNEE_U$)) and cast($ANNEE_U1$,integer) > cast($ANNEE_U$,integer)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de première mise en couple ne peut pas être postérieure à l'année de mise en couple.\"", + "id": "l84hm9ux" + }, + { + "post_collect": false, + "Description": "\"L'année de première mise en couple ne peut pas être antérieure à votre année de naissance.\"", + "Expression": "not(isnull($ANNEE_U1$)) and not(isnull($ANAIS$)) and cast($ANNEE_U1$,integer) < cast($ANAIS$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de première mise en couple ne peut pas être antérieure à votre année de naissance.\"", + "id": "lagxw13e" + }, + { + "post_collect": false, + "Description": "\"Il semble y avoir peu d'écart entre votre date de naissance et celle de votre première mise en couple, est-ce que vous confirmez ?\"", + "Expression": "not(isnull($ANNEE_U1$)) and not(isnull($ANAIS$)) and (cast($ANAIS$,integer) + 15 > cast($ANNEE_U1$,integer))", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre première mise en couple, est-ce que vous confirmez ?\"", + "id": "lagy007e" + }, + { + "post_collect": false, + "Description": "bornes ANNEE_U1", + "Expression": "cast($ANNEE_U1$,integer) < 1920 or cast($ANNEE_U1$,integer) > 2023", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de première mise en couple est comprise entre 1920 et 2023.\" \r\n\r\n", + "id": "ln4n6a50" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"En quelle année vous étiez-vous mis\" || (if (isnull($TYPE_QUEST$)) then \"\" else (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\")) || \" en couple avec \" || (if(nvl($PRENOM_U1$,\"\")=\"\") then (if (($SEXE_U1H$=\"2\" or isnull($SEXE_U1H$)) and ($SEXE_U1F$=\"1\" or isnull($SEXE_U1F$)) or (isnull($SEXE_U1H$) and isnull($SEXE_U1F$))) then \"votre premier conjoint \" else \"votre première conjointe \") else $PRENOM_U1$) || \" ?\"" + ], + "id": "l34fzu5m", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "ANNEE_U1" + }, + { + "Response": [ + { + "CollectedVariableReference": "llm3jau1", + "id": "l27dler4", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PACS_U1 non renseigné", + "Expression": "isnull($PACS_U1$) or $PACS_U1$ =\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l488vcp1" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Vous étiez-vous pacsé\" || (if (isnull($TYPE_QUEST$)) then \"\" else (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\")) || \" avec \" || (if(nvl($PRENOM_U1$,\"\")=\"\") then (if (($SEXE_U1H$=\"2\" or isnull($SEXE_U1H$)) and ($SEXE_U1F$=\"1\" or isnull($SEXE_U1F$)) or (isnull($SEXE_U1H$) and isnull($SEXE_U1F$))) then \"votre premier conjoint \" else \"votre première conjointe \") else $PRENOM_U1$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l27dlnmq", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"(même si vous vous êtes marié\" || (if ((nvl($SEXE_U1F$,\"\")=\"\") and (nvl($SEXE_U1H$,\"\")=\"\")) then \"s)\" else (if ($SEXE_U1F$ =\"2\" and isnull($SEXE_U1H$)) then \"es)\" else \"s)\"))", + "id": "l27e0i68", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PACS_U1" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln8ul9ii", + "id": "l27dy9w1", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ANNEE_PACS_U1 non renseigné", + "Expression": "isnull($ANNEE_PACS_U1$) or $ANNEE_PACS_U1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"", + "id": "l48987o8" + }, + { + "post_collect": false, + "Description": "\"L'année du premier pacs ne peut pas être antérieure à l'année de première mise en couple.\"\n", + "Expression": "not(isnull($ANNEE_U1$)) and not(isnull($ANNEE_PACS_U1$)) and cast($ANNEE_PACS_U1$,integer) < cast($ANNEE_U1$,integer) \r\n", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année du premier pacs ne peut pas être antérieure à l'année de première mise en couple.\"", + "id": "l84gboe2" + }, + { + "post_collect": false, + "Description": "\"L'année du premier pacs ne peut pas être antérieure à votre année de naissance.\"\n", + "Expression": "not(isnull($ANNEE_PACS_U1$)) and not(isnull($ANAIS$)) and cast($ANNEE_PACS_U1$,integer) < cast($ANAIS$,integer) \r\n", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année du premier pacs ne peut pas être antérieure à votre année de naissance.\"", + "id": "lagygbs6" + }, + { + "post_collect": false, + "Description": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre premier pacs, est-ce que vous confirmez ?\"", + "Expression": "not(isnull($ANNEE_PACS_U1$)) and not(isnull($ANAIS$)) and (cast($ANAIS$,integer) + 15 > cast($ANNEE_PACS_U1$,integer))", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre premier pacs, est-ce que vous confirmez ?\"", + "id": "lagyc6qz" + }, + { + "post_collect": false, + "Description": "\"L'année du premier pacs ne peut pas être postérieure à l'année du pacs.\"\n", + "Expression": "not(isnull($ANNEE_PACS$)) and not(isnull($ANNEE_PACS_U1$)) and cast($ANNEE_PACS_U1$,integer) >= cast($ANNEE_PACS$,integer) \r\n", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année du premier pacs ne peut pas être postérieure à l'année du pacs.\"", + "id": "ljqw30t2" + }, + { + "post_collect": false, + "Description": "bornes ANNEE_PACS_U1", + "Expression": "cast($ANNEE_PACS_U1$,integer) < 1999 or cast($ANNEE_PACS_U1$,integer) > 2023", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année du premier pacs est comprise entre 1999 et 2023.\" ", + "id": "ln8ug5j3" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"En quelle année vous étiez-vous pacsé\" || (if (isnull($TYPE_QUEST$)) then \"\" else (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\")) || \" avec \" || (if(nvl($PRENOM_U1$,\"\")=\"\") then (if (($SEXE_U1H$=\"2\" or isnull($SEXE_U1H$)) and ($SEXE_U1F$=\"1\" or isnull($SEXE_U1F$)) or (isnull($SEXE_U1H$) and isnull($SEXE_U1F$))) then \"votre premier conjoint \" else \"votre première conjointe \") else $PRENOM_U1$) || \" ?\" " + ], + "id": "l27dns8a", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "ANNEE_PACS_U1" + }, + { + "Response": [ + { + "CollectedVariableReference": "li36ikzo", + "id": "l27dl55t", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "MARI_U1 non renseigné", + "Expression": "isnull($MARI_U1$) or $MARI_U1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4899l4v" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Vous étiez-vous marié\" || (if (isnull($TYPE_QUEST$)) then \"\" else (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\")) || \" avec \" || (if(nvl($PRENOM_U1$,\"\")=\"\") then (if (($SEXE_U1H$=\"2\" or isnull($SEXE_U1H$)) and ($SEXE_U1F$=\"1\" or isnull($SEXE_U1F$)) or (isnull($SEXE_U1H$) and isnull($SEXE_U1F$))) then \"votre premier conjoint \" else \"votre première conjointe \") else $PRENOM_U1$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l27duust", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "MARI_U1" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln8ue6l0", + "id": "l27dy96e", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ANNEE_MARI_U1 non renseigné", + "Expression": "isnull($ANNEE_MARI_U1$) or $ANNEE_MARI_U1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"", + "id": "l489cvkl" + }, + { + "post_collect": false, + "Description": "\"L'année du premier mariage ne peut pas être antérieure à l'année de première mise en couple.\"", + "Expression": "not(isnull($ANNEE_MARI_U1$)) and not(isnull($ANNEE_U1$)) and cast($ANNEE_MARI_U1$,integer) < cast($ANNEE_U1$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année du premier mariage ne peut pas être antérieure à l'année de première mise en couple.\"", + "id": "l84ghamc" + }, + { + "post_collect": false, + "Description": "\"L'année du premier mariage ne peut pas être antérieure à l'année du premier pacs.\"", + "Expression": "not(isnull($ANNEE_MARI_U1$)) and not(isnull($ANNEE_PACS_U1$)) and cast($ANNEE_MARI_U1$,integer) < cast($ANNEE_PACS_U1$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année du premier mariage ne peut pas être antérieure à l'année du premier pacs.\"", + "id": "l84gr1up" + }, + { + "post_collect": false, + "Description": "\"L'année du premier mariage ne peut pas être antérieure à votre année de naissance.\"", + "Expression": "not(isnull($ANNEE_MARI_U1$)) and not(isnull($ANAIS$)) and cast($ANNEE_MARI_U1$,integer) < cast($ANAIS$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année du premier mariage ne peut pas être antérieure à votre année de naissance.\"", + "id": "lagyfqys" + }, + { + "post_collect": false, + "Description": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre premier mariage, est-ce que vous confirmez ?\"", + "Expression": "not(isnull($ANNEE_MARI_U1$)) not(isnull($ANAIS$)) and (cast(($ANAIS$,integer) + 15 > cast($ANNEE_MARI_U1$,integer))", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre premier mariage, est-ce que vous confirmez ?\"", + "id": "lagykxwy" + }, + { + "post_collect": false, + "Description": "\"L'année du premier mariage ne peut pas être postérieure à l'année du mariage.\"", + "Expression": "not(isnull($ANNEE_MARI_U1$)) and not(isnull($ANNEE_MARI$)) and cast($ANNEE_MARI_U1$,integer) >= cast($ANNEE_MARI$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année du premier mariage ne peut pas être postérieure à l'année du mariage.\"", + "id": "ljqwwg0m" + }, + { + "post_collect": false, + "Description": "bornes ANNEE_MARI_U1", + "Expression": "cast($ANNEE_MARI_U1$,integer) < 1920 or cast($ANNEE_MARI_U1$,integer) > 2023", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année du premier mariage est comprise entre 1920 et 2023.\" ", + "id": "ln8uw0gx" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"En quelle année vous étiez-vous marié\" || (if (isnull($TYPE_QUEST$)) then \"\" else (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\")) || \" avec \" || (if(nvl($PRENOM_U1$,\"\")=\"\") then (if (($SEXE_U1H$=\"2\" or isnull($SEXE_U1H$)) and ($SEXE_U1F$=\"1\" or isnull($SEXE_U1F$)) or (isnull($SEXE_U1H$) and isnull($SEXE_U1F$))) then \"votre premier conjoint \" else \"votre première conjointe \") else $PRENOM_U1$) || \" ?\" " + ], + "id": "l27e50tv", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "ANNEE_MARI_U1" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln0fo50d", + "id": "l5kt1un9", + "mandatory": false, + "CodeListReference": "l5ktegqo", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEPARE_U1 non renseigné", + "Expression": "isnull($SEPARE_U1$) or $SEPARE_U1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l5kt6x79" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Cette période de vie en couple s'est-elle achevée parce que \"" + ], + "ClarificationQuestion": [], + "id": "l5ktf1wn", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEPARE_U1" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln8uhww1", + "id": "l27e9d05", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ANNEE_S_U1 non renseignée", + "Expression": "isnull($ANNEE_S_U1$) or $ANNEE_S_U1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"", + "id": "l4894q82" + }, + { + "post_collect": false, + "Description": "\"L'année de la première séparation ne peut pas être antérieure à l'année de première mise en couple.\"", + "Expression": "not(isnull($ANNEE_S_U1$)) and not(isnull($ANNEE_U1$)) and cast($ANNEE_S_U1$,integer) < cast($ANNEE_U1$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de la première séparation ne peut pas être antérieure à l'année de première mise en couple.\"", + "id": "l84goia9" + }, + { + "post_collect": false, + "Description": "\"L'année de votre première séparation ne peut pas être antérieure à votre année de naissance.\"", + "Expression": "not(isnull($ANNEE_S_U1$)) and not(isnull($ANAIS$)) and cast($ANNEE_S_U1$,integer) < cast($ANAIS$,integer)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de votre première séparation ne peut pas être antérieure à votre année de naissance.\"", + "id": "lai1z2si" + }, + { + "post_collect": false, + "Description": "bornes ANNEE_S_U1", + "Expression": "cast($ANNEE_S_U1$,integer) < 1920 or cast($ANNEE_S_U1$,integer) > 2023", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de première séparation est comprise entre 1920 et 2023.\" ", + "id": "ln8uldg0" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"En quelle année vous êtes-vous séparé\" ||(if (isnull($TYPE_QUEST$)) then \"\" else (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\")) || \" de \" || (if (nvl($PRENOM_U1$,\"\")=\"\") then (if ($SEXE_U1H$=\"2\" and isnull($SEXE_U1F$)) or ($SEXE_U1F$=\"1\" and isnull($SEXE_U1H$)) or (isnull($SEXE_U1H$) and isnull($SEXE_U1F$)) then \"votre premier conjoint \" else \"votre première conjointe \") else $PRENOM_U1$) || \" ?\" " + ], + "id": "l27dzhzv", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "ANNEE_S_U1" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln8v07e9", + "id": "l27e0zm5", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ANNEE_D_U1 non renseignée", + "Expression": "isnull($ANNEE_D_U1$) or $ANNEE_D_U1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"", + "id": "l48991is" + }, + { + "post_collect": false, + "Description": "\"L'année du décès de votre premier(ère) conjoint(e) ne peut pas être antérieure à l'année de première mise en couple.\"", + "Expression": "not(isnull($ANNEE_D_U1$)) and not(isnull($ANNEE_U1$)) and cast($ANNEE_D_U1$,integer) < cast($ANNEE_U1$,integer)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année du décès de votre premier(ère) conjoint(e) ne peut pas être antérieure à l'année de votre première mise en couple.\"", + "id": "lai29ml7" + }, + { + "post_collect": false, + "Description": "\"L'année du décès de votre premier(ère) conjoint(e) ne peut pas être antérieure à votre année de naissance.\"", + "Expression": "not(isnull($ANNEE_D_U1$)) and not(isnull($ANAIS$)) and $ANNEE_D_U1$ < $ANAIS$ ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année du décès de votre premier(ère) conjoint(e) ne peut pas être antérieure à votre année de naissance.\"", + "id": "lai2bpcj" + }, + { + "post_collect": false, + "Description": "bornes ANNEE_D_U1", + "Expression": "cast($ANNEE_D_U1$,integer) < 1920 or cast($ANNEE_D_U1$,integer) > 2024", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de décès de votre premier(ère) conjoint(e) est comprise entre 1920 et 2024.\" ", + "id": "ln8uzgqs" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"En quelle année \" || (if(nvl($PRENOM_U1$,\"\")=\"\") then (if (($SEXE_U1H$=\"2\" or isnull($SEXE_U1H$)) and ($SEXE_U1F$=\"1\" or isnull($SEXE_U1F$)) or (isnull($SEXE_U1H$) and isnull($SEXE_U1F$))) then \"votre premier conjoint \" else \"votre première conjointe \") else $PRENOM_U1$) || \" est-\" || (if (((nvl($SEXE_U1F$,\"\")=\"\") and (nvl($SEXE_U1H$,\"\")=\"\")) or ($SEXE_U1F$ =\"1\" and isnull($SEXE_U1H$)) or ($SEXE_U1H$ = \"2\" and isnull($SEXE_U1F$)) or (isnull($SEXE_U1H$) and isnull($SEXE_U1F$))) then \"il décédé ?\" else \"elle décédée ?\") " + ], + "id": "l27e0qyq", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "ANNEE_D_U1" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4cje9hx", + "id": "l4cjcmvn", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ENFAV_C_U1 non renseigné", + "Expression": "isnull($ENFAV_C_U1$) or $ENFAV_C_U1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4cjfnqw" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Avant d'être en couple avec vous, \" || (if(nvl($PRENOM_U1$,\"\")=\"\") then (if (($SEXE_U1H$=\"2\" or isnull($SEXE_U1H$)) and ($SEXE_U1F$=\"1\" or isnull($SEXE_U1F$)) or (isnull($SEXE_U1H$) and isnull($SEXE_U1F$))) then \"votre premier conjoint\" else \"votre première conjointe\") else $PRENOM_U1$) || \" avait-\" || (if (((nvl($SEXE_U1F$,\"\")=\"\") and (nvl($SEXE_U1H$,\"\")=\"\")) or ($SEXE_U1F$ =\"1\" and isnull($SEXE_U1H$)) or ($SEXE_U1H$ = \"2\" and isnull($SEXE_U1F$)) or (isnull($SEXE_U1H$) and isnull($SEXE_U1F$))) then \"il\" else \"elle\") || \" déjà des enfants ?\"" + ], + "ClarificationQuestion": [], + "id": "l4cjg2rp", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "ENFAV_C_U1" + }, + { + "Response": [ + { + "CollectedVariableReference": "l5ktp37h", + "id": "l4cjc9rj", + "mandatory": false, + "Datatype": { + "Maximum": "20", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NBENFAV_C_U1 non renseigné", + "Expression": "isnull($NBENFAV_C_U1$) or $NBENFAV_C_U1$ =\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"", + "id": "l4cjh039" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Combien d'enfants avait-\" || (if (((nvl($SEXE_U1F$,\"\")=\"\") and (nvl($SEXE_U1H$,\"\")=\"\")) or ($SEXE_U1F$ =\"1\" and isnull($SEXE_U1H$)) or ($SEXE_U1H$ = \"2\" and isnull($SEXE_U1F$))) then \"il ?\" else \"elle ?\") " + ], + "id": "l4cja8pm", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "NBENFAV_C_U1" + }, + { + "Response": [ + { + "CollectedVariableReference": "l5jnkoyz", + "id": "l5ild1d2", + "mandatory": false, + "CodeListReference": "l4onk0te", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NBENFAV_C1_VENU_U1 non renseigné", + "Expression": "isnull($NBENFAV_C1_VENU_U1$) or $NBENFAV_C1_VENU_U1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l5iky25n" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Cet enfant a-t-il vécu avec vous ?\"" + ], + "ClarificationQuestion": [], + "id": "l5ilbb89", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "NBENFAV_C1_VENU_U1" + }, + { + "Response": [ + { + "CollectedVariableReference": "lluma0ok", + "id": "l4o5y0na", + "mandatory": false, + "Datatype": { + "Maximum": "20", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NBENFAV_C_VENU_U1 non renseigné", + "Expression": "isnull($NBENFAV_C_VENU_U1$) or $NBENFAV_C_VENU_U1$ =\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"", + "id": "l4o5znyq" + }, + { + "post_collect": false, + "Description": "\"Le nombre d’enfants venus vivre avec vous ne peut pas être supérieur au nombre total d’enfants.\"", + "Expression": "nvl($NBENFAV_C_VENU_U1$,0) > nvl($NBENFAV_C_U1$,0)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Le nombre d’enfants venus vivre avec vous ne peut pas être supérieur au nombre total d’enfants.\"", + "id": "l8sq6rx3" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Combien ont vécu avec vous ?\"" + ], + "id": "l4o5x7yq", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Si aucun, notez 0.\"", + "id": "liiz9el9", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "NBENFAV_C_VENU_U1" + } + ], + "Name": "VIECOUPLE1" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "Votre autre période de vie en couple" + ], + "id": "l9iksl95", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", nous allons maintenant décrire, si vous le souhaitez, les étapes d'une autre période de vie en couple (pendant au moins six mois sous le même toit, avec ou sans mariage).\"", + "id": "l9ikp94t", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "l9ildsj0", + "id": "l9ilguvv", + "mandatory": false, + "CodeListReference": "l4onk0te", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "AUT_U2 non renseigné", + "Expression": "isnull($AUT_U2$) or $AUT_U2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l9ilbc9c" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", souhaitez-vous décrire une autre période de vie en couple qui est importante pour vous ? \"" + ], + "ClarificationQuestion": [], + "id": "l9il0i0h", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "AUT_U2" + }, + { + "Response": [ + { + "CollectedVariableReference": "l9ilmr79", + "id": "l9il24xt", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PRENOM_U2 non renseigné", + "Expression": "isnull($PRENOM_U2$) or $PRENOM_U2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"", + "id": "l9ilmlnx" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel est le prénom de votre autre conjoint(e) ? \"" + ], + "id": "l9ilcol6", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PRENOM_U2" + }, + { + "Response": [ + { + "CollectedVariableReference": "llgbwr7a", + "id": "l9ikmsqc", + "mandatory": false, + "CodeListReference": "kwqir1cc", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEXE_U2H non renseigné", + "Expression": "isnull($SEXE_U2H$) or $SEXE_U2H$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l9ilka9k" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_U2$,\"\")=\"\") then (\"Votre autre conjoint(e) est-il/elle ? \") else ($PRENOM_U2$ || \" est-il/elle ?\"))" + ], + "ClarificationQuestion": [], + "id": "l9ikne2h", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEXE_U2H" + }, + { + "Response": [ + { + "CollectedVariableReference": "llgbkefo", + "id": "lldefr60", + "mandatory": false, + "CodeListReference": "lldegmb1", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEXE_U2F non renseigné", + "Expression": "isnull($SEXE_U2F$) or $SEXE_U2F$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "llgc3u0c" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_U2$,\"\")=\"\") then (\"Votre autre conjoint(e) est-il/elle ? \") else ($PRENOM_U2$ || \" est-il/elle ?\"))" + ], + "ClarificationQuestion": [], + "id": "lldetngg", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEXE_U2F" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln8v8dtc", + "id": "l9il1x2i", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "\"L'année de mise en couple de cette autre union ne peut pas être postérieure à l'année de mise en couple.\"", + "Expression": "not(isnull($ANNEE_U2$)) and not(isnull($ANNEE_U$)) and cast($ANNEE_U$,integer) < cast($ANNEE_U2$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de mise en couple de cette autre union ne peut pas être postérieure à l'année de mise en couple.\"", + "id": "l9im01s4" + }, + { + "post_collect": false, + "Description": "ANNEE_U2 non renseigné", + "Expression": "isnull($ANNEE_U2$) or $ANNEE_U2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"\r\n", + "id": "l9iliza0" + }, + { + "post_collect": false, + "Description": "\"L'année de mise en couple de cette autre union ne peut pas être antérieure à votre année de naissance.\"", + "Expression": "not(isnull($ANNEE_U2$)) and not(isnull($ANAIS$)) and cast($ANNEE_U2$,integer) < cast($ANAIS$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de mise en couple de cette autre union ne peut pas être antérieure à votre année de naissance.\"", + "id": "lagypwx8" + }, + { + "post_collect": false, + "Description": "\"Il semble y avoir peu d'écart entre votre date de naissance et celle de la mise en couple de cette autre union, est-ce que vous confirmez ?\"", + "Expression": "not(isnull($ANNEE_U2$)) and not(isnull($ANAIS$)) and (cast($ANAIS$,integer) + 15 > cast($ANNEE_U2$,integer))", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Il semble y avoir peu d'écart entre votre date de naissance et celle de la mise en couple de cette autre union, est-ce que vous confirmez ?\"", + "id": "lagygmkk" + }, + { + "post_collect": false, + "Description": "bornes ANNEE_U2", + "Expression": "cast($ANNEE_U2$,integer) < 1920 or cast($ANNEE_U2$,integer) > 2023", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de mise en couple de cette autre union est comprise entre 1920 et 2023.\" ", + "id": "ln8v90mf" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"En quelle année vous étiez-vous mis\" || (if (isnull($TYPE_QUEST$)) then \"\" else (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\")) || \" en couple avec \" || (if(nvl($PRENOM_U2$,\"\")=\"\") then (if (($SEXE_U2H$=\"2\" or isnull($SEXE_U2H$)) and ($SEXE_U2F$=\"1\" or isnull($SEXE_U2F$)) or (isnull($SEXE_U2H$) and isnull($SEXE_U2F$))) then \"votre autre conjoint \" else \"votre autre conjointe \") else $PRENOM_U2$) || \" ?\" " + ], + "id": "l9ikn3ea", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "ANNEE_U2" + }, + { + "Response": [ + { + "CollectedVariableReference": "llm3orfw", + "id": "l9iks5py", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PACS_U2 non renseigné", + "Expression": "isnull($PACS_U2$) or $PACS_U2$ =\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l9ilnivz" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Vous étiez-vous pacsé\" || (if (isnull($TYPE_QUEST$)) then \"\" else (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\")) || \" avec \" || (if(nvl($PRENOM_U2$,\"\")=\"\") then (if (($SEXE_U2H$=\"2\" or isnull($SEXE_U2H$)) and ($SEXE_U2F$=\"1\" or isnull($SEXE_U2F$)) or (isnull($SEXE_U2H$) and isnull($SEXE_U2F$))) then \"votre autre conjoint \" else \"votre autre conjointe \") else $PRENOM_U2$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l9il24ft", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"(même si vous vous êtes marié\" || (if ((nvl($SEXE_U2F$,\"\")=\"\") and (nvl($SEXE_U2H$,\"\")=\"\")) then \"s)\" else (if ($SEXE_U2F$ =\"2\" and isnull($SEXE_U2H$)) then \"es)\" else \"s)\"))", + "id": "l9ikt4wn", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PACS_U2" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln8vjhau", + "id": "l9iktamx", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ANNEE_PACS_U2 non renseigné", + "Expression": "isnull($ANNEE_PACS_U2$) or $ANNEE_PACS_U2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"", + "id": "l9im592z" + }, + { + "post_collect": false, + "Description": "\"L'année du pacs ne peut pas être antérieure à l'année de mise en couple.\"", + "Expression": "not(isnull($ANNEE_U2$)) and not(isnull($ANNEE_PACS_U2$)) and cast($ANNEE_PACS_U2$,integer) < cast($ANNEE_U2$,integer)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année du pacs ne peut pas être antérieure à l'année de mise en couple.\"", + "id": "l9ilp9kc" + }, + { + "post_collect": false, + "Description": "\"L'année du pacs de cette autre union ne peut pas être antérieure à votre année de naissance.\"", + "Expression": "not(isnull($ANNEE_PACS_U2$)) and not(isnull($ANAIS$)) and cast($ANNEE_PACS_U2$,integer) < cast($ANAIS$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année du pacs de cette autre union ne peut pas être antérieure à votre année de naissance.\"", + "id": "lagya5k1" + }, + { + "post_collect": false, + "Description": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle du pacs de cette autre union, est-ce que vous confirmez ?\"", + "Expression": "not(isnull($ANNEE_PACS_U2$)) and not(isnull($ANAIS$)) and (cast($ANAIS$,integer) + 15 > cast($ANNEE_PACS_U2$,integer))", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle du pacs de cette autre union, est-ce que vous confirmez ?\"", + "id": "lagykguw" + }, + { + "post_collect": false, + "Description": "\"L'année du pacs de cette autre union ne peut pas être postérieure à l'année du pacs.\"", + "Expression": "(not(isnull($ANNEE_PACS$)) and not(isnull($ANNEE_PACS_U2$)) and cast($ANNEE_PACS_U2$,integer) >= cast($ANNEE_PACS$,integer))", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année du pacs de cette autre union ne peut pas être postérieure à l'année du pacs.\"", + "id": "lll21n82" + }, + { + "post_collect": false, + "Description": "bornes ANNEE_PACS_U2", + "Expression": "cast($ANNEE_PACS_U2$,integer) < 1920 or cast($ANNEE_PACS_U2$,integer) > 2023", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année du pacs de cette autre union est comprise entre 1920 et 2023.\"", + "id": "ln8v006r" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"En quelle année vous étiez-vous pacsé\" || (if (isnull($TYPE_QUEST$)) then \"\" else (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\")) || \" avec \" || (if(nvl($PRENOM_U2$,\"\")=\"\") then (if (($SEXE_U2H$=\"2\" or isnull($SEXE_U2H$)) and ($SEXE_U2F$=\"1\" or isnull($SEXE_U2F$)) or (isnull($SEXE_U2H$) and isnull($SEXE_U2F$))) then \"votre autre conjoint \" else \"votre autre conjointe \") else $PRENOM_U2$) || \" ?\" " + ], + "id": "l9ikxoxa", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "ANNEE_PACS_U2" + }, + { + "Response": [ + { + "CollectedVariableReference": "l9ilplrs", + "id": "l9ikpuls", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "MARI_U2 non renseigné", + "Expression": "isnull($MARI_U2$) or $MARI_U2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l9ilylyb" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Vous étiez-vous marié\" || (if (isnull($TYPE_QUEST$)) then \"\" else (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\")) || \" avec \" || (if(nvl($PRENOM_U2$,\"\")=\"\") then (if (($SEXE_U2H$=\"2\" or isnull($SEXE_U2H$)) and ($SEXE_U2F$=\"1\" or isnull($SEXE_U2F$)) or (isnull($SEXE_U2H$) and isnull($SEXE_U2F$))) then \"votre autre conjoint \" else \"votre autre conjointe \") else $PRENOM_U2$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l9ikvx4n", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "MARI_U2" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln8vkzos", + "id": "l9ikgh6x", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ANNEE_MARI_U2 non renseigné", + "Expression": "isnull($ANNEE_MARI_U2$) or $ANNEE_MARI_U2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"", + "id": "l9ilubzk" + }, + { + "post_collect": false, + "Description": "\"L'année du mariage ne peut pas être antérieure à l'année de mise en couple.\"", + "Expression": "not(isnull($ANNEE_MARI_U2$)) and not(isnull($ANNEE_U2$)) and cast($ANNEE_MARI_U2$,integer) < cast($ANNEE_U2$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année du mariage ne peut pas être antérieure à l'année de mise en couple.\"\r\n\r\n", + "id": "l9ilty0s" + }, + { + "post_collect": false, + "Description": "\"L'année du mariage ne peut pas être antérieure à l'année du pacs.\"", + "Expression": "not(isnull($ANNEE_MARI_U2$)) and not(isnull($ANNEE_PACS_U2$)) and cast($ANNEE_MARI_U2$,integer) < cast($ANNEE_PACS_U2$,integer)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année du mariage ne peut pas être antérieure à l'année du pacs.\"", + "id": "l9im20i9" + }, + { + "post_collect": false, + "Description": "\"L'année du mariage de cette autre union ne peut pas être antérieure à votre année de naissance.\"", + "Expression": "not(isnull($ANNEE_MARI_U2$)) and not(isnull($ANAIS$)) and cast($ANNEE_MARI_U2$,integer) < cast($ANAIS$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année du mariage de cette autre union ne peut pas être antérieure à votre année de naissance.\"", + "id": "lagyhn6l" + }, + { + "post_collect": false, + "Description": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle du mariage de cette autre union, est-ce que vous confirmez ?\"", + "Expression": "not(isnull($ANNEE_MARI_U2$)) and not(isnull($ANAIS$)) and (cast($ANAIS$,integer) + 15 > cast($ANNEE_MARI_U2$,integer))", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle du mariage de cette autre union, est-ce que vous confirmez ?\"", + "id": "lagypffq" + }, + { + "post_collect": false, + "Description": "\"L'année du mariage de cette autre union ne peut pas être postérieure à l'année du mariage.\"", + "Expression": "not(isnull($ANNEE_MARI_U2$)) and not(isnull($ANNEE_MARI$)) and cast($ANNEE_MARI_U2$,integer) >= cast($ANNEE_MARI$,integer)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année du mariage de cette autre union ne peut pas être postérieure à l'année du mariage.\"", + "id": "lll28ns1" + }, + { + "post_collect": false, + "Description": "bornes ANNEE_MARI_U2", + "Expression": "cast($ANNEE_MARI_U2$,integer) < 1920 or cast($ANNEE_MARI_U2$,integer) > 2023", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année du mariage de cette autre union est comprise entre 1920 et 2023.\"", + "id": "ln8vi5u2" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"En quelle année vous étiez-vous marié\" || (if (isnull($TYPE_QUEST$)) then \"\" else (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\")) || \" avec \" || (if(nvl($PRENOM_U2$,\"\")=\"\") then (if (($SEXE_U2H$=\"2\" or isnull($SEXE_U2H$)) and ($SEXE_U2F$=\"1\" or isnull($SEXE_U2F$)) or (isnull($SEXE_U2H$) and isnull($SEXE_U2F$))) then \"votre autre conjoint \" else \"votre autre conjointe \") else $PRENOM_U2$) || \" ?\" " + ], + "id": "l9iklcix", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "ANNEE_MARI_U2" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln0hhy39", + "id": "l9ikoz30", + "mandatory": false, + "CodeListReference": "las91jew", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEPARE_U2 non renseigné", + "Expression": "isnull($SEPARE_U2$) or $SEPARE_U2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l9ilzsmq" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Cette période de vie en couple s'est-elle achevée parce que \"" + ], + "ClarificationQuestion": [], + "id": "l9ikqlwv", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEPARE_U2" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln8w3sfe", + "id": "l9ikq8j6", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "\"L'année de la séparation ne peut pas être antérieure à l'année de mise en couple.\"", + "Expression": "not(isnull($ANNEE_S_U2$)) and not(isnull($ANNEE_U2$)) and cast($ANNEE_S_U2$,integer) < cast($ANNEE_U2$,integer)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de la séparation ne peut pas être antérieure à l'année de mise en couple.\"", + "id": "l9imi2m9" + }, + { + "post_collect": false, + "Description": "ANNEE_S_U2 non renseigné", + "Expression": "isnull($ANNEE_S_U2$) or $ANNEE_S_U2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"", + "id": "l9ily1hb" + }, + { + "post_collect": false, + "Description": "\"L'année de séparation de cette autre union ne peut pas être antérieure à votre année de naissance.\"", + "Expression": "not(isnull($ANNEE_S_U2$)) and not(isnull($ANAIS$))and cast($ANNEE_S_U2$,integer) < cast($ANAIS$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de séparation de cette autre union ne peut pas être antérieure à votre année de naissance.\"", + "id": "lai2nvoj" + }, + { + "post_collect": false, + "Description": "bornes ANNEE_S_U2", + "Expression": "cast($ANNEE_S_U2$,integer) < 1920 or cast($ANNEE_S_U2$,integer) > 2023", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de séparation de cette autre union est comprise entre 1920 et 2023.\" ", + "id": "ln8vn6wu" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"En quelle année vous êtes-vous séparé\" ||(if (isnull($TYPE_QUEST$)) then \"\" else (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\")) || \" de \" || (if (nvl($PRENOM_U2$,\"\")=\"\") then (if ($SEXE_U2H$=\"2\" and isnull($SEXE_U2F$)) or ($SEXE_U2F$=\"1\" and isnull($SEXE_U2H$)) or (isnull($SEXE_U2H$) and isnull($SEXE_U2F$)) then \"votre autre conjoint \" else \"votre autre conjointe \") else $PRENOM_U2$) || \" ?\" " + ], + "id": "l9ikze1y", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "ANNEE_S_U2" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln8w3yku", + "id": "l9ikmj5h", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ANNEE_D_U2 non renseignée", + "Expression": "isnull($ANNEE_D_U2$) or $ANNEE_D_U2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"", + "id": "lai2klxv" + }, + { + "post_collect": false, + "Description": "\"L'année du décès de votre conjoint(e) ne peut pas être antérieure à l'année de mise en couple de cette autre union .\"", + "Expression": "not(isnull($ANNEE_D_U2$)) and not(isnull($ANNEE_U2$)) and cast($ANNEE_D_U2$,integer) < cast($ANNEE_U2$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année du décès de votre conjoint(e) ne peut pas être antérieure à l'année de mise en couple de cette autre union.\"", + "id": "lai2bhi4" + }, + { + "post_collect": false, + "Description": "\"L'année du décès de votre conjoint(e) ne peut pas être antérieure à votre année de naissance.\"", + "Expression": "not(isnull($ANNEE_D_U2$)) and not(isnull($ANAIS$)) and cast($ANNEE_D_U2$,integer) < cast($ANAIS$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année du décès de votre conjoint(e) ne peut pas être antérieure à votre année de naissance.\"", + "id": "lai2jyyv" + }, + { + "post_collect": false, + "Description": "bornes ANNEE_D_U2", + "Expression": "cast($ANNEE_D_U2$,integer) < 1920 or cast($ANNEE_D_U2$,integer) > 2024", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de décès de votre conjoint(e) est comprise entre 1920 et 2024.\" ", + "id": "ln8vsoyl" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"En quelle année \" || (if(nvl($PRENOM_U2$,\"\")=\"\") then (if (($SEXE_U2H$=\"2\" or isnull($SEXE_U2H$)) and ($SEXE_U2F$=\"1\" or isnull($SEXE_U2F$)) or (isnull($SEXE_U2H$) and isnull($SEXE_U2F$))) then \"votre autre conjoint \" else \"votre autre conjointe \") else $PRENOM_U2$) || \" est-\" || (if (((nvl($SEXE_U2F$,\"\")=\"\") and (nvl($SEXE_U2H$,\"\")=\"\")) or ($SEXE_U2F$ =\"1\" and isnull($SEXE_U2H$)) or ($SEXE_U2H$ = \"2\" and isnull($SEXE_U2F$)) or (isnull($SEXE_U2H$) and isnull($SEXE_U2F$))) then \"il décédé ?\" else \"elle décédée ?\") " + ], + "id": "l9ikmjqm", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "ANNEE_D_U2" + }, + { + "Response": [ + { + "CollectedVariableReference": "l9imhwey", + "id": "l9ikxjkq", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ENFAV_C_U2 non renseigné", + "Expression": "isnull($ENFAV_C_U2$) or $ENFAV_C_U2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l9im4soh" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Avant d'être en couple avec vous, \" || (if(nvl($PRENOM_U2$,\"\")=\"\") then (if (($SEXE_U2H$=\"2\" or isnull($SEXE_U2H$)) and ($SEXE_U2F$=\"1\" or isnull($SEXE_U2F$)) or (isnull($SEXE_U2H$) and isnull($SEXE_U2F$))) then \"votre autre conjoint\" else \"votre autre conjointe\") else $PRENOM_U2$) || \" avait-\" || (if (((nvl($SEXE_U2F$,\"\")=\"\") and (nvl($SEXE_U2H$,\"\")=\"\")) or ($SEXE_U2F$ =\"1\" and isnull($SEXE_U2H$)) or ($SEXE_U2H$ = \"2\" and isnull($SEXE_U2F$)) or (isnull($SEXE_U2H$) and isnull($SEXE_U2F$))) then \"il\" else \"elle\") || \" déjà des enfants ?\"" + ], + "ClarificationQuestion": [], + "id": "l9ikxndo", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "ENFAV_C_U2" + }, + { + "Response": [ + { + "CollectedVariableReference": "l9imlci5", + "id": "l9ikmqgf", + "mandatory": false, + "Datatype": { + "Maximum": "20", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NBENFAV_C_U2 non renseigné", + "Expression": "isnull($NBENFAV_C_U2$) or $NBENFAV_C_U2$ =\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"", + "id": "l9imgz43" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Combien d'enfants avait-\" || (if (((nvl($SEXE_U2F$,\"\")=\"\") and (nvl($SEXE_U2H$,\"\")=\"\")) or ($SEXE_U2F$ =\"1\" and isnull($SEXE_U2H$)) or ($SEXE_U2H$ = \"2\" and isnull($SEXE_U2F$))) then \"il ?\" else \"elle ?\") " + ], + "id": "l9ikuqoe", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "NBENFAV_C_U2" + }, + { + "Response": [ + { + "CollectedVariableReference": "l9imbft1", + "id": "l9ikbyxh", + "mandatory": false, + "CodeListReference": "l4onk0te", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NBENFAV_C1_VENU_U2 non renseigné", + "Expression": "isnull($NBENFAV_C1_VENU_U2$) or $NBENFAV_C1_VENU_U2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l9im544o" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Cet enfant a-t-il vécu avec vous ?\"" + ], + "ClarificationQuestion": [], + "id": "l9ikekzu", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "NBENFAV_C1_VENU_U2" + }, + { + "Response": [ + { + "CollectedVariableReference": "liizkz29", + "id": "l9ikl02v", + "mandatory": false, + "Datatype": { + "Maximum": "20", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NBENFAV_C_VENU_U2 non renseigné", + "Expression": "isnull($NBENFAV_C_VENU_U2$) or $NBENFAV_C_VENU_U2$ =\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"", + "id": "l9imhzyw" + }, + { + "post_collect": false, + "Description": "\"Le nombre d’enfants venus vivre avec vous ne peut pas être supérieur au nombre total d’enfants.\"", + "Expression": "nvl($NBENFAV_C_VENU_U2$,0) > nvl($NBENFAV_C_U2$,0)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Le nombre d’enfants venus vivre avec vous ne peut pas être supérieur au nombre total d’enfants.\"", + "id": "l9imo5mg" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Combien ont vécu avec vous ?\"" + ], + "id": "l9iks078", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Si aucun, notez 0.\"", + "id": "liizbc3w", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "NBENFAV_C_VENU_U2" + } + ], + "Name": "VIECOUPLE2" + } + ], + "Name": "PERIODES_COUPLE" + }, + { + "Control": [], + "depth": 1, + "FlowControl": [], + "genericName": "MODULE", + "Label": [ + "VOS ENFANTS QUI VIVENT AVEC VOUS OU NON (y compris ceux adoptés ou décédés)" + ], + "id": "kwqi91j9", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", nous allons maintenant vous poser des questions sur vos enfants, qui vivent avec vous ou non (y compris ceux adoptés ou décédés).\"", + "id": "l34i0o62", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "SequenceType", + "Child": [ + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "Description de vos enfants qui vivent avec vous ou non (y compris ceux adoptés ou décédés)" + ], + "id": "ljmulh27", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "l8k91eas", + "id": "kwqianb6", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ENF non renseigné", + "Expression": "isnull($ENF$) or $ENF$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l3bs7nbo" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", avez-vous eu des enfants ?\"" + ], + "ClarificationQuestion": [], + "id": "kwqigxtx", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"(y compris ceux adoptés ou décédés)\"", + "id": "l1gkoo46", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "ENF" + }, + { + "Response": [ + { + "CollectedVariableReference": "lai2qly5", + "id": "kwqilzs8", + "mandatory": false, + "Datatype": { + "Maximum": "20", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NBENF non renseigné", + "Expression": "isnull($NBENF$) or $NBENF$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"", + "id": "l3bs2xx3" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Combien d'enfants avez-vous eus en tout ?\"" + ], + "id": "kwqi5zsm", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "NBENF" + }, + { + "Response": [ + { + "CollectedVariableReference": "la6x1ozi", + "id": "l7rlttxu", + "mandatory": false, + "CodeListReference": "l7rlvd0y", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NBENF_ADOP1 non renseigné", + "Expression": "isnull($NBENF_ADOP1$) or $NBENF_ADOP1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l3bs4vfg" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Cet enfant a-t-il été adopté ?\"" + ], + "ClarificationQuestion": [], + "id": "l1gkeq97", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"(adoption simple ou plénière)\"", + "id": "l5cm1kac", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "NBENF_ADOP1" + }, + { + "Response": [ + { + "CollectedVariableReference": "llumdbvx", + "id": "l7rlfeda", + "mandatory": false, + "Datatype": { + "Maximum": "20", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NBENF_ADOP non renseigné", + "Expression": "isnull($NBENF_ADOP$) or $NBENF_ADOP$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"", + "id": "l7rltb1j" + }, + { + "post_collect": false, + "Description": "\"Le nombre d’enfants adoptés ne peut pas être supérieur au nombre total d’enfants.\"", + "Expression": "nvl($NBENF_ADOP$,0) > nvl($NBENF$,0)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Le nombre d’enfants adoptés ne peut pas être supérieur au nombre total d’enfants.\"", + "id": "l8sqdunx" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Parmi eux, combien d'enfants ont-ils été adoptés ?\"" + ], + "id": "l7rlim3p", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"(adoption simple ou plénière)\"", + "id": "l7rltw55", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + }, + { + "declarationType": "HELP", + "Text": "\"Si aucun n'a été adopté, notez 0.\"", + "id": "l7rlwtef", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "NBENF_ADOP" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvxrvuz", + "id": "llvz7u99", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "LANGUE1_ENF non renseignée", + "Expression": "isnull($LANGUE1_ENF$) or $LANGUE1_ENF$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l3bsmoai" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"En quelle langue, dialecte, ou patois parliez-vous avec \" || (if ($NBENF$ = 1) then \"votre enfant\" else \"vos enfants\") || \" lorsqu’il\" || (if ($NBENF$ = 1) then \" était jeune ou lui\" else \"s étaient jeunes ou leur\") || \" parlez-vous maintenant s’il\" || (if ($NBENF$ = 1) then \" est encore mineur ?\" else \"s sont encore mineurs ?\") \r\n" + ], + "id": "l1gi76wy", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"(exemples : kabyle, breton, LSF, français, italien)\"", + "id": "laib1x47", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + }, + { + "declarationType": "HELP", + "Text": "\"Saisissez le libellé de la langue recherchée et sélectionnez la dans la liste.\"", + "id": "laiambix", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "LANGUE1_ENF" + }, + { + "Response": [ + { + "CollectedVariableReference": "lmrrb3ah", + "id": "llvyyveq", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "même langue", + "Expression": "not(isnull($LANGUE1_ENF$)) and not(isnull($LANGUE2_ENF$)) and $LANGUE2_ENF$=$LANGUE1_ENF$", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Vous avez sélectionné la même langue que la précédente. Merci à vous de corriger.\"", + "id": "lmrqycv2" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Y-a-t-il une autre langue, dialecte ou patois ?\"" + ], + "id": "l445u9x8", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le libellé de la langue recherchée et sélectionnez la dans la liste.\"", + "id": "l4o6hnbu", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "LANGUE2_ENF" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4idtesq", + "id": "l4idkl19", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NBENFLOG non renseigné", + "Expression": "isnull($NBENFLOG$) or $NBENFLOG$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4idrklc" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Avez-vous des enfants qui vivent avec vous, même une petite partie du temps seulement ?\"" + ], + "ClarificationQuestion": [], + "id": "l4idom4o", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "NBENFLOG" + }, + { + "Response": [ + { + "CollectedVariableReference": "llgm8xcr", + "id": "l4lcyzfy", + "mandatory": false, + "Datatype": { + "Maximum": "20", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "CBENFLOG non renseigné", + "Expression": "isnull($CBENFLOG$) or $CBENFLOG$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"", + "id": "l4lcmurb" + }, + { + "post_collect": false, + "Description": "\"Le nombre d’enfants qui vivent avec vous ne peut pas être supérieur au nombre total d’enfants.\"", + "Expression": "nvl($CBENFLOG$,0) > nvl($NBENF$,0)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Le nombre d’enfants qui vivent avec vous est supérieur au nombre total d’enfants que vous avez déclarés. Est-ce que vous confirmez ?\"", + "id": "ljwvexvw" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Combien d'enfants vivent avec vous, même une petite partie du temps seulement ?\"" + ], + "id": "l4lcr3vb", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "CBENFLOG" + }, + { + "Response": [ + { + "CollectedVariableReference": "lai321wj", + "id": "l4idwhis", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NBENFAIL non renseigné", + "Expression": "isnull($NBENFAIL$) or $NBENFAIL$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l447lwp8" + }, + { + "post_collect": false, + "Description": "\"Le nombre d'enfants vivant dans le logement est différent du nombre d'enfants déclarés.\"", + "Expression": "(isnull($NBENFAIL$) or $NBENFAIL$=\"2\") and nvl($CBENFLOG$,0) <> nvl($NBENF$,0)\r\n", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Le nombre d'enfants vivant dans le logement est différent du nombre d'enfants déclarés.\"", + "id": "l84gpgh6" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Avez-vous des enfants qui ne vivent pas avec vous ou qui sont décédés ?\"" + ], + "ClarificationQuestion": [], + "id": "l447nuda", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "NBENFAIL" + }, + { + "Response": [ + { + "CollectedVariableReference": "llgn328q", + "id": "l4lgbag5", + "mandatory": false, + "Datatype": { + "Maximum": "20", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "CBENFAIL non renseigné", + "Expression": "isnull($CBENFAIL$) or $CBENFAIL$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"", + "id": "l4lg1bgn" + }, + { + "post_collect": false, + "Description": "Le nombre d'enfants vivant dans le logement ou ailleurs est différent du nombre total d'enfants", + "Expression": "nvl($CBENFAIL$,0) + nvl($CBENFLOG$,0) <> nvl($NBENF$,0)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Le nombre d'enfants vivant dans le logement, vivant ailleurs ou décédés est différent du nombre total d'enfants. Est-ce que vous confirmez ?\"", + "id": "l84gk6j3" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Combien d'enfants ne vivent pas avec vous ou sont décédés ?\"" + ], + "id": "l4lfzig7", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "CBENFAIL" + } + ], + "Name": "DESCRIPTION_ENF" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "Votre premier enfant qui vit avec vous, même une petite partie du temps seulement" + ], + "id": "l446h6js", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "if cast($CBENFLOG$,integer)=1 then \"Décrivez votre enfant qui vit avec vous, même une petite partie du temps seulement.\" else \"Décrivez votre premier enfant qui vit avec vous, même une petite partie du temps seulement, en commençant par l'aîné.\"", + "id": "l446p7s5", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + }, + { + "declarationType": "HELP", + "Text": "if cast($CBENFLOG$, integer)>8 then \"Décrivez seulement les 8 plus âgés.\" else \"\"", + "id": "l4pjpys2", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "" + ] + } + ], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "l4i7t09m", + "id": "l446c5pz", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PRENOM_ENFLOG1 non renseigné", + "Expression": "isnull($PRENOM_ENFLOG1$) or $PRENOM_ENFLOG1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"", + "id": "l447wzhk" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", comment s'appelle \" || (if ($CBENFLOG$=1 or isnull($CBENFLOG$)) then \"votre enfant qui vit avec vous, même une petite partie du temps seulement ?\" else \"votre premier enfant qui vit avec vous, même une petite partie du temps seulement ?\")" + ], + "id": "l446nede", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PRENOM_ENFLOG1" + }, + { + "Response": [ + { + "CollectedVariableReference": "llgbzex2", + "id": "kwqjqaig", + "mandatory": false, + "CodeListReference": "llgbzo78", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEXE_ENFLOG1 non renseigné", + "Expression": "isnull ($SEXE_ENFLOG1$) or $SEXE_ENFLOG1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l446f171" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel est le sexe de \" || (if (nvl($PRENOM_ENFLOG1$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG1$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "kwqjk80w", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEXE_ENFLOG1" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln8waswe", + "id": "kwqjvmys", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ANAI_ENFLOG1 non renseigné", + "Expression": "isnull($ANAI_ENFLOG1$) or $ANAI_ENFLOG1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"", + "id": "l446dhun" + }, + { + "post_collect": false, + "Description": "\"L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "Expression": "not(isnull($ANAI_ENFLOG1$)) and not(isnull($ANAIS$)) and cast($ANAI_ENFLOG1$,integer) < cast($ANAIS$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "id": "l84gugdv" + }, + { + "post_collect": false, + "Description": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "Expression": "not(isnull($ANAI_ENFLOG1$)) and not(isnull($ANAIS$)) and (cast($ANAIS$,integer) + 15 > cast($ANAI_ENFLOG1$,integer))", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "id": "l84grlfr" + }, + { + "post_collect": false, + "Description": "bornes ANAI_ENFLOG1", + "Expression": "cast($ANAI_ENFLOG1$,integer) < 1920 or cast($ANAI_ENFLOG1$,integer) > 2024", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de naissance de votre enfant est comprise entre 1920 et 2024.\" ", + "id": "ln8wcipf" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quelle est l'année de naissance de \" || (if (nvl($PRENOM_ENFLOG1$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG1$) || \" ?\"" + ], + "id": "kwqjmq2o", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "ANAI_ENFLOG1" + }, + { + "Response": [ + { + "CollectedVariableReference": "lai2q0l2", + "id": "l4qtebrx", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NEFRANCE_ENFLOG1 non renseigné", + "Expression": "isnull($NEFRANCE_ENFLOG1$) or $NEFRANCE_ENFLOG1$ =\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4qtk60c" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFLOG1$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFLOG1$) || \" est-\" || (if ($SEXE_ENFLOG1$=\"1\" or isnull($SEXE_ENFLOG1$)) then \"il né\" else \"elle née\") || \" en France ?\"" + ], + "ClarificationQuestion": [], + "id": "l4qtls9o", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Prenez en compte les frontières actuelles.\"", + "id": "l4qth2nf", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "NEFRANCE_ENFLOG1" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8k9fx47", + "id": "kwqj742g", + "mandatory": false, + "CodeListReference": "l44726g4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_VIT_ENFLOG1 non renseigné", + "Expression": "isnull($PARENT_VIT_ENFLOG1$) or $PARENT_VIT_ENFLOG1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l446yqws" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"L'autre parent de \" || (if (nvl($PRENOM_ENFLOG1$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG1$) || \" vit-il/elle avec vous dans ce logement ?\"" + ], + "ClarificationQuestion": [], + "id": "kwqjol7e", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_VIT_ENFLOG1" + }, + { + "Response": [ + { + "CollectedVariableReference": "lai2vxng", + "id": "l4ia62t2", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_FR_ENFLOG1 non renseigné", + "Expression": "isnull($PARENT_FR_ENFLOG1$) or $PARENT_FR_ENFLOG1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4iapkng" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"L'autre parent de \" || (if (nvl($PRENOM_ENFLOG1$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG1$) || \" vit-il/elle en France ?\"" + ], + "ClarificationQuestion": [], + "id": "l4iaicn8", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Prenez en compte les frontières actuelles.\"", + "id": "l4paxo23", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_FR_ENFLOG1" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvxl0i4", + "id": "llvz43dk", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_DEP_ENFLOG1 non renseigné", + "Expression": "isnull($PARENT_DEP_ENFLOG1$) or $PARENT_DEP_ENFLOG1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4pajfd6" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel département vit l'autre parent de \" || (if (nvl($PRENOM_ENFLOG1$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG1$) || \" ?\"" + ], + "id": "l4pav1bd", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"", + "id": "l4papcwn", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PARENT_DEP_ENFLOG1" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvxsb8n", + "id": "llvz00eo", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_COM_ENFLOG1 non renseigné", + "Expression": "isnull($PARENT_COM_ENFLOG1$) or $PARENT_COM_ENFLOG1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4pb2c6d" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quelle commune vit l'autre parent de \" || (if (nvl($PRENOM_ENFLOG1$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG1$) || \" ?\"" + ], + "id": "l4parilg", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez la commune recherchée et sélectionnez la dans la liste.\"", + "id": "l4pb5c8v", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PARENT_COM_ENFLOG1" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvxptki", + "id": "llvz0tqh", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_PAY_ENFLOG1 non renseigné", + "Expression": "isnull($PARENT_PAY_ENFLOG1$) or $PARENT_PAY_ENFLOG1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4pb7mop" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel pays vit l'autre parent de \" || (if (nvl($PRENOM_ENFLOG1$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG1$) || \" ?\"" + ], + "id": "l4pavrnh", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"", + "id": "l4pbeb5v", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PARENT_PAY_ENFLOG1" + }, + { + "Response": [ + { + "CollectedVariableReference": "lij1gnxo", + "id": "l1ezqoac", + "mandatory": false, + "CodeListReference": "l1f65uvw", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_FREQ_ENFLOG1 non renseigné", + "Expression": "isnull($PARENT_FREQ_ENFLOG1$) or $PARENT_FREQ_ENFLOG1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l447efy0" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"A quelle fréquence \" || (if (nvl($PRENOM_ENFLOG1$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG1$) || \" est-\" || (if ($SEXE_ENFLOG1$=\"1\" or isnull($SEXE_ENFLOG1$)) then \"il\" else \"elle\") || \" en contact avec son autre parent ?\"" + ], + "ClarificationQuestion": [], + "id": "l1ez78st", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"(en face à face, téléphone, mail, SMS, appel vidéo, etc.)\"", + "id": "l1eze0cf", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_FREQ_ENFLOG1" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4iaop7n", + "id": "l4iapk3a", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_DORT_ENFLOG1 non renseigné", + "Expression": "isnull($PARENT_DORT_ENFLOG1$) or $PARENT_DORT_ENFLOG1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4iaa965" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Arrive-t-il à \" || (if (nvl($PRENOM_ENFLOG1$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG1$) || \" de dormir chez son autre parent ?\"" + ], + "ClarificationQuestion": [], + "id": "l4iain70", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_DORT_ENFLOG1" + }, + { + "Response": [ + { + "CollectedVariableReference": "lai37uhg", + "id": "kwqjmrl7", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_VECU_ENFLOG1 non renseigné", + "Expression": "isnull($PARENT_VECU_ENFLOG1$) or $PARENT_VECU_ENFLOG1$ =\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l446upxz" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Avez-vous déjà vécu avec l'autre parent de \" || (if (nvl($PRENOM_ENFLOG1$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG1$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "kwqk3gx2", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_VECU_ENFLOG1" + }, + { + "Response": [ + { + "CollectedVariableReference": "la6yvw8y", + "id": "la6ylcb8", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEP_AUT_PAR_ENFLOG1 non renseigné", + "Expression": "isnull($SEP_AUT_PAR_ENFLOG1$) or $SEP_AUT_PAR_ENFLOG1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "la6yfssx" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Vous êtes-vous séparé\" || (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\") || \" de l'autre parent de \" || (if (nvl($PRENOM_ENFLOG1$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG1$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "la6ydnyh", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEP_AUT_PAR_ENFLOG1" + }, + { + "Response": [ + { + "CollectedVariableReference": "la6ykpms", + "id": "kwqjfzw0", + "mandatory": false, + "CodeListReference": "kwqjqlpa", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "RESID_ENFLOG1 non renseigné", + "Expression": "isnull($RESID_ENFLOG1$) or $RESID_ENFLOG1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l447824i" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel a été le mode de résidence fixé par décision de justice ?\"" + ], + "ClarificationQuestion": [], + "id": "kwqjmy9d", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "RESID_ENFLOG1" + }, + { + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFLOG1$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFLOG1$) || \" vit-\" || (if ($SEXE_ENFLOG1$=\"1\" or isnull($SEXE_ENFLOG1$)) then \"il\" else \"elle\") || \" aussi ailleurs ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "la6vclx9", + "MappingTarget": "1" + }, + { + "MappingSource": "la6vj3fw", + "MappingTarget": "2" + }, + { + "MappingSource": "la6vaa94", + "MappingTarget": "3" + }, + { + "MappingSource": "la6v5qj3", + "MappingTarget": "4" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "l59njrta" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "SANTE_ENFLOG1", + "Response": [ + { + "CollectedVariableReference": "la6utxix", + "id": "la6vclx9", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "la6us7lf", + "id": "la6vj3fw", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "la6uxdwx", + "id": "la6vaa94", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "la6ugpn4", + "id": "la6v5qj3", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SANTE_ENFLOG1 non renseigné", + "Expression": "(nvl($SANTE_ENFLOG11$, false) = false and \r\n nvl($SANTE_ENFLOG12$, false) = false and \r\n nvl($SANTE_ENFLOG13$, false) = false and\r\n nvl($SANTE_ENFLOG14$, false) = false)\r\n", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l446cf4h" + }, + { + "post_collect": false, + "Description": "NON exclusif", + "Expression": "(nvl($SANTE_ENFLOG11$,false)=true and nvl($SANTE_ENFLOG14$,false)=true)\r\nor (nvl($SANTE_ENFLOG12$,false)=true and nvl($SANTE_ENFLOG14$,false)=true)\r\nor (nvl($SANTE_ENFLOG13$,false)=true and nvl($SANTE_ENFLOG14$,false)=true)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Vous ne pouvez pas cocher Non et une autre réponse.\"", + "id": "l7yw34co" + } + ], + "depth": 3, + "ClarificationQuestion": [], + "id": "l1gia5uh", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Plusieurs réponses possibles\"", + "id": "l59nppaa", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + } + ], + "Name": "VOSENFLOG1" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "Votre deuxième enfant qui vit avec vous, même une petite partie du temps seulement" + ], + "id": "ljmv0rhg", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "l4i9d8v4", + "id": "l4i95yyt", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PRENOM_ENFLOG2 non renseigné", + "Expression": "isnull($PRENOM_ENFLOG2$) or $PRENOM_ENFLOG2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"", + "id": "l4i9fmc5" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", comment s'appelle votre deuxième enfant qui vit avec vous, même une petite partie du temps seulement ?\"" + ], + "id": "l4i9118b", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PRENOM_ENFLOG2" + }, + { + "Response": [ + { + "CollectedVariableReference": "llgdof4r", + "id": "l4i9doqz", + "mandatory": false, + "CodeListReference": "llgbzo78", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEXE_ENFLOG2 non renseigné", + "Expression": "isnull($SEXE_ENFLOG2$) or $SEXE_ENFLOG2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4ia2c2x" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel est le sexe de \" || (if (nvl($PRENOM_ENFLOG2$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG2$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l4i8zu5m", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEXE_ENFLOG2" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln8wfpbb", + "id": "l4iad1cc", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ANAI_ENFLOG2 non renseigné", + "Expression": "isnull($ANAI_ENFLOG2$) or $ANAI_ENFLOG2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"", + "id": "l4ia39wq" + }, + { + "post_collect": false, + "Description": "\"L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "Expression": "not(isnull($ANAI_ENFLOG2$)) and not(isnull($ANAIS$)) and cast($ANAI_ENFLOG2$,integer) < cast($ANAIS$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "id": "l84gzp09" + }, + { + "post_collect": false, + "Description": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "Expression": "not(isnull($ANAI_ENFLOG2$)) and not(isnull($ANAIS$)) and (cast($ANAIS$,integer) + 15 > cast($ANAI_ENFLOG2$,integer))", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "id": "l84grqou" + }, + { + "post_collect": false, + "Description": "bornes ANAI_ENFLOG2\n", + "Expression": "cast($ANAI_ENFLOG2$,integer) < 1920 or cast($ANAI_ENFLOG2$,integer) > 2024", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de naissance de votre enfant est comprise entre 1920 et 2024.\" ", + "id": "ln8w2u6q" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quelle est l'année de naissance de \" || (if (nvl($PRENOM_ENFLOG2$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG2$) || \" ?\"" + ], + "id": "l4ia7rxn", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "ANAI_ENFLOG2" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4qtshn8", + "id": "l4qtj10v", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NEFRANCE_ENFLOG2 non renseigné", + "Expression": "isnull($NEFRANCE_ENFLOG2$) or $NEFRANCE_ENFLOG2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4qtdt6s" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFLOG2$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFLOG2$) || \" est-\" || (if ($SEXE_ENFLOG2$=\"1\" or isnull($SEXE_ENFLOG2$)) then \"il né\" else \"elle née\") || \" en France ?\"" + ], + "ClarificationQuestion": [], + "id": "l4qtpg9f", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Prenez en compte les frontières actuelles.\"", + "id": "l4qtdwhq", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "NEFRANCE_ENFLOG2" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8k9zdgm", + "id": "l4ia429z", + "mandatory": false, + "CodeListReference": "l44726g4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_VIT_ENFLOG2 non renseigné", + "Expression": "isnull($PARENT_VIT_ENFLOG2$) or $PARENT_VIT_ENFLOG2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4ia7snr" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"L'autre parent de \" || (if (nvl($PRENOM_ENFLOG2$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG2$) || \" vit-il/elle avec vous dans ce logement ?\"" + ], + "ClarificationQuestion": [], + "id": "l4iano52", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_VIT_ENFLOG2" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4pah4e9", + "id": "kwqjglld", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_FR_ENFLOG2 non renseigné", + "Expression": "isnull($PARENT_FR_ENFLOG2$) or $PARENT_FR_ENFLOG2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l446v6rs" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"L'autre parent de \" || (if (nvl($PRENOM_ENFLOG2$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG2$) || \" vit-il/elle en France ?\"" + ], + "ClarificationQuestion": [], + "id": "kwqjmujx", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Prenez en compte les frontières actuelles.\"", + "id": "l4pavsqb", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_FR_ENFLOG2" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvxlqkx", + "id": "llvz35s7", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_DEP_ENFLOG2 non renseigné", + "Expression": "isnull($PARENT_DEP_ENFLOG2$) or $PARENT_DEP_ENFLOG2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4pb38d5" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel département vit l'autre parent de \" || (if (nvl($PRENOM_ENFLOG2$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG2$) || \" ?\"" + ], + "id": "l4pannoa", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"", + "id": "l4pakgkw", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PARENT_DEP_ENFLOG2" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvxvybh", + "id": "llvz300g", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_COM_ENFLOG2 non renseigné", + "Expression": "isnull($PARENT_COM_ENFLOG2$) or $PARENT_COM_ENFLOG2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4patgfu" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quelle commune vit l'autre parent de \" || (if (nvl($PRENOM_ENFLOG2$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG2$) || \" ?\"" + ], + "id": "l4pasuts", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez la commune recherchée et sélectionnez la dans la liste.\"", + "id": "l4pat1rt", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PARENT_COM_ENFLOG2" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvy0bjq", + "id": "llvz3uou", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_PAY_ENFLOG2 non renseigné", + "Expression": "isnull($PARENT_PAY_ENFLOG2$) or $PARENT_PAY_ENFLOG2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4pbjc1d" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel pays vit l'autre parent de \" || (if (nvl($PRENOM_ENFLOG2$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG2$) || \" ?\"" + ], + "id": "l4pbc5wa", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"", + "id": "l4pbep5s", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PARENT_PAY_ENFLOG2" + }, + { + "Response": [ + { + "CollectedVariableReference": "lij1la9n", + "id": "l4idauus", + "mandatory": false, + "CodeListReference": "l1f65uvw", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_FREQ_ENFLOG2 non renseignée", + "Expression": "isnull($PARENT_FREQ_ENFLOG2$) or $PARENT_FREQ_ENFLOG2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4id3xfr" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"A quelle fréquence \" || (if (nvl($PRENOM_ENFLOG2$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG2$) || \" est-\" || (if ($SEXE_ENFLOG2$=\"1\" or isnull($SEXE_ENFLOG2$)) then \"il\" else \"elle\") || \" en contact avec son autre parent ?\"" + ], + "ClarificationQuestion": [], + "id": "l4idgpbr", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"(en face à face, téléphone, mail, SMS, appel vidéo, etc.)\"", + "id": "l4id8tmg", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_FREQ_ENFLOG2" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4ia9byx", + "id": "l4486uz3", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_DORT_ENFLOG2 non renseigné", + "Expression": "isnull($PARENT_DORT_ENFLOG2$) or $PARENT_DORT_ENFLOG2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l48dkg6b" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Arrive-t-il à \" || (if (nvl($PRENOM_ENFLOG2$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG2$) || \" de dormir chez son autre parent ?\"" + ], + "ClarificationQuestion": [], + "id": "l4486unb", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_DORT_ENFLOG2" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4iai6rj", + "id": "l4ia9b25", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_VECU_ENFLOG2 non renseigné", + "Expression": "isnull($PARENT_VECU_ENFLOG2$) or $PARENT_VECU_ENFLOG2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4iaphai" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Avez-vous déjà vécu avec l'autre parent de \" || (if (nvl($PRENOM_ENFLOG2$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG2$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l4ia5o28", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_VECU_ENFLOG2" + }, + { + "Response": [ + { + "CollectedVariableReference": "la6yqwyf", + "id": "la6yhprv", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEP_AUT_PAR_ENFLOG2 non renseigné", + "Expression": "isnull($SEP_AUT_PAR_ENFLOG2$) or $SEP_AUT_PAR_ENFLOG2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "la6yghvg" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Vous êtes-vous séparé\" || (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\") || \" de l'autre parent de \" || (if (nvl($PRENOM_ENFLOG2$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG2$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "la6yjh65", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEP_AUT_PAR_ENFLOG2" + }, + { + "Response": [ + { + "CollectedVariableReference": "la6yj02g", + "id": "l4idnmx1", + "mandatory": false, + "CodeListReference": "kwqjqlpa", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "RESID_ENFLOG2 non renseignée", + "Expression": "isnull($RESID_ENFLOG2$) or $RESID_ENFLOG2$ =\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4idnm68" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel a été le mode de résidence fixé par décision de justice ?\"" + ], + "ClarificationQuestion": [], + "id": "l4idgqx9", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "RESID_ENFLOG2" + }, + { + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFLOG2$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFLOG2$) || \" vit-\" || (if ($SEXE_ENFLOG2$=\"1\" or isnull($SEXE_ENFLOG2$)) then \"il\" else \"elle\") || \" aussi ailleurs ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "laqv5c3y", + "MappingTarget": "1" + }, + { + "MappingSource": "laqv4eoa", + "MappingTarget": "2" + }, + { + "MappingSource": "laquos4t", + "MappingTarget": "3" + }, + { + "MappingSource": "laqupuni", + "MappingTarget": "4" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "l59njrta" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "SANTE_ENFLOG2", + "Response": [ + { + "CollectedVariableReference": "laqulhxj", + "id": "laqv5c3y", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "laquvj5h", + "id": "laqv4eoa", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "laquyfyu", + "id": "laquos4t", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "laquvz8u", + "id": "laqupuni", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SANTE_ENFLOG2 non renseigné", + "Expression": "(nvl($SANTE_ENFLOG21$, false) = false and \r\n nvl($SANTE_ENFLOG22$, false) = false and \r\n nvl($SANTE_ENFLOG23$, false) = false and\r\n nvl($SANTE_ENFLOG24$, false) = false)\r\n", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4iahvrl" + }, + { + "post_collect": false, + "Description": "NON exclusif", + "Expression": "(nvl($SANTE_ENFLOG21$,false)=true and nvl($SANTE_ENFLOG24$,false)=true)\r\nor (nvl($SANTE_ENFLOG22$,false)=true and nvl($SANTE_ENFLOG24$,false)=true)\r\nor (nvl($SANTE_ENFLOG23$,false)=true and nvl($SANTE_ENFLOG24$,false)=true)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Vous ne pouvez pas cocher Non et une autre réponse.\"", + "id": "l7yw6hog" + } + ], + "depth": 3, + "ClarificationQuestion": [], + "id": "l4ia7y0p", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Plusieurs réponses possibles\"", + "id": "l59nvexw", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + } + ], + "Name": "VOSENFLOG2" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "Votre troisième enfant qui vit avec vous, même une petite partie du temps seulement" + ], + "id": "ljmvg6vc", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "l4lcm3zm", + "id": "l4lco011", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PRENOM_ENFLOG3 non renseigné", + "Expression": "isnull($PRENOM_ENFLOG3$) or $PRENOM_ENFLOG3$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"", + "id": "l4lcni5b" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", comment s'appelle votre troisième enfant qui vit avec vous, même une petite partie du temps seulement ?\"" + ], + "id": "l4ld0ziw", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PRENOM_ENFLOG3" + }, + { + "Response": [ + { + "CollectedVariableReference": "llge4od7", + "id": "l4ld0wcd", + "mandatory": false, + "CodeListReference": "llgbzo78", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEXE_ENFLOG3 non renseigné", + "Expression": "isnull($SEXE_ENFLOG3$) or $SEXE_ENFLOG3$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4ld2zib" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel est le sexe de \" || (if (nvl($PRENOM_ENFLOG3$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG3$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lcp4co", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEXE_ENFLOG3" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln8wfuqp", + "id": "l4ld1d4p", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ANAI_ENFLOG3 non renseigné", + "Expression": "isnull($ANAI_ENFLOG3$) or $ANAI_ENFLOG3$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lcsg5s" + }, + { + "post_collect": false, + "Description": "\"L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "Expression": "not(isnull($ANAI_ENFLOG3$)) and not(isnull($ANAIS$)) and cast($ANAI_ENFLOG3$,integer) < cast($ANAIS$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"\r\n", + "id": "l84gyt9j" + }, + { + "post_collect": false, + "Description": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "Expression": "not(isnull($ANAI_ENFLOG3$)) and not(isnull($ANAIS$)) and (cast($ANAIS$,integer) + 15 > cast($ANAI_ENFLOG3$,integer))", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "id": "l84gswv2" + }, + { + "post_collect": false, + "Description": "bornes ANAI_ENFLOG3", + "Expression": " cast($ANAI_ENFLOG3$,integer) < 1920 or cast($ANAI_ENFLOG3$,integer) > 2024", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de naissance de votre enfant est comprise entre 1920 et 2024.\" ", + "id": "ln8wfq5r" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quelle est l'année de naissance de \" || (if (nvl($PRENOM_ENFLOG3$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG3$) || \" ?\"" + ], + "id": "l4ld3y0j", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "ANAI_ENFLOG3" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4qtpx6f", + "id": "l4qtewva", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NEFRANCE_ENFLOG3 non renseigné", + "Expression": "isnull($NEFRANCE_ENFLOG3$) or $NEFRANCE_ENFLOG3$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4qts8ng" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFLOG3$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFLOG3$) || \" est-\" || (if ($SEXE_ENFLOG3$=\"1\" or isnull($SEXE_ENFLOG3$)) then \"il né\" else \"elle née\") || \" en France ?\"" + ], + "ClarificationQuestion": [], + "id": "l4qty53i", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Prenez en compte les frontières actuelles.\"", + "id": "l4qthko2", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "NEFRANCE_ENFLOG3" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4lcwi2r", + "id": "l4lctczi", + "mandatory": false, + "CodeListReference": "l44726g4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_VIT_ENFLOG3 non renseigné", + "Expression": "isnull($PARENT_VIT_ENFLOG3$) or $PARENT_VIT_ENFLOG3$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lcvm64" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"L'autre parent de \" || (if (nvl($PRENOM_ENFLOG3$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG3$) || \" vit-il/elle avec vous dans ce logement ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lct7cb", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_VIT_ENFLOG3" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4pae240", + "id": "l4ld6gqw", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_FR_ENFLOG3 non renseigné", + "Expression": "isnull($PARENT_FR_ENFLOG3$) or $PARENT_FR_ENFLOG3$ =\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4ld11js" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"L'autre parent de \" || (if (nvl($PRENOM_ENFLOG3$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG3$) || \" vit-il/elle en France ?\"" + ], + "ClarificationQuestion": [], + "id": "l4ld827i", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Prenez en compte les frontières actuelles.\"", + "id": "l4pawrpv", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_FR_ENFLOG3" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvxwe5z", + "id": "llvyw7q3", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_DEP_ENFLOG3 non renseigné", + "Expression": "isnull($PARENT_DEP_ENFLOG3$) or $PARENT_DEP_ENFLOG3$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4pap427" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel département vit l'autre parent de \" || (if (nvl($PRENOM_ENFLOG3$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG3$) || \" ?\"" + ], + "id": "l4pat7vx", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"", + "id": "l4pb2s4u", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PARENT_DEP_ENFLOG3" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvxo6tz", + "id": "llvyyz9y", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_COM_ENFLOG3 non renseigné", + "Expression": "isnull($PARENT_COM_ENFLOG3$) or $PARENT_COM_ENFLOG3$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4patohp" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quelle commune vit l'autre parent de \" || (if (nvl($PRENOM_ENFLOG3$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG3$) || \" ?\"" + ], + "id": "l4pavp6y", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez la commune recherchée et sélectionnez la dans la liste.\"", + "id": "l4paydhw", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PARENT_COM_ENFLOG3" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvy3238", + "id": "llvyspw0", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_PAY_ENFLOG3 non renseigné", + "Expression": "isnull($PARENT_PAY_ENFLOG3$) or $PARENT_PAY_ENFLOG3$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4pbj5of" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel pays vit l'autre parent de \" || (if (nvl($PRENOM_ENFLOG3$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG3$) || \" ?\"" + ], + "id": "l4pb77tv", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"", + "id": "l4pbgztm", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PARENT_PAY_ENFLOG3" + }, + { + "Response": [ + { + "CollectedVariableReference": "lij1fss2", + "id": "l4ld55kd", + "mandatory": false, + "CodeListReference": "l1f65uvw", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_FREQ_ENFLOG3 non renseigné", + "Expression": "isnull($PARENT_FREQ_ENFLOG3$) or $PARENT_FREQ_ENFLOG3$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4ldajyi" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"A quelle fréquence \" || (if (nvl($PRENOM_ENFLOG3$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG3$) || \" est-\" || (if ($SEXE_ENFLOG3$=\"1\" or isnull($SEXE_ENFLOG3$)) then \"il\" else \"elle\") || \" en contact avec son autre parent ?\"" + ], + "ClarificationQuestion": [], + "id": "l4ld15su", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"(en face à face, téléphone, mail, SMS, appel vidéo, etc.)\"", + "id": "l4lczwxy", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_FREQ_ENFLOG3" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4ldfxok", + "id": "l4lda7jw", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_DORT_ENFLOG3 non renseigné", + "Expression": "isnull($PARENT_DORT_ENFLOG3$) or $PARENT_DORT_ENFLOG3$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4ld790t" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Arrive-t-il à \" || (if (nvl($PRENOM_ENFLOG3$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG3$) || \" de dormir chez son autre parent ?\"" + ], + "ClarificationQuestion": [], + "id": "l4ld0zmv", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_DORT_ENFLOG3" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4ld9url", + "id": "l4ld7yr1", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_VECU_ENFLOG3 non renseigné", + "Expression": "isnull($PARENT_VECU_ENFLOG3$) or $PARENT_VECU_ENFLOG3$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4ld5ywn" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Avez-vous déjà vécu avec l'autre parent de \" || (if (nvl($PRENOM_ENFLOG3$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG3$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l4ld0jea", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_VECU_ENFLOG3" + }, + { + "Response": [ + { + "CollectedVariableReference": "la6ymh2v", + "id": "la6y6kev", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEP_AUT_PAR_ENFLOG3 non renseigné\n", + "Expression": "isnull($SEP_AUT_PAR_ENFLOG3$) or $SEP_AUT_PAR_ENFLOG3$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "la6yhhi7" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Vous êtes-vous séparé\" || (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\") || \" de l'autre parent de \" || (if (nvl($PRENOM_ENFLOG3$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG3$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "la6y9flo", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEP_AUT_PAR_ENFLOG3" + }, + { + "Response": [ + { + "CollectedVariableReference": "la6yfso4", + "id": "l4lddsd8", + "mandatory": false, + "CodeListReference": "kwqjqlpa", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "RESID_ENFLOG3 non renseigné", + "Expression": "isnull($RESID_ENFLOG3$) or $RESID_ENFLOG3$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4ldfusq" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel a été le mode de résidence fixé par décision de justice ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lde13h", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "RESID_ENFLOG3" + }, + { + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFLOG3$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFLOG3$) || \" vit-\" || (if ($SEXE_ENFLOG3$=\"1\" or isnull($SEXE_ENFLOG3$)) then \"il\" else \"elle\") || \" aussi ailleurs ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "la6v5i7c", + "MappingTarget": "1" + }, + { + "MappingSource": "la6vlqvx", + "MappingTarget": "2" + }, + { + "MappingSource": "la6vkkpx", + "MappingTarget": "3" + }, + { + "MappingSource": "la6vkdlt", + "MappingTarget": "4" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "l59njrta" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "SANTE_ENFLOG3", + "Response": [ + { + "CollectedVariableReference": "la6uhnek", + "id": "la6v5i7c", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "la6umv20", + "id": "la6vlqvx", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "la6unknh", + "id": "la6vkkpx", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "la6urend", + "id": "la6vkdlt", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SANTE_ENFLOG3 non renseigné", + "Expression": "(nvl($SANTE_ENFLOG31$, false) = false and \r\n nvl($SANTE_ENFLOG32$, false) = false and \r\n nvl($SANTE_ENFLOG33$, false) = false and\r\n nvl($SANTE_ENFLOG34$, false) = false)\r\n", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lcuc2r" + }, + { + "post_collect": false, + "Description": "NON exclusif", + "Expression": "(nvl($SANTE_ENFLOG31$,false)=true and nvl($SANTE_ENFLOG34$,false)=true)\r\nor (nvl($SANTE_ENFLOG32$,false)=true and nvl($SANTE_ENFLOG34$,false)=true)\r\nor (nvl($SANTE_ENFLOG33$,false)=true and nvl($SANTE_ENFLOG34$,false)=true)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Vous ne pouvez pas cocher Non et une autre réponse.\"", + "id": "l7yvx76k" + } + ], + "depth": 3, + "ClarificationQuestion": [], + "id": "l4lcuoke", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Plusieurs réponses possibles\"", + "id": "l59o0cuh", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + } + ], + "Name": "VOSENFLOG3" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "Votre quatrième enfant qui vit avec vous, même une petite partie du temps seulement" + ], + "id": "ljmv7iyw", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "l4le9osn", + "id": "l4lefzhk", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PRENOM_ENFLOG4 non renseigné", + "Expression": "isnull($PRENOM_ENFLOG4$) or $PRENOM_ENFLOG4$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"", + "id": "l4le9c7h" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", comment s'appelle votre quatrième enfant qui vit avec vous, même une petite partie du temps seulement ?\"" + ], + "id": "l4lec0rk", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PRENOM_ENFLOG4" + }, + { + "Response": [ + { + "CollectedVariableReference": "llgdmzwn", + "id": "l4le4jn4", + "mandatory": false, + "CodeListReference": "llgbzo78", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEXE_ENFLOG4 non renseigné", + "Expression": "insull($SEXE_ENFLOG4$) or $SEXE_ENFLOG4$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lejy0v" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel est le sexe de \" || (if (nvl($PRENOM_ENFLOG4$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG4$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lefdoh", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEXE_ENFLOG4" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln8wqaw5", + "id": "l4le8tph", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ANAI_ENFLOG4 non renseigné", + "Expression": "isnull($ANAI_ENFLOG4$) or $ANAI_ENFLOG4$ =\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lejcnc" + }, + { + "post_collect": false, + "Description": "\"L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "Expression": "not(isnull($ANAI_ENFLOG4$)) and not(isnull($ANAIS$)) and cast($ANAI_ENFLOG4$,integer) < cast($ANAIS$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "id": "l84h188z" + }, + { + "post_collect": false, + "Description": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "Expression": "not(isnull($ANAI_ENFLOG4$)) and not(isnull($ANAIS$)) and (cast($ANAIS$,integer) + 15 > cast($ANAI_ENFLOG4$,integer))", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "id": "l84gr1k2" + }, + { + "post_collect": false, + "Description": "bornes ANAI_ENFLOG4", + "Expression": " cast($ANAI_ENFLOG4$,integer) < 1920 or cast($ANAI_ENFLOG4$,integer) > 2024", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de naissance de votre enfant est comprise entre 1920 et 2024.\" ", + "id": "ln8wnhcp" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quelle est l'année de naissance de \" || (if (nvl($PRENOM_ENFLOG4$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG4$) || \" ?\"" + ], + "id": "l4le9rs3", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "ANAI_ENFLOG4" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4qtueyu", + "id": "l4qtzd2y", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NEFRANCE_ENFLOG4 non renseigné", + "Expression": "isnull($NEFRANCE_ENFLOG4$) or $NEFRANCE_ENFLOG4$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4qtlkpc" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFLOG4$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFLOG4$) || \" est-\" || (if ($SEXE_ENFLOG4$=\"1\" or isnull($SEXE_ENFLOG4$)) then \"il né\" else \"elle née\") || \" en France ?\"" + ], + "ClarificationQuestion": [], + "id": "l4qtvt71", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Prenez en compte les frontières actuelles.\"", + "id": "l4qty3sm", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "NEFRANCE_ENFLOG4" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4lej5ls", + "id": "l4lequew", + "mandatory": false, + "CodeListReference": "l44726g4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_VIT_ENFLOG4 non renseigné", + "Expression": "isnull($PARENT_VIT_ENFLOG4$) or $PARENT_VIT_ENFLOG4$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lehsnj" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"L'autre parent de \" || (if (nvl($PRENOM_ENFLOG4$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG4$) || \" vit-il/elle avec vous dans ce logement ?\"" + ], + "ClarificationQuestion": [], + "id": "l4ler7fu", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_VIT_ENFLOG4" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4pao37f", + "id": "l4leh99i", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_FR_ENFLOG4 non renseigné", + "Expression": "isnull($PARENT_FR_ENFLOG4$) or $PARENT_FR_ENFLOG4$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4leoxmw" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"L'autre parent de \" || (if (nvl($PRENOM_ENFLOG4$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG4$) || \" vit-il/elle en France ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lemegm", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Prenez en compte les frontières actuelles.\"", + "id": "l4paro0f", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_FR_ENFLOG4" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvy3nrc", + "id": "llvyruw7", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_DEP_ENFLOG4 non renseigné", + "Expression": "isnull($PARENT_DEP_ENFLOG4$) or $PARENT_DEP_ENFLOG4$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4paxce5" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel département vit l'autre parent de \" || (if (nvl($PRENOM_ENFLOG4$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG4$) || \" ?\"" + ], + "id": "l4payjff", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"", + "id": "l4paqxkg", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PARENT_DEP_ENFLOG4" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvy28yg", + "id": "llvyy20q", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_COM_ENFLOG4 non renseigné", + "Expression": "isnull($PARENT_COM_ENFLOG4$) or $PARENT_COM_ENFLOG4$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4paztxj" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quelle commune vit l'autre parent de \" || (if (nvl($PRENOM_ENFLOG4$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG4$) || \" ?\"" + ], + "id": "l4paz6m4", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez la commune recherchée et sélectionnez la dans la liste.\"", + "id": "l4pat094", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PARENT_COM_ENFLOG4" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvy62d0", + "id": "llvz97hj", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_PAY_ENFLOG4 non renseigné", + "Expression": "isnull($PARENT_PAY_ENFLOG4$) or $PARENT_PAY_ENFLOG4$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4pb2ob7" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel pays vit l'autre parent de \" || (if (nvl($PRENOM_ENFLOG4$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG4$) || \" ?\"" + ], + "id": "l4pbax4x", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"", + "id": "l4pbe5ur", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PARENT_PAY_ENFLOG4" + }, + { + "Response": [ + { + "CollectedVariableReference": "lij177w0", + "id": "l4lesyhr", + "mandatory": false, + "CodeListReference": "l1f65uvw", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_FREQ_ENFLOG4 non renseigné", + "Expression": "isnull($PARENT_FREQ_ENFLOG4$) or $PARENT_FREQ_ENFLOG4$ =\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lev7e4" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"A quelle fréquence \" || (if (nvl($PRENOM_ENFLOG4$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG4$) || \" est-\" || (if ($SEXE_ENFLOG4$=\"1\" or isnull($SEXE_ENFLOG4$)) then \"il\" else \"elle\") || \" en contact avec son autre parent ?\"" + ], + "ClarificationQuestion": [], + "id": "l4letwtq", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"(en face à face, téléphone, mail, SMS, appel vidéo, etc.)\"", + "id": "l4lergdt", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_FREQ_ENFLOG4" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4leeukk", + "id": "l4lergt1", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_DORT_ENFLOG4 non renseigné", + "Expression": "isnull($PARENT_DORT_ENFLOG4$) or $PARENT_DORT_ENFLOG4$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4leiitw" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Arrive-t-il à \" || (if (nvl($PRENOM_ENFLOG4$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG4$) || \" de dormir chez son autre parent ?\"" + ], + "ClarificationQuestion": [], + "id": "l4letk9j", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_DORT_ENFLOG4" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4leseyk", + "id": "l4leazvr", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_VECU_ENFLOG4 non renseigné", + "Expression": "isnull($PARENT_VECU_ENFLOG4$) or $PARENT_VECU_ENFLOG4$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4leg54y" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Avez-vous déjà vécu avec l'autre parent de \" || (if (nvl($PRENOM_ENFLOG4$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG4$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lekh2t", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_VECU_ENFLOG4" + }, + { + "Response": [ + { + "CollectedVariableReference": "la6yno8u", + "id": "la6yfcb1", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEP_AUT_PAR_ENFLOG4 non renseigné\n", + "Expression": "isnull($SEP_AUT_PAR_ENFLOG4$) or $SEP_AUT_PAR_ENFLOG4$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "la6yow7a" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Vous êtes-vous séparé\" || (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\") || \" de l'autre parent de \" || (if (nvl($PRENOM_ENFLOG4$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG4$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "la6y7rno", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEP_AUT_PAR_ENFLOG4" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4levqra", + "id": "l4leps7n", + "mandatory": false, + "CodeListReference": "kwqjqlpa", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "RESID_ENFLOG4 non renseigné", + "Expression": "isnull($RESID_ENFLOG4$) or $RESID_ENFLOG4$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4leu0ya" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel a été le mode de résidence fixé par décision de justice ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lexatl", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "RESID_ENFLOG4" + }, + { + "FlowControl": [], + "Label": [ + " \"\" || (if (nvl($PRENOM_ENFLOG4$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFLOG4$) || \" vit- \" || (if ($SEXE_ENFLOG4$=\"1\" or isnull($SEXE_ENFLOG4$)) then \"il\" else \"elle\") || \" aussi ailleurs ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "la6vffpf", + "MappingTarget": "1" + }, + { + "MappingSource": "la6vkyqn", + "MappingTarget": "2" + }, + { + "MappingSource": "la6vfxog", + "MappingTarget": "3" + }, + { + "MappingSource": "la6vkx70", + "MappingTarget": "4" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "l59njrta" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "SANTE_ENFLOG4", + "Response": [ + { + "CollectedVariableReference": "la6urqzv", + "id": "la6vffpf", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "la6up8zy", + "id": "la6vkyqn", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "la6ukx69", + "id": "la6vfxog", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "la6ugfba", + "id": "la6vkx70", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SANTE_ENFLOG4 non renseigné", + "Expression": "(nvl($SANTE_ENFLOG41$, false) = false and \r\n nvl($SANTE_ENFLOG42$, false) = false and \r\n nvl($SANTE_ENFLOG43$, false) = false and\r\n nvl($SANTE_ENFLOG44$, false) = false)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lehyin" + }, + { + "post_collect": false, + "Description": "NON exclusif", + "Expression": "(nvl($SANTE_ENFLOG41$,false)=true and nvl($SANTE_ENFLOG44$,false)=true)\r\nor (nvl($SANTE_ENFLOG42$,false)=true and nvl($SANTE_ENFLOG44$,false)=true)\r\nor (nvl($SANTE_ENFLOG43$,false)=true and nvl($SANTE_ENFLOG44$,false)=true)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Vous ne pouvez pas cocher Non et une autre réponse.\"", + "id": "l7ywcsut" + } + ], + "depth": 3, + "ClarificationQuestion": [], + "id": "l4lec2qz", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Plusieurs réponses possibles\"", + "id": "l59nzdj2", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + } + ], + "Name": "VOSENFLOG4" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "Votre cinquième enfant qui vit avec vous, même une petite partie du temps seulement" + ], + "id": "ljmv5mgh", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "l4lerlrc", + "id": "l4leruxk", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PRENOM_ENFLOG5 non renseigné", + "Expression": "isnull($PRENOM_ENFLOG5$) or $PRENOM_ENFLOG5$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"", + "id": "l4lf6iaz" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", comment s'appelle votre cinquième enfant qui vit avec vous, même une petite partie du temps seulement ?\"" + ], + "id": "l4leulqw", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PRENOM_ENFLOG5" + }, + { + "Response": [ + { + "CollectedVariableReference": "llgdmwr4", + "id": "l4leqtd3", + "mandatory": false, + "CodeListReference": "llgbzo78", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEXE_ENFLOG5 non renseigné", + "Expression": "isnull($SEXE_ENFLOG5$) or $SEXE_ENFLOG5$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4leowmb" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel est le sexe de \" || (if (nvl($PRENOM_ENFLOG5$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG5$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lem0yg", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEXE_ENFLOG5" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln8wwl8u", + "id": "l4lfqb24", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ANAI_ENFLOG5 non renseigné", + "Expression": "isnull($ANAI_ENFLOG5$) or $ANAI_ENFLOG5$ =\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lfb5qe" + }, + { + "post_collect": false, + "Description": "\"L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "Expression": "not(isnull($ANAI_ENFLOG5$)) and not(isnull($ANAIS$)) and cast($ANAI_ENFLOG5$,integer) < cast($ANAIS$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "id": "l84gr81y" + }, + { + "post_collect": false, + "Description": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "Expression": "not(isnull($ANAI_ENFLOG5$)) and not(isnull($ANAIS$)) and (cast($ANAIS$,integer) + 15 > cast($ANAI_ENFLOG5$,integer))", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "id": "l84gwes8" + }, + { + "post_collect": false, + "Description": "bornes ANAI_ENFLOG5", + "Expression": "cast($ANAI_ENFLOG5$,integer) < 1920 or cast($ANAI_ENFLOG5$,integer) > 2024", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de naissance de votre enfant est comprise entre 1920 et 2024.\" ", + "id": "ln8wnhng" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quelle est l'année de naissance de \" || (if (nvl($PRENOM_ENFLOG5$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG5$) || \" ?\"" + ], + "id": "l4lffj1f", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "ANAI_ENFLOG5" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4qto89v", + "id": "l4qtqnl5", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NEFRANCE_ENFLOG5 non renseigné", + "Expression": "isnull($NEFRANCE_ENFLOG5$) or $NEFRANCE_ENFLOG5$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4qtgxk5" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFLOG5$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFLOG5$) || \" est-\" || (if ($SEXE_ENFLOG5$=\"1\" or isnull($SEXE_ENFLOG5$)) then \"il né\" else \"elle née\") || \" en France ?\"" + ], + "ClarificationQuestion": [], + "id": "l4qtm8di", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Prenez en compte les frontières actuelles.\"", + "id": "l4qu07sd", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "NEFRANCE_ENFLOG5" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4lfflqh", + "id": "l4lfqvi9", + "mandatory": false, + "CodeListReference": "l44726g4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_VIT_ENFLOG5 non renseigné", + "Expression": "isnull($PARENT_VIT_ENFLOG5$) or $PARENT_VIT_ENFLOG5$= \"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lfsn5n" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"L'autre parent de \" || (if (nvl($PRENOM_ENFLOG5$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG5$) || \" vit-il/elle avec vous dans ce logement ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lfye1g", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_VIT_ENFLOG5" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4pakdk6", + "id": "l4lfrft6", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_FR_ENFLOG5 non renseigné", + "Expression": "isnull($PARENT_FR_ENFLOG5$) or $PARENT_FR_ENFLOG5$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lfipo5" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"L'autre parent de \" || (if (nvl($PRENOM_ENFLOG5$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG5$) || \" vit-il/elle en France ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lfoek4", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Prenez en compte les frontières actuelles.\"", + "id": "l4papqg4", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_FR_ENFLOG5" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvy6d0r", + "id": "llvyw6mw", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_DEP_ENFLOG5 non renseigné", + "Expression": "isnull($PARENT_DEP_ENFLOG5$) or $PARENT_DEP_ENFLOG5$ =\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4panjkh" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel département vit l'autre parent de \" || (if (nvl($PRENOM_ENFLOG5$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG5$) || \" ?\"" + ], + "id": "l4pauqgi", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"", + "id": "l4pb0t6z", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PARENT_DEP_ENFLOG5" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvxz4y8", + "id": "llvyqmlu", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_COM_ENFLOG5 non renseigné", + "Expression": "isnull($PARENT_COM_ENFLOG5$) or $PARENT_COM_ENFLOG5$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4pb5yzw" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quelle commune vit l'autre parent de \" || (if (nvl($PRENOM_ENFLOG5$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG5$) || \" ?\"" + ], + "id": "l4paw4ax", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez la commune recherchée et sélectionnez la dans la liste.\"", + "id": "l4paz690", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PARENT_COM_ENFLOG5" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvxv8yy", + "id": "llvz0jpe", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_PAY_ENFLOG5 non renseigné", + "Expression": "isnull($PARENT_PAY_ENFLOG5$) or $PARENT_PAY_ENFLOG5$ =\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4pb66pe" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel pays vit l'autre parent de \" || (if (nvl($PRENOM_ENFLOG5$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG5$) || \" ?\"" + ], + "id": "l4pb234a", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"", + "id": "l4pb68fn", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PARENT_PAY_ENFLOG5" + }, + { + "Response": [ + { + "CollectedVariableReference": "lij1fszm", + "id": "l8n27wnd", + "mandatory": false, + "CodeListReference": "l1f65uvw", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_FREQ_ENFLOG5 non renseigné", + "Expression": "isnull($PARENT_FREQ_ENFLOG5$) or $PARENT_FREQ_ENFLOG5$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8n27ang" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"A quelle fréquence \" || (if (nvl($PRENOM_ENFLOG5$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG5$) || \" est-\" || (if ($SEXE_ENFLOG5$=\"1\" or isnull($SEXE_ENFLOG5$)) then \"il\" else \"elle\") || \" en contact avec son autre parent ?\"" + ], + "ClarificationQuestion": [], + "id": "l8n262ck", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"(en face à face, téléphone, mail, SMS, appel vidéo, etc.)\"", + "id": "l8n1urc0", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_FREQ_ENFLOG5" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4lg1pyn", + "id": "l4lfvr6s", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_DORT_ENFLOG5 non renseigné", + "Expression": "isnull($PARENT_DORT_ENFLOG5$) or $PARENT_DORT_ENFLOG5$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lfkqdy" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Arrive-t-il à \" || (if (nvl($PRENOM_ENFLOG5$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG5$) || \" de dormir chez son autre parent ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lfr4qa", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_DORT_ENFLOG5" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4lg1xr6", + "id": "l4lfk081", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_VECU_ENFLOG5 non renseigné", + "Expression": "isnull($PARENT_VECU_ENFLOG5$) or $PARENT_VECU_ENFLOG5$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lg23nm" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Avez-vous déjà vécu avec l'autre parent de \" || (if (nvl($PRENOM_ENFLOG5$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG5$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lfvape", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_VECU_ENFLOG5" + }, + { + "Response": [ + { + "CollectedVariableReference": "la6yidpr", + "id": "la6y9op3", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEP_AUT_PAR_ENFLOG5 non renseigné", + "Expression": "isnull($SEP_AUT_PAR_ENFLOG5$) or $SEP_AUT_PAR_ENFLOG5$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "la6ylwz0" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Vous êtes-vous séparé\" || (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\") || \" de l'autre parent de \" || (if (nvl($PRENOM_ENFLOG5$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG5$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "la6yfjnf", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEP_AUT_PAR_ENFLOG5" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4lg6rq5", + "id": "l4lfuclq", + "mandatory": false, + "CodeListReference": "kwqjqlpa", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "RESID_ENFLOG5 non renseigné", + "Expression": "isnull($RESID_ENFLOG5$) or $RESID_ENFLOG5$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lg1itf" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel a été le mode de résidence fixé par décision de justice ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lg25av", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "RESID_ENFLOG5" + }, + { + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFLOG5$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFLOG5$) || \" vit-\" || (if ($SEXE_ENFLOG5$=\"1\" or isnull($SEXE_ENFLOG5$)) then \"il\" else \"elle\") || \" aussi ailleurs ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "la6vpzpe", + "MappingTarget": "1" + }, + { + "MappingSource": "la6vhlmp", + "MappingTarget": "2" + }, + { + "MappingSource": "la6vcgh1", + "MappingTarget": "3" + }, + { + "MappingSource": "la6v7y36", + "MappingTarget": "4" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "l59njrta" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "SANTE_ENFLOG5", + "Response": [ + { + "CollectedVariableReference": "la6um2n4", + "id": "la6vpzpe", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "la6uvgky", + "id": "la6vhlmp", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "la6utzgi", + "id": "la6vcgh1", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "la6unkqo", + "id": "la6v7y36", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SANTE_ENFLOG5 non renseigné", + "Expression": "(nvl($SANTE_ENFLOG51$, false) = false and \r\n nvl($SANTE_ENFLOG52$, false) = false and \r\n nvl($SANTE_ENFLOG53$, false) = false and\r\n nvl($SANTE_ENFLOG54$, false) = false)\r\n", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lfent3" + }, + { + "post_collect": false, + "Description": "NON exclusif", + "Expression": "(nvl($SANTE_ENFLOG51$,false)=true and nvl($SANTE_ENFLOG54$,false)=true)\r\nor (nvl($SANTE_ENFLOG52$,false)=true and nvl($SANTE_ENFLOG54$,false)=true)\r\nor (nvl($SANTE_ENFLOG53$,false)=true and nvl($SANTE_ENFLOG54$,false)=true)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Vous ne pouvez pas cocher Non et une autre réponse.\"", + "id": "l7yw5quz" + } + ], + "depth": 3, + "ClarificationQuestion": [], + "id": "l4lfclty", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Plusieurs réponses possibles\"", + "id": "l59np16p", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + } + ], + "Name": "VOSENFLOG5" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "Votre sixième enfant qui vit avec vous, même une petite partie du temps seulement" + ], + "id": "ljmvjhon", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "l8n2vo7b", + "id": "l8n2q8ti", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PRENOM_ENFLOG6 non renseigné", + "Expression": "isnull($PRENOM_ENFLOG6$) or $PRENOM_ENFLOG6$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"", + "id": "l8n2opdl" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", comment s'appelle votre sixième enfant qui vit avec vous, même une petite partie du temps seulement ?\"" + ], + "id": "l8n2umnw", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PRENOM_ENFLOG6" + }, + { + "Response": [ + { + "CollectedVariableReference": "llge1k6m", + "id": "l8n2ef3o", + "mandatory": false, + "CodeListReference": "llgbzo78", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEXE_ENFLOG6 non renseigné", + "Expression": "isnull($SEXE_ENFLOG6$) or $SEXE_ENFLOG6$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8n2jon1" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel est le sexe de \" || (if (nvl($PRENOM_ENFLOG6$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG6$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l8n2e1mr", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEXE_ENFLOG6" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln8wicvh", + "id": "l8n2f2zr", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ANAI_ENFLOG6 non renseigné", + "Expression": "isnull($ANAI_ENFLOG6$) or $ANAI_ENFLOG6$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"", + "id": "l8n2stxk" + }, + { + "post_collect": false, + "Description": "\"L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "Expression": "not(isnull($ANAI_ENFLOG6$)) and not(isnull($ANAIS$)) and cast($ANAI_ENFLOG6$,integer) < cast($ANAIS$,integer)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "id": "l8slcefq" + }, + { + "post_collect": false, + "Description": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "Expression": "not(isnull($ANAI_ENFLOG6$)) and not(isnull($ANAIS$)) and (cast($ANAIS$,integer) + 15 > cast($ANAI_ENFLOG6$,integer))", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "id": "l8sl97gy" + }, + { + "post_collect": false, + "Description": "bornes ANAI_ENFLOG6", + "Expression": " cast($ANAI_ENFLOG6$,integer) < 1920 or cast($ANAI_ENFLOG6$,integer) > 2024", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de naissance de votre enfant est comprise entre 1920 et 2024.\" ", + "id": "ln8wtnv0" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quelle est l'année de naissance de \" || (if (nvl($PRENOM_ENFLOG6$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG6$) || \" ?\"" + ], + "id": "l8n2lctv", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "ANAI_ENFLOG6" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8n2f6ge", + "id": "l8n2bcdy", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NEFRANCE_ENFLOG6 non renseigné", + "Expression": "isnull($NEFRANCE_ENFLOG6$) or $NEFRANCE_ENFLOG6$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8n2qaup" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFLOG6$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFLOG6$) || \" est-\" || (if ($SEXE_ENFLOG6$=\"1\" or isnull($SEXE_ENFLOG6$)) then \"il né\" else \"elle née\") || \" en France ?\"" + ], + "ClarificationQuestion": [], + "id": "l8n2gmuq", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Prenez en compte les frontières actuelles.\"", + "id": "l8n2r8je", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "NEFRANCE_ENFLOG6" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8n2jseg", + "id": "l8n290y2", + "mandatory": false, + "CodeListReference": "l44726g4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_VIT_ENFLOG6 non renseigné", + "Expression": "isnull($PARENT_VIT_ENFLOG6$) or $PARENT_VIT_ENFLOG6$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8n2fjum" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"L'autre parent de \" || (if (nvl($PRENOM_ENFLOG6$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG6$) || \" vit-il/elle avec vous dans ce logement ?\"" + ], + "ClarificationQuestion": [], + "id": "l8n2ilpb", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_VIT_ENFLOG6" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8n2bifj", + "id": "l8n23nvd", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_FR_ENFLOG6 non renseigné", + "Expression": "isnull($PARENT_FR_ENFLOG6$) or $PARENT_FR_ENFLOG6$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8n26wqv" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"L'autre parent de \" || (if (nvl($PRENOM_ENFLOG6$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG6$) || \" vit-il/elle en France ?\"" + ], + "ClarificationQuestion": [], + "id": "l8n1zy7o", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Prenez en compte les frontières actuelles.\"", + "id": "l8n2g2zx", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_FR_ENFLOG6" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvxysia", + "id": "llvz079i", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_DEP_ENFLOG6 non renseigné", + "Expression": "isnull($PARENT_DEP_ENFLOG6$) or $PARENT_DEP_ENFLOG6$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8n287vz" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel département vit l'autre parent de \" || (if (nvl($PRENOM_ENFLOG6$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG6$) || \" ?\"" + ], + "id": "l8n2awb0", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"", + "id": "l8n24jzh", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PARENT_DEP_ENFLOG6" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvxyjt8", + "id": "llvz20va", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_COM_ENFLOG6 non renseigné", + "Expression": "isnull($PARENT_COM_ENFLOG6$) or $PARENT_COM_ENFLOG6$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8n1uwys" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quelle commune vit l'autre parent de \" || (if (nvl($PRENOM_ENFLOG6$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG6$) || \" ?\"" + ], + "id": "l8n1u6yt", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez la commune recherchée et sélectionnez la dans la liste.\"", + "id": "l8n208lx", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PARENT_COM_ENFLOG6" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvxx6pu", + "id": "llvz6xrr", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_PAY_ENFLOG6 non renseigné", + "Expression": "isnull($PARENT_PAY_ENFLOG6$) or $PARENT_PAY_ENFLOG6$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8n2088i" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel pays vit l'autre parent de \" || (if (nvl($PRENOM_ENFLOG6$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG6$) || \" ?\"" + ], + "id": "l8n20r8i", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"", + "id": "l8n2b8s7", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PARENT_PAY_ENFLOG6" + }, + { + "Response": [ + { + "CollectedVariableReference": "lij1973b", + "id": "l4lg2h6j", + "mandatory": false, + "CodeListReference": "l1f65uvw", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_FREQ_ENFLOG6 non renseigné", + "Expression": "isnull($PARENT_FREQ_ENFLOG6$) or $PARENT_FREQ_ENFLOG6$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lfrafx" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"A quelle fréquence \" || (if (nvl($PRENOM_ENFLOG6$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG6$) || \" est-\" || (if ($SEXE_ENFLOG6$=\"1\" or isnull($SEXE_ENFLOG6$)) then \"il\" else \"elle\") || \" en contact avec son autre parent ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lfnqiq", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"(en face à face, téléphone, mail, SMS, appel vidéo, etc.)\"", + "id": "l4lfskzd", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_FREQ_ENFLOG6" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8n28aup", + "id": "l8n23c9r", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_DORT_ENFLOG6 non renseigné", + "Expression": "isnull($PARENT_DORT_ENFLOG6$) or $PARENT_DORT_ENFLOG6$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8n1xwhm" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Arrive-t-il à \" || (if (nvl($PRENOM_ENFLOG6$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG6$) || \" de dormir chez son autre parent ?\"" + ], + "ClarificationQuestion": [], + "id": "l8n29jww", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_DORT_ENFLOG6" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8n1v5qt", + "id": "l8n23ghn", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_VECU_ENFLOG6 non renseigné", + "Expression": "isnull($PARENT_VECU_ENFLOG6$) or $PARENT_VECU_ENFLOG6$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8n1q43o" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Avez-vous déjà vécu avec l'autre parent de \" || (if (nvl($PRENOM_ENFLOG6$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG6$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l8n1p0yj", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_VECU_ENFLOG6" + }, + { + "Response": [ + { + "CollectedVariableReference": "la6ygrmz", + "id": "la6y43a4", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEP_AUT_PAR_ENFLOG6 non renseigné", + "Expression": "isnull($SEP_AUT_PAR_ENFLOG6$) or $SEP_AUT_PAR_ENFLOG6$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "la6y7qon" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Vous êtes-vous séparé\" || (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\") || \" de l'autre parent de \" || (if (nvl($PRENOM_ENFLOG6$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG6$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "la6y7ni0", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEP_AUT_PAR_ENFLOG6" + }, + { + "Response": [ + { + "CollectedVariableReference": "la6y0cbe", + "id": "l8n1lsvh", + "mandatory": false, + "CodeListReference": "kwqjqlpa", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "RESID_ENFLOG6 non renseigné", + "Expression": "isnull($RESID_ENFLOG6$) or $RESID_ENFLOG6$ =\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8n274s3" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel a été le mode de résidence fixé par décision de justice ?\"" + ], + "ClarificationQuestion": [], + "id": "l8n1u2kg", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "RESID_ENFLOG6" + }, + { + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFLOG6$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFLOG6$) || \" vit-\" || (if ($SEXE_ENFLOG6$=\"1\" or isnull($SEXE_ENFLOG6$)) then \"il\" else \"elle\") || \" aussi ailleurs ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "la6v9e5y", + "MappingTarget": "1" + }, + { + "MappingSource": "la6vmq5o", + "MappingTarget": "2" + }, + { + "MappingSource": "la6ven7z", + "MappingTarget": "3" + }, + { + "MappingSource": "la6vb73e", + "MappingTarget": "4" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "l59njrta" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "SANTE_ENFLOG6", + "Response": [ + { + "CollectedVariableReference": "la6v17x2", + "id": "la6v9e5y", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "la6uk2lz", + "id": "la6vmq5o", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "la6umbz1", + "id": "la6ven7z", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "la6uljbd", + "id": "la6vb73e", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SANTE_ENFLOG6 non renseigné", + "Expression": "(nvl($SANTE_ENFLOG61$, false) = false and \r\n nvl($SANTE_ENFLOG62$, false) = false and \r\n nvl($SANTE_ENFLOG63$, false) = false and\r\n nvl($SANTE_ENFLOG64$, false) = false)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8n2gg78" + }, + { + "post_collect": false, + "Description": "Non exclusif", + "Expression": "(nvl($SANTE_ENFLOG61$,false)=true and nvl($SANTE_ENFLOG64$,false)=true)\r\nor (nvl($SANTE_ENFLOG62$,false)=true and nvl($SANTE_ENFLOG64$,false)=true)\r\nor (nvl($SANTE_ENFLOG63$,false)=true and nvl($SANTE_ENFLOG64$,false)=true)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Vous ne pouvez pas cocher Non et une autre réponse.\"", + "id": "l9fm3297" + } + ], + "depth": 3, + "ClarificationQuestion": [], + "id": "l8n2hdgw", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Plusieurs réponses possibles\"", + "id": "l8n2ki4d", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + } + ], + "Name": "VOSENFLOG6" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "Votre septième enfant qui vit avec vous, même une petite partie du temps seulement" + ], + "id": "ljmvjzfz", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "l8n3vait", + "id": "l8n3v5q6", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PRENOM_ENFLOG7 non renseigné", + "Expression": "isnull($PRENOM_ENFLOG7$) or $PRENOM_ENFLOG7$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"", + "id": "l8n3mexd" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", comment s'appelle votre septième enfant qui vit avec vous, même une petite partie du temps seulement ?\"" + ], + "id": "l8n3pb4f", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PRENOM_ENFLOG7" + }, + { + "Response": [ + { + "CollectedVariableReference": "llgdp5xh", + "id": "l8n3szau", + "mandatory": false, + "CodeListReference": "llgbzo78", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEXE_ENFLOG7 non renseigné", + "Expression": "isnull($SEXE_ENFLOG7$) or $SEXE_ENFLOG7$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8n3rv4h" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel est le sexe de \" || (if (nvl($PRENOM_ENFLOG7$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG7$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l8n3mik2", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEXE_ENFLOG7" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln8wny08", + "id": "l8n3qluw", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ANAI_ENFLOG7 non renseigné", + "Expression": "isnull($ANAI_ENFLOG7$) or $ANAI_ENFLOG7$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"", + "id": "l8n3d3c5" + }, + { + "post_collect": false, + "Description": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "Expression": "not(isnull($ANAI_ENFLOG7$)) and not(isnull($ANAIS$)) and (cast($ANAIS$,integer) + 15 > cast($ANAI_ENFLOG7$,integer))\r\n\r\n", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "id": "l8slc4qq" + }, + { + "post_collect": false, + "Description": "\"L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "Expression": "not(isnull($ANAI_ENFLOG7$)) and not(isnull($ANAIS$)) and cast($ANAI_ENFLOG7$,integer) < cast($ANAIS$,integer)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "id": "l8slb5ng" + }, + { + "post_collect": false, + "Description": "bornes ANAI_ENFLOG7", + "Expression": " cast($ANAI_ENFLOG7$,integer) < 1920 or cast($ANAI_ENFLOG7$,integer) > 2024", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de naissance de votre enfant est comprise entre 1920 et 2024.\" ", + "id": "ln8wzpw2" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quelle est l'année de naissance de \" || (if (nvl($PRENOM_ENFLOG7$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG7$) || \" ?\"" + ], + "id": "l8n3jmk8", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "ANAI_ENFLOG7" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8n3hi4s", + "id": "l8n384e4", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NEFRANCE_ENFLOG7 non renseigné", + "Expression": "isnull($NEFRANCE_ENFLOG7$) or $NEFRANCE_ENFLOG7$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8n3cgby" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFLOG7$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFLOG7$) || \" est-\" || (if ($SEXE_ENFLOG7$=\"1\" or isnull($SEXE_ENFLOG7$)) then \"il né\" else \"elle née\") || \" en France ?\"" + ], + "ClarificationQuestion": [], + "id": "l8n36fv3", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Prenez en compte les frontières actuelles.\"", + "id": "l8n38zes", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "NEFRANCE_ENFLOG7" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8n3doff", + "id": "l8n3ns0y", + "mandatory": false, + "CodeListReference": "l44726g4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_VIT_ENFLOG7 non renseigné", + "Expression": "isnull($PARENT_VIT_ENFLOG7$) or $PARENT_VIT_ENFLOG7$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8n3k5i7" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"L'autre parent de \" || (if (nvl($PRENOM_ENFLOG7$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG7$) || \" vit-il/elle avec vous dans ce logement ?\"" + ], + "ClarificationQuestion": [], + "id": "l8n3ff6s", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_VIT_ENFLOG7" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8n3jy6y", + "id": "l8n3h6xz", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_FR_ENFLOG7 non renseigné", + "Expression": "isnull($PARENT_FR_ENFLOG7$) or $PARENT_FR_ENFLOG7$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8n37ctq" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"L'autre parent de \" || (if (nvl($PRENOM_ENFLOG7$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG7$) || \" vit-il/elle en France ?\"" + ], + "ClarificationQuestion": [], + "id": "l8n3b7uo", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Prenez en compte les frontières actuelles.\"", + "id": "l8n32k1l", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_FR_ENFLOG7" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvy6ybc", + "id": "llvz2fkv", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_DEP_ENFLOG7 non renseigné", + "Expression": "isnull($PARENT_DEP_ENFLOG7$) or $PARENT_DEP_ENFLOG7$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8n338j2" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel département vit l'autre parent de \" || (if (nvl($PRENOM_ENFLOG7$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG7$) || \" ?\"" + ], + "id": "l8n3fzap", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"", + "id": "l8n3j9rq", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PARENT_DEP_ENFLOG7" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvy2ddo", + "id": "llvyxcs0", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_COM_ENFLOG7 non renseigné", + "Expression": "isnull($PARENT_COM_ENFLOG7$) or $PARENT_COM_ENFLOG7$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8n3gw06" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quelle commune vit l'autre parent de \" || (if (nvl($PRENOM_ENFLOG7$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG7$) || \" ?\"" + ], + "id": "l8n3485v", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez la commune recherchée et sélectionnez la dans la liste.\"", + "id": "l8n33lad", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PARENT_COM_ENFLOG7" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvy83kg", + "id": "llvz5jsq", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_PAY_ENFLOG7 non renseigné", + "Expression": "isnull($PARENT_PAY_ENFLOG7$) or $PARENT_PAY_ENFLOG7$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8n31fdb" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel pays vit l'autre parent de \" || (if (nvl($PRENOM_ENFLOG7$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG7$) || \" ?\"" + ], + "id": "l8n3burz", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"", + "id": "l8n2z0lq", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PARENT_PAY_ENFLOG7" + }, + { + "Response": [ + { + "CollectedVariableReference": "lij14x5q", + "id": "l8n37thq", + "mandatory": false, + "CodeListReference": "l1f65uvw", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_FREQ_ENFLOG7 non renseigné", + "Expression": "isnull($PARENT_FREQ_ENFLOG7$) or $PARENT_FREQ_ENFLOG7$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8n333iw" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"A quelle fréquence \" || (if (nvl($PRENOM_ENFLOG7$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG7$) || \" est-\" || (if ($SEXE_ENFLOG7$=\"1\" or isnull($SEXE_ENFLOG7$)) then \"il\" else \"elle\") || \" en contact avec son autre parent ?\"" + ], + "ClarificationQuestion": [], + "id": "l8n32xk9", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"(en face à face, téléphone, mail, SMS, appel vidéo, etc.)\"", + "id": "l8n3gpec", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_FREQ_ENFLOG7" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8n2ve3t", + "id": "l8n348ci", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_DORT_ENFLOG7 non renseigné", + "Expression": "isnull($PARENT_DORT_ENFLOG7$) or $PARENT_DORT_ENFLOG7$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8n3b70m" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Arrive-t-il à \" || (if (nvl($PRENOM_ENFLOG7$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG7$) || \" de dormir chez son autre parent ?\"" + ], + "ClarificationQuestion": [], + "id": "l8n2x7q4", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_DORT_ENFLOG7" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8n2x63v", + "id": "l8n3c8ra", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_VECU_ENFLOG7 non renseigné", + "Expression": "isnull($PARENT_VECU_ENFLOG7$) or $PARENT_VECU_ENFLOG7$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8n2yj4v" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Avez-vous déjà vécu avec l'autre parent de \" || (if (nvl($PRENOM_ENFLOG7$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG7$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l8n3ary8", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_VECU_ENFLOG7" + }, + { + "Response": [ + { + "CollectedVariableReference": "la6ya7r2", + "id": "la6y48t7", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEP_AUT_PAR_ENFLOG7 non renseigné", + "Expression": "isnull($SEP_AUT_PAR_ENFLOG7$) or $SEP_AUT_PAR_ENFLOG7$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "la6y94i0" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Vous êtes-vous séparé\" || (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\") || \" de l'autre parent de \" || (if (nvl($PRENOM_ENFLOG7$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG7$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "la6y542q", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEP_AUT_PAR_ENFLOG7" + }, + { + "Response": [ + { + "CollectedVariableReference": "la6yfv2n", + "id": "l8n38vu9", + "mandatory": false, + "CodeListReference": "kwqjqlpa", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "RESID_ENFLOG7 non renseigné", + "Expression": "isnull($RESID_ENFLOG7$) or $RESID_ENFLOG7$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"\r\n", + "id": "l8n3a58w" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel a été le mode de résidence fixé par décision de justice ?\"" + ], + "ClarificationQuestion": [], + "id": "l8n2t39d", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "RESID_ENFLOG7" + }, + { + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFLOG7$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFLOG7$) || \" vit-\" || (if ($SEXE_ENFLOG7$=\"1\" or isnull($SEXE_ENFLOG7$)) then \"il\" else \"elle\") || \" aussi ailleurs ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "la6vdrq8", + "MappingTarget": "1" + }, + { + "MappingSource": "la6vbh88", + "MappingTarget": "2" + }, + { + "MappingSource": "la6vk4x5", + "MappingTarget": "3" + }, + { + "MappingSource": "la6vnbtp", + "MappingTarget": "4" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "l59njrta" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "SANTE_ENFLOG7", + "Response": [ + { + "CollectedVariableReference": "la6ut660", + "id": "la6vdrq8", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "la6v2yh2", + "id": "la6vbh88", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "la6uid9q", + "id": "la6vk4x5", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "la6umgx0", + "id": "la6vnbtp", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SANTE_ENFLOG7 non renseigné", + "Expression": "(nvl($SANTE_ENFLOG71$, false) = false and \r\n nvl($SANTE_ENFLOG72$, false) = false and \r\n nvl($SANTE_ENFLOG73$, false) = false and\r\n nvl($SANTE_ENFLOG74$, false) = false)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8n3jk1i" + }, + { + "post_collect": false, + "Description": "Non exclusif", + "Expression": "(nvl($SANTE_ENFLOG71$,false)=true and nvl($SANTE_ENFLOG74$,false)=true)\r\nor (nvl($SANTE_ENFLOG72$,false)=true and nvl($SANTE_ENFLOG74$,false)=true)\r\nor (nvl($SANTE_ENFLOG73$,false)=true and nvl($SANTE_ENFLOG74$,false)=true)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Vous ne pouvez pas cocher Non et une autre réponse.\"", + "id": "l9fm31g0" + } + ], + "depth": 3, + "ClarificationQuestion": [], + "id": "l8n3bp4o", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Plusieurs réponses possibles\"", + "id": "l8n3q1k1", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + } + ], + "Name": "VOSENFLOG7" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "Votre huitième enfant qui vit avec vous, même une petite partie du temps seulement" + ], + "id": "ljmvnzv4", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "l8n49za1", + "id": "l8n40opx", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PRENOM_ENFLOG8 non renseigné", + "Expression": "isnull($PRENOM_ENFLOG8$) or $PRENOM_ENFLOG8$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"", + "id": "l8n46aad" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", comment s'appelle votre huitième enfant qui vit avec vous, même une petite partie du temps seulement ?\"" + ], + "id": "l8n4cayp", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PRENOM_ENFLOG8" + }, + { + "Response": [ + { + "CollectedVariableReference": "llge0ibj", + "id": "l8n4es1f", + "mandatory": false, + "CodeListReference": "llgbzo78", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEXE_ENFLOG8 non renseigné", + "Expression": "isnull($SEXE_ENFLOG8$) or $SEXE_ENFLOG8$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8n4enrl" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel est le sexe de \" || (if (nvl($PRENOM_ENFLOG8$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG8$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l8n406m9", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEXE_ENFLOG8" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln8x2bub", + "id": "l8n414mk", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ANAI_ENFLOG8 non renseigné", + "Expression": "isnull($ANAI_ENFLOG8$) or $ANAI_ENFLOG8$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"", + "id": "l8n4143w" + }, + { + "post_collect": false, + "Description": "\"L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "Expression": "not(isnull($ANAI_ENFLOG8$)) and not(isnull($ANAIS$)) and cast($ANAI_ENFLOG8$,integer) < cast($ANAIS$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "id": "l8slf3dx" + }, + { + "post_collect": false, + "Description": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "Expression": "not(isnull($ANAI_ENFLOG8$)) and not(isnull($ANAIS$)) and (cast($ANAIS$,integer) + 15 > cast($ANAI_ENFLOG8$,integer))", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "id": "l8sl7h9m" + }, + { + "post_collect": false, + "Description": "bornes ANAI_ENFLOG8", + "Expression": "cast($ANAI_ENFLOG8$,integer) < 1920 or cast($ANAI_ENFLOG8$,integer) > 2024", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de naissance de votre enfant est comprise entre 1920 et 2024.\" ", + "id": "ln8wp1kd" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quelle est l'année de naissance de \" || (if (nvl($PRENOM_ENFLOG8$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG8$) || \" ?\"" + ], + "id": "l8n3tya0", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "ANAI_ENFLOG8" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8n457wa", + "id": "l8n49n0l", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NEFRANCE_ENFLOG8 non renseigné", + "Expression": "isnull($NEFRANCE_ENFLOG8$) or $NEFRANCE_ENFLOG8$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8n3rtgn" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFLOG8$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFLOG8$) || \" est-\" || (if ($SEXE_ENFLOG8$=\"1\" or isnull($SEXE_ENFLOG8$)) then \"il né\" else \"elle née\") || \" en France ?\"" + ], + "ClarificationQuestion": [], + "id": "l8n3vr8b", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Prenez en compte les frontières actuelles.\"", + "id": "l8n3xl10", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "NEFRANCE_ENFLOG8" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8n3v3du", + "id": "l8n40s7s", + "mandatory": false, + "CodeListReference": "l44726g4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_VIT_ENFLOG8 non renseigné", + "Expression": "isnull($PARENT_VIT_ENFLOG8$) or $PARENT_VIT_ENFLOG8$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8n3xfl6" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"L'autre parent de \" || (if (nvl($PRENOM_ENFLOG8$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG8$) || \" vit-il/elle avec vous dans ce logement ?\"" + ], + "ClarificationQuestion": [], + "id": "l8n427a2", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_VIT_ENFLOG8" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8n3ocrc", + "id": "l8n3z6kp", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_FR_ENFLOG8 non renseigné", + "Expression": "isnull($PARENT_FR_ENFLOG8$) or $PARENT_FR_ENFLOG8$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8n3sbpu" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"L'autre parent de \" || (if (nvl($PRENOM_ENFLOG8$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG8$) || \" vit-il/elle en France ?\"" + ], + "ClarificationQuestion": [], + "id": "l8n41hvu", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Prenez en compte les frontières actuelles.\"", + "id": "l8n3m622", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_FR_ENFLOG8" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvy6byb", + "id": "llvz93ha", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_DEP_ENFLOG8 non renseigné", + "Expression": "isnull($PARENT_DEP_ENFLOG8$) or $PARENT_DEP_ENFLOG8$=\"\" ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8n3v2mh" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel département vit l'autre parent de \" || (if (nvl($PRENOM_ENFLOG8$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG8$) || \" ?\"" + ], + "id": "l8n41c78", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"", + "id": "l8n3q2xj", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PARENT_DEP_ENFLOG8" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvxyo73", + "id": "llvyt2m9", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_COM_ENFLOG8 non renseigné", + "Expression": "isnull($PARENT_COM_ENFLOG8$) or $PARENT_COM_ENFLOG8$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8n40uqk" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quelle commune vit l'autre parent de \" || (if (nvl($PRENOM_ENFLOG8$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG8$) || \" ?\"" + ], + "id": "l8n3tbmd", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez la commune recherchée et sélectionnez la dans la liste.\"", + "id": "l8n3z556", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PARENT_COM_ENFLOG8" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvy74id", + "id": "llvyxwit", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_PAY_ENFLOG8 non renseigné", + "Expression": "isnull($PARENT_PAY_ENFLOG8$) or $PARENT_PAY_ENFLOG8$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8n3yrqs" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel pays vit l'autre parent de \" || (if (nvl($PRENOM_ENFLOG8$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG8$) || \" ?\"" + ], + "id": "l8n40r7t", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"", + "id": "l8n3kcnq", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PARENT_PAY_ENFLOG8" + }, + { + "Response": [ + { + "CollectedVariableReference": "lij1njlj", + "id": "l8n40f43", + "mandatory": false, + "CodeListReference": "l1f65uvw", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_FREQ_ENFLOG8 non renseigné", + "Expression": "isnull($PARENT_FREQ_ENFLOG8$) or $PARENT_FREQ_ENFLOG8$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8n405fs" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"A quelle fréquence \" || (if (nvl($PRENOM_ENFLOG8$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG8$) || \" est-\" || (if ($SEXE_ENFLOG8$=\"1\" or isnull($SEXE_ENFLOG8$)) then \"il\" else \"elle\") || \" en contact avec son autre parent ?\"" + ], + "ClarificationQuestion": [], + "id": "l8n3fpp7", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"(en face à face, téléphone, mail, SMS, appel vidéo, etc.)\"", + "id": "l8n3wl31", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_FREQ_ENFLOG8" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8n3jswg", + "id": "l8n3tomk", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_DORT_ENFLOG8 non renseigné", + "Expression": "isnull($PARENT_DORT_ENFLOG8$) or $PARENT_DORT_ENFLOG8$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8n3md6h" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Arrive-t-il à \" || (if (nvl($PRENOM_ENFLOG8$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG8$) || \" de dormir chez son autre parent ?\"" + ], + "ClarificationQuestion": [], + "id": "l8n3xb0z", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_DORT_ENFLOG8" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8n3v5ev", + "id": "l8n3nqy3", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_VECU_ENFLOG8 non renseigné", + "Expression": "isnull($PARENT_VECU_ENFLOG8$) or $PARENT_VECU_ENFLOG8$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8n3guld" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Avez-vous déjà vécu avec l'autre parent de \" || (if (nvl($PRENOM_ENFLOG8$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG8$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l8n3tjlw", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_VECU_ENFLOG8" + }, + { + "Response": [ + { + "CollectedVariableReference": "la6vczh4", + "id": "la6v9lhg", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEP_AUT_PAR_ENFLOG8 non renseigné", + "Expression": "isnull($SEP_AUT_PAR_ENFLOG8$) or $SEP_AUT_PAR_ENFLOG8$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "la6vmoji" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Vous êtes-vous séparé\" || (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\") || \" de l'autre parent de \" || (if (nvl($PRENOM_ENFLOG8$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFLOG8$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "la6v947r", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEP_AUT_PAR_ENFLOG8" + }, + { + "Response": [ + { + "CollectedVariableReference": "la6v4m86", + "id": "l8n3iyus", + "mandatory": false, + "CodeListReference": "kwqjqlpa", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "RESID_ENFLOG8 non renseigné", + "Expression": "isnull($RESID_ENFLOG8$) or $RESID_ENFLOG8$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8n3qd0h" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel a été le mode de résidence fixé par décision de justice ?\"" + ], + "ClarificationQuestion": [], + "id": "l8n3ocd5", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "RESID_ENFLOG8" + }, + { + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFLOG8$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFLOG8$) || \" vit-\" || (if ($SEXE_ENFLOG8$=\"1\" or isnull($SEXE_ENFLOG8$)) then \"il\" else \"elle\") || \" aussi ailleurs ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "la6vbpmh", + "MappingTarget": "1" + }, + { + "MappingSource": "la6vpud7", + "MappingTarget": "2" + }, + { + "MappingSource": "la6vmmu5", + "MappingTarget": "3" + }, + { + "MappingSource": "la6vp6s1", + "MappingTarget": "4" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "l59njrta" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "SANTE_ENFLOG8", + "Response": [ + { + "CollectedVariableReference": "la6un8uv", + "id": "la6vbpmh", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "la6un3h5", + "id": "la6vpud7", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "la6unudc", + "id": "la6vmmu5", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "la6utz4u", + "id": "la6vp6s1", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SANTE_ENFLOG8 non renseigné", + "Expression": "(nvl($SANTE_ENFLOG81$, false) = false and \r\n nvl($SANTE_ENFLOG82$, false) = false and \r\n nvl($SANTE_ENFLOG83$, false) = false and\r\n nvl($SANTE_ENFLOG84$, false) = false)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8n3vqib" + }, + { + "post_collect": false, + "Description": "Non exclusif", + "Expression": "(nvl($SANTE_ENFLOG81$,false)=true and nvl($SANTE_ENFLOG84$,false)=true)\r\nor (nvl($SANTE_ENFLOG82$,false)=true and nvl($SANTE_ENFLOG84$,false)=true)\r\nor (nvl($SANTE_ENFLOG83$,false)=true and nvl($SANTE_ENFLOG84$,false)=true)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Vous ne pouvez pas cocher Non et une autre réponse.\"", + "id": "l9fmej6f" + } + ], + "depth": 3, + "ClarificationQuestion": [], + "id": "l8n3uqr2", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Plusieurs réponses possibles\"", + "id": "l8n4a6u7", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + } + ], + "Name": "VOSENFLOG8" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "\"Votre premier enfant qui ne vit pas avec vous ou qui est décédé\"" + ], + "id": "l447aq23", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "if cast($CBENFAIL$,integer)=1 then \"Décrivez votre enfant qui ne vit pas avec vous ou qui est décédé.\" else \"Décrivez votre premier enfant qui ne vit pas avec vous ou qui est décédé, en commençant par l'aîné.\"", + "id": "l447etvc", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + }, + { + "declarationType": "HELP", + "Text": "if cast($CBENFAIL$, integer)>8 then \"Décrivez seulement les 8 plus âgés.\" else \"\"", + "id": "l4pjmysh", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "l4ie7fv4", + "id": "l4idueaa", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PRENOM_ENFAIL1 non renseigné", + "Expression": "isnull($PRENOM_ENFAIL1$) or $PRENOM_ENFAIL1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"", + "id": "l4idy7z1" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", comment s'appelle \" || (if ($CBENFAIL$ = 1 or isnull($CBENFAIL$)) then \"votre enfant qui ne vit pas avec vous ou qui est décédé ?\" else \"votre premier enfant qui ne vit pas avec vous ou qui est décédé ?\")" + ], + "id": "l4idug6p", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PRENOM_ENFAIL1" + }, + { + "Response": [ + { + "CollectedVariableReference": "llge79j7", + "id": "kwqixdic", + "mandatory": false, + "CodeListReference": "llgbzo78", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEXE_ENFAIL1 non renseigné", + "Expression": "isnull($SEXE_ENFAIL1$) or $SEXE_ENFAIL1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l447iivr" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel est le sexe de \" || (if (nvl($PRENOM_ENFAIL1$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL1$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "kwqix1j5", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEXE_ENFAIL1" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln8x1qse", + "id": "kwqj8zg8", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ANAI_ENFAIL1 non renseigné", + "Expression": "isnull($ANAI_ENFAIL1$) or $ANAI_ENFAIL1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"", + "id": "l447hjxt" + }, + { + "post_collect": false, + "Description": "\"L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "Expression": "not(isnull($ANAI_ENFAIL1$)) and not(isnull($ANAIS$)) and cast($ANAI_ENFAIL1$,integer) < cast($ANAIS$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "id": "l84kabe1" + }, + { + "post_collect": false, + "Description": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "Expression": "not(isnull($ANAI_ENFAIL1$)) and not(isnull($ANAIS$)) and (cast($ANAIS$,integer) + 15 > cast($ANAI_ENFAIL1$,integer))", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "id": "l8slbfdg" + }, + { + "post_collect": false, + "Description": "bornes ANAI_ENFAIL1", + "Expression": "cast($ANAI_ENFAIL1$,integer) < 1920 or cast($ANAI_ENFAIL1$,integer) > 2024", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de naissance de votre enfant est comprise entre 1920 et 2024.\" ", + "id": "ln8x1vsn" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quelle est l'année de naissance de \" || (if (nvl($PRENOM_ENFAIL1$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL1$) || \" ?\"" + ], + "id": "kwqj561a", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "ANAI_ENFAIL1" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4ie15d7", + "id": "l4cjenl6", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NEFRANCE_ENFAIL1 non renseigné", + "Expression": "isnull($NEFRANCE_ENFAIL1$) or $NEFRANCE_ENFAIL1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4cjq8u9" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL1$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL1$) || \" est-\" || (if ($SEXE_ENFAIL1$=\"1\" or isnull($SEXE_ENFAIL1$)) then \"il né\" else \"elle née\") || \" en France ?\"" + ], + "ClarificationQuestion": [], + "id": "l4cjlk0i", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Prenez en compte les frontières actuelles.\"", + "id": "l4p9roph", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "NEFRANCE_ENFAIL1" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4idrbnq", + "id": "l4cjvm0q", + "mandatory": false, + "CodeListReference": "l44726g4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_VIT_ENFAIL1 non renseigné", + "Expression": "isnull($PARENT_VIT_ENFAIL1$) or $PARENT_VIT_ENFAIL1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4cjjhpb" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"L'autre parent de \" || (if (nvl($PRENOM_ENFAIL1$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL1$) || \" vit-il/elle avec vous ?\"" + ], + "ClarificationQuestion": [], + "id": "l4cjivdg", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_VIT_ENFAIL1" + }, + { + "Response": [ + { + "CollectedVariableReference": "l9dv2jor", + "id": "l8lzmjqf", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_VECU_ENFAIL1 non renseigné", + "Expression": "isnull($PARENT_VECU_ENFAIL1$) or $PARENT_VECU_ENFAIL1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8lzk9bd" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Avez-vous déjà vécu avec l'autre parent de \" || (if (nvl($PRENOM_ENFAIL1$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL1$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l8lzt19v", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_VECU_ENFAIL1" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8k9yqfn", + "id": "l4484mb2", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "DC_ENFAIL1 non renseigné", + "Expression": "isnull($DC_ENFAIL1$) or $DC_ENFAIL1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l48djc0p" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL1$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL1$) || \" est-\" || if ($SEXE_ENFAIL1$=\"1\" or isnull($SEXE_ENFAIL1$)) then \"il encore en vie ?\" else \"elle encore en vie ?\"" + ], + "ClarificationQuestion": [], + "id": "l4485tkr", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "DC_ENFAIL1" + }, + { + "Response": [ + { + "CollectedVariableReference": "lnbxg7f8", + "id": "kwqk5oby", + "mandatory": false, + "Datatype": { + "Maximum": "95", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "AG_DC_ENFAIL1 non renseigné", + "Expression": "isnull($AG_DC_ENFAIL1$) or $AG_DC_ENFAIL1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu.\"", + "id": "l447wnva" + }, + { + "post_collect": false, + "Description": "\"L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge.\" ", + "Expression": "not(isnull($AG_ENFAIL1$)) and not (isnull($AG_DC_ENFAIL1$)) and cast($AG_DC_ENFAIL1$,integer) > cast($AG_ENFAIL1$,integer)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge.\" ", + "id": "lnbwzobc" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"A quel âge \" || (if (nvl($PRENOM_ENFAIL1$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL1$) || \" est-\" || if ($SEXE_ENFAIL1$=\"1\" or isnull($SEXE_ENFAIL1$)) then \"il décédé ?\" else \"elle décédée ?\"" + ], + "id": "kwqkh05l", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Notez 0 si \"||(if(nvl(PRENOM_ENFAIL1,\"\") = \"\") then \"cet enfant\" else PRENOM_ENFAIL1) || (\" est\") || (if (SEXE_ENFAIL1 = \"1\" or nvl(SEXE_ENFAIL1,\"\") = \"\") then \" décédé\" else \" décédée\") || (\" avant un an.\")", + "id": "l2eizvoe", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "AG_DC_ENFAIL1" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8ojiby4", + "id": "kwqkjt71", + "mandatory": false, + "Datatype": { + "Maximum": "95", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "AG_DEPART_ENFAIL1 non renseigné", + "Expression": "isnull($AG_DEPART_ENFAIL1$) or $AG_DEPART_ENFAIL1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu.\"", + "id": "l447y7nq" + }, + { + "post_collect": false, + "Description": "\"L'âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge.\"", + "Expression": "not(isnull($AG_DEPART_ENFAIL1$)) and not(isnull($ANAI_ENFAIL1$)) and $AG_DEPART_ENFAIL1$ > $AG_ENFAIL1$", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge.\"", + "id": "lbpkcqzz" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"A quel âge environ \" || (if (nvl($PRENOM_ENFAIL1$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL1$) || \" a-t-\" || (if ($SEXE_ENFAIL1$=\"1\" or isnull($SEXE_ENFAIL1$)) then \"il \" else \"elle\") || \" cessé de vivre avec vous ?\"" + ], + "id": "kwqk3ki3", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "AG_DEPART_ENFAIL1" + }, + { + "Response": [ + { + "CollectedVariableReference": "lij1et9t", + "id": "l34h1xd0", + "mandatory": false, + "CodeListReference": "l1f65uvw", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_FREQ_ENFAIL1 non renseigné", + "Expression": "isnull($PARENT_FREQ_ENFAIL1$) or $PARENT_FREQ_ENFAIL1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4483k6t" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"A quelle fréquence êtes-vous en contact avec \" || (if (nvl($PRENOM_ENFAIL1$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL1$) || \" ? \"" + ], + "ClarificationQuestion": [], + "id": "kwqkmusz", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"(en face à face, téléphone, mail, SMS, appel vidéo, etc.)\"", + "id": "l4483m6s", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_FREQ_ENFAIL1" + }, + { + "Response": [ + { + "CollectedVariableReference": "lai72f8d", + "id": "l48dyt79", + "mandatory": false, + "CodeListReference": "l4onk0te", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "FR_ENFAIL1 non renseigné", + "Expression": "isnull($FR_ENFAIL1$) or $FR_ENFAIL1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l447x5eq" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL1$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL1$) || \" vit-\" || (if ($SEXE_ENFAIL1$=\"1\" or isnull($SEXE_ENFAIL1$)) then \"il \" else \"elle \") || \"en France actuellement ?\"" + ], + "ClarificationQuestion": [], + "id": "kwqjp9yr", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Prenez en compte les frontières actuelles.\"", + "id": "lai6xcya", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "FR_ENFAIL1" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvylz7b", + "id": "llvz9m81", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "DEP_ENFAIL1", + "Expression": "isnull($DEP_ENFAIL1$) or $DEP_ENFAIL1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4onvq4b" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel département vit \" || (if (nvl($PRENOM_ENFAIL1$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL1$) || \" ?\"" + ], + "id": "l4onskib", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"", + "id": "l4paafoh", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "DEP_ENFAIL1" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvycj4j", + "id": "llvyydq0", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "COM_ENFAIL1 non renseigné", + "Expression": "isnull($COM_ENFAIL1$) or $COM_ENFAIL1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4oo2o50" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quelle commune vit \" || (if (nvl($PRENOM_ENFAIL1$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL1$) || \" ?\"" + ], + "id": "l4onsq99", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez la commune recherchée et sélectionnez la dans la liste.\"", + "id": "l4pap0it", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "COM_ENFAIL1" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvyajtl", + "id": "llvyw05u", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PAY_ENFAIL1 non renseigné ", + "Expression": "isnull($PAY_ENFAIL1$) or $PAY_ENFAIL1$ =\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4onxzwz" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel pays vit \" || (if (nvl($PRENOM_ENFAIL1$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL1$) || \" ?\"" + ], + "id": "l4onsf7y", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"", + "id": "l4panc40", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PAY_ENFAIL1" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4ie8a4z", + "id": "kwqkfnsx", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "LOG_ENFAIL1 non renseigné", + "Expression": "isnull($LOG_ENFAIL1$) or $LOG_ENFAIL1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l447q42c" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL1$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL1$) || \" vit-\" || (if ($SEXE_ENFAIL1$=\"1\" or isnull($SEXE_ENFAIL1$)) then \"il \" else \"elle \") || \" dans son propre logement ?\"" + ], + "ClarificationQuestion": [], + "id": "kwqk3a58", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "LOG_ENFAIL1" + }, + { + "Response": [ + { + "CollectedVariableReference": "l5ilmykd", + "id": "l4483bnv", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "AUT_PAR_ENFAIL1 non renseigné", + "Expression": "isnull($AUT_PAR_ENFAIL1$) or $AUT_PAR_ENFAIL1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l448l5i1" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL1$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL1$) || \" vit-\"|| (if ($SEXE_ENFAIL1$=\"1\" or isnull($SEXE_ENFAIL1$)) then \"il \" else \"elle \") || \"chez son autre parent ?\"" + ], + "ClarificationQuestion": [], + "id": "l44849iu", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "AUT_PAR_ENFAIL1" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4iec3iy", + "id": "l1gkylst", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "DORT_ENFAIL1 non renseigné", + "Expression": "isnull($DORT_ENFAIL1$) or $DORT_ENFAIL1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l446w3l5" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Arrive-t-il à \" || (if (nvl($PRENOM_ENFAIL1$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL1$) || \" de dormir chez vous ?\"" + ], + "ClarificationQuestion": [], + "id": "kwqj7xh6", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "DORT_ENFAIL1" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4o7a7kk", + "id": "l4o73ai5", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEP_AUT_PAR_ENFAIL1 non renseigné", + "Expression": "isnull($SEP_AUT_PAR_ENFAIL1$) or $SEP_AUT_PAR_ENFAIL1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4o7e7o3" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Vous êtes-vous séparé\" || (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\") || \" de l'autre parent de \" || (if (nvl($PRENOM_ENFAIL1$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL1$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l4o74e6d", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEP_AUT_PAR_ENFAIL1" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4o7msxb", + "id": "l1gkaoki", + "mandatory": false, + "CodeListReference": "l448z131", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "RESID_ENFAIL1 non renseigné", + "Expression": "isnull($RESID_ENFAIL1$) or $RESID_ENFAIL1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l448ssr6" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel a été le mode de résidence fixé par décision de justice ?\"" + ], + "ClarificationQuestion": [], + "id": "l1gknpsx", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "RESID_ENFAIL1" + }, + { + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL1$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL1$) || \" vit-\" || (if ($SEXE_ENFAIL1$=\"1\" or isnull($SEXE_ENFAIL1$)) then \"il \" else \"elle \") || \"ailleurs que chez vous ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "lagyu6fp", + "MappingTarget": "1" + }, + { + "MappingSource": "lagyjdla", + "MappingTarget": "2" + }, + { + "MappingSource": "lagydkrl", + "MappingTarget": "3" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "l8sqimbm" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "SANTE_ENFAIL1", + "Response": [ + { + "CollectedVariableReference": "lagwrj5e", + "id": "lagyu6fp", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lagwgqxb", + "id": "lagyjdla", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lagwrywk", + "id": "lagydkrl", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SANTE_ENFAIL1 non renseigné", + "Expression": "(nvl($SANTE_ENFAIL11$, false) = false and \r\n nvl($SANTE_ENFAIL12$, false) = false and \r\n nvl($SANTE_ENFAIL13$, false) = false )\r\n", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4489kw3" + } + ], + "depth": 3, + "ClarificationQuestion": [], + "id": "l1gi8vrf", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Plusieurs réponses possibles\"", + "id": "l59ny4to", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + } + ], + "Name": "VOSENFAIL1" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "\"Votre deuxième enfant qui ne vit pas avec vous ou qui est décédé\"" + ], + "id": "ljmwx9yl", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "l4lg2nk3", + "id": "l4lg294k", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PRENOM_ENFAIL2 non renseigné", + "Expression": "isnull($PRENOM_ENFAIL2$) or $PRENOM_ENFAIL2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"", + "id": "l4lg4t3w" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", comment s'appelle votre deuxième enfant qui ne vit pas avec vous ou qui est décédé ?\"" + ], + "id": "l4lg1tus", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PRENOM_ENFAIL2" + }, + { + "Response": [ + { + "CollectedVariableReference": "llgjk2nm", + "id": "l4lg3zcd", + "mandatory": false, + "CodeListReference": "llgbzo78", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEXE_ENFAIL2 non renseigné", + "Expression": "isnull($SEXE_ENFAIL2$) or $SEXE_ENFAIL2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lg8ljq" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel est le sexe de \" || (if (nvl($PRENOM_ENFAIL2$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL2$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lgd8bs", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEXE_ENFAIL2" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln8x5qdi", + "id": "l4lg7r84", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ANAI_ENFAIL2 non renseigné", + "Expression": "isnull($ANAI_ENFAIL2$) or $ANAI_ENFAIL2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"", + "id": "l4lgo55x" + }, + { + "post_collect": false, + "Description": "\"L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "Expression": "not(isnull($ANAI_ENFAIL2$)) and not(isnull($ANAIS$)) and cast($ANAI_ENFAIL2$,integer) < cast($ANAIS$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "id": "l84k4b33" + }, + { + "post_collect": false, + "Description": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "Expression": "not(isnull($ANAI_ENFAIL2$)) and not(isnull($ANAIS$)) and (cast($ANAIS$,integer) + 15 > cast($ANAI_ENFAIL2$,integer))", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "id": "l8sl43qt" + }, + { + "post_collect": false, + "Description": "bornes ANAI_ENFAIL2", + "Expression": "cast($ANAI_ENFAIL2$,integer) < 1920 or cast($ANAI_ENFAIL2$,integer) > 2024", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de naissance de votre enfant est comprise entre 1920 et 2024.\" ", + "id": "ln8xb351" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quelle est l'année de naissance de \" || (if (nvl($PRENOM_ENFAIL2$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL2$) || \" ?\"" + ], + "id": "l4lgjbi8", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "ANAI_ENFAIL2" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4lh0ajb", + "id": "l4lgmy6a", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NEFRANCE_ENFAIL2 non renseigné", + "Expression": "isnull($NEFRANCE_ENFAIL2$) or $NEFRANCE_ENFAIL2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lgnsa3" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL2$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL2$) || \" est-\" || (if ($SEXE_ENFAIL2$=\"1\" or isnull($SEXE_ENFAIL2$)) then \"il né\" else \"elle née\") || \" en France ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lgtwy7", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Prenez en compte les frontières actuelles.\"", + "id": "l4p9xwnx", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "NEFRANCE_ENFAIL2" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4lgwsqm", + "id": "l4lgpvm2", + "mandatory": false, + "CodeListReference": "l44726g4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_VIT_ENFAIL2 non renseigné", + "Expression": "isnull($PARENT_VIT_ENFAIL2$) or $PARENT_VIT_ENFAIL2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lgvr16" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"L'autre parent de \" || (if (nvl($PRENOM_ENFAIL2$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL2$) || \" vit-il/elle avec vous ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lgqbdk", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_VIT_ENFAIL2" + }, + { + "Response": [ + { + "CollectedVariableReference": "l9dvg123", + "id": "l8m05h5g", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_VECU_ENFAIL2 non renseigné", + "Expression": "isnull($PARENT_VECU_ENFAIL2$) or $PARENT_VECU_ENFAIL2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8m00qw7" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Avez-vous déjà vécu avec l'autre parent de \" || (if (nvl($PRENOM_ENFAIL2$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL2$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l8lzthqx", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_VECU_ENFAIL2" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4lh4wfw", + "id": "l4lgv2yw", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "DC_ENFAIL2 non renseigné", + "Expression": "isnull($DC_ENFAIL2$) or $DC_ENFAIL2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lh8q6f" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL2$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL2$) || \" est-\" || if ($SEXE_ENFAIL2$=\"1\" or isnull($SEXE_ENFAIL2$)) then \"il encore en vie ?\" else \"elle encore en vie ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lh1bvw", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "DC_ENFAIL2" + }, + { + "Response": [ + { + "CollectedVariableReference": "lnbxmgjx", + "id": "l4lhgfos", + "mandatory": false, + "Datatype": { + "Maximum": "95", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "AG_DC_ENFAIL2 non renseigné", + "Expression": "isnull($AG_DC_ENFAIL2$) or $AG_DC_ENFAIL2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu.\"", + "id": "l4lhaz60" + }, + { + "post_collect": false, + "Description": "\"L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge.\"", + "Expression": "not(isnull($AG_ENFAIL2$)) and not (isnull($AG_DC_ENFAIL2$)) and cast($AG_DC_ENFAIL2$,integer) > cast($AG_ENFAIL2$,integer)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge.\"", + "id": "lnbxadfk" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"A quel âge \" || (if (nvl($PRENOM_ENFAIL2$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL2$) || \" est-\" || if ($SEXE_ENFAIL2$=\"1\" or isnull($SEXE_ENFAIL2$)) then \"il décédé ?\" else \"elle décédée ?\"" + ], + "id": "l4lhc03p", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Notez 0 si \"||(if(nvl(PRENOM_ENFAIL2,\"\") = \"\") then \"cet enfant\" else PRENOM_ENFAIL2) || (\" est\") || (if (SEXE_ENFAIL2 = \"1\" or nvl(SEXE_ENFAIL2,\"\") = \"\") then \" décédé\" else \" décédée\") || (\" avant un an.\")", + "id": "l4lh6w99", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "AG_DC_ENFAIL2" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8ojxve4", + "id": "l4lhq38m", + "mandatory": false, + "Datatype": { + "Maximum": "95", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "AG_DEPART_ENFAIL2 non renseigné", + "Expression": "isnull($AG_DEPART_ENFAIL2$) or $AG_DEPART_ENFAIL2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu.\"", + "id": "l4lhfwjm" + }, + { + "post_collect": false, + "Description": "\"L'âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge.\"", + "Expression": "not(isnull($AG_DEPART_ENFAIL2$)) and not(isnull($ANAI_ENFAIL2$)) and $AG_DEPART_ENFAIL2$ > $AG_ENFAIL2$", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge.\"", + "id": "lbpjzrl8" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"A quel âge environ \" || (if (nvl($PRENOM_ENFAIL2$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL2$) || \" a-t-\" || (if ($SEXE_ENFAIL2$=\"1\" or isnull($SEXE_ENFAIL2$)) then \"il\" else \"elle\") || \" cessé de vivre avec vous ?\"" + ], + "id": "l4lhkbmw", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "AG_DEPART_ENFAIL2" + }, + { + "Response": [ + { + "CollectedVariableReference": "lij1my05", + "id": "l4lj9ipw", + "mandatory": false, + "CodeListReference": "l1f65uvw", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_FREQ_ENFAIL2 non renseigné", + "Expression": "isnull($PARENT_FREQ_ENFAIL2$) or $PARENT_FREQ_ENFAIL2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4ljalnf" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"A quelle fréquence êtes-vous en contact avec \" || (if (nvl($PRENOM_ENFAIL2$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL2$) || \" ? \"" + ], + "ClarificationQuestion": [], + "id": "l4liqyis", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"(en face à face, téléphone, mail, SMS, appel vidéo, etc.)\"", + "id": "l4liqr1h", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_FREQ_ENFAIL2" + }, + { + "Response": [ + { + "CollectedVariableReference": "lai71qvf", + "id": "l4likfdn", + "mandatory": false, + "CodeListReference": "l4ongo32", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "FR_ENFAIL2 non renseigné", + "Expression": "isnull($FR_ENFAIL2$) or $FR_ENFAIL2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lipekh" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL2$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL2$) || \" vit-\" || (if ($SEXE_ENFAIL2$=\"1\" or isnull($SEXE_ENFAIL2$)) then \"il \" else \"elle \") || \"en France actuellement ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lj22ar", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Prenez en compte les frontières actuelles.\"", + "id": "lai6wbee", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "FR_ENFAIL2" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvyhx8j", + "id": "llvz89k3", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "DEP_ENFAIL2 non renseigné", + "Expression": "isnull($DEP_ENFAIL2$) or $DEP_ENFAIL2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4oo1xc3" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel département vit \" || (if (nvl($PRENOM_ENFAIL2$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL2$) || \" ?\"" + ], + "id": "l4oo8gk0", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"", + "id": "l4paergi", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "DEP_ENFAIL2" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvys5r8", + "id": "llvyt4to", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "COM_ENFAIL2 non renseigné", + "Expression": "isnull($COM_ENFAIL2$) or $COM_ENFAIL2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4onwz4l" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quelle commune vit \" || (if (nvl($PRENOM_ENFAIL2$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL2$) || \" ?\"" + ], + "id": "l4oo2unu", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez la commune recherchée et sélectionnez la dans la liste.\"", + "id": "l4pa7dpy", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "COM_ENFAIL2" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvyqaj6", + "id": "llvz2rjo", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PAY_ENFAIL2 non renseigné", + "Expression": "isnull($PAY_ENFAIL2$) or $PAY_ENFAIL2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4onwif5" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel pays vit \" || (if (nvl($PRENOM_ENFAIL2$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL2$) || \" ?\"" + ], + "id": "l4ooebmj", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"", + "id": "l4padk5u", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PAY_ENFAIL2" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4lj0cki", + "id": "l4liyopf", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "LOG_ENFAIL2 non renseigné", + "Expression": "isnull($LOG_ENFAIL2$) or $LOG_ENFAIL2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lj1wq9" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL2$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL2$) || \" vit-\" || (if ($SEXE_ENFAIL2$=\"1\" or isnull($SEXE_ENFAIL2$)) then \"il \" else \"elle \") || \" dans son propre logement ?\"" + ], + "ClarificationQuestion": [], + "id": "l4liztyl", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "LOG_ENFAIL2" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4ljyhe4", + "id": "l4lk92w2", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "AUT_PAR_ENFAIL2non renseigné", + "Expression": "isnull($AUT_PAR_ENFAIL2$) or $AUT_PAR_ENFAIL2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lk385m" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL2$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL2$) || \" vit-\" || (if ($SEXE_ENFAIL2$=\"1\" or isnull($SEXE_ENFAIL2$)) then \"il\" else \"elle\") || \" chez son autre parent ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lk1w8p", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "AUT_PAR_ENFAIL2" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4lk2gex", + "id": "l4lk4f59", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "DORT_ENFAIL2 non renseigné", + "Expression": "isnull($DORT_ENFAIL2$) or $DORT_ENFAIL2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lk2oys" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Arrive-t-il à \" || (if (nvl($PRENOM_ENFAIL2$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL2$) || \" de dormir chez vous ?\"" + ], + "ClarificationQuestion": [], + "id": "l4ljkmaj", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "DORT_ENFAIL2" + }, + { + "Response": [ + { + "CollectedVariableReference": "l7un2f3g", + "id": "l4o79ydp", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEP_AUT_PAR_ENFAIL2 non renseigné", + "Expression": "isnull($SEP_AUT_PAR_ENFAIL2$) or $SEP_AUT_PAR_ENFAIL2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4o7dkqz" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Vous êtes-vous séparé\" || (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\") || \" de l'autre parent de \" || (if (nvl($PRENOM_ENFAIL2$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL2$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l4o73m0u", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEP_AUT_PAR_ENFAIL2" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4o7d0hf", + "id": "l4lmow3d", + "mandatory": false, + "CodeListReference": "l448z131", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "RESID_ENFAIL2 non renseigné", + "Expression": "isnull($RESID_ENFAIL2$) or $RESID_ENFAIL2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lmjesq" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel a été le mode de résidence fixé par décision de justice ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lmxke4", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "RESID_ENFAIL2" + }, + { + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL2$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL2$) || \" vit-\" || (if ($SEXE_ENFAIL2$=\"1\" or isnull($SEXE_ENFAIL2$)) then \"il \" else \"elle \") || \"ailleurs que chez vous ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "lagyowte", + "MappingTarget": "1" + }, + { + "MappingSource": "lagyfrw1", + "MappingTarget": "2" + }, + { + "MappingSource": "lagyeeeb", + "MappingTarget": "3" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "l8sqimbm" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "SANTE_ENFAIL2", + "Response": [ + { + "CollectedVariableReference": "lagwqnte", + "id": "lagyowte", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lagwu8wr", + "id": "lagyfrw1", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lagwevqg", + "id": "lagyeeeb", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SANTE_ENFAIL2 non renseigné", + "Expression": "(nvl($SANTE_ENFAIL21$, false) = false and \r\n nvl($SANTE_ENFAIL22$, false) = false and \r\n nvl($SANTE_ENFAIL23$, false) = false )\r\n", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4ljinvb" + } + ], + "depth": 3, + "ClarificationQuestion": [], + "id": "l4ljj44i", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Plusieurs réponses possibles\"", + "id": "l59nu66k", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + } + ], + "Name": "VOSENFAIL2" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "\"Votre troisième enfant qui ne vit pas avec vous ou qui est décédé\"" + ], + "id": "ljmwnjny", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "l4lfyg5t", + "id": "l4lg9z9j", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PRENOM_ENFAIL3 non renseigné", + "Expression": "isnull($PRENOM_ENFAIL3$) or $PRENOM_ENFAIL3$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"", + "id": "l4lg1xmm" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", comment s'appelle votre troisième enfant qui ne vit pas avec vous ou qui est décédé ?\"" + ], + "id": "l4lg3j5g", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PRENOM_ENFAIL3" + }, + { + "Response": [ + { + "CollectedVariableReference": "llgjuydk", + "id": "l4lg6j08", + "mandatory": false, + "CodeListReference": "llgbzo78", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEXE_ENFAIL3 non renseigné", + "Expression": "isnull($SEXE_ENFAIL3$) or $SEXE_ENFAIL3$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lgiy0l" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel est le sexe de \" || (if (nvl($PRENOM_ENFAIL3$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL3$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lg6nx5", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEXE_ENFAIL3" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln8xfz8v", + "id": "l4lgj042", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ANAI_ENFAIL3 non renseigné", + "Expression": "isnull($ANAI_ENFAIL3$) or $ANAI_ENFAIL3$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"\r\n\r\n", + "id": "l4lgp8dp" + }, + { + "post_collect": false, + "Description": "\"L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "Expression": "not(isnull($ANAI_ENFAIL3$)) and not(isnull($ANAIS$)) and cast($ANAI_ENFAIL3$,integer) < cast($ANAIS$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "id": "l84k6zex" + }, + { + "post_collect": false, + "Description": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "Expression": "not(isnull($ANAI_ENFAIL3$)) and not(isnull($ANAIS$)) and (cast($ANAIS$,integer) + 15 > cast($ANAI_ENFAIL3$,integer))", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "id": "l8sld5a6" + }, + { + "post_collect": false, + "Description": "bornes ANAI_ENFAIL3", + "Expression": "cast($ANAI_ENFAIL3$,integer) < 1920 or cast($ANAI_ENFAIL3$,integer) > 2024", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de naissance de votre enfant est comprise entre 1920 et 2024.\" ", + "id": "ln8wwpao" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quelle est l'année de naissance de \" || (if (nvl($PRENOM_ENFAIL3$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL3$) || \" ?\"" + ], + "id": "l4lgenh5", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "ANAI_ENFAIL3" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4lgo3d3", + "id": "l4lgw48z", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NEFRANCE_ENFAIL3 non renseigné", + "Expression": "isnull($NEFRANCE_ENFAIL3$) or $NEFRANCE_ENFAIL3$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lgm2tj" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL3$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL3$) || \" est-\" || (if ($SEXE_ENFAIL3$=\"1\" or isnull($SEXE_ENFAIL3$)) then \"il né\" else \"elle née\") || \" en France ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lh0q7i", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Prenez en compte les frontières actuelles.\"", + "id": "l4pa7lpq", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "NEFRANCE_ENFAIL3" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4lh0wg5", + "id": "l4lgtxyg", + "mandatory": false, + "CodeListReference": "l44726g4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_VIT_ENFAIL3 non renseigné", + "Expression": "isnull($PARENT_VIT_ENFAIL3$) or $PARENT_VIT_ENFAIL3$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lgrjmf" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"L'autre parent de \" || (if (nvl($PRENOM_ENFAIL3$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL3$) || \" vit-il/elle avec vous ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lgysxq", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_VIT_ENFAIL3" + }, + { + "Response": [ + { + "CollectedVariableReference": "l9dv00hr", + "id": "l8m0gq78", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_VECU_ENFAIL3 non renseigné", + "Expression": "isnull($PARENT_VECU_ENFAIL3$) or $PARENT_VECU_ENFAIL3$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8m09h8h" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Avez-vous déjà vécu avec l'autre parent de \" || (if (nvl($PRENOM_ENFAIL3$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL3$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l8m0bu1o", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_VECU_ENFAIL3" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4lh1dxb", + "id": "l4lhcnt0", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "DC_ENFAIL3 non renseigné", + "Expression": "isnull($DC_ENFAIL3$) or $DC_ENFAIL3$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lgycal" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL3$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL3$) || \" est-\" || if ($SEXE_ENFAIL3$=\"1\" or isnull($SEXE_ENFAIL3$)) then \"il encore en vie ?\" else \"elle encore en vie ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lh0ofl", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "DC_ENFAIL3" + }, + { + "Response": [ + { + "CollectedVariableReference": "l9fl847j", + "id": "l4lhhhhy", + "mandatory": false, + "Datatype": { + "Maximum": "95", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "AG_DC_ENFAIL3 non renseigné", + "Expression": "isnull($AG_DC_ENFAIL3$) or $AG_DC_ENFAIL3$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu.\"", + "id": "l4lh3l99" + }, + { + "post_collect": false, + "Description": "\"L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge.\"", + "Expression": "not(isnull($AG_ENFAIL3$)) and not (isnull($AG_DC_ENFAIL3$)) and cast($AG_DC_ENFAIL3$,integer) > cast($AG_ENFAIL3$,integer)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge.\"", + "id": "lnbxnm1p" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"A quel âge \" || (if (nvl($PRENOM_ENFAIL3$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL3$) || \" est-\" || if ($SEXE_ENFAIL3$=\"1\" or isnull($SEXE_ENFAIL3$)) then \"il décédé ?\" else \"elle décédée ?\"" + ], + "id": "l4lhbuxg", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Notez 0 si \"||(if(nvl(PRENOM_ENFAIL3,\"\") = \"\") then \"cet enfant\" else PRENOM_ENFAIL3) || (\" est\") || (if (SEXE_ENFAIL3 = \"1\" or nvl(SEXE_ENFAIL3,\"\") = \"\") then \" décédé\" else \" décédée\") || (\" avant un an.\")", + "id": "l4lh8af1", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "AG_DC_ENFAIL3" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8ojnks0", + "id": "l4lhr1jr", + "mandatory": false, + "Datatype": { + "Maximum": "95", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "AG_DEPART_ENFAIL3 non renseigné", + "Expression": "isnull($AG_DEPART_ENFAIL3$) or $AG_DEPART_ENFAIL3$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu.\"", + "id": "l4lh9318" + }, + { + "post_collect": false, + "Description": "\"L'âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge.\"", + "Expression": "not(isnull($AG_DEPART_ENFAIL3$)) and not(isnull($ANAI_ENFAIL3$)) and $AG_DEPART_ENFAIL3$ > $AG_ENFAIL3$", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge.\"", + "id": "lbpk0wod" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"A quel âge environ \" || (if (nvl($PRENOM_ENFAIL3$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL3$) || \" a-t-\" || (if ($SEXE_ENFAIL3$=\"1\" or isnull($SEXE_ENFAIL3$)) then \"il\" else \"elle\") || \" cessé de vivre avec vous ?\"" + ], + "id": "l4lhdubm", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "AG_DEPART_ENFAIL3" + }, + { + "Response": [ + { + "CollectedVariableReference": "lij1hbsi", + "id": "l4lj5xeo", + "mandatory": false, + "CodeListReference": "l1f65uvw", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_FREQ_ENFAIL3 non renseigné", + "Expression": "isnull($PARENT_FREQ_ENFAIL3$) or $PARENT_FREQ_ENFAIL3$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lj7456" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"A quelle fréquence êtes-vous en contact avec \" || (if (nvl($PRENOM_ENFAIL3$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL3$) || \" ? \"" + ], + "ClarificationQuestion": [], + "id": "l4lirpfm", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"(en face à face, téléphone, mail, SMS, appel vidéo, etc.)\"", + "id": "l4livqhf", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_FREQ_ENFAIL3" + }, + { + "Response": [ + { + "CollectedVariableReference": "lai6zu1s", + "id": "l4liuj0u", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "FR_ENFAIL3 non renseigné", + "Expression": "isnull($FR_ENFAIL3$) or $FR_ENFAIL3$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lipe7o" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL3$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL3$) || \" vit-\" || (if ($SEXE_ENFAIL3$=\"1\" or isnull($SEXE_ENFAIL3$)) then \"il \" else \"elle \") || \"en France actuellement ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lj2cqg", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Prenez en compte les frontières actuelles.\"", + "id": "lai71v9g", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "FR_ENFAIL3" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvyhkhn", + "id": "llvyxdr9", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "DEP_ENFAIL3 non renseigné", + "Expression": "isnull($DEP_ENFAIL3$) or $DEP_ENFAIL3$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4onsrrs" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel département vit \" || (if (nvl($PRENOM_ENFAIL3$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL3$) || \" ?\"" + ], + "id": "l4oo03nq", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"", + "id": "l4paa00m", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "DEP_ENFAIL3" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvyc82v", + "id": "llvyrgzl", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "COM_ENFAIL3 non renseigné", + "Expression": "isnull($COM_ENFAIL3$) or $COM_ENFAIL3$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4onu0bn" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quelle commune vit \" || (if (nvl($PRENOM_ENFAIL3$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL3$) || \" ?\"" + ], + "id": "l4oo41j6", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez la commune recherchée et sélectionnez la dans la liste.\"", + "id": "l4paiw08", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "COM_ENFAIL3" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvytzoi", + "id": "llvz89lf", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PAY_ENFAIL3 non renseigné", + "Expression": "isnull($PAY_ENFAIL3$) or $PAY_ENFAIL3$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4oo503m" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel pays vit \" || (if (nvl($PRENOM_ENFAIL3$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL3$) || \" ?\"" + ], + "id": "l4ooe2gj", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"", + "id": "l4pac47a", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PAY_ENFAIL3" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4lj26cu", + "id": "l4lj4c9v", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "LOG_ENFAIL3 non renseigné", + "Expression": "isnull($LOG_ENFAIL3$) or $LOG_ENFAIL3$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lj1swc" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL3$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL3$) || \" vit-\" || (if ($SEXE_ENFAIL3$=\"1\" or isnull($SEXE_ENFAIL3$)) then \"il \" else \"elle \") || \" dans son propre logement ?\"" + ], + "ClarificationQuestion": [], + "id": "l4ljddzv", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "LOG_ENFAIL3" + }, + { + "Response": [ + { + "CollectedVariableReference": "lasa136n", + "id": "l4lmk2uc", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "AUT_PAR_ENFAIL3 non renseigné", + "Expression": "isnull($AUT_PAR_ENFAIL3$) or $AUT_PAR_ENFAIL3$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lmerw0" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL3$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL3$) || \" vit-\" || (if ($SEXE_ENFAIL3$=\"1\" or isnull($SEXE_ENFAIL3$)) then \"il\" else \"elle\") || \" chez son autre parent ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lmjzwd", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "AUT_PAR_ENFAIL3" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4lk2ey2", + "id": "l4ljuv43", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "DORT_ENFAIL3 non renseigné", + "Expression": "isnull($DORT_ENFAIL3$) or $DORT_ENFAIL3$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4ljmos9" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Arrive-t-il à \" || (if (nvl($PRENOM_ENFAIL3$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL3$) || \" de dormir chez vous ?\"" + ], + "ClarificationQuestion": [], + "id": "l4ljm6cp", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "DORT_ENFAIL3" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4o7s6rx", + "id": "l4o7fj27", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEP_AUT_PAR_ENFAIL3 non renseigné", + "Expression": "isnull($SEP_AUT_PAR_ENFAIL3$) or $SEP_AUT_PAR_ENFAIL3$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4o7r5lc" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Vous êtes-vous séparé\" || (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\") || \" de l'autre parent de \" || (if (nvl($PRENOM_ENFAIL3$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL3$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l4o7gt0n", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEP_AUT_PAR_ENFAIL3" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4o7hjqb", + "id": "l4lmv8du", + "mandatory": false, + "CodeListReference": "l448z131", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "RESID_ENFAIL3 non renseigné", + "Expression": "isnull($RESID_ENFAIL3$) or $RESID_ENFAIL3$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lmxg8j" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel a été le mode de résidence fixé par décision de justice ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lmszob", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "RESID_ENFAIL3" + }, + { + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL3$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL3$) || \" vit-\" || (if ($SEXE_ENFAIL3$=\"1\" or isnull($SEXE_ENFAIL3$)) then \"il \" else \"elle \") || \"ailleurs que chez vous?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "lagyxtyg", + "MappingTarget": "1" + }, + { + "MappingSource": "lagyuta3", + "MappingTarget": "2" + }, + { + "MappingSource": "lagyuxyh", + "MappingTarget": "3" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "l8sqimbm" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "SANTE_ENFAIL3", + "Response": [ + { + "CollectedVariableReference": "lagwatn6", + "id": "lagyxtyg", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lagwgz17", + "id": "lagyuta3", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lagwogef", + "id": "lagyuxyh", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SANTE_ENFAIL3 non renseigné", + "Expression": "(nvl($SANTE_ENFAIL31$, false) = false and \r\n nvl($SANTE_ENFAIL32$, false) = false and \r\n nvl($SANTE_ENFAIL33$, false) = false )\r\n", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4ljjr9i" + } + ], + "depth": 3, + "ClarificationQuestion": [], + "id": "l4ljg7fn", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Plusieurs réponses possibles\"", + "id": "l59o0g5r", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + } + ], + "Name": "VOSENFAIL3" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "\"Votre quatrième enfant qui ne vit pas avec vous ou qui est décédé\"" + ], + "id": "ljof3wlm", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "l4lg13lj", + "id": "l4lg3csm", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PRENOM_ENFAIL4 non renseigné", + "Expression": "isnull($PRENOM_ENFAIL4$) or $PRENOM_ENFAIL4$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"", + "id": "l4lg3zc6" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", comment s'appelle votre quatrième enfant qui ne vit pas avec vous ou qui est décédé ?\"" + ], + "id": "l4lg5t9v", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PRENOM_ENFAIL4" + }, + { + "Response": [ + { + "CollectedVariableReference": "llgjs283", + "id": "l4lg3510", + "mandatory": false, + "CodeListReference": "llgbzo78", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEXE_ENFAIL4 non renseigné", + "Expression": "isnull($SEXE_ENFAIL4$) or $SEXE_ENFAIL4$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lg99e0" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel est le sexe de \" || (if (nvl($PRENOM_ENFAIL4$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL4$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lg3wub", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEXE_ENFAIL4" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln8xa2yf", + "id": "l4lgh2oy", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ANAI_ENFAIL4 non renseigné", + "Expression": "isnull($ANAI_ENFAIL4$) or $ANAI_ENFAIL4$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"", + "id": "l4lgd8im" + }, + { + "post_collect": false, + "Description": "\"L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "Expression": "not(isnull($ANAI_ENFAIL4$)) and not(isnull($ANAIS$)) and cast($ANAI_ENFAIL4$,integer) < cast($ANAIS$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "id": "l84k6fpr" + }, + { + "post_collect": false, + "Description": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "Expression": "not(isnull($ANAI_ENFAIL4$)) and not(isnull($ANAIS$)) and (cast($ANAIS$,integer) + 15 > cast($ANAI_ENFAIL4$,integer))", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "id": "l8sleb9c" + }, + { + "post_collect": false, + "Description": "bornes ANAI_ENFAIL4", + "Expression": "cast($ANAI_ENFAIL4$,integer) < 1920 or cast($ANAI_ENFAIL4$,integer) > 2024", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de naissance de votre enfant est comprise entre 1920 et 2024.\" ", + "id": "ln8x4jmi" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quelle est l'année de naissance de \" || (if (nvl($PRENOM_ENFAIL4$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL4$) || \" ?\"" + ], + "id": "l4lgfphb", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "ANAI_ENFAIL4" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4lh0w7d", + "id": "l4lgx588", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NEFRANCE_ENFAIL4 non renseigné", + "Expression": "isnull($NEFRANCE_ENFAIL4$) or $NEFRANCE_ENFAIL4$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lgmtg3" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL4$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL4$) || \" est-\" || (if ($SEXE_ENFAIL4$=\"1\" or isnull($SEXE_ENFAIL4$)) then \"il né\" else \"elle née\") || \" en France ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lgr9ny", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Prenez en compte les frontières actuelles.\"", + "id": "l4paawvf", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "NEFRANCE_ENFAIL4" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4lgtg6z", + "id": "l4lgsplb", + "mandatory": false, + "CodeListReference": "l44726g4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_VIT_ENFAIL4 non renseigné", + "Expression": "isnull($PARENT_VIT_ENFAIL4$) or $PARENT_VIT_ENFAIL4$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lgvzve" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"L'autre parent de \" || (if (nvl($PRENOM_ENFAIL4$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL4$) || \" vit-il/elle avec vous ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lgo4yb", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_VIT_ENFAIL4" + }, + { + "Response": [ + { + "CollectedVariableReference": "l9duyjkw", + "id": "l8m0ghal", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_VECU_ENFAIL4 non renseigné", + "Expression": "isnull($PARENT_VECU_ENFAIL4$) or $PARENT_VECU_ENFAIL4$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8m0lv54" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Avez-vous déjà vécu avec l'autre parent de \" || (if (nvl($PRENOM_ENFAIL4$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL4$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l8m03w7m", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_VECU_ENFAIL4" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4lh0y8b", + "id": "l4lh8xt8", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "DC_ENFAIL4 non renseigné", + "Expression": "isnull($DC_ENFAIL4$) or $DC_ENFAIL4$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lh8umj" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL4$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL4$) || \" est-\" || if ($SEXE_ENFAIL4$=\"1\" or isnull($SEXE_ENFAIL4$)) then \"il encore en vie ?\" else \"elle encore en vie ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lh1a42", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "DC_ENFAIL4" + }, + { + "Response": [ + { + "CollectedVariableReference": "lnbxmkfn", + "id": "l4lh4m12", + "mandatory": false, + "Datatype": { + "Maximum": "95", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "AG_DC_ENFAIL4 non renseigné", + "Expression": "isnull($AG_DC_ENFAIL4$) or $AG_DC_ENFAIL4$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu.\"", + "id": "l4lhh8eo" + }, + { + "post_collect": false, + "Description": "\"L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge.\"", + "Expression": "not(isnull($AG_ENFAIL4$)) and not (isnull($AG_DC_ENFAIL4$)) and cast($AG_DC_ENFAIL4$,integer) > cast($AG_ENFAIL4$,integer)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge.\"", + "id": "lnbx6j9v" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"A quel âge \" || (if (nvl($PRENOM_ENFAIL4$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL4$) || \" est-\" || if ($SEXE_ENFAIL4$=\"1\" or isnull($SEXE_ENFAIL4$)) then \"il décédé ?\" else \"elle décédée ?\"" + ], + "id": "l4lhbfxh", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Notez 0 si \"||(if(nvl(PRENOM_ENFAIL4,\"\") = \"\") then \"cet enfant\" else PRENOM_ENFAIL4) || (\" est\") || (if (SEXE_ENFAIL4 = \"1\" or nvl(SEXE_ENFAIL4,\"\") = \"\") then \" décédé\" else \" décédée\") || (\" avant un an.\")", + "id": "l4lh0mk3", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "AG_DC_ENFAIL4" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8ojzphy", + "id": "l4lhe3eu", + "mandatory": false, + "Datatype": { + "Maximum": "95", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "AG_DEPART_ENFAIL4 non renseigné", + "Expression": "isnull($AG_DEPART_ENFAIL4$) or $AG_DEPART_ENFAIL4$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu.\"", + "id": "l4lhomp1" + }, + { + "post_collect": false, + "Description": "\"L'âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge.\"", + "Expression": "not(isnull($AG_DEPART_ENFAIL4$)) and not(isnull($ANAI_ENFAIL4$)) and $AG_DEPART_ENFAIL4$ > $AG_ENFAIL4$", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge.\"", + "id": "lbpjz0vq" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"A quel âge environ \" || (if (nvl($PRENOM_ENFAIL4$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL4$) || \" a-t-\" || (if ($SEXE_ENFAIL4$=\"1\" or isnull($SEXE_ENFAIL4$)) then \"il \" else \"elle\") || \" cessé de vivre avec vous ?\"" + ], + "id": "l4lho0e2", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "AG_DEPART_ENFAIL4" + }, + { + "Response": [ + { + "CollectedVariableReference": "lij1q243", + "id": "l4lj2kyh", + "mandatory": false, + "CodeListReference": "l1f65uvw", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_FREQ_ENFAIL4 non renseigné", + "Expression": "isnull($PARENT_FREQ_ENFAIL4$) or $PARENT_FREQ_ENFAIL4$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lj00gj" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"A quelle fréquence êtes-vous en contact avec \" || (if (nvl($PRENOM_ENFAIL4$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL4$) || \" ? \"" + ], + "ClarificationQuestion": [], + "id": "l4lj5kv6", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"(en face à face, téléphone, mail, SMS, appel vidéo, etc.)\"", + "id": "l4liwkni", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_FREQ_ENFAIL4" + }, + { + "Response": [ + { + "CollectedVariableReference": "lai6scfn", + "id": "l4liwqkb", + "mandatory": false, + "CodeListReference": "l4onqoyo", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "FR_ENFAIL4 non renseigné", + "Expression": "isnull($FR_ENFAIL4$) or $FR_ENFAIL4$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4liq4tq" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL4$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL4$) || \" vit-\" || (if ($SEXE_ENFAIL4$=\"1\" or isnull($SEXE_ENFAIL4$)) then \"il \" else \"elle \") || \"en France actuellement ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lj0iea", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Prenez en compte les frontières actuelles.\"", + "id": "lai71ft1", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "FR_ENFAIL4" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvyp2uu", + "id": "llvyr8d7", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "DEP_ENFAIL4 non renseigné", + "Expression": "isnull($DEP_ENFAIL4$) or $DEP_ENFAIL4$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4onxcha" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel département vit \" || (if (nvl($PRENOM_ENFAIL4$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL4$) || \" ?\"" + ], + "id": "l4oo4x1t", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"", + "id": "l4pa6ogq", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "DEP_ENFAIL4" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvytozk", + "id": "llvz7vfx", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "COM_ENFAIL4 non renseigné", + "Expression": "isnull($COM_ENFAIL4$) or $COM_ENFAIL4$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4ony600" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quelle commune vit \" || (if (nvl($PRENOM_ENFAIL4$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL4$) || \" ?\"" + ], + "id": "l4onwhrf", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez la commune recherchée et sélectionnez la dans la liste.\"", + "id": "l4pabom2", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "COM_ENFAIL4" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvyka8z", + "id": "llvyukzs", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PAY_ENFAIL4 non renseigné", + "Expression": "isnull($PAY_ENFAIL4$) or $PAY_ENFAIL4$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4oogew4" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel pays vit \" || (if (nvl($PRENOM_ENFAIL4$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL4$) || \" ?\"" + ], + "id": "l4oo1817", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"", + "id": "l4paauej", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PAY_ENFAIL4" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4ljh4hd", + "id": "l4lj1r3g", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "LOG_ENFAIL4 non renseigné", + "Expression": "isnull($LOG_ENFAIL4$) or $LOG_ENFAIL4$ =\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4ljfu65" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL4$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL4$) || \" vit-\" || (if ($SEXE_ENFAIL4$=\"1\" or isnull($SEXE_ENFAIL4$)) then \"il \" else \"elle \") || \" dans son propre logement ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lixcs2", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "LOG_ENFAIL4" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4lmfm7a", + "id": "l4lmo51c", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "AUT_PAR_ENFAIL4 non renseigné", + "Expression": "isnull($AUT_PAR_ENFAIL4$) or $AUT_PAR_ENFAIL4$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lmr6do" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL4$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL4$) || \" vit-\" || (if ($SEXE_ENFAIL4$=\"1\" or isnull($SEXE_ENFAIL4$)) then \"il\" else \"elle\") || \" chez son autre parent ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lms9a0", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "AUT_PAR_ENFAIL4" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4lk882x", + "id": "l4ljxs6c", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "DORT_ENFAIL4 non renseigné", + "Expression": "isnull($DORT_ENFAIL4$) or $DORT_ENFAIL4$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lk6sv3" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Arrive-t-il à \" || (if (nvl($PRENOM_ENFAIL4$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL4$) || \" de dormir chez vous ?\"" + ], + "ClarificationQuestion": [], + "id": "l4ljmpiu", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "DORT_ENFAIL4" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4o80sj1", + "id": "l4o7nzi9", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEP_AUT_PAR_ENFAIL4 non renseigné", + "Expression": "isnull($SEP_AUT_PAR_ENFAIL4$) or $SEP_AUT_PAR_ENFAIL4$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4o7uhc4" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Vous êtes-vous séparé\" || (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\") || \" de l'autre parent de \" || (if (nvl($PRENOM_ENFAIL4$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL4$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l4o7jdze", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEP_AUT_PAR_ENFAIL4" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4o7hp12", + "id": "l4lmu5ae", + "mandatory": false, + "CodeListReference": "l448z131", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "RESID_ENFAIL4 non renseigné", + "Expression": "isnull($RESID_ENFAIL4$) or $RESID_ENFAIL4$)=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lmz1q5" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel a été le mode de résidence fixé par décision de justice ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lmvah7", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "RESID_ENFAIL4" + }, + { + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL4$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL4$) || \" vit-\" || (if ($SEXE_ENFAIL4$=\"1\" or isnull($SEXE_ENFAIL4$)) then \"il \" else \"elle \") || \"ailleurs que chez vous ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "lagyh7yq", + "MappingTarget": "1" + }, + { + "MappingSource": "lagyinu2", + "MappingTarget": "2" + }, + { + "MappingSource": "lagyvlaz", + "MappingTarget": "3" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "l8sqimbm" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "SANTE_ENFAIL4", + "Response": [ + { + "CollectedVariableReference": "lagwk26x", + "id": "lagyh7yq", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lagwolgd", + "id": "lagyinu2", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lagwtg5h", + "id": "lagyvlaz", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SANTE_ENFAIL4 non renseigné", + "Expression": "(nvl($SANTE_ENFAIL41$, false) = false and \r\n nvl($SANTE_ENFAIL42$, false) = false and \r\n nvl($SANTE_ENFAIL43$, false) = false )\r\n", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4ljcbr5" + } + ], + "depth": 3, + "ClarificationQuestion": [], + "id": "l4ljjvig", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Plusieurs réponses possibles\"", + "id": "l59o5htr", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + } + ], + "Name": "VOSENFAIL4" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "\"Votre cinquième enfant qui ne vit pas avec vous ou qui est décédé\"" + ], + "id": "ljof7iet", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "l4lgdupn", + "id": "l4lg49i3", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PRENOM_ENFAIL5 non renseigné", + "Expression": "isnull($PRENOM_ENFAIL5$) or $PRENOM_ENFAIL5$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"", + "id": "l4lg2s5o" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", comment s'appelle votre cinquième enfant qui ne vit pas avec vous ou qui est décédé ?\"" + ], + "id": "l4lgayon", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PRENOM_ENFAIL5" + }, + { + "Response": [ + { + "CollectedVariableReference": "llgjrwzu", + "id": "l4lg9rqy", + "mandatory": false, + "CodeListReference": "llgbzo78", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEXE_ENFAIL5 non renseigné", + "Expression": "isnull($SEXE_ENFAIL5$) or $SEXE_ENFAIL5$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lga523" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel est le sexe de \" || (if (nvl($PRENOM_ENFAIL5$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL5$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lgep4c", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEXE_ENFAIL5" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln8xgsgo", + "id": "l4lgleu5", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ANAI_ENFAIL5 non renseigné", + "Expression": "isnull($ANAI_ENFAIL5$) or $ANAI_ENFAIL5$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"", + "id": "l4lgpes0" + }, + { + "post_collect": false, + "Description": "\"L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "Expression": "not(isnull($ANAI_ENFAIL5$)) and not(isnull($ANAIS$)) and cast($ANAI_ENFAIL5$,integer) < cast($ANAIS$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "id": "l84k9ak7" + }, + { + "post_collect": false, + "Description": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "Expression": "not(isnull($ANAI_ENFAIL5$)) and not(isnull($ANAIS$)) and (cast($ANAIS$,integer) + 15 > cast($ANAI_ENFAIL5$,integer))", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "id": "l8slpxvy" + }, + { + "post_collect": false, + "Description": "bornes ANAI_ENFAIL5", + "Expression": "cast($ANAI_ENFAIL5$,integer) < 1920 or cast($ANAI_ENFAIL5$,integer) > 2024", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de naissance de votre enfant est comprise entre 1920 et 2024.\" ", + "id": "ln8xld0e" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quelle est l'année de naissance de \" || (if (nvl($PRENOM_ENFAIL5$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL5$) || \" ?\"" + ], + "id": "l4lgp1ft", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "ANAI_ENFAIL5" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4lgnml2", + "id": "l4lgsfsx", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NEFRANCE_ENFAIL5 non renseigné", + "Expression": "isnull($NEFRANCE_ENFAIL5$) or $NEFRANCE_ENFAIL5$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lgr50x" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL5$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL5$) || \" est-\" || (if ($SEXE_ENFAIL5$=\"1\" or isnull($SEXE_ENFAIL5$)) then \"il né\" else \"elle née\") || \" en France ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lgnphx", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Prenez en compte les frontières actuelles.\"", + "id": "l4pabnh2", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "NEFRANCE_ENFAIL5" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4lh0oju", + "id": "l4lh0pbe", + "mandatory": false, + "CodeListReference": "l44726g4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_VIT_ENFAIL5 non renseigné", + "Expression": "isnull($PARENT_VIT_ENFAIL5$) or $PARENT_VIT_ENFAIL5$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lh1p82" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"L'autre parent de \" || (if (nvl($PRENOM_ENFAIL5$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL5$) || \" vit-il/elle avec vous ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lh672z", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_VIT_ENFAIL5" + }, + { + "Response": [ + { + "CollectedVariableReference": "l9dvdo4p", + "id": "l8m08umx", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_VECU_ENFAIL5 non renseigné", + "Expression": "isnull($PARENT_VECU_ENFAIL5$) or $PARENT_VECU_ENFAIL5$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8m0atez" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Avez-vous déjà vécu avec l'autre parent de \" || (if (nvl($PRENOM_ENFAIL5$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL5$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l8m0ld6c", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_VECU_ENFAIL5" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4lh78pu", + "id": "l4lgwio5", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "DC_ENFAIL5 non renseigné", + "Expression": "isnull($DC_ENFAIL5$) or $DC_ENFAIL5$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lh1ej9" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL5$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL5$) || \" est-\" || if ($SEXE_ENFAIL5$=\"1\" or isnull($SEXE_ENFAIL5$)) then \"il encore en vie ?\" else \"elle encore en vie ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lhcdf6", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "DC_ENFAIL5" + }, + { + "Response": [ + { + "CollectedVariableReference": "l9flf9hj", + "id": "l4lh96gc", + "mandatory": false, + "Datatype": { + "Maximum": "95", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "AG_DC_ENFAIL5 non renseigné", + "Expression": "isnull($AG_DC_ENFAIL5$) or $AG_DC_ENFAIL5$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu.\"", + "id": "l4lhlgo0" + }, + { + "post_collect": false, + "Description": "\"L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge.\"", + "Expression": "not(isnull($AG_ENFAIL5$)) and not (isnull($AG_DC_ENFAIL5$)) and cast($AG_DC_ENFAIL5$,integer) > cast($AG_ENFAIL5$,integer)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge.\"", + "id": "lnbxopro" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"A quel âge \" || (if (nvl($PRENOM_ENFAIL5$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL5$) || \" est-\" || if ($SEXE_ENFAIL5$=\"1\" or isnull($SEXE_ENFAIL5$)) then \"il décédé ?\" else \"elle décédée ?\"" + ], + "id": "l4lh8c72", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Notez 0 si \"||(if(nvl(PRENOM_ENFAIL5,\"\") = \"\") then \"cet enfant\" else PRENOM_ENFAIL5) || (\" est\") || (if (SEXE_ENFAIL5 = \"1\" or nvl(SEXE_ENFAIL5,\"\") = \"\") then \" décédé\" else \" décédée\") || (\" avant un an.\")", + "id": "l4lh2kwz", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "AG_DC_ENFAIL5" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8ojekyz", + "id": "l4lhi8ks", + "mandatory": false, + "Datatype": { + "Maximum": "95", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "AG_DEPART_ENFAIL5 non renseigné", + "Expression": "isnull($AG_DEPART_ENFAIL5$) or $AG_DEPART_ENFAIL5$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu.\"", + "id": "l4lhrue7" + }, + { + "post_collect": false, + "Description": "\"L'âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge.\"", + "Expression": "not(isnull($AG_DEPART_ENFAIL5$)) and not(isnull($ANAI_ENFAIL5$)) and $AG_DEPART_ENFAIL5$ > $AG_ENFAIL5$", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge.\"", + "id": "lbpjw1d1" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"A quel âge environ \" || (if (nvl($PRENOM_ENFAIL5$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL5$) || \" a-t-\" || (if ($SEXE_ENFAIL5$=\"1\" or isnull($SEXE_ENFAIL5$)) then \"il \" else \"elle\") || \" cessé de vivre avec vous ?\"" + ], + "id": "l4lhn614", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "AG_DEPART_ENFAIL5" + }, + { + "Response": [ + { + "CollectedVariableReference": "lij1mx2e", + "id": "l4lj2b7z", + "mandatory": false, + "CodeListReference": "l1f65uvw", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_FREQ_ENFAIL5 non renseigné", + "Expression": "isnull($PARENT_FREQ_ENFAIL5$) or $PARENT_FREQ_ENFAIL5$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4ljej57" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"A quelle fréquence êtes-vous en contact avec \" || (if (nvl($PRENOM_ENFAIL5$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL5$) || \" ? \"" + ], + "ClarificationQuestion": [], + "id": "l4lj98cz", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"(en face à face, téléphone, mail, SMS, appel vidéo, etc.)\"", + "id": "l4lj2zmz", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_FREQ_ENFAIL5" + }, + { + "Response": [ + { + "CollectedVariableReference": "lai6w8kr", + "id": "l4liqibl", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "FR_ENFAIL5 non renseigné", + "Expression": "isnull($FR_ENFAIL5$) or $FR_ENFAIL5$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lixac7" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL5$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL5$) || \" vit-\" || (if ($SEXE_ENFAIL5$=\"1\" or isnull($SEXE_ENFAIL5$)) then \"il \" else \"elle \") || \"en France actuellement ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lijtvo", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Prenez en compte les frontières actuelles.\"", + "id": "lai73fre", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "FR_ENFAIL5" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvysls5", + "id": "llvz93jz", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "DEP_ENFAIL5 non renseigné", + "Expression": "isnull($DEP_ENFAIL5$) or $DEP_ENFAIL5$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4onwzri" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel département vit \" || (if (nvl($PRENOM_ENFAIL5$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL5$) || \" ?\"" + ], + "id": "l4oo7lwi", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"", + "id": "l4paeclu", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "DEP_ENFAIL5" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvz0fqm", + "id": "llvz0237", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "COM_ENFAIL5 non renseigné", + "Expression": "isnull($COM_ENFAIL5$) or $COM_ENFAIL5$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4onxplv" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quelle commune vit \" || (if (nvl($PRENOM_ENFAIL5$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL5$) || \" ?\"" + ], + "id": "l4oo41q4", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez la commune recherchée et sélectionnez la dans la liste.\"", + "id": "l4pamdh2", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "COM_ENFAIL5" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvylns4", + "id": "llvz2kjk", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PAY_ENFAIL5 non renseigné", + "Expression": "isnull($PAY_ENFAIL5$) or $PAY_ENFAIL5$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4oo7xka" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel pays vit \" || (if (nvl($PRENOM_ENFAIL5$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL5$) || \" ?\"" + ], + "id": "l4oo5bj9", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"", + "id": "l4paiwz0", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PAY_ENFAIL5" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4lj62bs", + "id": "l4lj1p4y", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "LOG_ENFAIL5 non renseigné", + "Expression": "isnull($LOG_ENFAIL5$) or $LOG_ENFAIL5$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4ljdfps" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL5$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL5$) || \" vit-\" || (if ($SEXE_ENFAIL5$=\"1\" or isnull($SEXE_ENFAIL5$)) then \"il\" else \"elle\") || \" dans son propre logement ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lizygc", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "LOG_ENFAIL5" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4o7oknh", + "id": "l4lmdw7z", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "AUT_PAR_ENFAIL5 non renseigné", + "Expression": "isnull($AUT_PAR_ENFAIL5$) or $AUT_PAR_ENFAIL5$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lmhn1p" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL5$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL5$) || \" vit-\" || (if ($SEXE_ENFAIL5$=\"1\" or isnull($SEXE_ENFAIL5$)) then \"il\" else \"elle\") || \" chez son autre parent ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lmc52p", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "AUT_PAR_ENFAIL5" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4ljvm4i", + "id": "l4ljxwvx", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "DORT_ENFAIL5 non renseigné", + "Expression": "isnull($DORT_ENFAIL5$) or $DORT_ENFAIL5$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4lk0zll" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Arrive-t-il à \" || (if (nvl($PRENOM_ENFAIL5$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL5$) || \" de dormir chez vous ?\"" + ], + "ClarificationQuestion": [], + "id": "l4ljxer7", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "DORT_ENFAIL5" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4o7xizu", + "id": "l4o80pka", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEP_AUT_PAR_ENFAIL5 non renseigné", + "Expression": "isnull($SEP_AUT_PAR_ENFAIL5$) or $SEP_AUT_PAR_ENFAIL5$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4o7mtu0" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Vous êtes-vous séparé\" || (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\") || \" de l'autre parent de \" || (if (nvl($PRENOM_ENFAIL5$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL5$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l4o7vzru", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEP_AUT_PAR_ENFAIL5" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4o7n3ug", + "id": "l4ln2eva", + "mandatory": false, + "CodeListReference": "l448z131", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "RESID_ENFAIL5 non renseigné", + "Expression": "isnull($RESID_ENFAIL5$) or $RESID_ENFAIL5$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4ln7w0g" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel a été le mode de résidence fixé par décision de justice ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lms6u4", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "RESID_ENFAIL5" + }, + { + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL5$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL5$) || \" vit-\" || (if ($SEXE_ENFAIL5$=\"1\" or isnull($SEXE_ENFAIL5$)) then \"il \" else \"elle \") || \"ailleurs que chez vous ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "lagyt3hb", + "MappingTarget": "1" + }, + { + "MappingSource": "lagyitoa", + "MappingTarget": "2" + }, + { + "MappingSource": "lagyycd1", + "MappingTarget": "3" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "l8sqimbm" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "SANTE_ENFAIL5", + "Response": [ + { + "CollectedVariableReference": "lagwmxd3", + "id": "lagyt3hb", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lagwbebj", + "id": "lagyitoa", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lagwpanz", + "id": "lagyycd1", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SANTE_ENFAIL5 non renseigné", + "Expression": "(nvl($SANTE_ENFAIL51$, false) = false and \r\n nvl($SANTE_ENFAIL52$, false) = false and \r\n nvl($SANTE_ENFAIL53$, false) = false )\r\n", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4ljhgo8" + } + ], + "depth": 3, + "ClarificationQuestion": [], + "id": "l4ljcdar", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Plusieurs réponses possibles\"", + "id": "l59okksf", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + } + ], + "Name": "VOSENFAIL5" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "\"Votre sixième enfant qui ne vit pas avec vous ou qui est décédé\"" + ], + "id": "ljoezdxm", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "l8oi7fel", + "id": "l8oifcrp", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PRENOM_ENFAIL6 non renseigné", + "Expression": "isnull($PRENOM_ENFAIL6$) or $PRENOM_ENFAIL6$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"", + "id": "l8oi95ak" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", comment s'appelle votre sixième enfant qui ne vit pas avec vous ou qui est décédé ?\"" + ], + "id": "l8oign0h", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PRENOM_ENFAIL6" + }, + { + "Response": [ + { + "CollectedVariableReference": "llgjkq9j", + "id": "l8oihhrs", + "mandatory": false, + "CodeListReference": "llgbzo78", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEXE_ENFAIL6 non renseigné", + "Expression": "isnull($SEXE_ENFAIL6$) or $SEXE_ENFAIL6$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8oi7p7j" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel est le sexe de \" || (if (nvl($PRENOM_ENFAIL6$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL6$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l8oi92w4", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEXE_ENFAIL6" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln8xae81", + "id": "l8oijkad", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ANAI_ENFAIL6 non renseigné", + "Expression": "isnull($ANAI_ENFAIL6$) or $ANAI_ENFAIL6$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"", + "id": "l8oii7bk" + }, + { + "post_collect": false, + "Description": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "Expression": "not(isnull($ANAI_ENFAIL6$)) and not(isnull($ANAIS$)) and (cast($ANAIS$,integer) + 15 > cast($ANAI_ENFAIL6$,integer))", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "id": "l8slemdv" + }, + { + "post_collect": false, + "Description": "\"L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "Expression": "not(isnull($ANAI_ENFAIL6$)) and not(isnull($ANAIS$)) and cast($ANAI_ENFAIL6$,integer) < cast($ANAIS$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "id": "l8slalbb" + }, + { + "post_collect": false, + "Description": "bornes ANAI_ENFAIL6", + "Expression": "cast($ANAI_ENFAIL6$,integer) < 1920 or cast($ANAI_ENFAIL6$,integer) > 2024", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de naissance de votre enfant est comprise entre 1920 et 2024.\" ", + "id": "ln8xhp7w" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quelle est l'année de naissance de \" || (if (nvl($PRENOM_ENFAIL6$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL6$) || \" ?\"" + ], + "id": "l8oi7q9f", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "ANAI_ENFAIL6" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8oij0b0", + "id": "l8oib8l6", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NEFRANCE_ENFAIL6 non renseigné", + "Expression": "isnull($NEFRANCE_ENFAIL6$) or $NEFRANCE_ENFAIL6$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8oihqvu" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL6$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL6$) || \" est-\" || (if ($SEXE_ENFAIL6$=\"1\" or isnull($SEXE_ENFAIL6$)) then \"il né\" else \"elle née\") || \" en France ?\"" + ], + "ClarificationQuestion": [], + "id": "l8oientz", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Prenez en compte les frontières actuelles.\"", + "id": "l8oifpiy", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "NEFRANCE_ENFAIL6" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8ohw6dq", + "id": "l8ohy4u9", + "mandatory": false, + "CodeListReference": "l44726g4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_VIT_ENFAIL6 non renseigné", + "Expression": "isnull($PARENT_VIT_ENFAIL6$) or $PARENT_VIT_ENFAIL6$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8oi7bpe" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"L'autre parent de \" || (if (nvl($PRENOM_ENFAIL6$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL6$) || \" vit-il/elle avec vous ?\"" + ], + "ClarificationQuestion": [], + "id": "l8oidc2m", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_VIT_ENFAIL6" + }, + { + "Response": [ + { + "CollectedVariableReference": "l9duy8g6", + "id": "l8oi8s9r", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_VECU_ENFAIL6 non renseigné", + "Expression": "isnull($PARENT_VECU_ENFAIL6$) or $PARENT_VECU_ENFAIL6$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8oiefj6" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Avez-vous déjà vécu avec l'autre parent de \" || (if (nvl($PRENOM_ENFAIL6$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL6$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l8oib75g", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_VECU_ENFAIL6" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8oi73zk", + "id": "l8oi6wxh", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "DC_ENFAIL6 non renseigné", + "Expression": "isnull($DC_ENFAIL6$) or $DC_ENFAIL6$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8oi6ju7" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL6$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL6$) || \" est-\" || if ($SEXE_ENFAIL6$=\"1\" or isnull($SEXE_ENFAIL6$)) then \"il encore en vie ?\" else \"elle encore en vie ?\"" + ], + "ClarificationQuestion": [], + "id": "l8ohus0v", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "DC_ENFAIL6" + }, + { + "Response": [ + { + "CollectedVariableReference": "lnbxb1g6", + "id": "l8ohwfm9", + "mandatory": false, + "Datatype": { + "Maximum": "95", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "AG_DC_ENFAIL6 non renseigné", + "Expression": "isnull($AG_DC_ENFAIL6$) or $AG_DC_ENFAIL6$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu.\"", + "id": "l8ohl5cw" + }, + { + "post_collect": false, + "Description": "\"L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge.\"", + "Expression": "not(isnull($AG_ENFAIL6$)) and not (isnull($AG_DC_ENFAIL6$)) and cast($AG_DC_ENFAIL6$,integer) > cast($AG_ENFAIL6$,integer)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge.\"", + "id": "lnbxdma7" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"A quel âge \" || (if (nvl($PRENOM_ENFAIL6$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL6$) || \" est-\" || if ($SEXE_ENFAIL6$=\"1\" or isnull($SEXE_ENFAIL6$)) then \"il décédé ?\" else \"elle décédée ?\"" + ], + "id": "l8ohrpn7", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Notez 0 si \"||(if(nvl(PRENOM_ENFAIL6,\"\") = \"\") then \"cet enfant\" else PRENOM_ENFAIL6) || (\" est\") || (if (SEXE_ENFAIL6 = \"1\" or nvl(SEXE_ENFAIL6,\"\") = \"\") then \" décédé\" else \" décédée\") || (\" avant un an.\")", + "id": "l8ohgdgh", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "AG_DC_ENFAIL6" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8ojv4ww", + "id": "l8ohnljo", + "mandatory": false, + "Datatype": { + "Maximum": "95", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "AG_DEPART_ENFAIL6 non renseigné", + "Expression": "isnull($AG_DEPART_ENFAIL6$) or $AG_DEPART_ENFAIL6$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu.\"", + "id": "l8ohvd9q" + }, + { + "post_collect": false, + "Description": "\"L'âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge.\"", + "Expression": "not(isnull($AG_DEPART_ENFAIL6$)) and not(isnull($ANAI_ENFAIL6$)) and $AG_DEPART_ENFAIL6$ > $AG_ENFAIL6$", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge.\"", + "id": "lbpjwvh3" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"A quel âge environ \" || (if (nvl($PRENOM_ENFAIL6$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL6$) || \" a-t-\" || (if ($SEXE_ENFAIL6$=\"1\" or isnull($SEXE_ENFAIL6$)) then \"il \" else \"elle\") || \" cessé de vivre avec vous ?\"" + ], + "id": "l8ohwpt9", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "AG_DEPART_ENFAIL6" + }, + { + "Response": [ + { + "CollectedVariableReference": "lij1ifw6", + "id": "l8oh8ggp", + "mandatory": false, + "CodeListReference": "l1f65uvw", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_FREQ_ENFAIL6 non renseigné", + "Expression": "isnull($PARENT_FREQ_ENFAIL6$) or $PARENT_FREQ_ENFAIL6$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8oh6d4m" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"A quelle fréquence êtes-vous en contact avec \" || (if (nvl($PRENOM_ENFAIL6$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL6$) || \" ? \"" + ], + "ClarificationQuestion": [], + "id": "l8oh46rn", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"(en face à face, téléphone, mail, SMS, appel vidéo, etc.)\"", + "id": "l8oh36w5", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_FREQ_ENFAIL6" + }, + { + "Response": [ + { + "CollectedVariableReference": "lai76uzw", + "id": "l8ogwc5d", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "FR_ENFAIL6 non renseigné", + "Expression": "isnull($FR_ENFAIL6$) or $FR_ENFAIL6$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8oh46hy" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL6$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL6$) || \" vit-\" || (if ($SEXE_ENFAIL6$=\"1\" or isnull($SEXE_ENFAIL6$)) then \"il \" else \"elle \") || \"en France actuellement ?\"" + ], + "ClarificationQuestion": [], + "id": "l8ogysyp", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Prenez en compte les frontières actuelles.\"", + "id": "lai78xq9", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "FR_ENFAIL6" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvywof5", + "id": "llvz1v15", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "DEP_ENFAIL6 non renseigné", + "Expression": "isnull($DEP_ENFAIL6$) or $DEP_ENFAIL6$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8oh51b7" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel département vit \" || (if (nvl($PRENOM_ENFAIL6$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL6$) || \" ?\"" + ], + "id": "l8ogp9jo", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"", + "id": "l8ogoo1k", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "DEP_ENFAIL6" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvyoxe1", + "id": "llvzas4q", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "COM_ENFAIL6 non renseigné", + "Expression": "isnull($COM_ENFAIL6$) or $COM_ENFAIL6$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8oh4cbc" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quelle commune vit \" || (if (nvl($PRENOM_ENFAIL6$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL6$) || \" ?\"" + ], + "id": "l8ogqig3", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez la commune recherchée et sélectionnez la dans la liste.\"", + "id": "l8ogppom", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "COM_ENFAIL6" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvypr5t", + "id": "llvz3tao", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PAY_ENFAIL6 non renseigné", + "Expression": "isnull($PAY_ENFAIL6$) or $PAY_ENFAIL6$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"\r\n", + "id": "l8ogu9yq" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel pays vit \" || (if (nvl($PRENOM_ENFAIL6$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL6$) || \" ?\"" + ], + "id": "l8ogpnbn", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"", + "id": "l8ogttr2", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PAY_ENFAIL6" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8ogvwpl", + "id": "l8ogy42h", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "LOG_ENFAIL6 non renseigné", + "Expression": "isnull($LOG_ENFAIL6$) or $LOG_ENFAIL6$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8oh4nwf" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL6$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL6$) || \" vit-\" || (if ($SEXE_ENFAIL6$=\"1\" or isnull($SEXE_ENFAIL6$)) then \"il\" else \"elle\") || \" dans son propre logement ?\"" + ], + "ClarificationQuestion": [], + "id": "l8ogukpt", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "LOG_ENFAIL6" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8oaxy5v", + "id": "l8oakgr4", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "AUT_PAR_ENFAIL6 non renseigné", + "Expression": "isnull($AUT_PAR_ENFAIL6$) or $AUT_PAR_ENFAIL6$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8oatsjm" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL6$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL6$) || \" vit-\" || (if ($SEXE_ENFAIL6$=\"1\" or isnull($SEXE_ENFAIL6$)) then \"il\" else \"elle\") || \" chez son autre parent ?\"" + ], + "ClarificationQuestion": [], + "id": "l8ob0dk4", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "AUT_PAR_ENFAIL6" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8ob2278", + "id": "l8oaqk9w", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "DORT_ENFAIL6 non renseigné", + "Expression": "isnull($DORT_ENFAIL6$) or $DORT_ENFAIL6$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8oar14m" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Arrive-t-il à \" || (if (nvl($PRENOM_ENFAIL6$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL6$) || \" de dormir chez vous ?\"" + ], + "ClarificationQuestion": [], + "id": "l8oarkxm", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "DORT_ENFAIL6" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8ob0bwo", + "id": "l8ob57h3", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEP_AUT_PAR_ENFAIL6 non renseigné", + "Expression": "isnull($SEP_AUT_PAR_ENFAIL6$) or $SEP_AUT_PAR_ENFAIL6$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8oasspa" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Vous êtes-vous séparé\" || (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\") || \" de l'autre parent de \" || (if (nvl($PRENOM_ENFAIL6$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL6$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l8oaqbj5", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEP_AUT_PAR_ENFAIL6" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8ob2zsx", + "id": "l8oayvjg", + "mandatory": false, + "CodeListReference": "l448z131", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "RESID_ENFAIL6 non renseigné", + "Expression": "isnull($RESID_ENFAIL6$) or $RESID_ENFAIL6$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8oamtus" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel a été le mode de résidence fixé par décision de justice ?\"" + ], + "ClarificationQuestion": [], + "id": "l8oanpzw", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "RESID_ENFAIL6" + }, + { + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL6$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL6$) || \" vit-\" || (if ($SEXE_ENFAIL6$=\"1\" or isnull($SEXE_ENFAIL6$)) then \"il \" else \"elle \") || \"ailleurs que chez vous ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "lagyuenn", + "MappingTarget": "1" + }, + { + "MappingSource": "lagyvzmn", + "MappingTarget": "2" + }, + { + "MappingSource": "lagyviqg", + "MappingTarget": "3" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "l8sqimbm" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "SANTE_ENFAIL6", + "Response": [ + { + "CollectedVariableReference": "lagwf9yy", + "id": "lagyuenn", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lagwd4vw", + "id": "lagyvzmn", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lagwt98o", + "id": "lagyviqg", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SANTE_ENFAIL6 non renseigné", + "Expression": "(nvl($SANTE_ENFAIL61$, false) = false and \r\n nvl($SANTE_ENFAIL62$, false) = false and \r\n nvl($SANTE_ENFAIL63$, false) = false )\r\n", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"\r\n", + "id": "l8oaysw0" + } + ], + "depth": 3, + "ClarificationQuestion": [], + "id": "l8oasgat", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Plusieurs réponses possibles\"", + "id": "l8ob1odl", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + } + ], + "Name": "VOSENFAIL6" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "\"Votre septième enfant qui ne vit pas avec vous ou qui est décédé\"" + ], + "id": "ljof8bti", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "l8okm9vv", + "id": "l8okjmzy", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PRENOM_ENFAIL7 non renseigné", + "Expression": "isnull($PRENOM_ENFAIL7$) or $PRENOM_ENFAIL7$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"", + "id": "l8okl5m8" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", comment s'appelle votre septième enfant qui ne vit pas avec vous ou qui est décédé ?\"" + ], + "id": "l8ok9kmj", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PRENOM_ENFAIL7" + }, + { + "Response": [ + { + "CollectedVariableReference": "llgjuj96", + "id": "l8ok3iy5", + "mandatory": false, + "CodeListReference": "llgbzo78", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEXE_ENFAIL7 non renseigné", + "Expression": "isnull($SEXE_ENFAIL7$) or $SEXE_ENFAIL7$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8ok1ufa" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel est le sexe de \" || (if (nvl($PRENOM_ENFAIL7$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL7$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l8okbmv3", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEXE_ENFAIL7" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln8xllr2", + "id": "l8okdvkx", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ANAI_ENFAIL7 non renseigné", + "Expression": "isnull($ANAI_ENFAIL7$) or $ANAI_ENFAIL7$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"", + "id": "l8okb824" + }, + { + "post_collect": false, + "Description": " \"L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "Expression": "not(isnull($ANAI_ENFAIL7$)) and not(isnull($ANAIS$)) and cast($ANAI_ENFAIL7$,integer) < cast($ANAIS$,integer)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "id": "l8slokfm" + }, + { + "post_collect": false, + "Description": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "Expression": "not(isnull($ANAI_ENFAIL7$)) and not(isnull($ANAIS$)) and (cast($ANAIS$,integer) + 15 > cast($ANAI_ENFAIL7$,integer))", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "id": "l8slspfl" + }, + { + "post_collect": false, + "Description": "bornes ANAI_ENFAIL7", + "Expression": "cast($ANAI_ENFAIL7$,integer) < 1920 or cast($ANAI_ENFAIL7$,integer) > 2024", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de naissance de votre enfant est comprise entre 1920 et 2024.\" ", + "id": "ln8x8a9i" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quelle est l'année de naissance de \" || (if (nvl($PRENOM_ENFAIL7$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL7$) || \" ?\"" + ], + "id": "l8okh65e", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "ANAI_ENFAIL7" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8ojza9l", + "id": "l8ok6z0e", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NEFRANCE_ENFAIL7 non renseigné", + "Expression": "isnull($NEFRANCE_ENFAIL7$) or $NEFRANCE_ENFAIL7$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8okh01i" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL7$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL7$) || \" est-\" || (if ($SEXE_ENFAIL7$=\"1\" or isnull($SEXE_ENFAIL7$)) then \"il né\" else \"elle née\") || \" en France ?\"" + ], + "ClarificationQuestion": [], + "id": "l8okc5z9", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Prenez en compte les frontières actuelles.\"", + "id": "l8ok97f5", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "NEFRANCE_ENFAIL7" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8ok36f1", + "id": "l8ojuyat", + "mandatory": false, + "CodeListReference": "l44726g4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_VIT_ENFAIL7 non renseigné", + "Expression": "isnull($PARENT_VIT_ENFAIL7$) or $PARENT_VIT_ENFAIL7$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8ok3mp1" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"L'autre parent de \" || (if (nvl($PRENOM_ENFAIL7$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL7$) || \" vit-il/elle avec vous ?\"" + ], + "ClarificationQuestion": [], + "id": "l8okdoof", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_VIT_ENFAIL7" + }, + { + "Response": [ + { + "CollectedVariableReference": "l9dvd6ci", + "id": "l8ojxc00", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_VECU_ENFAIL7 non renseigné", + "Expression": "isnull($PARENT_VECU_ENFAIL7$) or $PARENT_VECU_ENFAIL7$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8ojwk2o" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Avez-vous déjà vécu avec l'autre parent de \" || (if (nvl($PRENOM_ENFAIL7$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL7$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l8ok0d4y", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_VECU_ENFAIL7" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8ojsho1", + "id": "l8ok9idc", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "DC_ENFAIL7 non renseigné", + "Expression": "isnull($DC_ENFAIL7$) or $DC_ENFAIL7$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8ok2pxf" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL7$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL7$) || \" est-\" || if ($SEXE_ENFAIL7$=\"1\" or isnull($SEXE_ENFAIL7$)) then \"il encore en vie ?\" else \"elle encore en vie ?\"" + ], + "ClarificationQuestion": [], + "id": "l8ok0acp", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "DC_ENFAIL7" + }, + { + "Response": [ + { + "CollectedVariableReference": "lnbxenl4", + "id": "l8ojtruw", + "mandatory": false, + "Datatype": { + "Maximum": "95", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "AG_DC_ENFAIL7 non renseigné", + "Expression": "isnull($AG_DC_ENFAIL7$) or $AG_DC_ENFAIL7$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu.\"", + "id": "l8ok0ors" + }, + { + "post_collect": false, + "Description": "\"L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge.\"", + "Expression": "not(isnull($AG_ENFAIL7$)) and not (isnull($AG_DC_ENFAIL7$)) and cast($AG_DC_ENFAIL7$,integer) > cast($AG_ENFAIL7$,integer)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge.\"", + "id": "lnbxj7fb" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"A quel âge \" || (if (nvl($PRENOM_ENFAIL7$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL7$) || \" est-\" || if ($SEXE_ENFAIL7$=\"1\" or isnull($SEXE_ENFAIL7$)) then \"il décédé ?\" else \"elle décédée ?\"" + ], + "id": "l8ojs3vl", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Notez 0 si \"||(if(nvl(PRENOM_ENFAIL7,\"\") = \"\") then \"cet enfant\" else PRENOM_ENFAIL7) || (\" est\") || (if (SEXE_ENFAIL7 = \"1\" or nvl(SEXE_ENFAIL7,\"\") = \"\") then \" décédé\" else \" décédée\") || (\" avant un an.\")", + "id": "l8ojoix6", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "AG_DC_ENFAIL7" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8ojfunn", + "id": "l8ojvwk7", + "mandatory": false, + "Datatype": { + "Maximum": "95", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "AG_DEPART_ENFAIL7 non renseigné", + "Expression": "isnull($AG_DEPART_ENFAIL7$) or $AG_DEPART_ENFAIL7$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu.\"", + "id": "l8ojx5u5" + }, + { + "post_collect": false, + "Description": "\"L'âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge.\"", + "Expression": "not(isnull($AG_DEPART_ENFAIL7$)) and not(isnull($ANAI_ENFAIL7$)) and $AG_DEPART_ENFAIL7$ > $AG_ENFAIL7$", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge.\"", + "id": "lbpk75mp" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"A quel âge environ \" || (if (nvl($PRENOM_ENFAIL7$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL7$) || \" a-t-\" || (if ($SEXE_ENFAIL7$=\"1\" or isnull($SEXE_ENFAIL7$)) then \"il \" else \"elle\") || \" cessé de vivre avec vous ?\"" + ], + "id": "l8ojuhud", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "AG_DEPART_ENFAIL7" + }, + { + "Response": [ + { + "CollectedVariableReference": "lij1hx9z", + "id": "l8ojhru1", + "mandatory": false, + "CodeListReference": "l1f65uvw", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_FREQ_ENFAIL7 non renseigné", + "Expression": "isnull($PARENT_FREQ_ENFAIL7$) or $PARENT_FREQ_ENFAIL7$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8ojjcl8" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"A quelle fréquence êtes-vous en contact avec \" || (if (nvl($PRENOM_ENFAIL7$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL7$) || \" ? \"" + ], + "ClarificationQuestion": [], + "id": "l8ojmjws", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"(en face à face, téléphone, mail, SMS, appel vidéo, etc.)\"", + "id": "l8ojt8hw", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_FREQ_ENFAIL7" + }, + { + "Response": [ + { + "CollectedVariableReference": "lai70va9", + "id": "l8ojo8na", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "FR_ENFAIL7 non renseigné", + "Expression": "isnull($FR_ENFAIL7$) or $FR_ENFAIL7$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8ojn5ql" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL7$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL7$) || \" vit-\" || (if ($SEXE_ENFAIL7$=\"1\" or isnull($SEXE_ENFAIL7$)) then \"il \" else \"elle \") || \"en France actuellement ?\"" + ], + "ClarificationQuestion": [], + "id": "l8oj98gw", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Prenez en compte les frontières actuelles.\"", + "id": "lai6ugn5", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "FR_ENFAIL7" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvyy4np", + "id": "llvzaolo", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "DEP_ENFAIL7 non renseigné", + "Expression": "isnull($DEP_ENFAIL7$) or $DEP_ENFAIL7$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8ojfj8g" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel département vit \" || (if (nvl($PRENOM_ENFAIL7$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL7$) || \" ?\"" + ], + "id": "l8ojb4ub", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"", + "id": "l8ojdq5t", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "DEP_ENFAIL7" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvypqbk", + "id": "llvz57ns", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "COM_ENFAIL7 non renseigné", + "Expression": "isnull($COM_ENFAIL7$) or $COM_ENFAIL7$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8ojnidd" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quelle commune vit \" || (if (nvl($PRENOM_ENFAIL7$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL7$) || \" ?\"" + ], + "id": "l8ojczfv", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez la commune recherchée et sélectionnez la dans la liste.\"", + "id": "l8oj6my9", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "COM_ENFAIL7" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvyovak", + "id": "llvyqwz8", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PAY_ENFAIL7 non renseigné", + "Expression": "isnull($PAY_ENFAIL7$) or $PAY_ENFAIL7$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8oj73gd" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel pays vit \" || (if (nvl($PRENOM_ENFAIL7$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL7$) || \" ?\"" + ], + "id": "l8ojif3m", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"", + "id": "l8oj5v82", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PAY_ENFAIL7" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8ojhh6l", + "id": "l8oj6h19", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "LOG_ENFAIL7 non renseigné", + "Expression": "isnull($LOG_ENFAIL7$) or $LOG_ENFAIL7$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8oj8n77" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL7$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL7$) || \" vit-\" || (if ($SEXE_ENFAIL7$=\"1\" or isnull($SEXE_ENFAIL7$)) then \"il\" else \"elle\") || \" dans son propre logement ?\"" + ], + "ClarificationQuestion": [], + "id": "l8oja1pz", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "LOG_ENFAIL7" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8oig2bs", + "id": "l8oia0f4", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "AUT_PAR_ENFAIL7 non renseigné", + "Expression": "isnull($AUT_PAR_ENFAIL7$) or $AUT_PAR_ENFAIL7$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8oinzxp" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL7$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL7$) || \" vit-\" || (if ($SEXE_ENFAIL7$=\"1\" or isnull($SEXE_ENFAIL7$)) then \"il\" else \"elle\") || \" chez son autre parent ?\"" + ], + "ClarificationQuestion": [], + "id": "l8oiinpy", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "AUT_PAR_ENFAIL7" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8oj2ija", + "id": "l8oiz02v", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "DORT_ENFAIL7 non renseigné", + "Expression": "isnull($DORT_ENFAIL7$) or $DORT_ENFAIL7$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8oiyyd4" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Arrive-t-il à \" || (if (nvl($PRENOM_ENFAIL7$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL7$) || \" de dormir chez vous ?\"" + ], + "ClarificationQuestion": [], + "id": "l8oj67fo", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "DORT_ENFAIL7" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8oivphd", + "id": "l8oimcso", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEP_AUT_PAR_ENFAIL7 non renseigné", + "Expression": "isnull($SEP_AUT_PAR_ENFAIL7$) or $SEP_AUT_PAR_ENFAIL7$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8oicupy" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Vous êtes-vous séparé\" || (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\") || \" de l'autre parent de \" || (if (nvl($PRENOM_ENFAIL7$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL7$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l8oiu9ax", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEP_AUT_PAR_ENFAIL7" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8oith8b", + "id": "l8oirvyk", + "mandatory": false, + "CodeListReference": "l448z131", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "RESID_ENFAIL7 non renseigné", + "Expression": "isnull($RESID_ENFAIL7$) or $RESID_ENFAIL7$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8oiaqdh" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel a été le mode de résidence fixé par décision de justice ?\"" + ], + "ClarificationQuestion": [], + "id": "l8oicj6e", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "RESID_ENFAIL7" + }, + { + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL7$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL7$) || \" vit-\" || (if ($SEXE_ENFAIL7$=\"1\" or isnull($SEXE_ENFAIL7$)) then \"il \" else \"elle \") || \"ailleurs que chez vous ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "lagyku3m", + "MappingTarget": "1" + }, + { + "MappingSource": "lagyel8m", + "MappingTarget": "2" + }, + { + "MappingSource": "lagyk7tb", + "MappingTarget": "3" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "l8sqimbm" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "SANTE_ENFAIL7", + "Response": [ + { + "CollectedVariableReference": "lagwmluw", + "id": "lagyku3m", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lagwrae6", + "id": "lagyel8m", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lagwha9j", + "id": "lagyk7tb", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SANTE_ENFAIL7 non renseigné", + "Expression": "(nvl($SANTE_ENFAIL71$, false) = false and \r\n nvl($SANTE_ENFAIL72$, false) = false and \r\n nvl($SANTE_ENFAIL73$, false) = false )", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8oj2q1s" + } + ], + "depth": 3, + "ClarificationQuestion": [], + "id": "l8oizp0r", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Plusieurs réponses possibles\"", + "id": "l8oj4gac", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + } + ], + "Name": "VOSENFAIL7" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "\"Votre huitième enfant qui ne vit pas avec vous ou qui est décédé\"" + ], + "id": "ljofiex8", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "l8olff0v", + "id": "l8oln1gt", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PRENOM_ENFAIL8 non renseigné", + "Expression": "isnull($PRENOM_ENFAIL8$) or $PRENOM_ENFAIL8$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"", + "id": "l8ols0la" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", comment s'appelle votre huitième enfant qui ne vit pas avec vous ou qui est décédé ?\"" + ], + "id": "l8olci32", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PRENOM_ENFAIL8" + }, + { + "Response": [ + { + "CollectedVariableReference": "llgjincl", + "id": "l8ol8o60", + "mandatory": false, + "CodeListReference": "llgbzo78", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEXE_ENFAIL8 non renseigné", + "Expression": "isnull($SEXE_ENFAIL8$) or $SEXE_ENFAIL8$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8olpss2" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel est le sexe de \" || (if (nvl($PRENOM_ENFAIL8$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL8$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l8olbhxj", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEXE_ENFAIL8" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln8xn95w", + "id": "l8ol6h1q", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ANAI_ENFAIL8 non renseigné", + "Expression": "isnull($ANAI_ENFAIL8$) or $ANAI_ENFAIL8$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"", + "id": "l8ollzgu" + }, + { + "post_collect": false, + "Description": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "Expression": "not(isnull($ANAI_ENFAIL8$)) and not(isnull($ANAIS$)) and (cast($ANAIS$,integer) + 15 > cast($ANAI_ENFAIL8$,integer))", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\" ", + "id": "l8slfhse" + }, + { + "post_collect": false, + "Description": "\"L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "Expression": "not(isnull($ANAI_ENFAIL8$)) and not(isnull($ANAIS$)) and cast($ANAI_ENFAIL8$,integer) < cast($ANAIS$,integer)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de naissance de votre enfant ne peut pas être antérieure à votre année de naissance.\"", + "id": "l8slsj8n" + }, + { + "post_collect": false, + "Description": "bornes ANAI_ENFAIL8", + "Expression": "cast($ANAI_ENFAIL8$,integer) < 1920 or cast($ANAI_ENFAIL8$,integer) > 2024", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de naissance de votre enfant est comprise entre 1920 et 2024.\" ", + "id": "ln8xq5pl" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quelle est l'année de naissance de \" || (if (nvl($PRENOM_ENFAIL8$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL8$) || \" ?\"" + ], + "id": "l8ol9xy3", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "ANAI_ENFAIL8" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8olls0i", + "id": "l8olb2am", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NEFRANCE_ENFAIL8 non renseigné", + "Expression": "isnull($NEFRANCE_ENFAIL8$) or $NEFRANCE_ENFAIL8$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8ol41k0" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL8$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL8$) || \" est-\" || (if ($SEXE_ENFAIL8$=\"1\" or isnull($SEXE_ENFAIL8$)) then \"il né\" else \"elle née\") || \" en France ?\"" + ], + "ClarificationQuestion": [], + "id": "l8ola1mr", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Prenez en compte les frontières actuelles.\"", + "id": "l8okzirz", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "NEFRANCE_ENFAIL8" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8oljfdf", + "id": "l8olfzvu", + "mandatory": false, + "CodeListReference": "l44726g4", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_VIT_ENFAIL8 non renseigné", + "Expression": "isnull($PARENT_VIT_ENFAIL8$) or $PARENT_VIT_ENFAIL8$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8olgma3" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"L'autre parent de \" || (if (nvl($PRENOM_ENFAIL8$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL8$) || \" vit-il/elle avec vous ?\"" + ], + "ClarificationQuestion": [], + "id": "l8okz45l", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_VIT_ENFAIL8" + }, + { + "Response": [ + { + "CollectedVariableReference": "l9dvbaqq", + "id": "l8okxkvv", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_VECU_ENFAIL8 non renseigné", + "Expression": "isnull($PARENT_VECU_ENFAIL8$) or $PARENT_VECU_ENFAIL8$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8olaktc" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Avez-vous déjà vécu avec l'autre parent de \" || (if (nvl($PRENOM_ENFAIL8$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL8$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l8ol369l", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_VECU_ENFAIL8" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8ol5yre", + "id": "l8ol3o2i", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "DC_ENFAIL8 non renseigné", + "Expression": "isnull($DC_ENFAIL8$) or $DC_ENFAIL8$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8olch59" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL8$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL8$) || \" est-\" || if ($SEXE_ENFAIL8$=\"1\" or isnull($SEXE_ENFAIL8$)) then \"il encore en vie ?\" else \"elle encore en vie ?\"" + ], + "ClarificationQuestion": [], + "id": "l8ole120", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "DC_ENFAIL8" + }, + { + "Response": [ + { + "CollectedVariableReference": "l9flj5ll", + "id": "l8oku4vn", + "mandatory": false, + "Datatype": { + "Maximum": "95", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "AG_DC_ENFAIL8 non renseigné", + "Expression": "isnull($AG_DC_ENFAIL8$) or $AG_DC_ENFAIL8$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu.\"", + "id": "l8okui35" + }, + { + "post_collect": false, + "Description": "\"L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge.\"", + "Expression": "not(isnull($AG_ENFAIL8$)) and not (isnull($AG_DC_ENFAIL8$)) and cast($AG_DC_ENFAIL8$,integer) > cast($AG_ENFAIL8$,integer)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'âge de votre enfant lors de son décès ne peut pas être supérieur à son âge.\"", + "id": "lnbxftex" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"A quel âge \" || (if (nvl($PRENOM_ENFAIL8$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL8$) || \" est-\" || if ($SEXE_ENFAIL8$=\"1\" or isnull($SEXE_ENFAIL8$)) then \"il décédé ?\" else \"elle décédée ?\"" + ], + "id": "l8olcd8n", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Notez 0 si \"||(if(nvl(PRENOM_ENFAIL8,\"\") = \"\") then \"cet enfant\" else PRENOM_ENFAIL8) || (\" est\") || (if (SEXE_ENFAIL8 = \"1\" or nvl(SEXE_ENFAIL8,\"\") = \"\") then \" décédé\" else \" décédée\") || (\" avant un an.\")", + "id": "l8oktakr", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "AG_DC_ENFAIL8" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8okya6y", + "id": "l8ol1ust", + "mandatory": false, + "Datatype": { + "Maximum": "95", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "AG_DEPART_ENFAIL8 non renseigné", + "Expression": "isnull($AG_DEPART_ENFAIL8$) or $AG_DEPART_ENFAIL8$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu.\"", + "id": "l8okvbfj" + }, + { + "post_collect": false, + "Description": "L’âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge.", + "Expression": "not(isnull($AG_DEPART_ENFAIL8$)) and not(isnull($ANAI_ENFAIL8$)) and $AG_DEPART_ENFAIL8$ > $AG_ENFAIL8$", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'âge de départ de chez vous de votre enfant ne peut pas être supérieur à son âge.\"", + "id": "lbpk1yhu" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"A quel âge environ \" || (if (nvl($PRENOM_ENFAIL8$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL8$) || \" a-t-\" || (if ($SEXE_ENFAIL8$=\"1\" or isnull($SEXE_ENFAIL8$)) then \"il \" else \"elle\") || \" cessé de vivre avec vous ?\"" + ], + "id": "l8ol84b7", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "AG_DEPART_ENFAIL8" + }, + { + "Response": [ + { + "CollectedVariableReference": "lij1c5mx", + "id": "l8ol3s4a", + "mandatory": false, + "CodeListReference": "l1f65uvw", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PARENT_FREQ_ENFAIL8 non renseigné", + "Expression": "isnull($PARENT_FREQ_ENFAIL8$) or $PARENT_FREQ_ENFAIL8$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8ol0f1s" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"A quelle fréquence êtes-vous en contact avec \" || (if (nvl($PRENOM_ENFAIL8$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL8$) || \" ? \"" + ], + "ClarificationQuestion": [], + "id": "l8okx7cd", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"(en face à face, téléphone, mail, SMS, appel vidéo, etc.)\"", + "id": "l8ol6hio", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PARENT_FREQ_ENFAIL8" + }, + { + "Response": [ + { + "CollectedVariableReference": "lai6too4", + "id": "l8okk1db", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "FR_ENFAIL8 non renseigné", + "Expression": "isnull($FR_ENFAIL8$) or $FR_ENFAIL8$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8oku9v8" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL8$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL8$) || \" vit-\" || (if ($SEXE_ENFAIL8$=\"1\" or isnull($SEXE_ENFAIL8$)) then \"il \" else \"elle \") || \"en France actuellement ?\"" + ], + "ClarificationQuestion": [], + "id": "l8okpxv8", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Prenez en compte les frontières actuelles.\"", + "id": "lai7cpw5", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "FR_ENFAIL8" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvz0k9p", + "id": "llvz6npr", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "DEP_ENFAIL8 non renseigné", + "Expression": "isnull($DEP_ENFAIL8$) or $DEP_ENFAIL8$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8okl1nd" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel département vit \" || (if (nvl($PRENOM_ENFAIL8$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL8$) || \" ?\"" + ], + "id": "l8okue2t", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"", + "id": "l8okk3ew", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "DEP_ENFAIL8" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvz0iw5", + "id": "llvz0mdc", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "COM_ENFAIL8 non renseigné", + "Expression": "isnull($COM_ENFAIL8$) or $COM_ENFAIL8$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8ol1ufu" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quelle commune vit \" || (if (nvl($PRENOM_ENFAIL8$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL8$) || \" ?\"" + ], + "id": "l8okjfla", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez la commune recherchée et sélectionnez la dans la liste.\"", + "id": "l8okkn0x", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "COM_ENFAIL8" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvyxbi2", + "id": "llvz12vx", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PAY_ENFAIL8 non renseigné", + "Expression": "isnul($PAY_ENFAIL8$) or $PAY_ENFAIL8$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8okksuv" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel pays vit \" || (if (nvl($PRENOM_ENFAIL8$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL8$) || \" ?\"" + ], + "id": "l8okxgwv", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"", + "id": "l8okt75e", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PAY_ENFAIL8" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8okm2oj", + "id": "l8okh5d0", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "LOG_ENFAIL8 non renseigné", + "Expression": "isnull($LOG_ENFAIL8$) or $LOG_ENFAIL8$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8okiihn" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL8$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL8$) || \" vit-\" || (if ($SEXE_ENFAIL8$=\"1\" or isnull($SEXE_ENFAIL8$)) then \"il\" else \"elle\") || \" dans son propre logement ?\"" + ], + "ClarificationQuestion": [], + "id": "l8oksuft", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "LOG_ENFAIL8" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8okskbt", + "id": "l8okd51b", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "AUT_PAR_ENFAIL8 non renseigné", + "Expression": "isnull($AUT_PAR_ENFAIL8$) or $AUT_PAR_ENFAIL8$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8okbesa" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL8$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL8$) || \" vit-\" || (if ($SEXE_ENFAIL8$=\"1\" or isnull($SEXE_ENFAIL8$)) then \"il\" else \"elle\") || \" chez son autre parent ?\"" + ], + "ClarificationQuestion": [], + "id": "l8okked6", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "AUT_PAR_ENFAIL8" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8okje65", + "id": "l8oktkgp", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "DORT_ENFAIL8 non renseigné", + "Expression": "isnull($DORT_ENFAIL8$) or $DORT_ENFAIL8$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8okm4qx" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Arrive-t-il à \" || (if (nvl($PRENOM_ENFAIL8$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL8$) || \" de dormir chez vous ?\"" + ], + "ClarificationQuestion": [], + "id": "l8okkkef", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "DORT_ENFAIL8" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8okt0i0", + "id": "l8oke48c", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEP_AUT_PAR_ENFAIL8 non renseigné", + "Expression": "isnull($SEP_AUT_PAR_ENFAIL8$) or $SEP_AUT_PAR_ENFAIL8$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8okbx0t" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Vous êtes-vous séparé\" || (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\") || \" de l'autre parent de \" || (if (nvl($PRENOM_ENFAIL8$,\"\")=\"\") then \"cet enfant\" else $PRENOM_ENFAIL8$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l8okfvhy", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEP_AUT_PAR_ENFAIL8" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8okgq26", + "id": "l8oksr34", + "mandatory": false, + "CodeListReference": "l448z131", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "RESID_ENFAIL8 non renseigné", + "Expression": "isnull($RESID_ENFAIL8$) or $RESID_ENFAIL8$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8okja8p" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel a été le mode de résidence fixé par décision de justice ?\"" + ], + "ClarificationQuestion": [], + "id": "l8okioqc", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "RESID_ENFAIL8" + }, + { + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_ENFAIL8$,\"\")=\"\") then \"Cet enfant\" else $PRENOM_ENFAIL8$) || \" vit-\" || (if ($SEXE_ENFAIL8$=\"1\" or isnull($SEXE_ENFAIL8$)) then \"il \" else \"elle \") || \"ailleurs que chez vous ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "lagyjvmi", + "MappingTarget": "1" + }, + { + "MappingSource": "lagynhci", + "MappingTarget": "2" + }, + { + "MappingSource": "lagyehg2", + "MappingTarget": "3" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "l8sqimbm" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "SANTE_ENFAIL8", + "Response": [ + { + "CollectedVariableReference": "lagwt3sh", + "id": "lagyjvmi", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lagwo4de", + "id": "lagynhci", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lagwnufr", + "id": "lagyehg2", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SANTE_ENFAIL8 non renseigné", + "Expression": "(nvl($SANTE_ENFAIL81$, false) = false and \r\n nvl($SANTE_ENFAIL82$, false) = false and \r\n nvl($SANTE_ENFAIL83$, false) = false )", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8oksvq6" + } + ], + "depth": 3, + "ClarificationQuestion": [], + "id": "l8oklb21", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Plusieurs réponses possibles\"", + "id": "l8okvidp", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + } + ], + "Name": "VOSENFAIL8" + } + ], + "Name": "ENFANTS" + }, + { + "Control": [], + "depth": 1, + "FlowControl": [], + "genericName": "MODULE", + "Label": [ + "VOS PETITS-ENFANTS" + ], + "id": "l1f6bztr", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", nous allons maintenant vous poser quelques questions sur vos petits-enfants.\"", + "id": "l1f65cp9", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "l5iaj6j7", + "id": "l1f67xik", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PETIT_ENF non renseigné", + "Expression": "isnull($PETIT_ENF$) or $PETIT_ENF$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l3bqp36l" + } + ], + "depth": 2, + "FlowControl": [], + "Label": [ + "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", avez-vous des petits-enfants ?\"" + ], + "ClarificationQuestion": [], + "id": "l1f6a3qv", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"(enfants de vos enfants)\"", + "id": "l5iarkhk", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PETIT_ENF" + }, + { + "Response": [ + { + "CollectedVariableReference": "lm69vsc6", + "id": "l1f6aqky", + "mandatory": false, + "Datatype": { + "Maximum": "40", + "Minimum": "1", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NB_PETIT_ENF non renseigné", + "Expression": "isnull($NB_PETIT_ENF$) or $NB_PETIT_ENF$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante au bon déroulement du questionnaire. Merci d'indiquer le nombre attendu.\"", + "id": "l3bqxwyd" + } + ], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"Combien de petits-enfants avez-vous en tout ?\"" + ], + "id": "l1f6dz1j", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "NB_PETIT_ENF" + }, + { + "Response": [ + { + "CollectedVariableReference": "lij1xpcq", + "id": "l1f6h1an", + "mandatory": false, + "Datatype": { + "Maximum": "80", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "AG_PETIT_ENF non renseigné", + "Expression": "isnull($AG_PETIT_ENF$) or $AG_PETIT_ENF$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu.\"", + "id": "l3bqpw17" + } + ], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"\" || if (cast($NB_PETIT_ENF$,integer)>1 or isnull($NB_PETIT_ENF$)) then \"Quel âge a l'aîné(e) ?\" else \"Quel âge a-t-il/elle ?\"" + ], + "id": "l1f69ivh", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"S'il/elle a moins d'un an, notez 0.\"", + "id": "l1f62ww0", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "AG_PETIT_ENF" + }, + { + "FlowControl": [], + "Label": [ + "\"En moyenne, à quelle fréquence voyez-vous \" || if (cast($NB_PETIT_ENF$,integer)>1 or isnull($NB_PETIT_ENF$)) then \"vos petits-enfants ?\" else \"votre petit-enfant ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "llf32z1d", + "MappingTarget": "1" + }, + { + "MappingSource": "llf309m5", + "MappingTarget": "2" + }, + { + "MappingSource": "llf3bgof", + "MappingTarget": "3" + }, + { + "MappingSource": "llf38epk", + "MappingTarget": "4" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "l1f65uvw" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "FREQ_VU_PETIT_ENF", + "Response": [ + { + "CollectedVariableReference": "llf391dx", + "id": "llf32z1d", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "llf3cd67", + "id": "llf309m5", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "llf32wcn", + "id": "llf3bgof", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "llf2wpz5", + "id": "llf38epk", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "FREQ_VU_PETIT_ENF non renseignée", + "Expression": "(nvl($FREQ_VU_PETIT_ENF1$, false) = false and \r\n nvl($FREQ_VU_PETIT_ENF2$, false) = false and \r\n nvl($FREQ_VU_PETIT_ENF3$, false) = false and \r\n nvl($FREQ_VU_PETIT_ENF4$, false) = false )", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l3bqucvn" + } + ], + "depth": 2, + "ClarificationQuestion": [], + "id": "l1g3hka7", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"(en face à face)\"", + "id": "l1g38p58", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + }, + { + "declarationType": "HELP", + "Text": "\"\" || if (cast($NB_PETIT_ENF$,integer)>1 or isnull($NB_PETIT_ENF$)) then \"Plusieurs réponses possibles.\" else \"\"", + "id": "l1g3k3v5", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + }, + { + "FlowControl": [], + "Label": [ + "\"En moyenne, à quelle fréquence communiquez-vous avec \" || if (cast($NB_PETIT_ENF$,integer)>1 or isnull($NB_PETIT_ENF$)) then \"vos petits-enfants ?\" else \"votre petit-enfant ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "llf334dp", + "MappingTarget": "1" + }, + { + "MappingSource": "llf35l7f", + "MappingTarget": "2" + }, + { + "MappingSource": "llf2xk2h", + "MappingTarget": "3" + }, + { + "MappingSource": "llf355j1", + "MappingTarget": "4" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "l1f65uvw" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "FREQ_CONT_PETIT_ENF", + "Response": [ + { + "CollectedVariableReference": "llf2x5mt", + "id": "llf334dp", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "llf31djx", + "id": "llf35l7f", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "llf35phn", + "id": "llf2xk2h", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "llf2x3ve", + "id": "llf355j1", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "FREQ_CONT_PETIT_ENF non renseignée", + "Expression": "(nvl($FREQ_CONT_PETIT_ENF1$, false) = false and \r\n nvl($FREQ_CONT_PETIT_ENF2$, false) = false and \r\n nvl($FREQ_CONT_PETIT_ENF3$, false) = false and \r\n nvl($FREQ_CONT_PETIT_ENF4$, false) = false )", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l3br1q4h" + } + ], + "depth": 2, + "ClarificationQuestion": [], + "id": "l1f4yrno", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"(téléphone, mail, SMS, appel vidéo, etc.)\"", + "id": "l1f4o4x7", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + }, + { + "declarationType": "HELP", + "Text": "\"\" || if (cast($NB_PETIT_ENF$,integer)>1 or isnull($NB_PETIT_ENF$)) then \"Plusieurs réponses possibles.\" else \"\"", + "id": "l1g3h5xf", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + } + ], + "Name": "PETITENF" + }, + { + "Control": [], + "depth": 1, + "FlowControl": [], + "genericName": "MODULE", + "Label": [ + "VOTRE FAMILLE (vivant ou non avec vous) ET VOTRE ENTOURAGE" + ], + "id": "l1g7w78w", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", nous allons maintenant vous poser quelques questions sur les aides apportées ou reçues de votre famille (vivant ou non avec vous) et sur votre entourage.\"", + "id": "l1g898c1", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "SequenceType", + "Child": [ + { + "FlowControl": [], + "Label": [ + "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", apportez-vous régulièrement une aide à une ou plusieurs personnes de votre famille (parent(s), conjoint(e), enfant(s), etc.) en raison de leur état de santé, d'un handicap ou d'une difficulté liée à un âge avancé ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "lmrsjz2q", + "MappingTarget": "1" + }, + { + "MappingSource": "lmrsu19x", + "MappingTarget": "2" + }, + { + "MappingSource": "lmrsjxl8", + "MappingTarget": "3" + }, + { + "MappingSource": "lmrswobh", + "MappingTarget": "4" + }, + { + "MappingSource": "lmrsncuh", + "MappingTarget": "5" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "l1g8605s" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "AIDE_APPORT", + "Response": [ + { + "CollectedVariableReference": "lmrrau72", + "id": "lmrsjz2q", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lmrreutd", + "id": "lmrsu19x", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lmrro9wt", + "id": "lmrsjxl8", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lmrrld0e", + "id": "lmrswobh", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lmrriwq0", + "id": "lmrsncuh", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "AIDE_APPORT non renseignée", + "Expression": "(nvl($AIDE_APPORT1$, false) = false and \r\n nvl($AIDE_APPORT2$, false) = false and \r\n nvl($AIDE_APPORT3$, false) = false and \r\n nvl($AIDE_APPORT4$, false) = false and \r\n nvl($AIDE_APPORT5$, false) = false )\r\n", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l3brg0w5" + }, + { + "post_collect": false, + "Description": "NON exclusif", + "Expression": "(nvl($AIDE_APPORT1$,false)=true and nvl($AIDE_APPORT5$,false)=true)\r\nor (nvl($AIDE_APPORT2$,false)=true and nvl($AIDE_APPORT5$,false)=true)\r\nor (nvl($AIDE_APPORT3$,false)=true and nvl($AIDE_APPORT5$,false)=true)\r\nor (nvl($AIDE_APPORT4$,false)=true and nvl($AIDE_APPORT5$,false)=true)", + "during_collect": false, + "criticity": "ERROR", + "FailMessage": "\"Vous ne pouvez pas cocher Non et une autre réponse.\"", + "id": "l7ywvr4s" + } + ], + "depth": 2, + "ClarificationQuestion": [], + "id": "l1g87t8t", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Plusieurs réponses possibles\"", + "id": "l1g850jr", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + }, + { + "FlowControl": [], + "Label": [ + "\"A qui apportez-vous cette aide pour les tâches quotidiennes ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "llz50h9h", + "MappingTarget": "1" + }, + { + "MappingSource": "llz4zodt", + "MappingTarget": "2" + }, + { + "MappingSource": "llz4thr9", + "MappingTarget": "3" + }, + { + "MappingSource": "llz4uavy", + "MappingTarget": "4" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "l1ggouwf" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "QUI_AID_APP_1", + "Response": [ + { + "CollectedVariableReference": "llz4pt0a", + "id": "llz50h9h", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "llz4w6fk", + "id": "llz4zodt", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "llz50qv7", + "id": "llz4thr9", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "llz4x6ay", + "id": "llz4uavy", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "QUI_AID_APP_11 non renseigné", + "Expression": "(nvl($QUI_AID_APP_11$, false) = false and \r\n nvl($QUI_AID_APP_12$, false) = false and \r\n nvl($QUI_AID_APP_13$, false) = false and \r\n nvl($QUI_AID_APP_14$, false) = false )", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l3bryywn" + } + ], + "depth": 2, + "ClarificationQuestion": [], + "id": "l1ggssgl", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Plusieurs réponses possibles\"", + "id": "l1ggjolj", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + }, + { + "FlowControl": [], + "Label": [ + "\"A qui apportez-vous cette aide financière ou matérielle ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "l8lfgbqf", + "MappingTarget": "1" + }, + { + "MappingSource": "l8lfhiwk", + "MappingTarget": "2" + }, + { + "MappingSource": "l8lffrns", + "MappingTarget": "3" + }, + { + "MappingSource": "l8lffy1z", + "MappingTarget": "4" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "l1ggouwf" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "QUI_AID_APP_2", + "Response": [ + { + "CollectedVariableReference": "l8le1kw4", + "id": "l8lfgbqf", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "l8le04ts", + "id": "l8lfhiwk", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "l8le2mq9", + "id": "l8lffrns", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "l8ldz05j", + "id": "l8lffy1z", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "QUI_AID_APP_2 non renseigné", + "Expression": "(nvl($QUI_AID_APP_21$, false) = false and \r\n nvl($QUI_AID_APP_22$, false) = false and \r\n nvl($QUI_AID_APP_23$, false) = false and \r\n nvl($QUI_AID_APP_24$, false) = false )", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci de d'indiquer votre choix.\"", + "id": "l3brmbj2" + } + ], + "depth": 2, + "ClarificationQuestion": [], + "id": "l1ggm06b", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Plusieurs réponses possibles\"", + "id": "l1ggq5nj", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + }, + { + "FlowControl": [], + "Label": [ + "\"A qui apportez-vous ce soutien moral ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "l8lfrnl6", + "MappingTarget": "1" + }, + { + "MappingSource": "l8lftaoi", + "MappingTarget": "2" + }, + { + "MappingSource": "l8lfdroz", + "MappingTarget": "3" + }, + { + "MappingSource": "l8lfgqn9", + "MappingTarget": "4" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "l1ggouwf" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "QUI_AID_APP_3", + "Response": [ + { + "CollectedVariableReference": "l8ldwcav", + "id": "l8lfrnl6", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "l8le2myg", + "id": "l8lftaoi", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "l8le88o9", + "id": "l8lfdroz", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "l8lds3ui", + "id": "l8lfgqn9", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "QUI_AID_APP_3 non renseigné", + "Expression": "(nvl($QUI_AID_APP_31$, false) = false and \r\n nvl($QUI_AID_APP_32$, false) = false and \r\n nvl($QUI_AID_APP_33$, false) = false and \r\n nvl($QUI_AID_APP_34$, false) = false )", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l3bs5ddu" + } + ], + "depth": 2, + "ClarificationQuestion": [], + "id": "l1ggtznr", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Plusieurs réponses possibles\"", + "id": "l1ggjqp6", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + }, + { + "FlowControl": [], + "Label": [ + "\"De qui êtes-vous \" || if ($TYPE_QUEST$=\"1\") then \" tuteur ou curateur ?\" else \" tutrice ou curatrice ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "l8lfdihy", + "MappingTarget": "1" + }, + { + "MappingSource": "l8lfirt9", + "MappingTarget": "2" + }, + { + "MappingSource": "l8lfeq6r", + "MappingTarget": "3" + }, + { + "MappingSource": "l8lfjwx6", + "MappingTarget": "4" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "l1ggouwf" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "QUI_AID_APP_4", + "Response": [ + { + "CollectedVariableReference": "l8le5n9q", + "id": "l8lfdihy", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "l8le80hx", + "id": "l8lfirt9", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "l8lduam7", + "id": "l8lfeq6r", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "l8ldya76", + "id": "l8lfjwx6", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "QUI_AID_APP_4 non renseigné", + "Expression": "(nvl($QUI_AID_APP_41$, false) = false and \r\n nvl($QUI_AID_APP_42$, false) = false and \r\n nvl($QUI_AID_APP_43$, false) = false and \r\n nvl($QUI_AID_APP_44$, false) = false )", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"\r\n\r\n", + "id": "l4lfg745" + } + ], + "depth": 2, + "ClarificationQuestion": [], + "id": "l4lf0y9m", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Plusieurs réponses possibles\"", + "id": "l4lfdg0x", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + }, + { + "FlowControl": [], + "Label": [ + "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", recevez-vous régulièrement de l'aide d'une ou plusieurs personnes de votre famille (parent(s), conjoint(e), enfant(s), etc.) en raison de votre état de santé, d'un handicap ou d'une difficulté liée à un âge avancé ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "lmrsrwwh", + "MappingTarget": "1" + }, + { + "MappingSource": "lmrsiwcj", + "MappingTarget": "2" + }, + { + "MappingSource": "lmrslpuw", + "MappingTarget": "3" + }, + { + "MappingSource": "lmrspudh", + "MappingTarget": "4" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "l6c3qpag" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "AIDE_RECUE", + "Response": [ + { + "CollectedVariableReference": "lmrrafby", + "id": "lmrsrwwh", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lmrrig7t", + "id": "lmrsiwcj", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lmrr4p8n", + "id": "lmrslpuw", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lmrr90h5", + "id": "lmrspudh", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "AIDE_RECUE non renseignée", + "Expression": "(nvl($AIDE_RECUE1$, false) = false and \r\n nvl($AIDE_RECUE2$, false) = false and \r\n nvl($AIDE_RECUE3$, false) = false and \r\n nvl($AIDE_RECUE4$, false) = false )", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l3wnqbkv" + }, + { + "post_collect": false, + "Description": "NON exclusif", + "Expression": "(nvl($AIDE_RECUE1$,false)=true and nvl($AIDE_RECUE4$,false)=true)\r\nor (nvl($AIDE_RECUE2$,false)=true and nvl($AIDE_RECUE4$,false)=true)\r\nor (nvl($AIDE_RECUE3$,false)=true and nvl($AIDE_RECUE4$,false)=true)", + "during_collect": false, + "criticity": "ERROR", + "FailMessage": "\"Vous ne pouvez pas cocher Non et une autre réponse.\"", + "id": "l7ywfzdo" + } + ], + "depth": 2, + "ClarificationQuestion": [], + "id": "l1g8o84g", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Plusieurs réponses possibles\"", + "id": "l1g8hmv7", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + }, + { + "FlowControl": [], + "Label": [ + "\"De qui recevez-vous cette aide pour les tâches quotidiennes ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "l8lfnnly", + "MappingTarget": "1" + }, + { + "MappingSource": "l8lflmwj", + "MappingTarget": "2" + }, + { + "MappingSource": "l8lfhcl4", + "MappingTarget": "3" + }, + { + "MappingSource": "l8lfi83w", + "MappingTarget": "4" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "l1ggouwf" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "QUI_AID_REC_1", + "Response": [ + { + "CollectedVariableReference": "l8le4u3b", + "id": "l8lfnnly", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "l8le2502", + "id": "l8lflmwj", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "l8le9mmb", + "id": "l8lfhcl4", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "l8lebsfh", + "id": "l8lfi83w", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "QUI_AID_REC_1 non renseignée", + "Expression": "(nvl($QUI_AID_REC_11$, false) = false and \r\n nvl($QUI_AID_REC_12$, false) = false and \r\n nvl($QUI_AID_REC_13$, false) = false and \r\n nvl($QUI_AID_REC_14$, false) = false )", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l3bs04d1" + } + ], + "depth": 2, + "ClarificationQuestion": [], + "id": "l1ggpjd7", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Plusieurs réponses possibles\"", + "id": "l1ggnslo", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + }, + { + "FlowControl": [], + "Label": [ + "\"De qui recevez-vous cette aide financière ou matérielle ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "l8lfslzm", + "MappingTarget": "1" + }, + { + "MappingSource": "l8lf8uhf", + "MappingTarget": "2" + }, + { + "MappingSource": "l8lfnjgv", + "MappingTarget": "3" + }, + { + "MappingSource": "l8lfccyo", + "MappingTarget": "4" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "l1ggouwf" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "QUI_AID_REC_2", + "Response": [ + { + "CollectedVariableReference": "l8le8q83", + "id": "l8lfslzm", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "l8le2aes", + "id": "l8lf8uhf", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "l8lec6vu", + "id": "l8lfnjgv", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "l8lduhdu", + "id": "l8lfccyo", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "QUI_AID_REC_2 non renseignée", + "Expression": "(nvl($QUI_AID_REC_21$, false) = false and \r\n nvl($QUI_AID_REC_22$, false) = false and \r\n nvl($QUI_AID_REC_23$, false) = false and \r\n nvl($QUI_AID_REC_24$, false) = false )", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l3bs3cl7" + } + ], + "depth": 2, + "ClarificationQuestion": [], + "id": "l1ggp8js", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Plusieurs réponses possibles\"", + "id": "l1gglc9h", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + }, + { + "FlowControl": [], + "Label": [ + "\"De qui recevez-vous ce soutien moral ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "l5jp75md", + "MappingTarget": "1" + }, + { + "MappingSource": "l5jpgd0s", + "MappingTarget": "2" + }, + { + "MappingSource": "l5jplm82", + "MappingTarget": "3" + }, + { + "MappingSource": "l5jpm5d8", + "MappingTarget": "4" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "l1ggouwf" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "QUI_AID_REC_3", + "Response": [ + { + "CollectedVariableReference": "l5jnxmnk", + "id": "l5jp75md", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "l5jo1job", + "id": "l5jpgd0s", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "l5joa3bl", + "id": "l5jplm82", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "l5jo6z82", + "id": "l5jpm5d8", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "QUI_AID_REC_3 non renseigné", + "Expression": "(nvl($QUI_AID_REC_31$, false) = false and \r\n nvl($QUI_AID_REC_32$, false) = false and \r\n nvl($QUI_AID_REC_33$, false) = false and \r\n nvl($QUI_AID_REC_34$, false) = false )", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l3brwuo0" + } + ], + "depth": 2, + "ClarificationQuestion": [], + "id": "l1gh36ky", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Plusieurs réponses possibles\"", + "id": "l1ggm7zg", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvz479p", + "id": "llvz9ewy", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "LANGUE1_ENTOU non renseignée", + "Expression": "isnull($LANGUE1_ENTOU$) or $LANGUE1_ENTOU$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l3bs0yd7" + } + ], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"En quelle langue, dialecte, ou patois discutez-vous régulièrement avec votre entourage (famille, amis, collègues, commerçants, etc.) ?\"" + ], + "id": "l1g8apw2", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"(exemples : kabyle, breton, LSF, français, italien)\"", + "id": "laians4k", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + }, + { + "declarationType": "HELP", + "Text": "\"Saisissez le libellé de la langue recherchée et sélectionnez la dans la liste.\"", + "id": "laial6r0", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "LANGUE1_ENTOU" + }, + { + "Response": [ + { + "CollectedVariableReference": "lmrr3o83", + "id": "llvz9gdb", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "même langue", + "Expression": "not(isnull($LANGUE1_ENTOU$)) and not(isnull($LANGUE2_ENTOU$)) and $LANGUE2_ENTOU$=$LANGUE1_ENTOU$", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Vous avez sélectionné la même langue que la précédente. Merci à vous de corriger.\"", + "id": "lmrr2xjv" + } + ], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"Y-a-t-il une autre langue, dialecte ou patois ?\"" + ], + "id": "l43tgurz", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le libellé de la langue recherchée et sélectionnez la dans la liste.\"", + "id": "l4o6rkjz", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "LANGUE2_ENTOU" + } + ], + "Name": "ENTOURAGE" + }, + { + "Control": [], + "depth": 1, + "FlowControl": [], + "genericName": "MODULE", + "Label": [ + "VOS PARENTS, ENCORE EN VIE OU NON" + ], + "id": "kwqfdovw", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", nous allons maintenant vous poser quelques questions sur vos parents, vivants ou non (père, mère, personnes que vous considérez comme tels).\"", + "id": "l4r7fofh", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "SequenceType", + "Child": [ + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "\"Votre parent le plus âgé\"" + ], + "id": "kwqf618x", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", décrivez l'un de vos parents, encore en vie ou non (père, mère ou personne que vous considérez comme tel), en commençant par le plus âgé.\"", + "id": "l0wezuxl", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "l4oec1lq", + "id": "l2kjn4vg", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PRENOM_PAR1 non renseigné", + "Expression": "isnull($PRENOM_PAR1$) or $PRENOM_PAR1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"", + "id": "l3bpgvav" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel est son prénom ?\"" + ], + "id": "l2kjnm8k", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PRENOM_PAR1" + }, + { + "Response": [ + { + "CollectedVariableReference": "lnekb9g4", + "id": "l2kjupyp", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ANAI_PAR1 non renseigné", + "Expression": "isnull($ANAI_PAR1$) or $ANAI_PAR1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"", + "id": "l3bpol5k" + }, + { + "post_collect": false, + "Description": "\"L'année de naissance de votre parent ne peut pas être postérieure à votre année de naissance.\"", + "Expression": "not(isnull($ANAI_PAR1$)) and not(isnull($ANAIS$)) and cast($ANAI_PAR1$,integer) > cast($ANAIS$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de naissance de votre parent ne peut pas être postérieure à votre année de naissance.\"", + "id": "l84k6a08" + }, + { + "post_collect": false, + "Description": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre parent, est-ce que vous confirmez?\"", + "Expression": "not(isnull($ANAI_PAR1$)) and not(isnull($ANAIS$)) and (cast($ANAI_PAR1$,integer) + 12 > cast($ANAIS$,integer))", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre parent, est-ce que vous confirmez ?\"", + "id": "l84kgy9a" + }, + { + "post_collect": false, + "Description": "bornes ANAI_PAR1", + "Expression": "cast($ANAI_PAR1$,integer) < 1860 or cast($ANAI_PAR1$,integer) > 1991", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de naissance de votre parent est comprise entre 1860 et 1991.\" ", + "id": "ln8y2v4s" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quelle est l'année de naissance de \" || (if (nvl($PRENOM_PAR1$,\"\")=\"\") then \"votre parent\" else $PRENOM_PAR1$) || \" ?\"" + ], + "id": "l2kjy49o", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Indiquez une année approximative si vous ne savez pas précisément.\"", + "id": "l6c4w3ax", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "ANAI_PAR1" + }, + { + "Response": [ + { + "CollectedVariableReference": "l3vpisia", + "id": "l2kkywzf", + "mandatory": false, + "CodeListReference": "kwqir1cc", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEXE_PAR1 non renseigné", + "Expression": "isnull ($SEXE_PAR1$) or $SEXE_PAR1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l3bpy2bv" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel est le sexe de \" || (if (nvl($PRENOM_PAR1$,\"\")=\"\") then \"votre parent\" else $PRENOM_PAR1$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l2kkvar7", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEXE_PAR1" + }, + { + "Response": [ + { + "CollectedVariableReference": "l34iqhee", + "id": "l2kk2tl9", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NATIO_PAR1 non renseignée", + "Expression": "isnull($NATIO_PAR1$) or $NATIO_PAR1$ =\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l3bpn2iu" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_PAR1$,\"\")=\"\") then \"Votre parent\" else $PRENOM_PAR1$) || \" était-\" || $LIBSUJETPAR1$ || \" français\" || $LIBSEXPAR1$ || \" à la naissance ? \"" + ], + "ClarificationQuestion": [], + "id": "l2kk539f", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "NATIO_PAR1" + }, + { + "Response": [ + { + "CollectedVariableReference": "l7yx0sde", + "id": "l7yx6ylx", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "TRAV_PAR1 non renseigné", + "Expression": "isnull($TRAV_PAR1$) or $TRAV_PAR1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l7ywxu8l" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_PAR1$,\"\")=\"\") then \"Votre parent\" else $PRENOM_PAR1$) || \" a-t-\" || $LIBSUJETPAR1$ || \" déjà travaillé ? \"" + ], + "ClarificationQuestion": [], + "id": "l7ywp1vk", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "TRAV_PAR1" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvywjqt", + "id": "llvyzrpx", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quelle est ou était la profession de \" || (if (nvl($PRENOM_PAR1$,\"\")=\"\") then \"votre parent\" else $PRENOM_PAR1$) || \" ?\"" + ], + "id": "l2kjueig", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le libellé de profession recherché et sélectionnez le dans la liste.\"\r\n\"Si vous ne le trouvez pas, passez à la question suivante.\"", + "id": "l4o5gqap", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + }, + { + "declarationType": "HELP", + "Text": "Saisissez bien la dernière profession connue.", + "id": "l5jp82du", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PROF_PAR1H" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvytrfl", + "id": "llvz490j", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quelle est ou était la profession de \" || (if (nvl($PRENOM_PAR1$,\"\")=\"\") then \"votre parent\" else $PRENOM_PAR1$) || \" ?\"" + ], + "id": "l4qzvm5v", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le libellé de profession recherché et sélectionnez le dans la liste.\"\r\n\"Si vous ne le trouvez pas, passez à la question suivante.\"", + "id": "l4qzje64", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + }, + { + "declarationType": "HELP", + "Text": "Saisissez bien la dernière profession connue.", + "id": "l5joyl4e", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PROF_PAR1F" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8ldy184", + "id": "l4o6wqdy", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PROF_PAR1_2 non renseignée", + "Expression": "isnull($PROF_PAR1_2$) or $PROF_PAR1_2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"", + "id": "l8m12wbq" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Vous n'avez pas trouvé le libellé de profession recherché dans la liste. Veuillez saisir le libellé de profession le plus précis et complet possible.\"" + ], + "id": "l45cjoj7", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PROF_PAR1_2" + }, + { + "Response": [ + { + "CollectedVariableReference": "llgnqpnr", + "id": "l2kk0l5l", + "mandatory": false, + "CodeListReference": "l1f23fi8", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "STATUT_PAR1 non renseigné", + "Expression": "isnull($STATUT_PAR1$) or $STATUT_PAR1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l3bptjp5" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel est ou était le statut professionnel de \" || (if (nvl($PRENOM_PAR1$,\"\")=\"\") then \"votre parent\" else $PRENOM_PAR1$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l2kjshy4", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "STATUT_PAR1" + }, + { + "Response": [ + { + "CollectedVariableReference": "llgrqor1", + "id": "llgozn3p", + "mandatory": false, + "CodeListReference": "llgq8911", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SAL_FP_PAR1 non renseigné", + "Expression": "$SAL_FP_PAR1$=\"\" or isnull($SAL_FP_PAR1$)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "llgokww3" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans cet emploi, \" || (if (nvl($PRENOM_PAR1$,\"\")=\"\") then \"votre parent\" else $PRENOM_PAR1$) || \" est ou était ?\"" + ], + "ClarificationQuestion": [], + "id": "llgo5n7b", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SAL_FP_PAR1" + }, + { + "Response": [ + { + "CollectedVariableReference": "llnhw38q", + "id": "llgqj9en", + "mandatory": false, + "CodeListReference": "llgoa6cg", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SAL_ENT_PAR1 non renseignée", + "Expression": "isnull($SAL_ENT_PAR1$) or $SAL_ENT_PAR1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "llgqhwz6" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans cet emploi, \" || (if (nvl($PRENOM_PAR1$,\"\")=\"\") then \"votre parent\" else $PRENOM_PAR1$) || \" est ou était ?\"" + ], + "ClarificationQuestion": [], + "id": "llgqspnh", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SAL_ENT_PAR1" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvypib1", + "id": "llvyt5ul", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "LANGUE1_PAR1 non renseignée", + "Expression": "isnull($LANGUE1_PAR1$) or $LANGUE1_PAR1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l3bq9krj" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"En quelle langue, dialecte, ou patois \" || (if (nvl($PRENOM_PAR1$,\"\")=\"\") then \"votre parent\" else $PRENOM_PAR1$) || \" vous parlait-\" || $LIBSUJETPAR1$ || \", quand vous étiez enfant ?\"" + ], + "id": "l2kk4seh", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"(exemples : kabyle, breton, LSF, français, italien)\"", + "id": "laiasuwg", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + }, + { + "declarationType": "HELP", + "Text": "\"Saisissez le libellé de la langue recherchée et sélectionnez la dans la liste.\"", + "id": "laiaq49f", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "LANGUE1_PAR1" + }, + { + "Response": [ + { + "CollectedVariableReference": "lmrr15k8", + "id": "llvyrge5", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "même langue", + "Expression": "not(isnull($LANGUE1_PAR1$)) and not(isnull($LANGUE2_PAR1$)) and $LANGUE2_PAR1$=$LANGUE1_PAR1$", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Vous avez sélectionné la même langue que la précédente. Merci à vous de corriger.\"", + "id": "lmrqzfn9" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Y-a-t-il une autre langue, dialecte ou patois ?\"" + ], + "id": "l447j7cx", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le libellé de la langue recherchée et sélectionnez la dans la liste.\"", + "id": "l4o6o3qv", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "LANGUE2_PAR1" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8k99ilg", + "id": "l2kjv6tv", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "VIV_PAR1 non renseignée", + "Expression": "isnull($VIV_PAR1$) or $VIV_PAR1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l3bpm8w3" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_PAR1$,\"\")=\"\") then \"Votre parent\" else $PRENOM_PAR1$) || \" est-\" || $LIBSUJETPAR1$ || \" encore en vie ?\"" + ], + "ClarificationQuestion": [], + "id": "l2kjzugb", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "VIV_PAR1" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln8yc8bi", + "id": "l2kk3398", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ANNEE_DC_PAR1 non renseignée", + "Expression": "isnull($ANNEE_DC_PAR1$) or $ANNEE_DC_PAR1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"", + "id": "l3bq1fh6" + }, + { + "post_collect": false, + "Description": "\"L'année du décès de votre parent ne peut pas être antérieure à son année de naissance.\"", + "Expression": "not(isnull($ANNEE_DC_PAR1$)) and not(isnull($ANAI_PAR1$)) and cast($ANNEE_DC_PAR1$,integer) < cast($ANAI_PAR1$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année du décès de votre parent ne peut pas être antérieure à son année de naissance.\"", + "id": "lai9tio3" + }, + { + "post_collect": false, + "Description": "bornes ANNEE_DC_PAR1", + "Expression": "cast($ANNEE_DC_PAR1$,integer) < 1880 or cast($ANNEE_DC_PAR1$,integer) > 2024", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année du décès de votre parent est comprise entre 1880 et 2024.\" ", + "id": "ln8xvv2l" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"En quelle année environ \" || (if (nvl($PRENOM_PAR1$,\"\")=\"\") then \"votre parent\" else $PRENOM_PAR1$) || \" est-\" || $LIBSUJETPAR1$ || \" décédé\" || $LIBSEXPAR1$ || \" ?\"" + ], + "id": "l2kkd59n", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "ANNEE_DC_PAR1" + }, + { + "Response": [ + { + "CollectedVariableReference": "lm0e90yl", + "id": "l34gopr4", + "mandatory": false, + "CodeListReference": "l4qualpe", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "LOG_PAR1 non renseigné", + "Expression": "isnull($LOG_PAR1$) or $LOG_PAR1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l3bqdi8r" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Où vit \" || (if (nvl($PRENOM_PAR1$,\"\")=\"\") then \"votre parent\" else $PRENOM_PAR1$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l2kk4snz", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "LOG_PAR1" + }, + { + "Response": [ + { + "CollectedVariableReference": "lai70nzp", + "id": "l2kk5rd6", + "mandatory": false, + "CodeListReference": "l4o7x17y", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "FR_PAR1 non renseigné", + "Expression": "isnull($FR_PAR1$) or $FR_PAR1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l3bqfqna" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_PAR1$,\"\")=\"\") then \"Votre parent\" else $PRENOM_PAR1$) || \" vit-\" || $LIBSUJETPAR1$ || \" en France ?\"" + ], + "ClarificationQuestion": [], + "id": "l2kkb4xa", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Prenez en compte les frontières actuelles.\"", + "id": "lai78qvl", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "FR_PAR1" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvz8tcu", + "id": "llvzb0k0", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "DEP_PAR1 non renseigné", + "Expression": "isnull($DEP_PAR1$) or $DEP_PAR1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4o87w1m" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel département vit \" || (if (nvl($PRENOM_PAR1$,\"\")=\"\") then \"votre parent\" else $PRENOM_PAR1$) || \" ?\"" + ], + "id": "l4o7ufzl", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"", + "id": "l4o88r3u", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "DEP_PAR1" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvytyg5", + "id": "llvz5uy3", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "COM_PAR1 non renseigné", + "Expression": "isnull($COM_PAR1$) or $COM_PAR1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4onu1cz" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quelle commune vit \" || (if (nvl($PRENOM_PAR1$,\"\")=\"\") then \"votre parent\" else $PRENOM_PAR1$) || \" ?\"" + ], + "id": "l4onhpvd", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez la commune recherchée et sélectionnez la dans la liste.\"", + "id": "l4onfbps", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "COM_PAR1" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvyqp24", + "id": "llvzajdd", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PAY_PAR1 non renseigné", + "Expression": "isnull($PAY_PAR1$) or $PAY_PAR1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4o80iwk" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel pays vit \" || (if (nvl($PRENOM_PAR1$,\"\")=\"\") then \"votre parent\" else $PRENOM_PAR1$) || \" ?\"" + ], + "id": "l4o8eale", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"", + "id": "l4o8fj6f", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PAY_PAR1" + }, + { + "Response": [ + { + "CollectedVariableReference": "l2kihdd6", + "id": "l1ezmkcq", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ETAB_PAR1 non renseigné", + "Expression": "isnull($ETAB_PAR1$) or $ETAB_PAR1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l3bqc9aj" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_PAR1$,\"\")=\"\") then \"Votre parent\" else $PRENOM_PAR1$) || \" vit-\" || $LIBSUJETPAR1$ || \" dans un établissement pour personnes âgées ?\"" + ], + "ClarificationQuestion": [], + "id": "l1ezkqes", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"(EHPAD, maison de retraite, etc.)\"", + "id": "l1ez5cei", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "ETAB_PAR1" + }, + { + "Response": [ + { + "CollectedVariableReference": "lij1rmvu", + "id": "l2kjzdaf", + "mandatory": false, + "CodeListReference": "l1f65uvw", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "FREQ_VU_PAR1 non renseignée", + "Expression": "isnull($FREQ_VU_PAR1$) or $FREQ_VU_PAR1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l3bqherh" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"A quelle fréquence voyez-vous \" || (if (nvl($PRENOM_PAR1$,\"\")=\"\") then \"votre parent\" else $PRENOM_PAR1$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l2kkeqsz", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"(en face à face)\"", + "id": "l2kkh5nj", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "FREQ_VU_PAR1" + }, + { + "Response": [ + { + "CollectedVariableReference": "lij1rmjq", + "id": "l2kkit9z", + "mandatory": false, + "CodeListReference": "l1f65uvw", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "FREQ_CONT_PAR1 non renseignée", + "Expression": "isnull($FREQ_CONT_PAR1$) or $FREQ_CONT_PAR1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l3bq80xx" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"A quelle fréquence communiquez-vous avec \" || (if (nvl($PRENOM_PAR1$,\"\")=\"\") then \"votre parent\" else $PRENOM_PAR1$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l2kk296y", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"(téléphone, mail, SMS, appel vidéo, etc.)\"", + "id": "l2kk1ab3", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "FREQ_CONT_PAR1" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4lonoaj", + "id": "l4lop1g7", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PROX_EGO_PAR1", + "Expression": "isnull($PROX_EGO_PAR1$) or $PROX_EGO_PAR1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4louxgw" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Vivez-vous à moins d'une heure de chez \" || (if (nvl($PRENOM_PAR1$,\"\")=\"\") then \"votre parent\" else $PRENOM_PAR1$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l4lojzxg", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PROX_EGO_PAR1" + }, + { + "Response": [ + { + "CollectedVariableReference": "l43y4bul", + "id": "l43xwxm8", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PROX_FRAT_PAR1 non renseigné", + "Expression": "isnull($PROX_FRAT_PAR1$) or $PROX_FRAT_PAR1$ =\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l43xz93x" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_PAR1$,\"\")=\"\") then \"Votre parent\" else $PRENOM_PAR1$) || \" a-t-\" || $LIBSUJETPAR1$ || \" d'autres enfants que vous qui vivent à moins d'une heure de chez\" || if ($SEXE_PAR1$=\"2\" or isnull($SEXE_PAR1$)) then \" lui ?\" else \" elle ?\"" + ], + "ClarificationQuestion": [], + "id": "l43yap7r", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PROX_FRAT_PAR1" + }, + { + "Response": [ + { + "CollectedVariableReference": "l5axyvf9", + "id": "l5ay3o3r", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "EXIST_PAR2 non renseigné", + "Expression": "isnull($EXIST_PAR2$) or $EXIST_PAR2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l5ayg0ji" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", avez-vous un autre parent, vivant ou non (père, mère ou personne que vous considérez comme tel) ?\"\r\n" + ], + "ClarificationQuestion": [], + "id": "l5axrwsa", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "EXIST_PAR2" + } + ], + "Name": "PARENT1" + }, + { + "Control": [], + "depth": 2, + "FlowControl": [], + "genericName": "SUBMODULE", + "Label": [ + "Votre autre parent" + ], + "id": "las2r756", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", décrivez maintenant votre autre parent, encore en vie ou non (père, mère ou personne que vous considérez comme tel).\"", + "id": "las2uh3c", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "l4oeo539", + "id": "l27i3154", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PRENOM_PAR2 non renseigné", + "Expression": "isnull($PRENOM_PAR2$) or $PRENOM_PAR2$=\"\"\r\n\r\n\r\n", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"", + "id": "l45cm5z2" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel est son prénom ?\"" + ], + "id": "l27ijusa", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PRENOM_PAR2" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln8y0vv7", + "id": "l0wf22g3", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ANAI_PAR2 non renseignée", + "Expression": "isnull($ANAI_PAR2$) or $ANAI_PAR2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"", + "id": "l45ceynt" + }, + { + "post_collect": false, + "Description": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre parent, est-ce que vous confirmez ?\"", + "Expression": "not(isnull($ANAI_PAR2$)) and not(isnull($ANAIS$)) and (cast($ANAI_PAR2$,integer) + 12 > cast($ANAIS$,integer))", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre parent, est-ce que vous confirmez ?\"", + "id": "l84ke62h" + }, + { + "post_collect": false, + "Description": "\"L'année de naissance de votre parent ne peut pas être postérieure à votre année de naissance.\"", + "Expression": "not(isnull($ANAI_PAR2$)) and not(isnull($ANAIS$)) and cast($ANAI_PAR2$,integer) > cast($ANAIS$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de naissance de votre parent ne peut pas être postérieure à votre année de naissance.\"", + "id": "l84k9p2r" + }, + { + "post_collect": false, + "Description": "bornes ANAI_PAR2", + "Expression": " cast($ANAI_PAR2$,integer) < 1860 or cast($ANAI_PAR2$,integer) > 1991", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de naissance de votre parent est comprise entre 1860 et 1991.\" ", + "id": "ln8y5bsx" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quelle est l'année de naissance de \" || (if (nvl($PRENOM_PAR2$,\"\")=\"\") then \"votre autre parent\" else $PRENOM_PAR2$) || \" ?\"" + ], + "id": "kwqfufye", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Indiquez une année approximative si vous ne savez pas précisément.\"", + "id": "l6c4ofs8", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "ANAI_PAR2" + }, + { + "Response": [ + { + "CollectedVariableReference": "l45cezmn", + "id": "l27ii3c9", + "mandatory": false, + "CodeListReference": "kwqir1cc", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SEXE_PAR2 non renseigné", + "Expression": "isnull($SEXE_PAR2$) or $SEXE_PAR2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l45cs4bc" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel est le sexe de \" || (if (nvl($PRENOM_PAR2$,\"\")=\"\") then \"votre autre parent\" else $PRENOM_PAR2$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l27ig4yy", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SEXE_PAR2" + }, + { + "Response": [ + { + "CollectedVariableReference": "l2kjzgzk", + "id": "kwqft4ub", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NATIO_PAR2 non renseignée", + "Expression": "isnull($NATIO_PAR2$) or $NATIO_PAR2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l45cwo0d" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_PAR2$,\"\")=\"\") then \"Votre autre parent\" else $PRENOM_PAR2$) || \" était-\" || $LIBSUJETPAR2$ || \" français\" || $LIBSEXPAR2$ || \" à la naissance ? \"" + ], + "ClarificationQuestion": [], + "id": "kwqfhhge", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "NATIO_PAR2" + }, + { + "Response": [ + { + "CollectedVariableReference": "l7ywxkf7", + "id": "l7yx8jjw", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "TRAV_PAR2 non renseigné", + "Expression": "isnull($TRAV_PAR2$) or $TRAV_PAR2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l7yx2fi0" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_PAR2$,\"\")=\"\") then \"Votre autre parent\" else $PRENOM_PAR2$) || \" a-t-\" || $LIBSUJETPAR2$ || \" déjà travaillé ? \"" + ], + "ClarificationQuestion": [], + "id": "l7ywxphs", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "TRAV_PAR2" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvz3hw4", + "id": "llvz8km0", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quelle est ou était la profession de \" || (if (nvl($PRENOM_PAR2$,\"\")=\"\") then \"votre autre parent\" else $PRENOM_PAR2$) || \" ?\"" + ], + "id": "l1ezowxi", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le libellé de profession recherché et sélectionnez le dans la liste.\"\r\n\"Si vous ne le trouvez pas, passez à la question suivante.\"", + "id": "l4o51lf6", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + }, + { + "declarationType": "HELP", + "Text": "Saisissez bien la dernière profession connue.", + "id": "l5jou9wy", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PROF_PAR2H" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvz5gpf", + "id": "llvzb8qa", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quelle est ou était la profession de \" || (if (nvl($PRENOM_PAR2$,\"\")=\"\") then \"votre autre parent\" else $PRENOM_PAR2$) || \" ?\"" + ], + "id": "l4qzjbsx", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le libellé de profession recherché et sélectionnez le dans la liste.\"\r\n\"Si vous ne le trouvez pas, passez à la question suivante.\"", + "id": "l4qzsxov", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + }, + { + "declarationType": "HELP", + "Text": "Saisissez bien la dernière profession connue.", + "id": "l5jp1tz6", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PROF_PAR2F" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4o73c23", + "id": "l4o6zyol", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PROF_PAR2_2 non renseignée", + "Expression": "isnull($PROF_PAR2_2$) or $PROF_PAR2_2$ =\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"", + "id": "l45cuuxl" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Vous n'avez pas trouvé le libellé de profession recherché dans la liste. Veuillez saisir le libellé de profession le plus précis et complet possible.\"" + ], + "id": "l444t31z", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PROF_PAR2_2" + }, + { + "Response": [ + { + "CollectedVariableReference": "llgnuzxv", + "id": "kwqg4dq2", + "mandatory": false, + "CodeListReference": "l4n5c408", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "STATUT_PAR2 non renseigné", + "Expression": "isnull($STATUT_PAR2$) or $STATUT_PAR2$=\"\"\r\n", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8m15wdf" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Quel est ou était le statut professionnel de \" || (if (nvl($PRENOM_PAR2$,\"\")=\"\") then \"votre autre parent\" else $PRENOM_PAR2$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "kwqfto3c", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "STATUT_PAR2" + }, + { + "Response": [ + { + "CollectedVariableReference": "llnhstp4", + "id": "llgom4r9", + "mandatory": false, + "CodeListReference": "llmi5xl5", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SAL_FP_PAR2 non renseigné", + "Expression": "$SAL_FP_PAR2$=\"\" or isnull($SAL_FP_PAR2$)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "llgocmgt" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans cet emploi, \" || (if (nvl($PRENOM_PAR2$,\"\")=\"\") then \"votre parent\" else $PRENOM_PAR2$) || \" est ou était ?\"" + ], + "ClarificationQuestion": [], + "id": "llgosp3i", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SAL_FP_PAR2" + }, + { + "Response": [ + { + "CollectedVariableReference": "llni1mhr", + "id": "llgs2ez2", + "mandatory": false, + "CodeListReference": "llgry90d", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "SAL_ENT_PAR2 non renseigné", + "Expression": "isnull($SAL_ENT_PAR2$) or $SAL_ENT_PAR2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "llgs9d7y" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans cet emploi, \" || (if (nvl($PRENOM_PAR2$,\"\")=\"\") then \"votre parent\" else $PRENOM_PAR2$) || \" est ou était ?\"" + ], + "ClarificationQuestion": [], + "id": "llgrqyqg", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "SAL_ENT_PAR2" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvz8cp5", + "id": "llvz4083", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "LANGUE1_PAR2non renseigné", + "Expression": "isnull($LANGUE1_PAR2$) or $LANGUE1_PAR2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l7rmkl38" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"En quelle langue, dialecte, ou patois \" || (if (nvl($PRENOM_PAR2$,\"\")=\"\") then \"votre autre parent\" else $PRENOM_PAR2$) || \" vous parlait-\" || $LIBSUJETPAR2$ || \", quand vous étiez enfant ?\"" + ], + "id": "l1ezgxe3", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"(exemples : kabyle, breton, LSF, français, italien)\"", + "id": "laiaof32", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + }, + { + "declarationType": "HELP", + "Text": "\"Saisissez le libellé de la langue recherchée et sélectionnez la dans la liste.\"", + "id": "laiap5v8", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "LANGUE1_PAR2" + }, + { + "Response": [ + { + "CollectedVariableReference": "lmrreu7w", + "id": "llvzbbbd", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "même langue", + "Expression": "not(isnull($LANGUE1_PAR2$)) and not(isnull($LANGUE2_PAR2$)) and $LANGUE2_PAR2$=$LANGUE1_PAR2$", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Vous avez sélectionné la même langue que la précédente. Merci à vous de corriger.\"", + "id": "lmrri8vf" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Y-a-t-il une autre langue, dialecte ou patois ?\"" + ], + "id": "l444xjux", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le libellé de la langue recherchée et sélectionnez la dans la liste.\"", + "id": "l4o6tj9q", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "LANGUE2_PAR2" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8k9sjms", + "id": "kwqhv63j", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "VIV_PAR2 non renseigné", + "Expression": "isnull($VIV_PAR2$) or $VIV_PAR2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8m1572w" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_PAR2$,\"\")=\"\") then \"Votre autre parent\" else $PRENOM_PAR2$) || \" est-\" || $LIBSUJETPAR2$ || \" encore en vie ?\"" + ], + "ClarificationQuestion": [], + "id": "kwqhjfzk", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "VIV_PAR2" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln8yd8j8", + "id": "kwqg1sjf", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ANNEE_DC_PAR2 non renseignée", + "Expression": "isnull($ANNEE_DC_PAR2$) or $ANNEE_DC_PAR2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"", + "id": "l8m1cspe" + }, + { + "post_collect": false, + "Description": "\"L'année du décès de votre parent ne peut pas être antérieure à son année de naissance.\"", + "Expression": "not(isnull($ANNEE_DC_PAR2$)) and not(isnull($ANAI_PAR2$)) and cast($ANNEE_DC_PAR2$,integer) < cast($ANAI_PAR2$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année du décès de votre parent ne peut pas être antérieure à son année de naissance.\"", + "id": "lai9dfb7" + }, + { + "post_collect": false, + "Description": "bornes ANNEE_DC_PAR2", + "Expression": " cast($ANNEE_DC_PAR2$,integer) < 1880 or cast($ANNEE_DC_PAR2$,integer) > 2024", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de décès de votre parent est comprise entre 1880 et 2024.\" ", + "id": "ln8ybgr6" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"En quelle année environ \" || (if (nvl($PRENOM_PAR2$,\"\")=\"\") then \"votre autre parent\" else $PRENOM_PAR2$) || \" est-\" || $LIBSUJETPAR2$ || \" décédé\" || $LIBSEXPAR2$ || \" ?\"" + ], + "id": "kwqg35i9", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "ANNEE_DC_PAR2" + }, + { + "FlowControl": [], + "Label": [ + "\"Où vit \" || (if (nvl($PRENOM_PAR2$,\"\")=\"\") then \"votre autre parent\" else $PRENOM_PAR2$) || \" ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "lm0fqbdz", + "MappingTarget": "1" + }, + { + "MappingSource": "lm0f8md7", + "MappingTarget": "2" + }, + { + "MappingSource": "lm0fpbr7", + "MappingTarget": "3" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "lagv1pzu" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "LOG_PAR2A", + "Response": [ + { + "CollectedVariableReference": "lm0fd7qv", + "id": "lm0fqbdz", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lm0fb0me", + "id": "lm0f8md7", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lm0f8sao", + "id": "lm0fpbr7", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "LOG_PAR2A non renseigné", + "Expression": "(nvl($LOG_PAR2A1$, false) = false and \r\n nvl($LOG_PAR2A2$, false) = false and \r\n nvl($LOG_PAR2A3$, false) = false )", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8m1h507" + }, + { + "post_collect": false, + "Description": "NON exclusif", + "Expression": "(nvl($LOG_PAR2A1$,false)=true and nvl($LOG_PAR2A3$,false)=true)\r\nor (nvl($LOG_PAR2A2$,false)=true and nvl($LOG_PAR2A3$,false)=true)\r\n\r\n", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Vous ne pouvez pas cocher Ailleurs et une autre réponse.\"", + "id": "lm0famzg" + } + ], + "depth": 3, + "ClarificationQuestion": [], + "id": "kwqgffvw", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Plusieurs réponses possibles\"", + "id": "lley7g7u", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + }, + { + "Response": [ + { + "CollectedVariableReference": "laguuyk8", + "id": "lab73lgn", + "mandatory": false, + "CodeListReference": "kwqjgcfw", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "LOG_PAR2B non renseigné", + "Expression": "isnull($LOG_PAR2B$) or $LOG_PAR2B$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "lab73f6r" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Où vit \" || (if (nvl($PRENOM_PAR2$,\"\")=\"\") then \"votre autre parent\" else $PRENOM_PAR2$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "lab6xfk9", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "LOG_PAR2B" + }, + { + "Response": [ + { + "CollectedVariableReference": "lai7blbr", + "id": "kwqgeipr", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "FR_PAR2 non renseigné", + "Expression": "isnull($FR_PAR2$) or $FR_PAR2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4o81b03" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_PAR2$,\"\")=\"\") then \"Votre autre parent\" else $PRENOM_PAR2$) || \" vit-\" || $LIBSUJETPAR2$ || \" en France ?\"" + ], + "ClarificationQuestion": [], + "id": "kwqgawqp", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Prenez en compte les frontières actuelles.\"", + "id": "lai7elua", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "FR_PAR2" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvz5jjn", + "id": "llvyr5wh", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "DEP_PAR2 non renseigné", + "Expression": "isnull($DEP_PAR2$) or $DEP_PAR2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4o8dxg9" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel département vit \" || (if (nvl($PRENOM_PAR2$,\"\")=\"\") then \"votre autre parent\" else $PRENOM_PAR2$) || \" ?\"" + ], + "id": "l4o8co0c", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le département recherché et sélectionnez le dans la liste.\"", + "id": "l4o87prg", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "DEP_PAR2" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvytvcv", + "id": "llvz0ewe", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "COM_PAR2 non renseigné", + "Expression": "isnull($COM_PAR2$) or $COM_PAR2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4onqaz8" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quelle commune vit \" || (if (nvl($PRENOM_PAR2$,\"\")=\"\") then \"votre autre parent\" else $PRENOM_PAR2$) || \" ?\"" + ], + "id": "l4onk34z", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez la commune recherchée et sélectionnez la dans la liste.\"", + "id": "l4ondms9", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "COM_PAR2" + }, + { + "Response": [ + { + "CollectedVariableReference": "llvz5i4v", + "id": "llvyu3jn", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "20" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PAY_PAR2 non renseigné", + "Expression": "isnull($PAY_PAR2$) or $PAY_PAR2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4o8hylu" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Dans quel pays vit \" || (if (nvl($PRENOM_PAR2$,\"\")=\"\") then \"votre autre parent\" else $PRENOM_PAR2$) || \" ?\"" + ], + "id": "l4o8dk7q", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Saisissez le pays recherché et sélectionnez le dans la liste.\"", + "id": "l4o8fiwd", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PAY_PAR2" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8m1qyu9", + "id": "l2kkfxvm", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ETAB_PAR2 non renseigné", + "Expression": "isnull($ETAB_PAR2$) or $ETAB_PAR2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8m1wee8" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_PAR2$,\"\")=\"\") then \"Votre autre parent\" else $PRENOM_PAR2$) || \" vit-\" || $LIBSUJETPAR2$ || \" dans un établissement pour personnes âgées ?\"" + ], + "ClarificationQuestion": [], + "id": "l2kkc8s9", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"(EHPAD, maison de retraite, etc.)\"", + "id": "l2kjzgxz", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "ETAB_PAR2" + }, + { + "Response": [ + { + "CollectedVariableReference": "lij1nowz", + "id": "l1gl5e3e", + "mandatory": false, + "CodeListReference": "l1f65uvw", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "FREQ_VU_PAR2 non renseigné", + "Expression": "isnull($FREQ_VU_PAR2$) or $FREQ_VU_PAR2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8m1f2ad" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"A quelle fréquence voyez-vous \" || (if (nvl($PRENOM_PAR2$,\"\")=\"\") then \"votre autre parent\" else $PRENOM_PAR2$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l1gl4054", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"(en face à face)\"", + "id": "l1gkryh5", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "FREQ_VU_PAR2" + }, + { + "Response": [ + { + "CollectedVariableReference": "lij1bnzj", + "id": "l1ezevjd", + "mandatory": false, + "CodeListReference": "l1f65uvw", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "FREQ_CONT_PAR2 non renseigné", + "Expression": "isnull($FREQ_CONT_PAR2$) or $FREQ_CONT_PAR2$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l8m1fwag" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"A quelle fréquence communiquez-vous avec \" || (if (nvl($PRENOM_PAR2$,\"\")=\"\") then \"votre autre parent\" else $PRENOM_PAR2$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l1ezkbsf", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"(téléphone, mail, SMS, appel vidéo, etc.)\"", + "id": "l1ezs1o9", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "FREQ_CONT_PAR2" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4los1a5", + "id": "l445hldo", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PROX_EGO_PAR2 non renseigné", + "Expression": "isnull($PROX_EGO_PAR2$) or $PROX_EGO_PAR2$ =\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4cj9bgv" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"Vivez-vous à moins d'une heure de chez \" || (if (nvl($PRENOM_PAR2$,\"\")=\"\") then \"votre autre parent\" else $PRENOM_PAR2$) || \" ?\"" + ], + "ClarificationQuestion": [], + "id": "l445itcb", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PROX_EGO_PAR2" + }, + { + "Response": [ + { + "CollectedVariableReference": "l4lonmxd", + "id": "l4ciywxr", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "PROX_FRAT_PAR2 non renseigné", + "Expression": "isnull($PROX_FRAT_PAR2$) or $PROX_FRAT_PAR2$ =\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l4cj0wij" + } + ], + "depth": 3, + "FlowControl": [], + "Label": [ + "\"\" || (if (nvl($PRENOM_PAR2$,\"\")=\"\") then \"Votre autre parent\" else $PRENOM_PAR2$) || \" a-t-\" || $LIBSUJETPAR2$ || \" d'autres enfants que vous qui vivent à moins d'une heure de chez\" || if ($SEXE_PAR2$=\"2\" or isnull($SEXE_PAR2$)) then \" lui ?\" else \" elle ?\"" + ], + "ClarificationQuestion": [], + "id": "l4cjeqc0", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PROX_FRAT_PAR2" + } + ], + "Name": "PARENT2" + } + ], + "Name": "PARENTS" + }, + { + "Control": [], + "depth": 1, + "FlowControl": [], + "genericName": "MODULE", + "Label": [ + "VOTRE PARCOURS DE VIE" + ], + "id": "lij1g3gt", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", nous allons maintenant vous interroger sur votre parcours de vie.\"", + "id": "llf2bmj4", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "liiy5f7u", + "id": "l473rzw1", + "mandatory": false, + "Datatype": { + "Maximum": "20", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NB_FRERES non renseigné", + "Expression": "isnull($NB_FRERES$) or $NB_FRERES$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"", + "id": "l5ikmwhb" + } + ], + "depth": 2, + "FlowControl": [], + "Label": [ + "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", combien de frères avez-vous eus ?\"" + ], + "id": "l473kp51", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"(vivants ou non, y compris vos demi-frères)\"", + "id": "l4omms3t", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + }, + { + "declarationType": "HELP", + "Text": "\"Si aucun, notez 0.\"", + "id": "l8m20psg", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "NB_FRERES" + }, + { + "Response": [ + { + "CollectedVariableReference": "li362nsa", + "id": "l5iken9h", + "mandatory": false, + "CodeListReference": "l4onk0te", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NB_FRERES_VIV1 non renseigné", + "Expression": "isnull($NB_FRERES_VIV1$) or $NB_FRERES_VIV1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l5iktj0x" + } + ], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"Est-il encore en vie ?\"" + ], + "ClarificationQuestion": [], + "id": "l5ikk5zq", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "NB_FRERES_VIV1" + }, + { + "Response": [ + { + "CollectedVariableReference": "l473t9qd", + "id": "l473vroh", + "mandatory": false, + "Datatype": { + "Maximum": "20", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NB_FRERES_VIV non renseigné", + "Expression": "isnull($NB_FRERES_VIV$) or $NB_FRERES_VIV$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"", + "id": "l5ikl9vo" + }, + { + "post_collect": false, + "Description": "\"Le nombre de frères vivants ne peut pas être supérieur au nombre total de frères.\"", + "Expression": "nvl($NB_FRERES_VIV$,0) > nvl($NB_FRERES$,0)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Le nombre de frères vivants ne peut pas être supérieur au nombre total de frères.\"", + "id": "l84fzgny" + } + ], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"Combien sont encore en vie ?\"" + ], + "id": "l4740wd1", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "NB_FRERES_VIV" + }, + { + "Response": [ + { + "CollectedVariableReference": "liiygg3q", + "id": "l473q5ei", + "mandatory": false, + "Datatype": { + "Maximum": "20", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NB_SOEURS non renseigné", + "Expression": "isnull($NB_SOEURS$) or $NB_SOEURS$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"", + "id": "l5ikovb7" + } + ], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"Combien de soeurs avez-vous eues ?\"" + ], + "id": "l4742c2v", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"(vivantes ou non, y compris vos demi-sœurs)\"", + "id": "l4omj0xx", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + }, + { + "declarationType": "HELP", + "Text": "\"Si aucune, notez 0.\"", + "id": "l8m2azyh", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "NB_SOEURS" + }, + { + "Response": [ + { + "CollectedVariableReference": "li367ko1", + "id": "l5ikxm9l", + "mandatory": false, + "CodeListReference": "l4onk0te", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NB_SOEURS_VIV1 non renseigné", + "Expression": "isnull($NB_SOEURS_VIV1$) or $NB_SOEURS_VIV1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l5ikjwce" + } + ], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"Est-elle encore en vie ?\"" + ], + "ClarificationQuestion": [], + "id": "l5ikyrbc", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "NB_SOEURS_VIV1" + }, + { + "Response": [ + { + "CollectedVariableReference": "lai0huem", + "id": "l4741u6l", + "mandatory": false, + "Datatype": { + "Maximum": "20", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "NB_SOEURS_VIV non renseigné", + "Expression": "isnull($NB_SOEURS_VIV$) or $NB_SOEURS_VIV$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"", + "id": "l5ikr8or" + }, + { + "post_collect": false, + "Description": "\"Le nombre de sœurs vivantes ne peut pas être supérieur au nombre total de sœurs.\"", + "Expression": "nvl($NB_SOEURS_VIV$,0) > nvl($NB_SOEURS$,0)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Le nombre de soeurs vivantes ne peut pas être supérieur au nombre total de soeurs.\"", + "id": "l84g55v7" + } + ], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"Combien sont encore en vie ?\"" + ], + "id": "l473w273", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "NB_SOEURS_VIV" + }, + { + "Response": [ + { + "CollectedVariableReference": "lbqcq021", + "id": "l1f5ynl3", + "mandatory": false, + "Datatype": { + "Maximum": "100", + "Minimum": "0", + "typeName": "NUMERIC", + "Unit": "http://id.insee.fr/unit/an", + "type": "NumericDatatypeType", + "Decimals": "" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "AG_DEP_PARENT non renseigné", + "Expression": "isnull($AG_DEP_PARENT$) or $AG_DEP_PARENT$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu.\"", + "id": "l3bqm0qu" + }, + { + "post_collect": false, + "Description": "\"L’âge de départ de chez vos parents ne peut pas être supérieur à votre âge.\"", + "Expression": "$AG_DEP_PARENT$ <> 99 and not(isnull($AG_DEP_PARENT$)) and not(isnull($AGE$)) and cast($AG_DEP_PARENT$,integer) > cast($AGE$,integer)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L’âge de départ de chez vos parents ne peut pas être supérieur à votre âge.\"", + "id": "lbqcw0k4" + } + ], + "depth": 2, + "FlowControl": [], + "Label": [ + "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", à quel âge êtes-vous parti\" || (if ($TYPE_QUEST$=\"2\") then \"e\" else \"\") || \" de chez \" || (if ($EXIST_PAR2$= \"2\") then \"votre parent\" else \"vos parents\") || \" pour la première fois ?\"" + ], + "id": "l1f5th3i", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Ne comptez pas la pension ou l'internat comme un départ.\"\r\n", + "id": "l1f5lf8v", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + }, + { + "declarationType": "HELP", + "Text": "\"Indiquez 99 ans si vous n'êtes jamais parti\" || (if (isnull($TYPE_QUEST$)) then \"\" else (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\")) || \".\"\r\n\r\n", + "id": "l4s7ngqv", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "" + ] + } + ], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "AG_DEP_PARENT" + }, + { + "FlowControl": [], + "Label": [ + "\"Durant votre jeunesse, jusqu'à vos 18 ans, avec qui avez-vous vécu ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "llevctvx", + "MappingTarget": "1" + }, + { + "MappingSource": "llevmlms", + "MappingTarget": "2" + }, + { + "MappingSource": "llevhkg9", + "MappingTarget": "3" + }, + { + "MappingSource": "llevc737", + "MappingTarget": "4" + }, + { + "MappingSource": "llevfk5v", + "MappingTarget": "5" + }, + { + "MappingSource": "llevqbyz", + "MappingTarget": "6" + }, + { + "MappingSource": "lleve2gb", + "MappingTarget": "7" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "l1f5t6b0" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "VECU_JEUNESSE", + "Response": [ + { + "CollectedVariableReference": "llev0wxd", + "id": "llevctvx", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "llev4x3a", + "id": "llevmlms", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "llevhx1v", + "id": "llevhkg9", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "llevb1bs", + "id": "llevc737", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "llev21lo", + "id": "llevfk5v", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "llev258v", + "id": "llevqbyz", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "llev4lrn", + "id": "lleve2gb", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "VECU_JEUNESSE non renseigné", + "Expression": "(nvl($VECU_JEUNESSE1$, false) = false and \r\n nvl($VECU_JEUNESSE2$, false) = false and \r\n nvl($VECU_JEUNESSE3$, false) = false and \r\n nvl($VECU_JEUNESSE4$, false) = false and\r\nnvl($VECU_JEUNESSE5$, false) = false and \r\n nvl($VECU_JEUNESSE6$, false) = false and \r\n nvl($VECU_JEUNESSE7$, false) = false \r\n )\r\n", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l3bqdtb4" + } + ], + "depth": 2, + "ClarificationQuestion": [], + "id": "l1f61fa3", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Décrivez toutes les situations que vous avez connues.\"", + "id": "l1f693hk", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + }, + { + "Response": [ + { + "CollectedVariableReference": "l8k9vl42", + "id": "l43tsfar", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "VECU_PLACE non renseigné", + "Expression": "isnull($VECU_PLACE$) or $VECU_PLACE$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l43tr4q0" + } + ], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"Avez-vous vécu sans vos parents, à la suite d'une décision du juge, de l'ASE ou de la DDASS (placement en foyer, famille d'accueil, chez une personne de la famille ou autre) ?\"" + ], + "ClarificationQuestion": [], + "id": "l43ttd47", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "VECU_PLACE" + }, + { + "FlowControl": [], + "Label": [ + "\"Quel était le type de placement ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "l43tpzt7", + "MappingTarget": "1" + }, + { + "MappingSource": "l43tpqco", + "MappingTarget": "2" + }, + { + "MappingSource": "l43tov3w", + "MappingTarget": "3" + }, + { + "MappingSource": "l43trgyp", + "MappingTarget": "4" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "l43tnvfy" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "TYP_PLACE", + "Response": [ + { + "CollectedVariableReference": "l43tta6c", + "id": "l43tpzt7", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "l43u7w3y", + "id": "l43tpqco", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "l43to2k0", + "id": "l43tov3w", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "l43u7j0s", + "id": "l43trgyp", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "TYP_PLACE non renseigné", + "Expression": "(nvl($TYP_PLACE1$, false) = false and \r\n nvl($TYP_PLACE2$, false) = false and \r\n nvl($TYP_PLACE3$, false) = false and\r\n nvl($TYP_PLACE4$, false) = false)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l43txr1b" + } + ], + "depth": 2, + "ClarificationQuestion": [], + "id": "l43u439h", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Plusieurs réponses possibles\"", + "id": "l43u116f", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + }, + { + "Response": [ + { + "CollectedVariableReference": "l1f6b3hb", + "id": "l1f6bv9c", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "HEBERG non renseigné", + "Expression": "isnull($HEBERG$) or $HEBERG$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l3bqrc3u" + } + ], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"Au cours de votre vie, avez-vous été hébergé\" || (if (isnull($TYPE_QUEST$)) then \"\" else (if ($TYPE_QUEST$ = \"2\") then \"e\" else \"\")) || \" dans un centre d'hébergement, un hôtel social, un centre d'accueil pour demandeurs d'asile ou réfugiés, ou avez-vous vécu à la rue ?\"" + ], + "ClarificationQuestion": [], + "id": "l1f65zkh", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "HEBERG" + } + ], + "Name": "PARCOURS" + }, + { + "Control": [], + "depth": 1, + "FlowControl": [], + "genericName": "MODULE", + "Label": [ + "VOS ETUDES ET VOTRE VIE PROFESSIONNELLE" + ], + "id": "l1g3yspz", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", nous allons terminer le questionnaire en abordant vos études et votre vie professionnelle.\"", + "id": "l1g3mygg", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "llethxrg", + "id": "l1g3npll", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "FINETU non renseignée", + "Expression": "isnull($FINETU$) or $FINETU$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l3brbc6a" + } + ], + "depth": 2, + "FlowControl": [], + "Label": [ + "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", avez-vous terminé vos études intiales ?\"" + ], + "ClarificationQuestion": [], + "id": "l1g3unwh", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Ne comptez ni les années de césure ni les interruptions d'études de moins d'un an comme un arrêt.\"", + "id": "lletj5dq", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "FINETU" + }, + { + "Response": [ + { + "CollectedVariableReference": "lneknegu", + "id": "l1g42814", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "\"L'année de fin d'études ne peut pas être antérieure à votre année de naissance.\"", + "Expression": "not(isnull($ANNEE_FINETU$)) and not(isnull($ANAIS$)) and cast($ANNEE_FINETU$,integer) < cast($ANAIS$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de fin d'études ne peut pas être antérieure à votre année de naissance.\"", + "id": "l3brbfj3" + }, + { + "post_collect": false, + "Description": "\"Il semble y avoir peu d'écart entre votre année de naissance et votre année de fin d'études, est-ce que vous confirmez ?\"", + "Expression": "not(isnull($ANAIS$)) and not(isnull($ANNEE_FINETU$)) and (cast($ANAIS$,integer) + 12 > cast($ANNEE_FINETU$,integer))", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Il semble y avoir peu d'écart entre votre année de naissance et votre année de fin d'études, est-ce que vous confirmez ?\"", + "id": "lagxepr4" + }, + { + "post_collect": false, + "Description": "ANNEE_FINETU non renseigné", + "Expression": "isnull($ANNEE_FINETU$) or $ANNEE_FINETU$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"", + "id": "lai86f56" + }, + { + "post_collect": false, + "Description": "bornes ANNEE_FINETU", + "Expression": " cast($ANNEE_FINETU$,integer) < 1920 or cast($ANNEE_FINETU$,integer) > 2024", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de fin d'études est comprise entre 1920 et 2024.\"", + "id": "ln8ykwhw" + } + ], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"En quelle année les avez-vous terminées ?\"" + ], + "id": "l1g3yk6q", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "ANNEE_FINETU" + }, + { + "Response": [ + { + "CollectedVariableReference": "lij28s0w", + "id": "l1g7tm7z", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "DEJATRAV non renseigné", + "Expression": "isnull($DEJATRAV$) or $DEJATRAV$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l3br677s" + } + ], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"Avez-vous déjà travaillé pendant au moins trois mois de suite, y compris en apprentissage ?\"" + ], + "ClarificationQuestion": [], + "id": "l1g7pgbn", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "DEJATRAV" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln8yfhub", + "id": "l1g4r0qn", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ANNEE_EMPLOI1 non renseigné", + "Expression": "isnull($ANNEE_EMPLOI1$) or $ANNEE_EMPLOI1$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"", + "id": "l3br8qm0" + }, + { + "post_collect": false, + "Description": "\"L'année de votre premier emploi ne peut pas être antérieure à votre année de naissance.\"", + "Expression": "not(isnull($ANNEE_EMPLOI1$)) and not(isnull($ANAIS$)) and cast($ANNEE_EMPLOI1$,integer) < cast($ANAIS$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de votre premier emploi ne peut pas être antérieure à votre année de naissance.\"", + "id": "lagxe7nw" + }, + { + "post_collect": false, + "Description": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre premier emploi, est-ce que vous confirmez ?\"", + "Expression": "not(isnull($ANAIS$)) and not(isnull($ANNEE_EMPLOI1$)) and (cast($ANAIS$,integer) + 14 > cast($ANNEE_EMPLOI1$,integer))", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre premier emploi, est-ce que vous confirmez ?\"", + "id": "lagxjglp" + }, + { + "post_collect": false, + "Description": "bornes ANNEE_EMPLOI1", + "Expression": " cast($ANNEE_EMPLOI1$,integer) < 1920 or cast($ANNEE_EMPLOI1$,integer) > 2024", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de votre premier emploi est comprise entre 1920 et 2024.\" ", + "id": "ln8yu42l" + } + ], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"En quelle année avez-vous travaillé pour la première fois ?\"" + ], + "id": "l1g4pid1", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "ANNEE_EMPLOI1" + }, + { + "Response": [ + { + "CollectedVariableReference": "l445l6g2", + "id": "l445yz7o", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "TRAVACT non renseignée", + "Expression": "isnull($TRAVACT$) or $TRAVACT$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l445ztx4" + } + ], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"Travaillez-vous actuellement ?\"" + ], + "ClarificationQuestion": [], + "id": "l445x7tq", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "TRAVACT" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln8z1iyb", + "id": "l1g7p8dq", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "4" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "ANNEE_FINEMP non renseignée", + "Expression": "isnull($ANNEE_FINEMP$) or $ANNEE_FINEMP$=\"\"", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"", + "id": "l3brkw18" + }, + { + "post_collect": false, + "Description": "\"L'année de cessation d'activité ne peut pas être antérieure à votre année de naissance.\"", + "Expression": "not(isnull($ANNEE_FINEMP$)) and not(isnull($ANAIS$)) and cast($ANNEE_FINEMP$,integer) < cast($ANAIS$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de cessation d'activité ne peut pas être antérieure à votre année de naissance.\"", + "id": "lagxobxi" + }, + { + "post_collect": false, + "Description": "bornes ANNEE_FINEMP", + "Expression": " cast($ANNEE_FINEMP$,integer) < 1920 or cast($ANNEE_FINEMP$,integer) > 2024", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de cessation d'activité est comprise entre 1920 et 2024.\" ", + "id": "ln8yp2gq" + }, + { + "post_collect": false, + "Description": "\"L'année de cessation d'activité ne peut pas être antérieure à l'année de votre premier emploi.\"", + "Expression": "not(isnull($ANNEE_FINEMP$)) and not(isnull($ANNEE_EMPLOI1$)) and cast($ANNEE_FINEMP$,integer) < cast($ANNEE_EMPLOI1$,integer) ", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"L'année de cessation d'activité ne peut pas être antérieure à l'année de votre premier emploi.\"", + "id": "lna1prsi" + } + ], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"En quelle année avez-vous arrêté ?\"" + ], + "id": "l1g7iu0j", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "ANNEE_FINEMP" + }, + { + "Response": [ + { + "CollectedVariableReference": "lleu2mxy", + "id": "lleu3ict", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "INTER_TRAV1 non renseignée", + "Expression": "$INTER_TRAV1$=\"\" or isnull($INTER_TRAV1$)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "l3brfang" + } + ], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"Depuis votre premier emploi, avez-vous toujours travaillé sans interruption ? \"" + ], + "ClarificationQuestion": [], + "id": "l1g7vwo6", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "INTER_TRAV1" + }, + { + "Response": [ + { + "CollectedVariableReference": "lleu2a71", + "id": "lletstp8", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "INTER_TRAV2 non renseigné", + "Expression": "$INTER_TRAV2$=\"\" or isnull($INTER_TRAV2$)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "llett3ba" + } + ], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"Depuis votre premier emploi, avez-vous eu une ou des périodes de chômage de plus de six mois ? \"" + ], + "ClarificationQuestion": [], + "id": "lletbq7t", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "INTER_TRAV2" + }, + { + "Response": [ + { + "CollectedVariableReference": "llett62k", + "id": "lletwvhh", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "INTER_TRAV3 non renseigné", + "Expression": "$INTER_TRAV3$=\"\" or isnull($INTER_TRAV3$)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"", + "id": "lletj4bu" + } + ], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"Depuis votre premier emploi, avez-vous eu d'autres interruptions de plus de six mois ? \"" + ], + "ClarificationQuestion": [], + "id": "lletqevy", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "if $TYPE_QUEST$=\"2\" then \"(hors congés maternité)\" else \"\"", + "id": "lletg3z8", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "INTER_TRAV3" + }, + { + "Response": [ + { + "CollectedVariableReference": "ljwz1ro0", + "id": "ljwxfacv", + "mandatory": false, + "CodeListReference": "ljwxdg2x", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"Pouvez-vous indiquer qui a répondu au questionnaire ?\"" + ], + "ClarificationQuestion": [], + "id": "ljwxkrnl", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "PRENOM_FIN" + }, + { + "Response": [ + { + "CollectedVariableReference": "lamjg3vg", + "id": "lamjnllg", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": 249 + } + } + ], + "Control": [], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"Quel est votre prénom ?\"" + ], + "id": "lamjnyx4", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PRENOM_PROX" + } + ], + "Name": "VIEPROF" + }, + { + "Control": [], + "depth": 1, + "FlowControl": [], + "genericName": "MODULE", + "Label": [ + "AVIS SUR LE QUESTIONNAIRE" + ], + "id": "lm4vpka3", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Nous vous remercions vivement de votre réponse. Nous vous proposons dans cette dernière partie, de donner votre avis sur ce questionnaire.\"", + "id": "lm50h6kg", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "ln8zj767", + "id": "lm4xzq82", + "mandatory": false, + "CodeListReference": "lm4vxed5", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 2, + "FlowControl": [], + "Label": [ + "nvl($PRENOMREP$,\"Madame/Monsieur\") || \", vous venez de répondre à l’enquête Familles 2024. Nous vous en remercions et aimerions bénéficier de votre avis pour améliorer cette enquête en vue de sa réédition en 2025. Acceptez-vous de répondre à quelques questions ?\"" + ], + "ClarificationQuestion": [], + "id": "lm4w39kw", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "AVIS_FILTRE" + }, + { + "Response": [ + { + "CollectedVariableReference": "lnbsqvck", + "id": "lnbt0dc4", + "mandatory": false, + "CodeListReference": "lm4vxed5", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 2, + "FlowControl": [], + "Label": [ + "nvl($PRENOM_PROX$,\"Madame/Monsieur\") || \", vous venez de répondre à l’enquête Familles 2024. Nous vous en remercions et aimerions bénéficier de votre avis pour améliorer cette enquête en vue de sa réédition en 2025. Acceptez-vous de répondre à quelques questions ?\"" + ], + "ClarificationQuestion": [], + "id": "lnbss8ix", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "AVIS_FILTRE_P" + }, + { + "Response": [ + { + "CollectedVariableReference": "lm6beldl", + "id": "lm4xyv3t", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1500" + } + } + ], + "Control": [], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"Dans ce cas, pouvez-vous indiquer vos remarques et vos suggestions d’amélioration ?\"" + ], + "id": "lm4vxp7a", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "AVIS_RMQ" + }, + { + "FlowControl": [], + "Label": [ + "\"Pour quelle(s) raison(s) avez-vous accepté de répondre à cette enquête ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "ln90n9fq", + "MappingTarget": "1" + }, + { + "MappingSource": "ln90ubso", + "MappingTarget": "2" + }, + { + "MappingSource": "ln913d78", + "MappingTarget": "3" + }, + { + "MappingSource": "ln90m9r7", + "MappingTarget": "4" + }, + { + "MappingSource": "ln90xj95", + "MappingTarget": "5" + }, + { + "MappingSource": "ln911lw0", + "MappingTarget": "6" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "lm4vpk4r" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "AVIS_RAISON", + "Response": [ + { + "CollectedVariableReference": "ln8zzd7l", + "id": "ln90n9fq", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "ln8zp32c", + "id": "ln90ubso", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "ln8zxu8p", + "id": "ln913d78", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "ln8zstss", + "id": "ln90m9r7", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "ln8zj7dd", + "id": "ln90xj95", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "ln8zmr1m", + "id": "ln911lw0", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [], + "depth": 2, + "ClarificationQuestion": [], + "id": "lm4vudcf", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Plusieurs réponses possibles.\"", + "id": "lm4wbzcj", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln8zx8zp", + "id": "lmrsqwss", + "mandatory": false, + "CodeListReference": "lmrsjojv", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"L'agent recenseur vous-a-t-il parlé de l'enquête Familles ?\"" + ], + "ClarificationQuestion": [], + "id": "lmrsfyuh", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "AVIS_AR" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln900vbh", + "id": "lmrsy3l0", + "mandatory": false, + "CodeListReference": "lmrsjetq", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"La notice Enquête Familles qui vous a été remise vous a-t-elle été utile ?\"" + ], + "ClarificationQuestion": [], + "id": "lmrscuvs", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "AVIS_NOTICE" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln904m83", + "id": "lmrslj85", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1500" + } + } + ], + "Control": [], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"Pouvez-vous préciser les informations que vous auriez aimé y trouver ?\"" + ], + "id": "lmrssoql", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "AVIS_RAIS_NOTICE" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln8ztjkt", + "id": "lmrtv32i", + "mandatory": false, + "CodeListReference": "lmrtk3dn", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"Avez-vous consulté la page internet sur insee.fr qui présente l’Enquête Familles (Accueil > Services > Répondre à une enquête de l'Insee > Enquêtes auprès des particuliers > Présentation des enquêtes auprès des particuliers > Enquête Familles 2024) (https://www.insee.fr/fr/information/6659341) ?\"" + ], + "ClarificationQuestion": [], + "id": "lmrtsn5f", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "AVIS_SITE_NET" + }, + { + "Response": [ + { + "CollectedVariableReference": "ln9049y6", + "id": "lmrtb5m2", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1500" + } + } + ], + "Control": [], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"Pouvez-vous préciser les informations que vous auriez aimé y trouver ?\"" + ], + "id": "lmrtt1a2", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "AVIS_RAIS_SITE" + }, + { + "Response": [ + { + "CollectedVariableReference": "lnbwe3lz", + "id": "ln90w8kn", + "mandatory": false, + "CodeListReference": "ln90sqiu", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"Qui a reçu le mail vous invitant à répondre à l’enquête Familles ?\"" + ], + "ClarificationQuestion": [], + "id": "ln912ymy", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "AVIS_MAIL" + }, + { + "FlowControl": [], + "Label": [ + "\"Sur quel(s) support(s) avez-vous répondu à l’enquête ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "lna3guyv", + "MappingTarget": "1" + }, + { + "MappingSource": "lna3mhap", + "MappingTarget": "2" + }, + { + "MappingSource": "lna3ccqm", + "MappingTarget": "3" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "ln91ddlc" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "AVIS_SUPPORT", + "Response": [ + { + "CollectedVariableReference": "lna27hq8", + "id": "lna3guyv", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lna2ep2b", + "id": "lna3mhap", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lna24zod", + "id": "lna3ccqm", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [], + "depth": 2, + "ClarificationQuestion": [], + "id": "ln919mtn", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Plusieurs réponses possibles.\"", + "id": "lna2ddml", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + }, + { + "Response": [ + { + "CollectedVariableReference": "lna336y2", + "id": "lna3bcsp", + "mandatory": false, + "CodeListReference": "lna263dc", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"Auriez-vous préféré répondre avec un enquêteur par téléphone ?\"" + ], + "ClarificationQuestion": [], + "id": "lna2b92s", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "AVIS_TEL" + }, + { + "FlowControl": [], + "Label": [ + "\"Avez-vous rencontré les difficultés suivantes ?\"" + ], + "ResponseStructure": { + "Attribute": [], + "Mapping": [ + { + "MappingSource": "lna3g9og", + "MappingTarget": "1" + }, + { + "MappingSource": "lna3o7x6", + "MappingTarget": "2" + }, + { + "MappingSource": "lna3atiw", + "MappingTarget": "3" + }, + { + "MappingSource": "lna3cm7h", + "MappingTarget": "4" + }, + { + "MappingSource": "lna3ih02", + "MappingTarget": "5" + }, + { + "MappingSource": "lna3iyg6", + "MappingTarget": "6" + }, + { + "MappingSource": "lna3n335", + "MappingTarget": "7" + }, + { + "MappingSource": "lna38km4", + "MappingTarget": "8" + } + ], + "Dimension": [ + { + "dimensionType": "PRIMARY", + "dynamic": "0", + "CodeListReference": "lna2aacf" + }, + { + "dimensionType": "MEASURE", + "dynamic": "0" + } + ] + }, + "type": "QuestionType", + "Name": "AVIS_DIFF", + "Response": [ + { + "CollectedVariableReference": "lna24ghn", + "id": "lna3g9og", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lna2e523", + "id": "lna3o7x6", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lna25zfb", + "id": "lna3atiw", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lna2cey8", + "id": "lna3cm7h", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lna28pfz", + "id": "lna3ih02", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lna251km", + "id": "lna3iyg6", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lna2a78o", + "id": "lna3n335", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + }, + { + "CollectedVariableReference": "lna2jr28", + "id": "lna38km4", + "Datatype": { + "typeName": "BOOLEAN", + "type": "BooleanDatatypeType" + } + } + ], + "Control": [ + { + "post_collect": false, + "Description": "Non exclusif", + "Expression": "(nvl($AVIS_DIFF1$,false)=true and nvl($AVIS_DIFF8$,false)=true)\r\nor (nvl($AVIS_DIFF2$,false)=true and nvl($AVIS_DIFF8$,false)=true)\r\nor (nvl($AVIS_DIFF3$,false)=true and nvl($AVIS_DIFF8$,false)=true)\r\nor (nvl($AVIS_DIFF4$,false)=true and nvl($AVIS_DIFF8$,false)=true)\r\nor (nvl($AVIS_DIFF5$,false)=true and nvl($AVIS_DIFF8$,false)=true)\r\nor (nvl($AVIS_DIFF6$,false)=true and nvl($AVIS_DIFF8$,false)=true)\r\nor (nvl($AVIS_DIFF7$,false)=true and nvl($AVIS_DIFF8$,false)=true)", + "during_collect": false, + "criticity": "INFO", + "FailMessage": "\"Vous ne pouvez pas cocher Non et une autre réponse.\"", + "id": "lna36tub" + } + ], + "depth": 2, + "ClarificationQuestion": [], + "id": "lna1z5hs", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "\"Plusieurs réponses possibles.\"", + "id": "lna2duk7", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "questionType": "MULTIPLE_CHOICE" + }, + { + "Response": [ + { + "CollectedVariableReference": "lna3cb84", + "id": "lna3p2ls", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1500" + } + } + ], + "Control": [], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"Merci d’indiquer le plus précisément possible la/(les) question(s) qui vous ont posé des difficultés et les difficultés que vous avez rencontrées.\"" + ], + "id": "lna24vso", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "AVIS_QUEST" + }, + { + "Response": [ + { + "CollectedVariableReference": "lna3ektj", + "id": "lna2mb8t", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1500" + } + } + ], + "Control": [], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"Pouvez-vous préciser ces autres difficultés ?\"" + ], + "id": "lna2aygn", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "AVIS_AUTR_DIFF" + }, + { + "Response": [ + { + "CollectedVariableReference": "lna2lir0", + "id": "lna3fdxl", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"Est-ce que cela vous a gêné que l’ordre de remplissage des questionnaires de\" || (if ($TYPE_QUEST$=\"1\") then \" tous les hommes majeurs\" else \" toutes les femmes majeures\") || \" de votre ménage soit imposé ?\"" + ], + "ClarificationQuestion": [], + "id": "lna2jxe5", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "AVIS_ORDRE" + }, + { + "Response": [ + { + "CollectedVariableReference": "lna3hct7", + "id": "lna374rk", + "mandatory": false, + "CodeListReference": "lna2mshx", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"Avez-vous contacté l’assistance (par téléphone, mail) ou demandé de l’aide à l’agent recenseur ?\"" + ], + "ClarificationQuestion": [], + "id": "lna2hnnt", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "AVIS_ASSIST" + }, + { + "Response": [ + { + "CollectedVariableReference": "lna3kjkd", + "id": "lna2wl0f", + "mandatory": false, + "CodeListReference": "kwqa6qr6", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "visualizationHint": "RADIO", + "type": "TextDatatypeType", + "MaxLength": 1 + } + } + ], + "Control": [], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"Avez-vous d’autres remarques ou suggestions pour améliorer cette enquête ?\"" + ], + "ClarificationQuestion": [], + "id": "lna2fkqe", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SINGLE_CHOICE", + "Name": "AVIS_RMQ_FIN" + }, + { + "Response": [ + { + "CollectedVariableReference": "lna3nd24", + "id": "lna2pz8m", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "1500" + } + } + ], + "Control": [], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"Pouvez-vous indiquer vos remarques sur l’enquête et vos suggestions d’amélioration ?\"" + ], + "id": "lna2hbsx", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "AVIS_AUTR_RMQ" + } + ], + "Name": "AVISENQ" + }, + { + "Control": [], + "depth": 1, + "FlowControl": [], + "genericName": "MODULE", + "Label": [ + "FIN" + ], + "id": "l4ctrkzx", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "if (not(isnull($RPNBQUEST$)) and $RPNBQUEST$ <> \"1\") then \"Merci de votre participation !. Le questionnaire s’arrête là pour cette personne. S'il reste des personnes qui doivent répondre à l'enquête, nous allons passer au questionnaire suivant.\" else \"\" ", + "id": "lagud3o9", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + }, + { + "declarationType": "HELP", + "Text": "\"\" || if (nvl($RPNBQUEST$,\"0\") =\"1\") then \"Merci de votre participation !. Le questionnaire s'arrête là. Pensez-bien à le VALIDER\" else \"\" ", + "id": "lagv0rul", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAWI" + ] + } + ], + "type": "SequenceType", + "Child": [], + "Name": "FIN" + }, + { + "Control": [], + "depth": 1, + "FlowControl": [], + "genericName": "MODULE", + "Label": [ + "QUESTIONNAIRE_END" + ], + "id": "idendquest", + "TargetMode": [ + "CAWI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [], + "Name": "QUESTIONNAIRE_END" + } + ] +} \ No newline at end of file diff --git a/eno-treatments/build.gradle b/eno-treatments/build.gradle index d8ac9508a..319c2ce45 100644 --- a/eno-treatments/build.gradle +++ b/eno-treatments/build.gradle @@ -3,6 +3,7 @@ plugins { id 'io.spring.dependency-management' id 'java-library' id 'maven-publish' + id 'jacoco' } // https://stackoverflow.com/a/61671513/13425151 diff --git a/eno-treatments/src/main/java/fr/insee/eno/treatments/SpecificTreatmentsDeserializer.java b/eno-treatments/src/main/java/fr/insee/eno/treatments/SpecificTreatmentsDeserializer.java index 0675e62f6..7c8474727 100644 --- a/eno-treatments/src/main/java/fr/insee/eno/treatments/SpecificTreatmentsDeserializer.java +++ b/eno-treatments/src/main/java/fr/insee/eno/treatments/SpecificTreatmentsDeserializer.java @@ -29,20 +29,17 @@ public class SpecificTreatmentsDeserializer { public SpecificTreatments deserialize(InputStream treatmentsStream) { ObjectMapper mapper = new ObjectMapper(); JsonSchemaFactory factory = JsonSchemaFactory.getInstance(SpecVersion.VersionFlag.V202012); - JsonSchema jsonSchema = factory.getSchema( - classLoader.getResourceAsStream("schema.treatments.json")); + JsonSchema suggesterSchema = factory.getSchema( + classLoader.getResourceAsStream("schema.suggesters.json")); + JsonSchema regroupingSchema = factory.getSchema( + classLoader.getResourceAsStream("schema.regrouping.json")); try { JsonNode jsonTreatments = mapper.readTree(treatmentsStream); - Set errors = jsonSchema.validate(jsonTreatments); - - if(!errors.isEmpty()) { - StringBuilder messageBuilder = new StringBuilder(); - for(ValidationMessage errorMessage : errors) { - messageBuilder.append(errorMessage.getMessage()); - messageBuilder.append("\n"); - } - throw new SpecificTreatmentsValidationException(messageBuilder.toString()); + if (jsonTreatments.has("suggesters")) + validateTreatmentInput(suggesterSchema, jsonTreatments.get("suggesters")); + if (jsonTreatments.has("regroupements")) { + validateTreatmentInput(regroupingSchema, jsonTreatments.get("regroupements")); } ObjectReader reader = mapper.readerFor(SpecificTreatments.class); @@ -51,4 +48,18 @@ public SpecificTreatments deserialize(InputStream treatmentsStream) { throw new SpecificTreatmentsDeserializationException(ex.getMessage()); } } + + private static void validateTreatmentInput(JsonSchema suggesterSchema, JsonNode treatmentInput) { + Set errors = suggesterSchema.validate(treatmentInput); + + if(!errors.isEmpty()) { + StringBuilder messageBuilder = new StringBuilder(); + for(ValidationMessage errorMessage : errors) { + messageBuilder.append(errorMessage.getMessage()); + messageBuilder.append("\n"); + } + throw new SpecificTreatmentsValidationException(messageBuilder.toString()); + } + } + } diff --git a/eno-treatments/src/main/java/fr/insee/eno/treatments/dto/EnoFieldSynonym.java b/eno-treatments/src/main/java/fr/insee/eno/treatments/dto/EnoFieldSynonym.java deleted file mode 100644 index 2a5071ab9..000000000 --- a/eno-treatments/src/main/java/fr/insee/eno/treatments/dto/EnoFieldSynonym.java +++ /dev/null @@ -1,51 +0,0 @@ -package fr.insee.eno.treatments.dto; - -import com.fasterxml.jackson.annotation.JsonCreator; -import com.fasterxml.jackson.annotation.JsonProperty; -import fr.insee.lunatic.model.flat.FieldSynonym; -import lombok.*; - -import java.util.ArrayList; -import java.util.List; - -@Data -public class EnoFieldSynonym { - - private String source; - private List target; - - @JsonCreator - public EnoFieldSynonym(@JsonProperty(value = "source", required = true) String source, - @JsonProperty(value = "target", required = true) List target) { - this.source = source; - this.target = target; - } - - /** - * - * @param enoFieldSynonym EnoFieldSynonym object - * @return the corresponding lunatic model object - */ - public static FieldSynonym toLunaticModel(EnoFieldSynonym enoFieldSynonym) { - if(enoFieldSynonym == null) { - return null; - } - FieldSynonym fieldSynonym = new FieldSynonym(); - fieldSynonym.setSource(enoFieldSynonym.getSource()); - fieldSynonym.getTarget().addAll(enoFieldSynonym.getTarget()); - return fieldSynonym; - } - - /** - * - * @param enoFieldSynonyms EnoFieldSynonym list object - * @return the corresponding lunatic model list - */ - public static List toLunaticModelList(List enoFieldSynonyms) { - if(enoFieldSynonyms == null) { - return new ArrayList<>(); - } - return enoFieldSynonyms.stream().map(EnoFieldSynonym::toLunaticModel).toList(); - } -} - diff --git a/eno-treatments/src/main/java/fr/insee/eno/treatments/dto/EnoSuggesterField.java b/eno-treatments/src/main/java/fr/insee/eno/treatments/dto/EnoSuggesterField.java index 094cfae2b..5b9c49bc9 100644 --- a/eno-treatments/src/main/java/fr/insee/eno/treatments/dto/EnoSuggesterField.java +++ b/eno-treatments/src/main/java/fr/insee/eno/treatments/dto/EnoSuggesterField.java @@ -3,12 +3,14 @@ import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonProperty; +import fr.insee.lunatic.model.flat.FieldRules; import fr.insee.lunatic.model.flat.SuggesterField; -import lombok.*; +import lombok.Data; import java.math.BigInteger; import java.util.ArrayList; import java.util.List; +import java.util.Map; @Data public class EnoSuggesterField { @@ -19,7 +21,7 @@ public class EnoSuggesterField { private String language; private BigInteger min; private Boolean stemmer; - private List synonyms; + private Map> synonyms; @JsonCreator public EnoSuggesterField(@JsonProperty(value = "name", required = true) String name, @@ -27,7 +29,7 @@ public EnoSuggesterField(@JsonProperty(value = "name", required = true) String n @JsonProperty("language") String language, @JsonProperty("min") BigInteger min, @JsonProperty("stemmer") Boolean stemmer, - @JsonProperty("synonyms") List synonyms) { + @JsonProperty("synonyms") Map> synonyms) { this.name = name; this.rules = rules; this.language = language; @@ -53,16 +55,26 @@ public static SuggesterField toLunaticModel(EnoSuggesterField suggesterField) { lunaticField.setStemmer(suggesterField.getStemmer()); if(suggesterField.getRules() != null) { - lunaticField.getRules().addAll(suggesterField.getRules()); + lunaticField.setRules(new FieldRules()); + if (isSoftRule(suggesterField.getRules())) { + lunaticField.getRules().setRule(FieldRules.SOFT_RULE); + } else { + suggesterField.getRules().forEach(pattern -> lunaticField.getRules().addPattern(pattern)); + } } if(suggesterField.getSynonyms() != null) { - lunaticField.getSynonyms().addAll(EnoFieldSynonym.toLunaticModelList(suggesterField.getSynonyms())); + suggesterField.getSynonyms().forEach((stringKey, stringsValue) -> + lunaticField.getSynonyms().put(stringKey, stringsValue)); } return lunaticField; } + private static boolean isSoftRule(List enoFieldRules) { + return enoFieldRules.size() == 1 && FieldRules.SOFT_RULE.equals(enoFieldRules.get(0)); + } + /** * @param enoFields EnoSuggesterField list object to convert * @return the corresponding lunatic model list object diff --git a/eno-treatments/src/main/resources/schema.regrouping.json b/eno-treatments/src/main/resources/schema.regrouping.json new file mode 100644 index 000000000..b67f3bf1f --- /dev/null +++ b/eno-treatments/src/main/resources/schema.regrouping.json @@ -0,0 +1,15 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://insee.fr/eno/regrouping.schema.json", + "title": "Regrouping specific treatments schema", + "description": "List of variable names to be grouped in the same page in the Lunatic questionnaire.", + "type": "array", + "items": { + "type": "array", + "items": { + "type": "string" + }, + "minItems": 2, + "uniqueItems": true + } +} \ No newline at end of file diff --git a/eno-treatments/src/main/resources/schema.treatments.json b/eno-treatments/src/main/resources/schema.suggesters.json similarity index 69% rename from eno-treatments/src/main/resources/schema.treatments.json rename to eno-treatments/src/main/resources/schema.suggesters.json index 93a4d6b96..768c5526c 100644 --- a/eno-treatments/src/main/resources/schema.treatments.json +++ b/eno-treatments/src/main/resources/schema.suggesters.json @@ -1,29 +1,20 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://insee.fr/suggesters.schema.json", - "title": "Specific treatments schema", - "description": "Specific treatments schema", - "type": "object", - "properties": { - "suggesters": { - "type": "array", - "items": { - "$ref": "#/$defs/suggester" - } - }, - "regroupements": { - "type": "array", - "items": { - "$ref": "#/$defs/regroupement" - } - } + "$id": "https://insee.fr/eno/suggesters.schema.json", + "title": "Lunatic suggesters' schema for Eno specific treatment", + "description": "Fits Lunatic suggesters property's schema, except a 'responseName' attribute is added here.", + "type": "array", + "items": { + "$ref": "#/$defs/suggester" }, "$defs": { + "suggester": { "type": "object", "properties": { "responseNames": { + "description": "Property that is not in Lunatic schema, used to associate suggester with components.", "type": "array", "items": { "type": "string" @@ -33,15 +24,18 @@ "name": { "type": "string" }, - "queryParser": { - "$ref": "#/$defs/query_parser" - }, "fields": { "type": "array", "items": { "$ref": "#/$defs/suggester_field" } }, + "queryParser": { + "$ref": "#/$defs/query_parser" + }, + "meloto": { + "type": "boolean" + }, "stopWords": { "type": "array", "items": { @@ -61,7 +55,7 @@ "$ref": "#/$defs/suggester_order" } }, - "required": ["responseNames", "name", "fields", "queryParser", "version"] + "required": ["name", "fields", "queryParser", "version"] }, "suggester_field": { @@ -71,32 +65,30 @@ "type": "string" }, "rules": { - "type": "array" + "type": ["string", "array"], + "pattern": "^soft$" }, "min": { "type": "number" }, "language": { - "type": "string" + "enum": ["French", "English"] }, "stemmer": { "type": "boolean" }, "synonyms": { - "type" : "array", - "items" : { - "$ref": "#/$defs/field_synonym" - } + "$ref": "#/$defs/field_synonym" } }, - "required": ["name", "rules"] + "required": ["name"] }, "query_parser": { "type": "object", "properties": { "type": { - "type": "string" + "enum": ["soft", "tokenized"] }, "params": { "$ref": "#/$defs/query_parser_params" @@ -109,7 +101,7 @@ "type": "object", "properties": { "type": { - "type": "string" + "enum": ["ascending", "desceding"] }, "field": { "type": "string" @@ -121,8 +113,11 @@ "query_parser_params": { "type": "object", "properties": { + "stemmer": { + "type": "boolean" + }, "language": { - "type": "string" + "enum": ["French", "English"] }, "min": { "type": "number" @@ -132,25 +127,19 @@ } } }, + "field_synonym": { "type": "object", - "properties": { - "source": { - "type": "string" - }, - "target": { + "patternProperties": { + ".*" : { "type": "array", "items": { "type": "string" }, "minItems": 1 - }, - "required": ["source", "target"] + } } - }, - "regroupement": { - "type": "array", - "minItems": 2 } + } } \ No newline at end of file diff --git a/eno-treatments/src/test/java/fr/insee/eno/treatments/JsonSchemaValidationTest.java b/eno-treatments/src/test/java/fr/insee/eno/treatments/JsonSchemaValidationTest.java index f16afacd8..a91d998c0 100644 --- a/eno-treatments/src/test/java/fr/insee/eno/treatments/JsonSchemaValidationTest.java +++ b/eno-treatments/src/test/java/fr/insee/eno/treatments/JsonSchemaValidationTest.java @@ -7,6 +7,8 @@ import com.networknt.schema.SpecVersion; import com.networknt.schema.ValidationMessage; import org.junit.jupiter.api.Test; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.ValueSource; import java.io.IOException; import java.util.Set; @@ -22,14 +24,51 @@ void givenValidJsonInput_whenValidating_thenNoErrors() throws IOException { ObjectMapper mapper = new ObjectMapper(); JsonSchemaFactory factory = JsonSchemaFactory.getInstance(SpecVersion.VersionFlag.V202012); JsonSchema jsonSchema = factory.getSchema( - classLoader.getResourceAsStream("schema.treatments.json")); + classLoader.getResourceAsStream("schema.suggesters.json")); JsonNode jsonNode = mapper.readTree( - classLoader.getResourceAsStream("specific-treatments.json")); + classLoader.getResourceAsStream("specific-treatments.json")) + .get("suggesters"); + // Set errors = jsonSchema.validate(jsonNode); + // + assertTrue(errors.isEmpty()); + } - for(ValidationMessage error : errors) { - System.out.println(error.toString()); - } + @ParameterizedTest + @ValueSource(strings = { + "suggester-examples/suggesters-example.json", + "suggester-examples/suggesters-example-1.json", + "suggester-examples/suggesters-example-2.json", + "suggester-examples/suggesters-example-3.json", + "suggester-examples/suggesters-example-4.json", + }) + void suggestersSchemaTest(String relativeFilePath) throws IOException { + // + ObjectMapper mapper = new ObjectMapper(); + JsonSchemaFactory factory = JsonSchemaFactory.getInstance(SpecVersion.VersionFlag.V202012); + JsonSchema jsonSchema = factory.getSchema( + classLoader.getResourceAsStream("schema.suggesters.json")); + JsonNode jsonNode = mapper.readTree( + classLoader.getResourceAsStream(relativeFilePath)); + // + Set errors = jsonSchema.validate(jsonNode); + // assertTrue(errors.isEmpty()); } + + @Test + void treatmentsSchema_suggestersTest() throws IOException { + ObjectMapper mapper = new ObjectMapper(); + JsonSchemaFactory factory = JsonSchemaFactory.getInstance(SpecVersion.VersionFlag.V202012); + JsonSchema jsonSchema = factory.getSchema( + classLoader.getResourceAsStream("schema.suggesters.json")); + JsonNode jsonNode = mapper.readTree( + classLoader.getResourceAsStream("suggester-treatment/suggesters.json")) + .get("suggesters"); + // + Set errors = jsonSchema.validate(jsonNode); + // + assertTrue(errors.isEmpty()); + } + } diff --git a/eno-treatments/src/test/java/fr/insee/eno/treatments/LunaticSuggesterProcessingTest.java b/eno-treatments/src/test/java/fr/insee/eno/treatments/LunaticSuggesterProcessingTest.java index 54b95a702..566c893bc 100644 --- a/eno-treatments/src/test/java/fr/insee/eno/treatments/LunaticSuggesterProcessingTest.java +++ b/eno-treatments/src/test/java/fr/insee/eno/treatments/LunaticSuggesterProcessingTest.java @@ -10,18 +10,18 @@ import static org.junit.jupiter.api.Assertions.assertFalse; -public class LunaticSuggesterProcessingTest { +class LunaticSuggesterProcessingTest { @Test void suggesterTest() throws DDIParsingException { // Questionnaire lunaticQuestionnaire = DDIToLunatic.transform( - this.getClass().getClassLoader().getResourceAsStream("suggester/ddi-lgl1kmol.xml"), + this.getClass().getClassLoader().getResourceAsStream("suggester-treatment/ddi-lgl1kmol.xml"), EnoParameters.of(EnoParameters.Context.HOUSEHOLD, EnoParameters.ModeParameter.CAWI, Format.LUNATIC)); // SpecificTreatmentsDeserializer treatmentsDeserializer = new SpecificTreatmentsDeserializer(); SpecificTreatments treatmentsInput = treatmentsDeserializer.deserialize( - this.getClass().getClassLoader().getResourceAsStream("suggester/suggester.json")); + this.getClass().getClassLoader().getResourceAsStream("suggester-treatment/suggesters.json")); LunaticSuggesterProcessing suggesterProcessing = new LunaticSuggesterProcessing(treatmentsInput.suggesters()); suggesterProcessing.apply(lunaticQuestionnaire); // diff --git a/eno-treatments/src/test/java/fr/insee/eno/treatments/SpecificTreatmentsDeserializerTest.java b/eno-treatments/src/test/java/fr/insee/eno/treatments/SpecificTreatmentsDeserializerTest.java index 8cc2f0c1c..d398e77c2 100644 --- a/eno-treatments/src/test/java/fr/insee/eno/treatments/SpecificTreatmentsDeserializerTest.java +++ b/eno-treatments/src/test/java/fr/insee/eno/treatments/SpecificTreatmentsDeserializerTest.java @@ -47,7 +47,7 @@ void deserializeSuggesterTest() { assertEquals(2, field.getSynonyms().size()); assertEquals(1, field.getRules().size()); assertEquals("field", suggester.getOrder().getField()); - assertEquals("type", suggester.getOrder().getType()); + assertEquals("ascending", suggester.getOrder().getType()); assertEquals("tokenized", suggester.getQueryParser().getType()); EnoSuggesterQueryParserParams params = suggester.getQueryParser().getParams(); diff --git a/eno-treatments/src/test/java/fr/insee/eno/treatments/dto/EnoFieldSynonymTest.java b/eno-treatments/src/test/java/fr/insee/eno/treatments/dto/EnoFieldSynonymTest.java deleted file mode 100644 index afe49a982..000000000 --- a/eno-treatments/src/test/java/fr/insee/eno/treatments/dto/EnoFieldSynonymTest.java +++ /dev/null @@ -1,42 +0,0 @@ -package fr.insee.eno.treatments.dto; - -import fr.insee.lunatic.model.flat.FieldSynonym; -import org.junit.jupiter.api.Test; - -import java.util.List; - -import static org.junit.jupiter.api.Assertions.*; - -class EnoFieldSynonymTest { - - @Test - void whenConvertingToLunaticMappingIsCorrect() { - EnoFieldSynonym field = new EnoFieldSynonym("source", List.of("target1", "target2")); - FieldSynonym fieldLunatic = EnoFieldSynonym.toLunaticModel(field); - assertEquals(fieldLunatic.getSource(), field.getSource()); - assertTrue(fieldLunatic.getTarget().contains("target1")); - assertTrue(fieldLunatic.getTarget().contains("target2")); - } - - @Test - void whenConvertingToLunaticMappingIfNullParameterReturnNull() { - assertNull(EnoFieldSynonym.toLunaticModel(null)); - } - - @Test - void whenConvertingToLunaticMappingIfNullParameterListReturnEmptyList() { - assertEquals(0, EnoFieldSynonym.toLunaticModelList(null).size()); - } - - @Test - void whenMultipleSynonymsCheckEachSynonymIdIsTransformed() { - EnoFieldSynonym enoField1 = new EnoFieldSynonym("source1", List.of("target1", "target2")); - EnoFieldSynonym enoField2 = new EnoFieldSynonym("source2", List.of("target1", "target2")); - List enoFields = List.of(enoField1, enoField2); - List fields = EnoFieldSynonym.toLunaticModelList(enoFields); - - assertEquals(2, fields.size()); - assertEquals("source1", fields.get(0).getSource()); - assertEquals("source2", fields.get(1).getSource()); - } -} diff --git a/eno-treatments/src/test/java/fr/insee/eno/treatments/dto/EnoSuggesterFieldTest.java b/eno-treatments/src/test/java/fr/insee/eno/treatments/dto/EnoSuggesterFieldTest.java index 512c5b11e..f88e1e84d 100644 --- a/eno-treatments/src/test/java/fr/insee/eno/treatments/dto/EnoSuggesterFieldTest.java +++ b/eno-treatments/src/test/java/fr/insee/eno/treatments/dto/EnoSuggesterFieldTest.java @@ -9,6 +9,7 @@ import java.math.BigInteger; import java.util.List; +import java.util.Map; import java.util.stream.Stream; import static org.junit.jupiter.api.Assertions.*; @@ -16,7 +17,7 @@ class EnoSuggesterFieldTest { @Mock - private List synonyms; + private Map> synonyms; @Test void whenConvertingToLunaticCheckMappingIsCorrect() { @@ -24,8 +25,8 @@ void whenConvertingToLunaticCheckMappingIsCorrect() { EnoSuggesterField enoField = new EnoSuggesterField("name", rules, "French", BigInteger.ONE, true, synonyms); SuggesterField field = EnoSuggesterField.toLunaticModel(enoField); assertEquals(field.getName(), enoField.getName()); - assertTrue(field.getRules().contains("rule1")); - assertTrue(field.getRules().contains("rule2")); + assertTrue(field.getRules().getPatterns().contains("rule1")); + assertTrue(field.getRules().getPatterns().contains("rule2")); assertEquals(field.getLanguage(), enoField.getLanguage()); assertEquals(field.getMin(), enoField.getMin()); assertEquals(field.getStemmer(), enoField.getStemmer()); @@ -37,7 +38,7 @@ void whenOtherRulesCheckMappingRulesProperty(List rules) { EnoSuggesterField enoField = new EnoSuggesterField("name", rules, "French", BigInteger.ONE, true, synonyms); SuggesterField field = EnoSuggesterField.toLunaticModel(enoField); for(String rule : rules) { - assertTrue(field.getRules().contains(rule)); + assertTrue(field.getRules().getPatterns().contains(rule)); } } @@ -45,7 +46,6 @@ static Stream generateRules() { return Stream.of( Arguments.of(List.of("rule1", "rule2")), Arguments.of(List.of("rule1")), - Arguments.of(List.of("soft", "rule2")), Arguments.of(List.of("rule1", "rule2", "rule3")) ); } diff --git a/eno-treatments/src/test/resources/specific-treatments.json b/eno-treatments/src/test/resources/specific-treatments.json index 904c1d43e..6179d46a4 100644 --- a/eno-treatments/src/test/resources/specific-treatments.json +++ b/eno-treatments/src/test/resources/specific-treatments.json @@ -14,22 +14,16 @@ "language": "French", "min": 2, "stemmer": true, - "synonyms": [ - { - "source": "source1", - "target": [ - "target1", - "target2" - ] - }, - { - "source": "source2", - "target": [ - "target1", - "target2" - ] - } - ] + "synonyms": { + "source1": [ + "target1", + "target2" + ], + "source2": [ + "target1", + "target2" + ] + } }, { "name": "id", @@ -75,7 +69,7 @@ "url": "plop", "max": 2, "order": { - "type": "type", + "type": "ascending", "field": "field" } }, @@ -87,14 +81,14 @@ "fields": [ { "name": "label", - "rules": ["soft"], + "rules": [ + "soft" + ], "min": 2 }, { "name": "id", - "rules": [ - "soft" - ] + "rules": "soft" } ], "queryParser": { diff --git a/eno-treatments/src/test/resources/suggester-examples/suggesters-example-1.json b/eno-treatments/src/test/resources/suggester-examples/suggesters-example-1.json new file mode 100644 index 000000000..6e830349d --- /dev/null +++ b/eno-treatments/src/test/resources/suggester-examples/suggesters-example-1.json @@ -0,0 +1,19 @@ +[ + { + "name": "L_COMMUNEPASSEE-1-3-0", + "fields": [ + { + "name": "label", + "rules": "soft" + }, + { + "name": "id", + "rules": "soft" + } + ], + "queryParser": { + "type": "soft" + }, + "version": "1" + } +] \ No newline at end of file diff --git a/eno-treatments/src/test/resources/suggester-examples/suggesters-example-2.json b/eno-treatments/src/test/resources/suggester-examples/suggesters-example-2.json new file mode 100644 index 000000000..e9899d583 --- /dev/null +++ b/eno-treatments/src/test/resources/suggester-examples/suggesters-example-2.json @@ -0,0 +1,54 @@ +[ + { + "name": "L_PCS_FEMMES-1-4-1-SANS", + "fields": [ + { + "name": "label", + "rules": [ + "[\\w]+" + ], + "language": "French", + "min": 2, + "stemmer": false + }, + { + "name": "id" + } + ], + "queryParser": { + "type": "tokenized", + "params": { + "language": "French", + "pattern": "[\\w.]+", + "stemmer": false + } + }, + "version": "1", + "meloto": true, + "stopWords": [ + "a", + "au", + "dans", + "de", + "des", + "du", + "en", + "er", + "la", + "le", + "ou", + "sur", + "d", + "l", + "aux", + "dans", + "un", + "une", + "pour", + "avec", + "chez", + "par", + "les" + ] + } +] \ No newline at end of file diff --git a/eno-treatments/src/test/resources/suggester-examples/suggesters-example-3.json b/eno-treatments/src/test/resources/suggester-examples/suggesters-example-3.json new file mode 100644 index 000000000..09d13eefd --- /dev/null +++ b/eno-treatments/src/test/resources/suggester-examples/suggesters-example-3.json @@ -0,0 +1,136 @@ +[ + { + "name": "L_ACTIVITES-1-0-0-SANS", + "fields": [ + { + "name": "label", + "rules": [ + "[\\w]+" + ], + "language": "French", + "min": 2, + "stemmer": false, + "synonyms": { + "accueil": [ + "ACCEUIL", + "ACCUEILLIR", + "ACCUEILLANTE", + "ACCUEILLANT", + "ACCUEILLE" + ], + "EHPAD": [ + "EPHAD", + "HEPAD", + "EPAD", + "EPAHD", + "EPADH" + ], + "plaquisterie": [ + "PLACO", + "PLACOPLATRE" + ], + "pneumatique": [ + "PNEU", + "PNEUS" + ], + "prestation": [ + "PRESTATAIRE" + ], + "echafaudage": [ + "ECHAFFAUDAGE", + "ECHAFFAUDEUR" + ], + "conseil": [ + "CONSULTING" + ], + "URSSAF": [ + "URSAF", + "URSAFF" + ], + "ingenierie": [ + "INGENIEURIE", + "INGENERIE", + "INGIENERIE" + ], + "construction": [ + "CONSTRUCTEUR" + ], + "distribution": [ + "DISTRIBUTEUR" + ], + "fabrication": [ + "FABRICANT" + ], + "abattage": [ + "ABATOIR", + "ABBATOIR", + "ABATTOIRS", + "ABATOIRE", + "ABATTOIRE", + "ABBATTAGE" + ], + "ascenseur": [ + "ASCENCEUR", + "ASCENCEURS" + ], + "briqueterie": [ + "BRIQUETTERIE" + ], + "joaillerie": [ + "JOAILLIER" + ], + "agroalimentaire": [ + "AGGRO", + "AGGROALIMANTAIRE", + "AGRO", + "AGROALIMENTAIRE" + ], + "alimentaire": [ + "ALIMANTAIRE" + ], + "recherche-développement": [ + "R & D", + "R&D" + ] + } + }, + { + "name": "id" + } + ], + "queryParser": { + "type": "tokenized", + "params": { + "language": "French", + "pattern": "[\\w.]+", + "stemmer": false + } + }, + "version": "1", + "stopWords": [ + "a", + "au", + "dans", + "de", + "des", + "du", + "en", + "er", + "la", + "le", + "ou", + "sur", + "d", + "l", + "aux", + "dans", + "un", + "une", + "pour", + "avec", + "chez", + "par", + "les" + ] + } +] \ No newline at end of file diff --git a/eno-treatments/src/test/resources/suggester-examples/suggesters-example-4.json b/eno-treatments/src/test/resources/suggester-examples/suggesters-example-4.json new file mode 100644 index 000000000..f21de23f6 --- /dev/null +++ b/eno-treatments/src/test/resources/suggester-examples/suggesters-example-4.json @@ -0,0 +1,19 @@ +[ + { + "name": "L_DIPLOMES", + "fields": [ + { + "name": "label", + "rules": "soft" + }, + { + "name": "id", + "rules": "soft" + } + ], + "queryParser": { + "type": "soft" + }, + "version": "1" + } +] \ No newline at end of file diff --git a/eno-treatments/src/test/resources/suggester-examples/suggesters-example.json b/eno-treatments/src/test/resources/suggester-examples/suggesters-example.json new file mode 100644 index 000000000..c564931f0 --- /dev/null +++ b/eno-treatments/src/test/resources/suggester-examples/suggesters-example.json @@ -0,0 +1,30 @@ +[ + { + "name": "naf-rev2", + "fields": [ + { + "name": "label", + "rules": [ + "[\\w]+" + ], + "language": "French", + "min": 2 + }, + { + "name": "id" + }, + { + "name": "demo", + "rules": "soft" + } + ], + "queryParser": { + "type": "tokenized", + "params": { + "language": "French", + "pattern": "[\\w.]+" + } + }, + "version": "1" + } +] \ No newline at end of file diff --git a/eno-treatments/src/test/resources/suggester-treatment/ddi-lgl1kmol.xml b/eno-treatments/src/test/resources/suggester-treatment/ddi-lgl1kmol.xml new file mode 100644 index 000000000..4ff0d3a73 --- /dev/null +++ b/eno-treatments/src/test/resources/suggester-treatment/ddi-lgl1kmol.xml @@ -0,0 +1,445 @@ + + + fr.insee + INSEE-lgl1kmol + 1 + + + Suggester - plusieurs types + + + + fr.insee + RessourcePackage-lgl1kmol + 1 + + fr.insee + InterviewerInstructionScheme-lgl1kmol + 1 + + A définir + + + fr.insee + l1uiu9hq + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + Interview.FaceToFace.CAPIorCAMI + + + + Cette séquence comprend les questions ouvertes (ceci est une déclaration de type aide, associée au titre de séquence). + + + + + + fr.insee + ControlConstructScheme-lgl1kmol + 1 + + fr.insee + Sequence-lgl1kmol + 1 + + Suggester - plusieurs types + + template + + fr.insee + jfaz9kv9 + 1 + Sequence + + + + fr.insee + jfaz9kv9 + 1 + + SIMPLE + + + S1 + + + fr.insee + l1uiu9hq + 1 + Instruction + + module + + fr.insee + lhggytud-QC + 1 + QuestionConstruct + + + fr.insee + lgm7ka9g-QC + 1 + QuestionConstruct + + + + fr.insee + lhggytud-QC + 1 + + GEO + + + fr.insee + lhggytud + 1 + QuestionItem + + + + fr.insee + lgm7ka9g-QC + 1 + + PCS + + + fr.insee + lgm7ka9g + 1 + QuestionItem + + + + + fr.insee + QuestionScheme-lgl1kmol + 1 + + A définir + + + fr.insee + lhggytud + 1 + + GEO + + + fr.insee + lhggytud-QOP-lhggjlfa + 1 + + GEO + + + + + fr.insee + lhggytud-RDOP-lhggjlfa + 1 + OutParameter + + + fr.insee + lhggytud-QOP-lhggjlfa + 1 + OutParameter + + + + + "Suggester géo" + + + + + fr.insee + lhggytud-RDOP-lhggjlfa + 1 + + + + + + fr.insee + lgm7ka9g + 1 + + PCS + + + fr.insee + lgm7ka9g-QOP-lgm78onu + 1 + + PCS + + + + + fr.insee + lgm7ka9g-RDOP-lgm78onu + 1 + OutParameter + + + fr.insee + lgm7ka9g-QOP-lgm78onu + 1 + OutParameter + + + + + "Suggester pcs" + + + + + fr.insee + lgm7ka9g-RDOP-lgm78onu + 1 + + + + + + + fr.insee + CategoryScheme-lgl1kmol + 1 + + A définir + + + fr.insee + INSEE-COMMUN-CA-Booleen-1 + 1 + + + + + + + fr.insee + REFLUNATIC-CLS + 1 + + REFLUNATIC + + + fr.insee + INSEE-COMMUN-CL-Booleen + 1 + + Booleen + + Regular + + Ordinal + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + + fr.insee + INSEE-COMMUN-CA-Booleen-1 + 1 + Category + + 1 + + + + + fr.insee + VariableScheme-lgl1kmol + 1 + + Variable Scheme for the survey + + + fr.insee + lhggp2vt + 1 + + GEO + + + GEO label + + + fr.insee + lhggytud-QOP-lhggjlfa + 1 + OutParameter + + + fr.insee + lhggytud + 1 + QuestionItem + + + + + + + fr.insee + lhggj3ch + 1 + + PCS + + + PCS label + + + fr.insee + lgm7ka9g-QOP-lgm78onu + 1 + OutParameter + + + fr.insee + lgm7ka9g + 1 + QuestionItem + + + + + + + fr.insee + INSEE-Instrument-lgl1kmol-vg + 1 + + + fr.insee + Instrument-lgl1kmol + 1 + Instrument + + + Questionnaire + + REFLUNATIC + + + fr.insee + lhggp2vt + 1 + Variable + + + fr.insee + lhggj3ch + 1 + Variable + + + + + fr.insee + INSEE-SIMPSONS-PIS-1 + 1 + + SIMPSONS + + + Processing instructions of the Simpsons questionnaire + + + + fr.insee + INSEE-SIMPSONS-MRS + 1 + + Liste de formats numériques et dates de + l'enquête + Numeric and DateTime list for the survey + + + + + fr.insee + StudyUnit-lgl1kmol + 1 + + + fr.insee + DataCollection-lgl1kmol + 1 + + fr.insee + QuestionScheme-lgl1kmol + 1 + QuestionScheme + + + fr.insee + ControlConstructScheme-lgl1kmol + 1 + ControlConstructScheme + + + fr.insee + InterviewerInstructionScheme-lgl1kmol + 1 + InterviewerInstructionScheme + + + fr.insee + InstrumentScheme-lgl1kmol + 1 + + fr.insee + Instrument-lgl1kmol + 1 + + REFLUNATIC + + + Suggester - plusieurs types questionnaire + + A définir + + fr.insee + Sequence-lgl1kmol + 1 + Sequence + + + + + + diff --git a/eno-treatments/src/test/resources/suggester-treatment/pogues-lgl1kmol.json b/eno-treatments/src/test/resources/suggester-treatment/pogues-lgl1kmol.json new file mode 100644 index 000000000..92642e4b8 --- /dev/null +++ b/eno-treatments/src/test/resources/suggester-treatment/pogues-lgl1kmol.json @@ -0,0 +1,191 @@ +{ + "owner": "QTEST-LUNATIC-V2", + "FlowControl": [], + "ComponentGroup": [ + { + "MemberReference": [ + "jfaz9kv9", + "lhggytud", + "lgm7ka9g", + "idendquest" + ], + "Label": [ + "Components for page 1" + ], + "id": "kvl6f0ou", + "Name": "PAGE_1" + } + ], + "agency": "fr.insee", + "genericName": "QUESTIONNAIRE", + "Label": [ + "Suggester - plusieurs types" + ], + "childQuestionnaireRef": [], + "Name": "REFLUNATIC", + "Variables": { + "Variable": [ + { + "Label": "PCS label", + "id": "lhggj3ch", + "type": "CollectedVariableType", + "Name": "PCS", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "10" + } + }, + { + "Label": "GEO label", + "id": "lhggp2vt", + "type": "CollectedVariableType", + "Name": "GEO", + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "10" + } + } + ] + }, + "lastUpdatedDate": "Tue May 09 2023 18:10:03 GMT+0200 (heure d’été d’Europe centrale)", + "DataCollection": [ + { + "id": "esa-dc-2018", + "uri": "http://ddi:fr.insee:DataCollection.esa-dc-2018" + } + ], + "final": false, + "flowLogic": "FILTER", + "id": "lgl1kmol", + "TargetMode": [ + "CAWI", + "CAPI", + "CATI", + "PAPI" + ], + "CodeLists": { + "CodeList": [] + }, + "formulasLanguage": "VTL", + "Child": [ + { + "Control": [], + "depth": 1, + "FlowControl": [], + "genericName": "MODULE", + "Label": [ + "S1" + ], + "id": "jfaz9kv9", + "TargetMode": [ + "CAWI" + ], + "Declaration": [ + { + "declarationType": "HELP", + "Text": "Cette séquence comprend les questions ouvertes (ceci est une déclaration de type aide, associée au titre de séquence).", + "id": "l1uiu9hq", + "position": "AFTER_QUESTION_TEXT", + "DeclarationMode": [ + "CAPI", + "CATI", + "CAWI", + "PAPI" + ] + } + ], + "type": "SequenceType", + "Child": [ + { + "Response": [ + { + "CollectedVariableReference": "lhggp2vt", + "id": "lhggjlfa", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "10" + } + } + ], + "Control": [], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"Suggester géo\"" + ], + "id": "lhggytud", + "TargetMode": [ + "CAWI", + "CAPI", + "CATI", + "PAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "GEO" + }, + { + "Response": [ + { + "CollectedVariableReference": "lhggj3ch", + "id": "lgm78onu", + "mandatory": false, + "Datatype": { + "Pattern": "", + "typeName": "TEXT", + "type": "TextDatatypeType", + "MaxLength": "10" + } + } + ], + "Control": [], + "depth": 2, + "FlowControl": [], + "Label": [ + "\"Suggester pcs\"" + ], + "id": "lgm7ka9g", + "TargetMode": [ + "CAWI", + "CAPI", + "CATI", + "PAPI" + ], + "Declaration": [], + "type": "QuestionType", + "questionType": "SIMPLE", + "Name": "PCS" + } + ], + "Name": "SIMPLE" + }, + { + "Control": [], + "depth": 1, + "FlowControl": [], + "genericName": "MODULE", + "Label": [ + "QUESTIONNAIRE_END" + ], + "id": "idendquest", + "TargetMode": [ + "CAWI", + "CAPI", + "CATI", + "PAPI" + ], + "Declaration": [], + "type": "SequenceType", + "Child": [], + "Name": "QUESTIONNAIRE_END" + } + ] +} \ No newline at end of file diff --git a/eno-treatments/src/test/resources/suggester-treatment/suggesters.json b/eno-treatments/src/test/resources/suggester-treatment/suggesters.json new file mode 100644 index 000000000..e7e898f47 --- /dev/null +++ b/eno-treatments/src/test/resources/suggester-treatment/suggesters.json @@ -0,0 +1,73 @@ +{ + "suggesters": [ + { + "responseNames": ["PCS"], + "name": "L_PCS_HOMMES-1-3-0", + "fields": [ + { + "name": "label", + "rules": ["[\\w]+"], + "language": "French", + "min": 2 + }, + { + "name": "id", + "rules": "soft" + } + ], + "stopWords": [ + "a", + "au", + "dans", + "de", + "des", + "du", + "en", + "er", + "la", + "le", + "ou", + "sur", + "d", + "l", + "aux", + "dans", + "un", + "une", + "pour", + "avec", + "chez", + "par", + "les" + ], + "queryParser": { + "type": "tokenized", + "params": { + "language": "French", + "pattern": "pattern", + "min": 1 + } + }, + "version": "1" + }, + { + "responseNames": ["GEO"], + "name": "L_GEO", + "fields": [ + { + "name": "label", + "rules": "soft", + "min": 2 + }, + { + "name": "id", + "rules": "soft" + } + ], + "queryParser": { + "type": "soft" + }, + "version": "1" + } + ] +} \ No newline at end of file diff --git a/eno-ws/build.gradle b/eno-ws/build.gradle index 215866ebe..4b6aceffb 100644 --- a/eno-ws/build.gradle +++ b/eno-ws/build.gradle @@ -4,6 +4,7 @@ plugins { id 'io.spring.dependency-management' id 'java' id 'maven-publish' + id 'jacoco' } ext { diff --git a/eno-ws/src/main/java/fr/insee/eno/ws/controller/GenerationController.java b/eno-ws/src/main/java/fr/insee/eno/ws/controller/GenerationController.java index 8f118b6b1..5d8f74b03 100644 --- a/eno-ws/src/main/java/fr/insee/eno/ws/controller/GenerationController.java +++ b/eno-ws/src/main/java/fr/insee/eno/ws/controller/GenerationController.java @@ -173,13 +173,13 @@ public Mono> generateLunaticJsonQuestionnaire( enoParameters.setSequenceNumbering(seqNum); enoParameters.setArrowCharInQuestions(preQuestSymbol); switch (pagination) { - case NONE -> lunaticParameters.setLunaticPaginationMode(EnoParameters.LunaticPaginationMode.NONE); - case SEQUENCE -> lunaticParameters.setLunaticPaginationMode(EnoParameters.LunaticPaginationMode.SEQUENCE); + case NONE -> lunaticParameters.setLunaticPaginationMode(LunaticParameters.LunaticPaginationMode.NONE); + case SEQUENCE -> lunaticParameters.setLunaticPaginationMode(LunaticParameters.LunaticPaginationMode.SEQUENCE); case SUBSEQUENCE -> { - lunaticParameters.setLunaticPaginationMode(EnoParameters.LunaticPaginationMode.NONE); + lunaticParameters.setLunaticPaginationMode(LunaticParameters.LunaticPaginationMode.NONE); log.info("Lunatic 'SUBSEQUENCE' pagination is not supported. Pagination has been set to 'NONE'."); } - case QUESTION -> lunaticParameters.setLunaticPaginationMode(EnoParameters.LunaticPaginationMode.QUESTION); + case QUESTION -> lunaticParameters.setLunaticPaginationMode(LunaticParameters.LunaticPaginationMode.QUESTION); } // return controllerUtils.ddiToLunaticJson(ddiFile, enoParameters, lunaticPostProcessings); diff --git a/eno-ws/src/test/resources/non-regression/suggester-processing/suggester-input.json b/eno-ws/src/test/resources/non-regression/suggester-processing/suggester-input.json index c768d6aaf..ec2d2611f 100644 --- a/eno-ws/src/test/resources/non-regression/suggester-processing/suggester-input.json +++ b/eno-ws/src/test/resources/non-regression/suggester-processing/suggester-input.json @@ -8,8 +8,12 @@ "fields": [ { "name": "label", - "rules": ["soft"], + "rules": "soft", "min": 2 + }, + { + "name": "id", + "rules": "soft" } ], "queryParser": { @@ -31,6 +35,10 @@ "language": "French", "min": 2, "stemmer": false + }, + { + "name": "id", + "rules": "soft" } ], "queryParser": { diff --git a/settings.gradle b/settings.gradle index 9e58de648..301c91002 100644 --- a/settings.gradle +++ b/settings.gradle @@ -23,7 +23,7 @@ dependencyResolutionManagement { versionCatalogs { libs { - version('lunatic-model', '3.2.2-SNAPSHOT') + version('lunatic-model', '3.2.5') version('pogues-model', '1.0.5') library('lunatic-model', 'fr.insee.lunatic', 'lunatic-model').versionRef('lunatic-model') library('pogues-model', 'fr.insee.pogues', 'pogues-model').versionRef('pogues-model') diff --git a/sonar.gradle b/sonar.gradle new file mode 100644 index 000000000..521436cdb --- /dev/null +++ b/sonar.gradle @@ -0,0 +1,9 @@ +apply plugin: "org.sonarqube" + +sonar { + properties { + property 'sonar.projectKey', 'InseeFr_Eno' + property 'sonar.host.url', 'https://sonarcloud.io' + property 'sonar.organization', 'inseefr' + } +} \ No newline at end of file